:root {
  color-scheme: light;
  --navy-950: #041226;
  --navy-900: #071a33;
  --navy-800: #0d294c;
  --navy-700: #153b68;
  --blue-500: #2f78c4;
  --yellow-500: #f7c948;
  --yellow-400: #ffda67;
  --yellow-100: #fff6d6;
  --ink: #10233a;
  --muted: #5b6d80;
  --paper: #ffffff;
  --mist: #f4f7fb;
  --line: #dce5ef;
  --success: #12705a;
  --danger: #a33232;
  --shadow-sm: 0 12px 35px rgba(4, 18, 38, .08);
  --shadow-lg: 0 30px 80px rgba(4, 18, 38, .18);
  --radius-sm: .8rem;
  --radius: 1.35rem;
  --radius-lg: 2.2rem;
  --content: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 6rem; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--yellow-500); outline-offset: 4px; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: -6rem;
  left: 1rem;
  padding: .8rem 1rem;
  border-radius: .6rem;
  background: var(--yellow-500);
  color: var(--navy-950);
  font-weight: 800;
  transition: top .2s ease;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  background: rgba(4,18,38,.93);
  color: #fff;
  backdrop-filter: blur(18px);
}
.nav-shell {
  width: min(calc(100% - 2rem), var(--content));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand { display: inline-flex; align-items: center; gap: .8rem; text-decoration: none; }
.brand img { width: 48px; height: 48px; }
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { font-size: 1.08rem; letter-spacing: -.02em; }
.brand-copy span { margin-top: .22rem; color: #a9bdd2; font-size: .69rem; font-weight: 800; letter-spacing: .18em; }
.site-nav { display: flex; align-items: center; gap: .15rem; }
.site-nav a {
  padding: .72rem .85rem;
  border-radius: .65rem;
  color: #ced9e6;
  font-size: .93rem;
  font-weight: 700;
  text-decoration: none;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { background: rgba(255,255,255,.08); color: #fff; }
.site-nav .nav-cta { margin-left: .5rem; background: var(--yellow-500); color: var(--navy-950); }
.site-nav .nav-cta:hover { background: var(--yellow-400); color: var(--navy-950); }
.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: .75rem;
  background: transparent;
  color: #fff;
  cursor: pointer;
}
.menu-button span, .menu-button::before, .menu-button::after {
  content: "";
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}
.menu-button[aria-expanded="true"] span { opacity: 0; }
.menu-button[aria-expanded="true"]::before { transform: translateY(7px) rotate(45deg); }
.menu-button[aria-expanded="true"]::after { transform: translateY(-7px) rotate(-45deg); }

.hero-home {
  position: relative;
  min-height: min(850px, calc(100vh - 78px));
  overflow: hidden;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 82% 30%, rgba(47,120,196,.25), transparent 31%),
    radial-gradient(circle at 75% 75%, rgba(247,201,72,.12), transparent 24%),
    var(--navy-950);
  color: #fff;
}
.hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .24;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to right, transparent, #000 45%, #000);
}
.hero-shell {
  position: relative;
  width: min(calc(100% - 2rem), var(--content));
  margin: 0 auto;
  padding: clamp(4.5rem, 9vw, 8rem) 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .75fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin: 0 0 1.2rem;
  color: var(--yellow-400);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 1.9rem; height: 3px; border-radius: 9px; background: currentColor; }
h1, h2, h3 { margin-top: 0; line-height: 1.08; letter-spacing: -.035em; }
.hero-home h1 { max-width: 12ch; margin-bottom: 1.4rem; font-size: clamp(3.25rem, 8vw, 6.6rem); }
.hero-home h1 span { color: var(--yellow-500); }
.hero-lead { max-width: 60ch; margin: 0 0 2rem; color: #b9c8d8; font-size: clamp(1.05rem, 2vw, 1.28rem); }
.button-row { display: flex; flex-wrap: wrap; gap: .8rem; }
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .82rem 1.2rem;
  border: 1px solid transparent;
  border-radius: .78rem;
  background: var(--yellow-500);
  color: var(--navy-950);
  font-weight: 820;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(247,201,72,.18); background: var(--yellow-400); }
.button.secondary { border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.06); color: #fff; }
.button.secondary:hover { background: rgba(255,255,255,.11); }
.button.navy { background: var(--navy-900); color: #fff; }
.button.navy:hover { background: var(--navy-800); box-shadow: var(--shadow-sm); }

.hero-visual { position: relative; min-height: 520px; }
.orbit {
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  animation: drift 16s linear infinite;
}
.orbit::after { content: ""; position: absolute; top: 14%; right: 7%; width: 16px; height: 16px; border-radius: 50%; background: var(--yellow-500); box-shadow: 0 0 40px var(--yellow-500); }
.product-card {
  position: absolute;
  inset: 2.8rem 1.2rem 2.2rem 2.8rem;
  overflow: hidden;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(21,59,104,.88), rgba(7,26,51,.92));
  box-shadow: var(--shadow-lg);
  transform: rotate(-2deg);
  backdrop-filter: blur(16px);
}
.product-card::after { content: ""; position: absolute; width: 210px; height: 210px; right: -70px; bottom: -90px; border-radius: 50%; background: rgba(247,201,72,.12); }
.mini-brand { width: 58px; height: 58px; margin-bottom: 1.7rem; }
.product-label { color: var(--yellow-400); font-size: .72rem; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.product-card h2 { margin: .65rem 0 .8rem; font-size: clamp(2rem, 4vw, 3rem); }
.product-card p { max-width: 30ch; margin: 0; color: #bfd0e1; font-size: .94rem; }
.signal-row { position: absolute; z-index: 2; left: 2rem; right: 2rem; bottom: 2rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: .55rem; }
.signal { padding: .65rem; border-radius: .65rem; background: rgba(255,255,255,.08); color: #dce8f4; font-size: .72rem; font-weight: 700; text-align: center; }
@keyframes drift { to { transform: rotate(360deg); } }

.trust-strip { border-bottom: 1px solid var(--line); background: var(--mist); }
.trust-shell { width: min(calc(100% - 2rem), var(--content)); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 1.35rem 1.2rem; border-right: 1px solid var(--line); }
.trust-item:first-child { border-left: 1px solid var(--line); }
.trust-item strong { display: block; color: var(--navy-900); font-size: 1.05rem; }
.trust-item span { color: var(--muted); font-size: .83rem; }

.section { padding: clamp(4.5rem, 9vw, 8rem) 0; }
.section.mist { background: var(--mist); }
.section.navy { position: relative; overflow: hidden; background: var(--navy-950); color: #fff; }
.section-shell { width: min(calc(100% - 2rem), var(--content)); margin: 0 auto; }
.section-head { max-width: 760px; margin-bottom: clamp(2.4rem, 5vw, 4rem); }
.section-head h2 { margin-bottom: 1rem; color: var(--navy-950); font-size: clamp(2.3rem, 5vw, 4.4rem); }
.section.navy .section-head h2 { color: #fff; }
.section-head p { margin: 0; color: var(--muted); font-size: 1.1rem; }
.section.navy .section-head p { color: #aebfd1; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.service-card {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}
.service-card::after { content: attr(data-number); position: absolute; right: 1.2rem; bottom: -.8rem; color: #edf2f8; font-size: 7rem; font-weight: 900; line-height: 1; }
.service-icon { width: 48px; height: 48px; margin-bottom: 3rem; display: grid; place-items: center; border-radius: .8rem; background: var(--yellow-100); color: var(--navy-900); font-weight: 900; }
.service-card h3 { position: relative; z-index: 1; margin-bottom: .8rem; color: var(--navy-900); font-size: 1.45rem; }
.service-card p { position: relative; z-index: 1; margin: 0; color: var(--muted); }

.product-feature { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 7vw, 6rem); align-items: center; }
.app-preview { position: relative; min-height: 560px; display: grid; place-items: center; }
.app-preview::before { content: ""; position: absolute; width: 410px; height: 410px; border-radius: 50%; background: rgba(47,120,196,.22); filter: blur(2px); }
.phone {
  position: relative;
  z-index: 1;
  width: 285px;
  min-height: 540px;
  padding: 13px;
  border: 1px solid #31465c;
  border-radius: 2.8rem;
  background: #020912;
  box-shadow: 0 35px 90px rgba(0,0,0,.45);
  transform: rotate(3deg);
}
.phone-screen { min-height: 514px; overflow: hidden; padding: 1.35rem 1rem; border-radius: 2.1rem; background: #f7f9fc; color: var(--ink); }
.phone-notch { width: 88px; height: 22px; margin: -1rem auto 1.4rem; border-radius: 999px; background: #020912; }
.ui-title { margin-bottom: 1rem; font-size: 1.2rem; font-weight: 850; }
.ui-week { margin: .6rem 0 .3rem; color: var(--muted); font-size: .72rem; font-weight: 800; text-transform: uppercase; }
.ui-card { margin-bottom: .65rem; padding: .85rem; display: grid; grid-template-columns: 6px 1fr auto; gap: .65rem; border: 1px solid var(--line); border-radius: .8rem; background: #fff; box-shadow: 0 8px 22px rgba(4,18,38,.06); }
.ui-accent { border-radius: 99px; background: var(--yellow-500); }
.ui-card:nth-of-type(3) .ui-accent { background: var(--blue-500); }
.ui-card strong, .ui-card span { display: block; }
.ui-card span { color: var(--muted); font-size: .7rem; }
.ui-time { font-size: .73rem; font-weight: 800; }
.feature-copy h2 { margin-bottom: 1.2rem; font-size: clamp(2.6rem, 5vw, 4.6rem); }
.feature-copy > p { color: #afc0d2; font-size: 1.1rem; }
.feature-list { display: grid; gap: .8rem; margin: 2rem 0; padding: 0; list-style: none; }
.feature-list li { display: grid; grid-template-columns: 31px 1fr; gap: .8rem; align-items: start; color: #d9e4ef; }
.feature-list li::before { content: "✓"; width: 31px; height: 31px; display: grid; place-items: center; border-radius: 50%; background: var(--yellow-500); color: var(--navy-950); font-weight: 900; }

.pricing-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 430px)); gap: 1rem; }
.price-card { position: relative; padding: 2rem; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.price-card.featured { border: 2px solid var(--yellow-500); }
.price-badge { position: absolute; top: 1rem; right: 1rem; padding: .35rem .65rem; border-radius: 999px; background: var(--yellow-500); color: var(--navy-950); font-size: .72rem; font-weight: 850; }
.price-card h3 { margin-bottom: .4rem; color: var(--navy-900); }
.price { margin: 1.2rem 0; color: var(--navy-950); font-size: 3rem; font-weight: 900; letter-spacing: -.05em; }
.price small { color: var(--muted); font-size: .9rem; font-weight: 650; letter-spacing: 0; }
.price-card ul { padding-left: 1.15rem; color: var(--muted); }
.fineprint { margin-top: 1.5rem; color: var(--muted); font-size: .86rem; }

.contact-panel { padding: clamp(2rem, 5vw, 4rem); display: grid; grid-template-columns: 1.2fr auto; gap: 2rem; align-items: center; border-radius: var(--radius-lg); background: var(--yellow-500); color: var(--navy-950); }
.contact-panel h2 { margin-bottom: .7rem; font-size: clamp(2.2rem, 5vw, 4rem); }
.contact-panel p { max-width: 58ch; margin: 0; }

.site-footer { padding: 3.5rem 0 1.5rem; background: var(--navy-950); color: #dbe5ef; }
.footer-grid { width: min(calc(100% - 2rem), var(--content)); margin: 0 auto; display: grid; grid-template-columns: 1.2fr repeat(3, 1fr); gap: 2rem; }
.footer-brand img { width: 64px; height: 64px; margin-bottom: 1rem; }
.footer-brand p { max-width: 34ch; color: #92a7bb; }
.footer-column strong { display: block; margin-bottom: .75rem; color: #fff; }
.footer-column a { display: block; width: fit-content; margin: .45rem 0; color: #aebfd1; text-decoration: none; }
.footer-column a:hover { color: var(--yellow-400); }
.footer-bottom { width: min(calc(100% - 2rem), var(--content)); margin: 2.5rem auto 0; padding-top: 1.25rem; display: flex; justify-content: space-between; gap: 1rem; border-top: 1px solid rgba(255,255,255,.1); color: #7890a7; font-size: .82rem; }

.legal-hero { padding: 4.5rem 0 3.5rem; background: var(--navy-950); color: #fff; }
.legal-hero .section-shell { max-width: 900px; }
.legal-hero h1 { max-width: 14ch; margin-bottom: .8rem; font-size: clamp(2.7rem, 6vw, 5rem); }
.legal-hero p { max-width: 65ch; margin: 0; color: #afc0d2; }
.legal-layout { width: min(calc(100% - 2rem), 900px); margin: 0 auto; padding: 3rem 0 6rem; }
.legal-layout h2 { margin: 2.5rem 0 .8rem; color: var(--navy-900); font-size: 1.65rem; letter-spacing: -.02em; }
.legal-layout h3 { margin: 1.7rem 0 .5rem; color: var(--navy-800); font-size: 1.15rem; letter-spacing: -.01em; }
.legal-layout p, .legal-layout li { max-width: 78ch; }
.legal-layout a { color: var(--navy-700); font-weight: 700; }
.legal-layout table { width: 100%; border-collapse: collapse; }
.legal-layout th, .legal-layout td { padding: .85rem; border: 1px solid var(--line); text-align: left; vertical-align: top; overflow-wrap: anywhere; }
.legal-layout th { background: var(--mist); }
.contract-blank { display: block; min-height: 1.55rem; margin-top: .45rem; border-bottom: 1px solid var(--navy-700); }
.legal-note, .launch-blocker, .info-box, .success-box, .warning-box {
  margin: 1.5rem 0;
  padding: 1rem 1.15rem;
  border-left: 5px solid var(--blue-500);
  border-radius: .7rem;
  background: #eaf3fc;
}
.launch-blocker { border-color: var(--danger); background: #fff0f0; color: #6f2020; }
.warning-box { border-color: var(--danger); background: #fff5e5; color: #6b3f00; }
.success-box { border-color: var(--success); background: #eaf8f4; color: #0d5745; }
.placeholder { padding: .12rem .35rem; border-radius: .25rem; background: #ffe7e7; color: #8b2020; font-weight: 800; }
.legal-actions { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: .75rem; }

.legal-form { display: grid; gap: 1rem; margin-top: 2rem; }
.field { display: grid; gap: .35rem; }
.field label, .field legend { color: var(--navy-900); font-weight: 800; }
.field input, .field textarea, .field select {
  width: 100%;
  padding: .82rem .9rem;
  border: 1px solid #b9c8d8;
  border-radius: .65rem;
  background: #fff;
  color: var(--ink);
}
.field textarea { min-height: 120px; resize: vertical; }
.field small { color: var(--muted); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.radio-row { display: flex; flex-wrap: wrap; gap: 1rem; }
.radio-row label { display: flex; align-items: center; gap: .4rem; font-weight: 650; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { min-height: 1.5rem; font-weight: 700; }

@media (max-width: 960px) {
  .menu-button { display: block; }
  .site-nav {
    position: fixed;
    inset: 78px 0 auto;
    max-height: calc(100vh - 78px);
    overflow: auto;
    padding: 1rem;
    display: none;
    align-items: stretch;
    flex-direction: column;
    background: var(--navy-950);
    border-top: 1px solid rgba(255,255,255,.1);
  }
  .site-nav[data-open="true"] { display: flex; }
  .site-nav a { padding: 1rem; }
  .site-nav .nav-cta { margin: .5rem 0 0; text-align: center; }
  .hero-shell { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero-visual { width: min(100%, 520px); margin: 0 auto; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .services-grid .service-card:last-child { grid-column: 1 / -1; }
  .product-feature { grid-template-columns: 1fr; }
  .feature-copy { grid-row: 1; }
  .app-preview { min-height: 510px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .brand-copy span { display: none; }
  .legal-hero h1 { font-size: 2.2rem; overflow-wrap: anywhere; }
  .hero-home h1 { font-size: clamp(3rem, 16vw, 4.4rem); }
  .hero-visual { min-height: 380px; }
  .product-card { inset: 1.8rem .3rem 1.4rem 1rem; padding: 1.5rem; }
  .mini-brand { margin-bottom: 1.4rem; }
  .product-card p { display: none; }
  .signal-row { left: 1.5rem; right: 1.5rem; bottom: 1.5rem; }
  .trust-shell { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(odd) { border-left: 1px solid var(--line); }
  .trust-item { border-bottom: 1px solid var(--line); }
  .services-grid, .pricing-grid, .field-row { grid-template-columns: 1fr; }
  .services-grid .service-card:last-child { grid-column: auto; }
  .contact-panel { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .phone { transform: none; }
  .legal-layout th, .legal-layout td { padding: .65rem; font-size: .9rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

@media print {
  .site-header, .site-footer, .button-row, .legal-actions, .menu-button { display: none !important; }
  .legal-hero { padding: 1rem 0; background: #fff; color: #000; }
  .legal-hero p { color: #333; }
  .legal-layout { width: 100%; padding: 1rem 0; }
  a { color: #000; text-decoration: none; }
}
