:root {
  --bg: #eaf2ff;
  --surface: #f8fbff;
  --surface-strong: #ffffff;
  --ink: #162b68;
  --muted: #5f73a5;
  --primary: #5d84f4;
  --sky: #78a9ff;
  --teal: #24b8a4;
  --focus: #ffd24a;
  --danger: #e11d48;
  --soft-danger: #ffe4e6;
  --line: rgba(22, 43, 104, 0.14);
  --shadow: 0 22px 60px rgba(22, 43, 104, 0.14);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(130deg, rgba(120, 169, 255, 0.22), transparent 32%),
    linear-gradient(310deg, rgba(36, 184, 164, 0.18), transparent 34%),
    linear-gradient(180deg, #eaf2ff 0%, #f8fbff 52%, #eaf2ff 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(22, 43, 104, 0.08);
  background: rgba(248, 251, 255, 0.9);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(93, 132, 244, 0.24);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--ink);
}

.button,
.button-secondary,
.play-badge {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius);
  font-weight: 760;
  line-height: 1.1;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button {
  padding: 0 18px;
  color: white;
  background: var(--ink);
  box-shadow: 0 12px 28px rgba(22, 43, 104, 0.18);
}

.button:hover,
.button-secondary:hover,
.play-badge:hover {
  transform: translateY(-1px);
}

.button-secondary {
  padding: 0 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
}

.hero {
  padding: 72px 0 34px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: center;
  gap: 54px;
}

.eyebrow {
  width: fit-content;
  margin: 0 0 18px;
  padding: 7px 10px;
  border: 1px solid rgba(36, 184, 164, 0.32);
  border-radius: 999px;
  background: rgba(36, 184, 164, 0.1);
  color: #116c63;
  font-size: 0.82rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.06;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(3rem, 7.6vw, 6.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
  font-size: 1.18rem;
}

.lead {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.hero-actions,
.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.play-badge {
  min-width: 186px;
  padding: 8px 14px;
  background: #111827;
  color: white;
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.2);
}

.play-icon {
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid var(--focus);
}

.play-copy {
  display: grid;
  gap: 2px;
  text-align: left;
}

.play-copy span {
  font-size: 0.68rem;
  font-weight: 650;
  opacity: 0.82;
}

.play-copy strong {
  font-size: 1.04rem;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.trust-item {
  min-height: 90px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.55);
}

.trust-item strong {
  display: block;
  margin-bottom: 4px;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.92rem;
}

.phone-stage {
  position: relative;
  min-height: 640px;
  display: grid;
  place-items: center;
}

.phone {
  width: min(330px, 74vw);
  border: 12px solid #111827;
  border-radius: 42px;
  background: #f8fbff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.phone-top {
  height: 30px;
  display: grid;
  place-items: center;
  background: #111827;
}

.speaker {
  width: 72px;
  height: 6px;
  border-radius: 999px;
  background: #2f3848;
}

.phone-screen {
  min-height: 560px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(120, 169, 255, 0.16), transparent 30%),
    #f8fbff;
}

.start-screen {
  position: relative;
  min-height: 560px;
  padding: 0;
  overflow: hidden;
  background: #eaf2ff;
}

.app-status {
  position: absolute;
  inset: 0 0 auto;
  z-index: 4;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  color: rgba(22, 43, 104, 0.74);
  font-size: 0.72rem;
  font-weight: 780;
  background: rgba(248, 251, 255, 0.82);
}

.start-art {
  position: relative;
  height: 334px;
  overflow: hidden;
}

.start-art::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 118px;
  background: linear-gradient(180deg, rgba(234, 242, 255, 0), #eaf2ff 78%);
}

.start-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.back-pill {
  position: absolute;
  z-index: 3;
  top: 42px;
  left: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.84);
  color: #5d84f4;
  font-size: 2rem;
  line-height: 1;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 24px rgba(22, 43, 104, 0.08);
}

.start-copy {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  padding: 14px 22px 24px;
  text-align: center;
}

.start-copy h2 {
  color: #111f54;
  font-size: 1.55rem;
  line-height: 1.05;
  font-weight: 900;
}

.start-copy p {
  margin: 10px 0 22px;
  color: #6b7eaf;
  font-size: 0.9rem;
  line-height: 1.25;
  font-weight: 760;
}

.scan-button,
.details-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  min-height: 53px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 850;
}

.scan-button {
  color: white;
  background: #5d7ff0;
  box-shadow: 0 16px 30px rgba(93, 132, 244, 0.26);
}

.details-button {
  width: 55%;
  min-height: 43px;
  margin-top: 12px;
  border: 1px solid rgba(255, 255, 255, 0.96);
  background: rgba(255, 255, 255, 0.52);
  color: #243a80;
  box-shadow: 0 12px 24px rgba(22, 43, 104, 0.08);
}

.screen-kicker,
.mini-label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 780;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.screen-title {
  margin: 6px 0 18px;
  font-size: 1.6rem;
  line-height: 1.1;
  font-weight: 850;
}

.compass-wrap {
  padding: 8px;
  border-radius: 50%;
  background: linear-gradient(140deg, rgba(93, 132, 244, 0.2), rgba(36, 184, 164, 0.18));
}

.compass-wrap img {
  border-radius: 50%;
}

.state-card {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.state-card strong {
  display: block;
  margin: 4px 0 8px;
  font-size: 1.2rem;
}

.state-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.pulse-chip {
  position: absolute;
  right: 0;
  top: 86px;
  width: 176px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 42px rgba(22, 43, 104, 0.12);
}

.pulse-line {
  width: 100%;
  height: 36px;
  margin-top: 8px;
  background:
    linear-gradient(90deg, transparent 0 8%, var(--teal) 8% 10%, transparent 10% 18%, var(--primary) 18% 20%, transparent 20% 40%, var(--danger) 40% 42%, transparent 42% 100%),
    linear-gradient(180deg, transparent 46%, rgba(22, 43, 104, 0.16) 46% 54%, transparent 54%);
}

.next-step-chip {
  position: absolute;
  left: 0;
  bottom: 112px;
  width: 222px;
  padding: 14px;
  border: 1px solid rgba(255, 210, 74, 0.55);
  border-radius: var(--radius);
  background: rgba(255, 250, 226, 0.92);
  box-shadow: 0 18px 42px rgba(22, 43, 104, 0.12);
}

.section {
  padding: 80px 0;
}

.section.alt {
  background: rgba(255, 255, 255, 0.45);
  border-block: 1px solid rgba(22, 43, 104, 0.08);
}

.section-head {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-head p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.grid-4,
.grid-3,
.legal-grid {
  display: grid;
  gap: 16px;
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.privacy-panel,
.faq-item,
.legal-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 38px rgba(22, 43, 104, 0.08);
}

.card {
  padding: 22px;
}

.card p,
.legal-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.card-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: rgba(93, 132, 244, 0.12);
  color: var(--ink);
  font-weight: 900;
}

.zones {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
}

.zone-map {
  display: grid;
  gap: 10px;
}

.zone {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
}

.zone-dot {
  width: 14px;
  height: 14px;
  margin-top: 5px;
  border-radius: 50%;
}

.zone p {
  margin: 3px 0 0;
  color: var(--muted);
}

.zone-visual {
  min-height: 420px;
  display: grid;
  place-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.55);
}

.zone-visual img {
  width: min(360px, 100%);
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: center 48%;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: var(--radius);
  box-shadow: 0 24px 52px rgba(22, 43, 104, 0.16);
}

.privacy-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.privacy-panel {
  padding: 24px;
}

.privacy-panel h3 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.privacy-panel p {
  margin: 12px 0 0;
  color: var(--muted);
}

.badge {
  display: inline-flex;
  min-width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: rgba(36, 184, 164, 0.12);
  color: #116c63;
  font-weight: 900;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.price-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.price-card.featured {
  border-color: rgba(93, 132, 244, 0.42);
  box-shadow: var(--shadow);
}

.price {
  margin: 16px 0;
  font-size: 2.4rem;
  font-weight: 900;
}

.price span {
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 650;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.check-list li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--teal);
  font-weight: 900;
}

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

.faq-item {
  overflow: hidden;
}

.faq-question {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 18px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-question span:last-child {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(93, 132, 244, 0.11);
}

.faq-answer {
  display: none;
  padding: 0 18px 18px;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.site-footer {
  padding: 36px 0;
  border-top: 1px solid var(--line);
  background: rgba(248, 251, 255, 0.82);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
  font-size: 0.94rem;
}

.legal-hero {
  padding: 72px 0 42px;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 250px) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  padding-bottom: 80px;
}

.legal-nav {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.legal-nav a {
  padding: 9px 10px;
  border-radius: var(--radius);
  color: var(--muted);
  font-weight: 720;
}

.legal-nav a:hover {
  background: rgba(93, 132, 244, 0.1);
  color: var(--ink);
}

.legal-content {
  display: grid;
  gap: 18px;
}

.legal-card {
  padding: 26px;
}

.legal-card h2 {
  font-size: 1.55rem;
}

.legal-card ul,
.legal-card ol {
  margin: 14px 0 0;
  color: var(--muted);
}

.legal-card li + li {
  margin-top: 8px;
}

.notice {
  padding: 16px;
  border-radius: var(--radius);
  background: var(--soft-danger);
  color: #9f1239;
  font-weight: 760;
}

.support-form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-weight: 720;
}

input,
textarea,
select {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

@media (max-width: 940px) {
  .nav {
    min-height: auto;
    padding: 14px 0;
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .hero-grid,
  .zones,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .phone-stage {
    min-height: 620px;
  }

  .pulse-chip,
  .next-step-chip {
    position: static;
    width: min(330px, 74vw);
    margin: 12px auto 0;
  }

  .grid-4,
  .grid-3,
  .privacy-panels,
  .pricing {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legal-nav {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .hero,
  .section,
  .legal-hero {
    padding: 54px 0;
  }

  .trust-row,
  .grid-4,
  .grid-3,
  .privacy-panels,
  .pricing,
  .footer-grid,
  .legal-nav {
    grid-template-columns: 1fr;
  }

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

  .button,
  .button-secondary,
  .play-badge {
    width: 100%;
  }

  .phone-stage {
    min-height: auto;
  }

  .phone {
    width: min(318px, 100%);
  }

  .phone-screen {
    min-height: 520px;
  }

  .zone-visual {
    min-height: 300px;
  }
}
