:root {
      --bg: #030b18;
      --bg-soft: #07162d;
      --panel: linear-gradient(180deg, rgba(9,27,59,.92), rgba(5,16,35,.96));
      --panel-2: linear-gradient(180deg, rgba(8,23,49,.86), rgba(4,12,27,.92));
      --stroke: rgba(80, 127, 215, 0.22);
      --stroke-strong: rgba(109, 157, 255, 0.34);
      --text: #f5f8ff;
      --muted: #9caecc;
      --muted-2: #7082a7;
      --gold: #ffd451;
      --gold-deep: #e5ae16;
      --green: #33d17a;
      --blue: #6e94ff;
      --shadow: 0 24px 70px rgba(0,0,0,.35);
      --radius-xl: 30px;
      --radius-lg: 22px;
      --radius-md: 16px;
      --max: 1240px;
    }

    * { 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;
      color: var(--text);
      background:
        radial-gradient(circle at 20% 10%, rgba(54,110,255,.14), transparent 24%),
        radial-gradient(circle at 80% 18%, rgba(255,212,81,.12), transparent 20%),
        linear-gradient(180deg, #020812 0%, #041022 42%, #030b18 100%);
      line-height: 1.55;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(82,117,190,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(82,117,190,.06) 1px, transparent 1px);
      background-size: 48px 48px;
      mask-image: linear-gradient(to bottom, rgba(0,0,0,.38), transparent 78%);
    }

    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }

    .container {
      width: min(calc(100% - 32px), var(--max));
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(16px);
      background: rgba(2, 9, 21, .78);
      border-bottom: 1px solid rgba(102, 137, 214, 0.14);
    }


    .nav-wrap {
      min-height: 96px;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 18px;
      position: relative;
    }

    .nav-spacer {
      justify-self: start;
      width: 52px;
      height: 52px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0;
      font-weight: 800;
      letter-spacing: .02em;
    }

    .brand-centered {
      justify-self: center;
    }

    .brand-mark {
      width: 128px;
      height: 72px;
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 0 0 1px rgba(255,255,255,.08), 0 14px 34px rgba(0,0,0,.36);
      flex: 0 0 auto;
      background: rgba(7, 20, 43, .5);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0;
    }

    .brand-copy,
    .brand small {
      display: none;
    }

    .menu-shell {
      justify-self: end;
      position: relative;
    }

    .menu-toggle {
      width: 56px;
      height: 56px;
      border: 1px solid rgba(111, 155, 255, .26);
      border-radius: 18px;
      background: linear-gradient(180deg, rgba(16, 37, 77, .94), rgba(7, 18, 39, .96));
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.03), 0 12px 28px rgba(0,0,0,.26);
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 5px;
      cursor: pointer;
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    }

    .menu-toggle:hover {
      transform: translateY(-1px);
      border-color: rgba(132, 173, 255, .42);
    }

    .menu-toggle span {
      width: 22px;
      height: 2px;
      border-radius: 999px;
      background: #eef4ff;
      transition: transform .22s ease, opacity .22s ease;
    }

    .site-header.menu-open .menu-toggle span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .site-header.menu-open .menu-toggle span:nth-child(2) {
      opacity: 0;
    }

    .site-header.menu-open .menu-toggle span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .main-nav {
      position: absolute;
      right: 0;
      top: calc(100% + 14px);
      min-width: 240px;
      padding: 14px;
      border-radius: 22px;
      background: linear-gradient(180deg, rgba(8,23,49,.98), rgba(4,12,27,.98));
      border: 1px solid rgba(109,157,255,.22);
      box-shadow: 0 24px 60px rgba(0,0,0,.42);
      display: grid;
      gap: 8px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-8px);
      pointer-events: none;
      transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
      z-index: 100;
    }

    .site-header.menu-open .main-nav {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      pointer-events: auto;
    }

    .nav-link {
      padding: 14px 16px;
      border-radius: 16px;
      color: #dbe7ff;
      border: 1px solid transparent;
      background: rgba(10, 24, 51, .38);
      transition: .22s ease;
    }

    .nav-link:hover,
    .nav-link.active {
      background: rgba(78, 113, 192, .14);
      border-color: rgba(111, 155, 255, .24);
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.03);
    }

                                .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 54px;
      padding: 0 22px;
      border-radius: 999px;
      font-weight: 800;
      letter-spacing: .01em;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
    }

    .btn:hover { transform: translateY(-2px); }

    .btn-primary {
      color: #091221;
      background: linear-gradient(135deg, #ffe47a, #ffc62b 50%, #e7a80b 100%);
      box-shadow: 0 12px 28px rgba(229,174,22,.25);
    }

    .btn-secondary {
      color: #f0f4ff;
      border: 1px solid rgba(112, 148, 255, .28);
      background: rgba(11, 28, 58, .62);
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.03);
    }

    .hero {
      padding: 42px 0 26px;
    }

    .hero-shell {
      display: grid;
      grid-template-columns: 1.12fr .88fr;
      gap: 28px;
      align-items: stretch;
    }

    .glass {
      background: var(--panel);
      border: 1px solid var(--stroke);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.04);
      position: relative;
      overflow: hidden;
    }

    .glass::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(255,255,255,.035), transparent 22%, transparent 100%);
      pointer-events: none;
    }

    .hero-copy {
      padding: 38px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-height: 36px;
      padding: 0 14px;
      border-radius: 999px;
      font-size: .78rem;
      font-weight: 800;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: #dce8ff;
      background: rgba(17, 39, 78, .82);
      border: 1px solid rgba(109,157,255,.2);
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.025);
    }

    h1, h2, h3, h4, p { margin: 0; }

    .hero h1 {
      margin-top: 18px;
      font-size: clamp(2.4rem, 5vw, 4.7rem);
      line-height: .98;
      letter-spacing: -.04em;
      max-width: 11ch;
    }

    .hero .lead {
      margin-top: 22px;
      font-size: 1.08rem;
      color: #d9e5ff;
      max-width: 63ch;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 26px;
    }

    .hero-points {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-top: 28px;
    }

    .mini-stat {
      padding: 18px 18px 16px;
      border-radius: 20px;
      background: rgba(10, 25, 53, .8);
      border: 1px solid rgba(102, 146, 240, .18);
    }

    .mini-stat strong {
      display: block;
      font-size: 1.45rem;
      margin-bottom: 4px;
    }

    .mini-stat span {
      color: var(--muted);
      font-size: .93rem;
    }

    .hero-visual {
      padding: 20px;
      display: grid;
      gap: 16px;
      align-content: start;
      background: var(--panel-2);
    }

    .hero-logo {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 14px;
      border-radius: 22px;
      background: rgba(4, 10, 22, .96);
      border: 1px solid rgba(255, 212, 81, .14);
    }

    .hero-logo img {
      width: 100%;
      max-height: 240px;
      object-fit: contain;
      filter: drop-shadow(0 18px 28px rgba(0,0,0,.34));
    }

    .hero-screen {
      border-radius: 24px;
      overflow: hidden;
      border: 1px solid rgba(93, 135, 230, .24);
      box-shadow: 0 12px 32px rgba(0,0,0,.24);
      background: rgba(2, 8, 20, .9);
    }

    .hero-screen img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .screen-stack {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .section {
      padding: 26px 0;
    }

    .section-title {
      max-width: 860px;
      margin-bottom: 18px;
    }

    .section-title h2 {
      font-size: clamp(2rem, 3vw, 3rem);
      line-height: 1.02;
      letter-spacing: -.03em;
      margin-top: 14px;
    }

    .section-title p {
      margin-top: 14px;
      color: #d6e2fb;
      font-size: 1.05rem;
    }

    .story-grid,
    .feature-grid,
    .cta-grid,
    .seo-grid {
      display: grid;
      gap: 18px;
    }

    .story-grid {
      grid-template-columns: 1.08fr .92fr;
      align-items: stretch;
    }

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

    .seo-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .cta-grid {
      grid-template-columns: 1.15fr .85fr;
      align-items: center;
    }

    .card {
      padding: 26px;
      border-radius: var(--radius-lg);
      background: var(--panel);
      border: 1px solid var(--stroke);
      box-shadow: var(--shadow);
    }

    .card h3 {
      font-size: 1.45rem;
      letter-spacing: -.02em;
      margin-bottom: 10px;
    }

    .card p,
    .card li {
      color: #d7e3fc;
    }

    .card ul {
      margin: 14px 0 0;
      padding-left: 18px;
    }

    .conversation-copy p + p {
      margin-top: 16px;
    }

    .highlight-list {
      display: grid;
      gap: 12px;
      margin-top: 18px;
    }

    .highlight-item {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 14px;
      align-items: start;
      padding: 16px 18px;
      border-radius: 18px;
      background: rgba(9, 24, 50, .76);
      border: 1px solid rgba(98, 140, 234, .18);
    }

    .badge {
      width: 38px;
      height: 38px;
      display: inline-grid;
      place-items: center;
      border-radius: 50%;
      color: #091221;
      font-weight: 900;
      background: linear-gradient(135deg, #ffe47a, #f4bf34);
      box-shadow: 0 6px 18px rgba(229,174,22,.22);
    }

    .showcase {
      display: grid;
      grid-template-columns: .86fr 1.14fr;
      gap: 20px;
      align-items: start;
    }

    .phone-stack {
      display: grid;
      gap: 16px;
    }

    .phone-card {
      border-radius: 28px;
      overflow: hidden;
      border: 1px solid rgba(109,157,255,.22);
      background: rgba(5,12,26,.94);
      box-shadow: 0 16px 36px rgba(0,0,0,.25);
    }

    .phone-card img {
      width: 100%;
      aspect-ratio: 9 / 17;
      object-fit: cover;
      object-position: top center;
    }

    .quote-box {
      padding: 24px;
      border-radius: 24px;
      background: linear-gradient(180deg, rgba(8,26,55,.9), rgba(5,15,32,.96));
      border: 1px solid rgba(101,145,238,.22);
      margin-top: 16px;
    }

    .quote-box p {
      font-size: 1.03rem;
      color: #eff5ff;
    }

    .quote-box strong {
      display: inline-block;
      margin-top: 12px;
      color: var(--gold);
      letter-spacing: .05em;
      text-transform: uppercase;
      font-size: .82rem;
    }

    .cta-wrap {
      padding: 30px;
      border-radius: 28px;
      background: linear-gradient(135deg, rgba(8,25,55,.98), rgba(6,16,34,.94));
      border: 1px solid rgba(255,212,81,.18);
      box-shadow: var(--shadow);
    }

    .cta-wrap p {
      margin-top: 14px;
      color: #d5e2fc;
      max-width: 60ch;
    }

    .cta-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      justify-content: flex-end;
    }

    .footer {
      padding: 30px 0 46px;
      color: var(--muted);
    }

    .footer-wrap {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      border-top: 1px solid rgba(99,137,218,.16);
      padding-top: 24px;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
    }

    @media (max-width: 1080px) {
      .hero-shell,
      .story-grid,
      .showcase,
      .cta-grid,
      .seo-grid,
      .feature-grid {
        grid-template-columns: 1fr;
      }

      .hero h1 { max-width: none; }
      .cta-actions { justify-content: flex-start; }
    }

    @media (max-width: 760px) {
      .nav-wrap { min-height: 88px; padding: 12px 0; grid-template-columns: 1fr auto 1fr; align-items: center; }
      .nav-spacer { width: 48px; height: 48px; }
      .brand { width: auto; }
      .brand-mark { width: 112px; height: 64px; border-radius: 16px; padding: 0; }
      .menu-toggle { width: 50px; height: 50px; border-radius: 16px; }
      .main-nav { min-width: 220px; max-width: calc(100vw - 32px); }
      .hero-copy,
      .card,
      .cta-wrap { padding: 22px; }
      .hero-points,
      .screen-stack { grid-template-columns: 1fr; }
      .hero { padding-top: 24px; }
      .section { padding: 20px 0; }
      .hero .lead,
      .section-title p,
      .card p { font-size: .98rem; }
      .btn { width: 100%; }
    }


    .brand-mark img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      object-position: center center;
      transform: none;
    }
