:root {
      color-scheme: light dark;
      --bg: #ffffff;
      --surface: #ffffff;
      --text: #1d1d1f;
      --muted: #6e6e73;
      --line: rgba(0, 0, 0, 0.08);
      --accent: #0a84ff;
      --accent-soft: rgba(10, 132, 255, 0.12);
      --shadow-soft: 0 18px 40px rgba(15, 15, 20, 0.08);
      --shadow-card: 0 10px 24px rgba(15, 15, 20, 0.04);
      --section-surface: rgba(255, 255, 255, 0.84);
      --section-surface-alt: rgba(250, 250, 252, 0.8);
      --section-surface-dark: rgba(11, 11, 12, 0.72);
    }
    @media (prefers-color-scheme: dark) {
      :root {
        --bg: #1c1c1e;
        --surface: #2c2c2e;
        --text: #f5f5f7;
        --muted: #a1a1a6;
        --line: rgba(255, 255, 255, 0.12);
        --accent: #0a84ff;
        --accent-soft: rgba(10, 132, 255, 0.2);
        --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.35);
        --shadow-card: 0 10px 24px rgba(0, 0, 0, 0.3);
        --section-surface: rgba(28, 28, 30, 0.78);
        --section-surface-alt: rgba(34, 34, 36, 0.74);
        --section-surface-dark: rgba(11, 11, 12, 0.64);
      }
    }
    body.hero-theme {
      --bg: #0b0b0c;
      --surface: rgba(15, 15, 20, 0.6);
      --text: #f5f5f7;
      --muted: rgba(245, 245, 247, 0.72);
      --line: rgba(255, 255, 255, 0.12);
      --accent: #0a84ff;
      --accent-soft: rgba(10, 132, 255, 0.2);
      --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.35);
      --shadow-card: 0 10px 24px rgba(0, 0, 0, 0.3);
      --section-surface: rgba(11, 11, 12, 0.72);
      --section-surface-alt: rgba(11, 11, 12, 0.72);
      --section-surface-dark: rgba(11, 11, 12, 0.72);
    }
    body.hero-theme .section.dark {
      background: transparent;
      border-top: none;
    }
    body.hero-theme .section.page-hero {
      border-top: none;
    }
    body.hero-theme .section {
      border-top: none;
    }
    * {
      box-sizing: border-box;
    }
    body {
      margin: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, Helvetica, Arial, sans-serif;
      font-size: 16px;
      line-height: 1.6;
      background: #0b0b0c;
      color: var(--text);
    }
    a {
      color: inherit;
      text-decoration: none;
    }
    .page {
      display: flex;
      flex-direction: column;
      min-height: 100vh;
      position: relative;
      background: #0b0b0c;
    }
    .page::before {
      content: "";
      position: fixed;
      inset: 0;
      background-image: var(--page-bg-image);
      background-size: cover;
      background-position: center;
      opacity: 0.16;
      filter: brightness(0.85) saturate(0.95);
      pointer-events: none;
      z-index: 0;
    }
    .page::after {
      content: "";
      position: fixed;
      inset: 0;
      background:
        linear-gradient(
          180deg,
          rgba(11, 11, 12, var(--page-scrim-alpha, 0.62)),
          rgba(11, 11, 12, var(--page-scrim-alpha, 0.62))
        ),
        radial-gradient(120% 120% at 10% 0%, rgba(10, 132, 255, 0.12), transparent 60%);
      pointer-events: none;
      z-index: 0;
    }
    .page > * {
      position: relative;
      z-index: 1;
    }
    .hero-shell {
      position: relative;
      isolation: isolate;
      background: var(--hero-shell-base, #0b0b0c);
    }
    .hero-shell::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: var(--hero-shell-bg);
      background-size: cover;
      background-position: center;
      opacity: var(--hero-shell-opacity, 0.22);
      filter: saturate(1.05);
      pointer-events: none;
      z-index: 0;
    }
    .hero-shell > * {
      position: relative;
      z-index: 1;
    }
    .nav {
      padding: 14px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: 16px auto 0;
      width: calc(100% - 32px);
      position: sticky;
      top: 16px;
      z-index: 10;
      color: #f5f5f7;
      background: rgba(12, 12, 16, 0.45);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 999px;
      backdrop-filter: blur(16px) saturate(1.1);
      -webkit-backdrop-filter: blur(16px) saturate(1.1);
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    }
    .brand {
      font-weight: 600;
      letter-spacing: 0.02em;
    }
    .nav-links {
      display: flex;
      gap: 20px;
      font-size: 14px;
      color: rgba(245, 245, 247, 0.72);
      flex-wrap: wrap;
    }
    .nav-link {
      padding: 6px 12px;
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      color: rgba(245, 245, 247, 0.86);
      background: rgba(255, 255, 255, 0.04);
      transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    }
    .nav-link--icon {
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .nav-icon {
      display: none;
      width: 16px;
      height: 16px;
    }
    .nav-icon img {
      width: 16px;
      height: 16px;
      display: block;
      filter: brightness(0) invert(1);
      opacity: 0.9;
    }
    .nav-link:hover {
      color: #fff;
      border-color: rgba(255, 255, 255, 0.32);
      background: rgba(255, 255, 255, 0.08);
    }
    .page-content {
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .section {
      width: 100%;
      padding: 120px 24px;
      border-top: none;
      background: var(--section-surface);
    }
    .section.alt {
      background: var(--section-surface-dark);
      color: #f5f5f7;
    }
    .section.dark {
      background: var(--section-surface-dark);
      color: #f5f5f7;
    }
    .section.dark .lead {
      color: rgba(245, 245, 247, 0.78);
    }
    .section.dark .eyebrow {
      color: var(--accent);
    }
    .section-inner {
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
      position: relative;
      z-index: 1;
    }
    .hero {
      padding-top: 160px;
      padding-bottom: 140px;
      min-height: 65vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      isolation: isolate;
    }
    .hero .section-inner {
      position: relative;
      z-index: 1;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
      gap: 48px;
      align-items: center;
    }
    .hero-copy {
      display: grid;
      gap: 10px;
    }
    .hero-visual {
      display: grid;
      justify-items: end;
    }
    .hero-stack {
      display: grid;
      gap: 16px;
      width: 100%;
      max-width: 360px;
    }
    .hero-card {
      background: rgba(255, 255, 255, 0.06);
      border-radius: 18px;
      padding: 16px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
      color: #f5f5f7;
      display: grid;
      gap: 12px;
      position: relative;
      overflow: hidden;
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .hero-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 26px 64px rgba(0, 0, 0, 0.42);
    }
    .hero-card-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      position: relative;
      z-index: 1;
    }
    .hero-card-title {
      font-size: 14px;
      font-weight: 600;
      letter-spacing: -0.01em;
    }
    .hero-card-pill {
      font-size: 11px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      background: rgba(255, 255, 255, 0.08);
      color: rgba(245, 245, 247, 0.8);
      white-space: nowrap;
    }
    .hero-card-list {
      display: grid;
      gap: 10px;
      position: relative;
      z-index: 1;
    }
    .hero-card-row {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 10px;
      align-items: start;
      font-size: 13px;
      color: rgba(245, 245, 247, 0.7);
      line-height: 1.45;
    }
    .hero-card-dot {
      width: 6px;
      height: 6px;
      border-radius: 999px;
      background: #0a84ff;
      margin-top: 6px;
      box-shadow: 0 0 10px rgba(10, 132, 255, 0.6);
    }
    .ambient-card {
      position: relative;
      overflow: hidden;
    }
    .ambient-card::before {
      display: none;
    }
    .ambient-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(120% 120% at 0% 0%, rgba(10, 132, 255, 0.14), transparent 60%);
      opacity: 0.5;
      transition: opacity 0.25s ease;
      pointer-events: none;
    }
    .ambient-card > * {
      position: relative;
      z-index: 1;
    }
    .ambient-card:hover::after {
      opacity: 0.75;
    }
    .section.dark .ambient-card::after {
      background: radial-gradient(120% 120% at 0% 0%, rgba(255, 255, 255, 0.16), transparent 65%);
      opacity: 0.35;
    }
    .eyebrow {
      text-transform: uppercase;
      letter-spacing: 0.24em;
      font-size: 12px;
      font-weight: 500;
      color: rgba(245, 245, 247, 0.7);
    }
    h1 {
      font-size: clamp(32px, 5vw, 56px);
      line-height: 1.12;
      margin: 0;
      font-weight: 600;
      letter-spacing: -0.01em;
    }
    h2 {
      font-size: clamp(24px, 3.2vw, 36px);
      line-height: 1.2;
      margin: 0 0 16px;
      font-weight: 600;
      letter-spacing: -0.01em;
    }
    h3 {
      font-size: 18px;
      line-height: 1.25;
      margin: 0;
      font-weight: 600;
    }
    p {
      margin: 0;
      color: var(--muted);
    }
    .lead {
      font-size: 19px;
      color: var(--muted);
      letter-spacing: -0.01em;
      max-width: 680px;
    }
    .button {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 12px 22px;
      border-radius: 14px;
      font-weight: 600;
      border: 1px solid transparent;
      cursor: pointer;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .button.primary {
      background: linear-gradient(180deg, #1a90ff 0%, #0a84ff 100%);
      color: #fff;
      box-shadow: 0 18px 36px rgba(10, 132, 255, 0.3);
    }
    .button.secondary {
      background: rgba(255, 255, 255, 0.08);
      color: #f5f5f7;
      border-color: rgba(255, 255, 255, 0.18);
    }
    .button:hover {
      transform: translateY(-1px);
    }
    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }
    .trust-block {
      margin-top: 48px;
      display: grid;
      gap: 20px;
    }
    .trust-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
      gap: 32px;
      align-items: center;
    }
    .trust-media {
      display: grid;
      gap: 12px;
    }
    .trust-frame {
      position: relative;
      overflow: hidden;
      border-radius: 24px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      background: rgba(255, 255, 255, 0.06);
      box-shadow: 0 26px 50px rgba(0, 0, 0, 0.45);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
    }
    .trust-frame::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(11, 11, 12, 0) 40%, rgba(11, 11, 12, 0.45));
      pointer-events: none;
    }
    .trust-frame img {
      width: 100%;
      display: block;
      filter: saturate(0.92) contrast(1.05);
    }
    .trust-caption {
      font-size: 13px;
      color: rgba(245, 245, 247, 0.7);
    }
    .signal-block {
      display: grid;
      gap: 20px;
    }
    .signal-grid {
      display: grid;
      gap: 20px;
    }
    .signal-line {
      height: 2px;
      width: 100%;
      background: linear-gradient(90deg, rgba(10, 132, 255, 0) 0%, rgba(10, 132, 255, 0.6) 50%, rgba(10, 132, 255, 0) 100%);
      position: relative;
      overflow: hidden;
      border-radius: 999px;
    }
    .signal-line::after {
      content: "";
      position: absolute;
      left: -30%;
      top: 0;
      height: 100%;
      width: 30%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.65), transparent);
      animation: signalPulse 5s ease-in-out infinite;
    }
    @keyframes signalPulse {
      0% { transform: translateX(0); opacity: 0; }
      30% { opacity: 1; }
      60% { opacity: 1; }
      100% { transform: translateX(330%); opacity: 0; }
    }
    .signal-cards {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
    }
    .signal-card {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 18px;
      padding: 18px;
      display: grid;
      gap: 8px;
      color: #f5f5f7;
      box-shadow: 0 22px 50px rgba(0, 0, 0, 0.36);
      position: relative;
      overflow: hidden;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .signal-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 26px 58px rgba(0, 0, 0, 0.4);
    }
    .signal-card > * {
      position: relative;
      z-index: 1;
    }
    .signal-card p {
      color: rgba(245, 245, 247, 0.72);
    }
    .footer-section {
      padding-top: 40px;
      padding-bottom: 64px;
    }
    .footer {
      width: 100%;
      margin-top: 32px;
      padding-top: 24px;
      color: var(--muted);
      font-size: 14px;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
      border-top: 1px solid var(--line);
    }
    .footer.footer--links-only {
      justify-content: flex-start;
    }
    .footer a {
      color: inherit;
    }
    @media (max-width: 900px) {
      .nav {
        padding: 12px 16px;
        top: 12px;
        margin: 12px auto 0;
      }
      .section {
        padding: 96px 16px;
      }
      .hero {
        padding-top: 140px;
        padding-bottom: 120px;
      }
      .hero-grid {
        grid-template-columns: 1fr;
      }
      .hero-visual {
        justify-items: start;
      }
      .hero-stack {
        max-width: 100%;
      }
      .trust-grid {
        grid-template-columns: 1fr;
      }
      .signal-cards {
        grid-template-columns: 1fr;
      }
    }
    @media (max-width: 600px) {
      .nav-link--icon {
        padding: 8px 10px;
      }
      .nav-link--icon .nav-label {
        display: none;
      }
      .nav-link--icon .nav-icon {
        display: inline-flex;
      }
    }
