:root {
  --ink: #111019;
  --muted: #5f5a70;
  --panel: #ffffff;
  --line: #e6e1f2;
  --wash: #f5f0ff;
  --cyan: #19d4ee;
  --violet: #8a64ff;
  --pink: #f24f92;
  --yellow: #f0b429;
  --green: #19a974;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  color-scheme: light;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fbf9ff;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.22em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 68px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(251, 249, 255, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  text-decoration: none;
}

.brand img {
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(25, 20, 50, 0.18);
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 24px);
  font-size: 0.92rem;
  font-weight: 750;
}

nav a {
  text-decoration: none;
  color: #373044;
}

nav a[aria-current="page"] {
  color: var(--violet);
}

.nav-download {
  color: #0f1020;
  padding: 8px 10px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--cyan), var(--yellow));
}

.hero {
  min-height: min(740px, calc(100vh - 68px));
  display: grid;
  align-items: center;
  padding: clamp(72px, 12vw, 140px) clamp(20px, 7vw, 96px);
  background:
    linear-gradient(90deg, rgba(17, 16, 25, 0.94) 0%, rgba(17, 16, 25, 0.78) 42%, rgba(17, 16, 25, 0.14) 100%),
    url("/web-assets/screen-menu.png") right bottom / auto 108% no-repeat,
    #15111f;
  color: white;
}

.hero-copy {
  width: 100%;
  max-width: 620px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--violet);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--cyan);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(3.1rem, 9vw, 6.8rem);
  line-height: 0.9;
  font-weight: 950;
}

h2 {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.05;
}

h3 {
  margin: 28px 0 8px;
  font-size: 1.05rem;
}

.lead {
  max-width: 560px;
  margin: 24px 0 0;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
  min-width: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  max-width: 100%;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 900;
  overflow-wrap: anywhere;
  text-align: center;
  text-decoration: none;
}

.button.primary {
  color: #0f1020;
  background: linear-gradient(135deg, var(--cyan), var(--yellow));
}

.button.secondary {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.button.page-button {
  color: #0f1020;
  background: linear-gradient(135deg, var(--cyan), var(--yellow));
}

.summary {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: clamp(24px, 6vw, 72px);
  padding: clamp(56px, 8vw, 96px) clamp(20px, 7vw, 96px);
}

.summary p,
.legal p,
.legal li {
  color: var(--muted);
  line-height: 1.72;
  font-size: 1.02rem;
}

.fact-list,
.link-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fact-list {
  display: grid;
  gap: 10px;
}

.fact-list li,
.link-list li {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.fact-list li::before {
  content: "";
  display: inline-block;
  width: 0.65rem;
  height: 0.65rem;
  margin-right: 10px;
  border-radius: 999px;
  background: var(--green);
}

.screens {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 5vw, 48px);
  padding: 0 clamp(20px, 7vw, 96px) clamp(64px, 9vw, 120px);
}

.screens img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(35, 28, 68, 0.16);
}

.legal {
  width: min(820px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) 0;
}

.legal h1 {
  margin-bottom: 26px;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
}

.legal h2 {
  margin-top: 42px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.contact-line a {
  display: inline-flex;
  padding: 14px 16px;
  border-radius: 8px;
  background: #eee7ff;
  color: #4630a6;
  font-weight: 900;
}

.centered {
  min-height: 100vh;
  display: grid;
  align-content: center;
  justify-items: start;
}

.centered img {
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(35, 28, 68, 0.18);
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(20px, 7vw, 96px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

footer p {
  margin: 0;
}

@media (max-width: 760px) {
  .site-header,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    min-height: 680px;
    align-items: start;
    padding-left: 24px;
    padding-right: 24px;
    background:
      linear-gradient(180deg, rgba(17, 16, 25, 0.96) 0%, rgba(17, 16, 25, 0.78) 46%, rgba(17, 16, 25, 0.22) 100%),
      url("/web-assets/screen-menu.png") center bottom / min(92vw, 430px) auto no-repeat,
      #15111f;
  }

  .hero-copy {
    width: calc(100vw - 48px);
    max-width: calc(100vw - 48px);
  }

  .summary,
  .screens {
    grid-template-columns: 1fr;
  }

  .actions {
    flex-direction: column;
    align-items: stretch;
  }

  .actions .button {
    width: 100%;
  }

  .screens img:nth-child(2) {
    display: none;
  }
}
