: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;
      background: #0b0b0c;
      color: var(--text);
      line-height: 1.6;
    }
    p {
      margin: 0 0 16px;
    }
    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: 20px;
      line-height: 1.3;
      margin: 0 0 12px;
      font-weight: 600;
    }
    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, 0.62), rgba(11, 11, 12, 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;
    }
    .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);
    }
    .section {
      width: 100%;
      padding: 140px 24px;
      border-top: 1px solid var(--line);
      background: var(--section-surface);
    }
    .page-hero {
      padding-top: 68px;
      padding-bottom: 68px;
    }
    .section.alt {
      background: var(--section-surface-alt);
    }
    .section.dark {
      background: var(--section-surface-dark);
      color: #f5f5f7;
      border-top: none;
    }
    .section.dark .muted {
      color: rgba(245, 245, 247, 0.72);
    }
    .section.dark .eyebrow {
      color: var(--accent);
    }
    .section.dark .button.secondary {
      background: transparent;
      border-color: rgba(255, 255, 255, 0.18);
      color: #f5f5f7;
      box-shadow: none;
    }
    .section.dark .proof-row span {
      color: rgba(245, 245, 247, 0.6);
    }
    .section.dark .feature-card {
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(255, 255, 255, 0.16);
      color: #f5f5f7;
    }
    .section.dark .feature-card .muted {
      color: rgba(245, 245, 247, 0.72);
    }
    .section.dark .slider-btn {
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(255, 255, 255, 0.2);
    }
    .section.media {
      position: relative;
      overflow: hidden;
    }
    .section.media::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: var(--media-image);
      background-size: cover;
      background-position: center;
      opacity: 0.12;
      filter: brightness(0.72) saturate(0.85);
    }
    .section.media::after {
      display: none;
    }
    .section.media .section-inner::after {
      display: none;
    }
    .section.media .section-inner {
      position: relative;
      z-index: 1;
    }
    .section-inner {
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
    }
    .section-inner {
      position: relative;
      z-index: 1;
    }
    .hero {
      padding-top: 160px;
      padding-bottom: 140px;
      border-top: none;
      min-height: 65vh;
      display: flex;
      align-items: center;
    }
    .hero .section-inner {
      max-width: 1100px;
      text-align: left;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
      gap: 56px;
      align-items: center;
    }
    .hero-copy {
      display: grid;
      gap: 8px;
    }
    .hero-visual {
      display: grid;
      gap: 18px;
      justify-items: end;
    }
    .hero-blob {
      display: none;
    }
    .hero h1 {
      font-size: clamp(36px, 5vw, 64px);
      line-height: 1.08;
      margin: 0 0 22px;
      font-weight: 600;
      letter-spacing: -0.01em;
    }
    .hero p {
      font-size: 20px;
      line-height: 1.55;
      color: rgba(245, 245, 247, 0.78);
      letter-spacing: -0.01em;
      max-width: 720px;
      margin: 0 0 36px;
    }
    .hero-solution {
      margin-top: 48px;
      display: grid;
      gap: 16px;
    }
    .hero-solution .lead {
      margin-bottom: 12px;
    }
    .trust-block {
      margin-top: 56px;
      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.14);
      background: rgba(255, 255, 255, 0.04);
      box-shadow: 0 26px 50px rgba(0, 0, 0, 0.45);
    }
    .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 {
      margin-top: 56px;
      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(3, minmax(0, 1fr));
      gap: 16px;
    }
    .signal-card {
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 18px;
      padding: 16px;
      display: grid;
      gap: 8px;
      color: #f5f5f7;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      min-height: 140px;
      text-decoration: none;
      cursor: pointer;
    }
    .signal-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
    }
    .signal-card img {
      width: 22px;
      height: 22px;
      opacity: 0.9;
    }
    .signal-icon {
      width: 22px;
      height: 22px;
      display: inline-block;
      background: var(--accent);
      mask: var(--icon) no-repeat center / contain;
      -webkit-mask: var(--icon) no-repeat center / contain;
    }
    .signal-card h3 {
      margin: 0;
      font-size: 17px;
      font-weight: 600;
    }
    .signal-card p {
      margin: 0;
      color: rgba(245, 245, 247, 0.7);
      font-size: 14px;
    }
    .access-request {
      margin-top: 64px;
      display: grid;
      gap: 20px;
    }
    .access-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
      gap: 32px;
      align-items: start;
    }
    .form-card {
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 24px;
      padding: 24px;
      display: grid;
      gap: 16px;
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    }
    .form-card form {
      display: grid;
      gap: 12px;
    }
    .form-field {
      display: grid;
      gap: 6px;
    }
    .form-field label {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: rgba(245, 245, 247, 0.68);
    }
    .form-field input,
    .form-field select,
    .form-field textarea {
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.22);
      border-radius: 14px;
      padding: 12px 14px;
      font-size: 15px;
      font-family: inherit;
      color: #f5f5f7;
    }
    .form-field input::placeholder,
    .form-field textarea::placeholder {
      color: rgba(245, 245, 247, 0.45);
    }
    .form-field textarea {
      min-height: 96px;
      resize: vertical;
    }
    .form-field input:focus,
    .form-field select:focus,
    .form-field textarea:focus {
      outline: none;
      border-color: rgba(10, 132, 255, 0.6);
      box-shadow: 0 0 0 3px rgba(10, 132, 255, 0.2);
    }
    .form-hint {
      font-size: 13px;
      color: rgba(245, 245, 247, 0.6);
      margin: 0;
    }
    .form-status {
      border-radius: 14px;
      padding: 12px 14px;
      font-size: 14px;
      border: 1px solid transparent;
    }
    .form-status.is-success {
      border-color: rgba(10, 132, 255, 0.35);
      background: rgba(10, 132, 255, 0.18);
      color: #f5f5f7;
    }
    .form-status.is-error {
      border-color: rgba(255, 69, 58, 0.4);
      background: rgba(255, 69, 58, 0.18);
      color: #f5f5f7;
    }
    .form-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
    }
    .eyebrow {
      text-transform: uppercase;
      letter-spacing: 0.24em;
      font-size: 12px;
      font-weight: 500;
      color: var(--muted);
      margin-bottom: 16px;
    }
    .lead {
      font-size: 19px;
      color: var(--muted);
      letter-spacing: -0.01em;
      max-width: 720px;
      margin: 0 0 36px;
    }
    .section.dark .lead {
      color: rgba(245, 245, 247, 0.78);
    }
    .ui-stack {
      display: grid;
      gap: 14px;
      width: 100%;
      max-width: 360px;
    }
    .ui-card {
      background: rgba(255, 255, 255, 0.92);
      border-radius: 18px;
      padding: 16px;
      border: 1px solid rgba(255, 255, 255, 0.4);
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
      color: #1d1d1f;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      position: relative;
      overflow: hidden;
    }
    .ui-card.interactive::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(
          240px circle at var(--mx, 50%) var(--my, 50%),
          rgba(255, 255, 255, 0.35),
          transparent 55%
        );
      opacity: 0;
      transition: opacity 0.25s ease;
    }
    .ui-card.interactive:hover::before {
      opacity: 1;
    }
    .ui-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 22px 48px rgba(0, 0, 0, 0.22);
    }
    .ui-card-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 12px;
    }
    .ui-title {
      font-size: 14px;
      font-weight: 600;
    }
    .ui-pill {
      font-size: 11px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #1d1d1f;
      background: rgba(10, 132, 255, 0.12);
      padding: 4px 8px;
      border-radius: 999px;
    }
    .ui-list {
      display: grid;
      gap: 10px;
    }
    .ui-row {
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 10px;
      align-items: start;
    }
    .ui-dot {
      width: 6px;
      height: 6px;
      border-radius: 999px;
      background: #0a84ff;
      margin-top: 6px;
    }
    .ui-row-title {
      font-size: 13px;
      font-weight: 600;
    }
    .ui-row-meta {
      font-size: 12px;
      color: #6e6e73;
    }
    .ui-badge {
      font-size: 11px;
      color: #1d1d1f;
      border: 1px solid rgba(0, 0, 0, 0.08);
      padding: 4px 8px;
      border-radius: 999px;
      background: rgba(0, 0, 0, 0.02);
    }
    .ui-preview {
      border-radius: 22px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.06);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    }
    .section.alt .ui-preview {
      border-color: var(--line);
      background: var(--surface);
      box-shadow: var(--shadow-soft);
    }
    .ui-preview img {
      width: 100%;
      display: block;
    }
    .ui-preview figcaption {
      padding: 14px 18px 16px;
      font-size: 13px;
      color: var(--muted);
    }
    .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::before {
      opacity: 0.14;
    }
    .ambient-card:hover::after {
      opacity: 0.75;
    }
    .section.dark .ambient-card::before {
      opacity: 0.12;
    }
    .section.dark .ambient-card::after {
      background: radial-gradient(120% 120% at 0% 0%, rgba(255, 255, 255, 0.16), transparent 65%);
      opacity: 0.35;
    }
    .quiet-list {
      list-style: none;
      padding: 0;
      margin: 24px 0 0;
      display: grid;
      gap: 10px;
    }
    .quiet-list li {
      display: flex;
      gap: 10px;
      align-items: flex-start;
    }
    .quiet-list li::before {
      content: "";
      width: 6px;
      height: 6px;
      margin-top: 8px;
      border-radius: 999px;
      background: var(--muted);
    }
    .actions {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      justify-content: flex-start;
    }
    .button {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 12px 22px;
      border-radius: 14px;
      font-weight: 600;
      font-size: 15px;
      border: 1px solid transparent;
      transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    }
    .button.primary {
      background: linear-gradient(180deg, #1a90ff 0%, var(--accent) 100%);
      color: #fff;
      box-shadow: 0 10px 24px rgba(10, 132, 255, 0.24);
      border-color: rgba(10, 132, 255, 0.35);
    }
    .button.primary:hover {
      box-shadow: 0 14px 28px rgba(10, 132, 255, 0.28);
      transform: translateY(-1px);
    }
    .button.primary:active,
    .button.secondary:active {
      transform: translateY(0);
    }
    .button.secondary {
      background: transparent;
      border-color: var(--line);
      color: var(--text);
    }
    .button.secondary {
      background: var(--surface);
      box-shadow: var(--shadow-card);
    }
    .button.secondary:hover {
      transform: translateY(-1px);
    }
    .button.secondary:hover {
      border-color: color-mix(in srgb, var(--color-text) 12%, var(--line));
    }
    .grid-two {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 56px;
      align-items: center;
    }
    .muted {
      color: var(--muted);
    }
    .photo {
      width: 100%;
      border-radius: 24px;
      border: 1px solid var(--line);
      display: block;
      background: var(--surface);
      box-shadow: var(--shadow-soft);
      object-fit: cover;
      aspect-ratio: 16 / 10;
    }
    .photo.mini {
      border-radius: 20px;
      aspect-ratio: 4 / 3;
    }
    .image-row {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
      margin-top: 16px;
    }
    .pillars {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 24px;
      margin-top: 36px;
    }
    .pillar {
      padding: 22px;
      border-radius: 16px;
      background: var(--surface);
      border: 1px solid var(--line);
      box-shadow: var(--shadow-card);
    }
    .pillar img {
      width: 20px;
      height: 20px;
      margin-bottom: 12px;
      opacity: 0.7;
    }
    .pillar strong {
      display: block;
      font-size: 17px;
      margin-bottom: 8px;
    }
    .feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 24px;
      margin-top: 40px;
    }
    .feature-card {
      padding: 24px;
      border-radius: 18px;
      background: var(--surface);
      border: 1px solid var(--line);
      box-shadow: var(--shadow-card);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .feature-card:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-soft);
    }
    .feature-card img {
      width: 26px;
      height: 26px;
      margin-bottom: 14px;
      opacity: 0.9;
      filter: brightness(0) saturate(100%) invert(54%) sepia(65%) saturate(4600%) hue-rotate(199deg) brightness(100%) contrast(101%);
    }
    .feature-card h3 {
      font-size: 18px;
      letter-spacing: -0.01em;
      margin: 0 0 8px;
    }
    .feature-card .muted {
      font-size: 14px;
      margin: 0;
    }
    .stat-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
      margin-top: 32px;
    }
    .stat-card {
      padding: 20px;
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.06);
    }
    .slider {
      position: relative;
      overflow: hidden;
      margin-top: 36px;
      touch-action: pan-y;
    }
    .slider-track {
      display: flex;
      gap: 16px;
      transition: transform 0.4s ease;
      will-change: transform;
      cursor: grab;
      user-select: none;
    }
    .slider-track.dragging {
      cursor: grabbing;
      transition: none;
    }
    .slider-slide {
      min-width: min(320px, 80vw);
      flex: 0 0 auto;
    }
    .slider-controls {
      display: flex;
      gap: 12px;
      margin-top: 16px;
    }
    .slider-btn {
      width: 40px;
      height: 40px;
      border-radius: 999px;
      border: 1px solid var(--line);
      background: var(--surface);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      box-shadow: var(--shadow-card);
      cursor: pointer;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .slider-btn:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-soft);
    }
    .proof-row {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 16px;
      margin-top: 28px;
    }
    .proof-row span {
      font-size: 13px;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.18em;
    }
    .cta {
      background: var(--surface);
      border-radius: 22px;
      padding: 44px;
      border: 1px solid var(--line);
      display: grid;
      gap: 24px;
      box-shadow: var(--shadow-soft);
      text-align: center;
      color: var(--text);
    }
    .cta-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
      gap: 32px;
      text-align: left;
    }
    .cta-panel {
      border-radius: 18px;
      border: 1px solid rgba(255, 255, 255, 0.14);
      background: rgba(255, 255, 255, 0.06);
      padding: 24px;
      display: grid;
      gap: 16px;
      box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
    }
    .section.dark .cta-panel {
      border-color: rgba(255, 255, 255, 0.18);
      background: rgba(255, 255, 255, 0.04);
    }
    .cta-actions {
      display: grid;
      gap: 12px;
    }
    .cta-actions .button {
      justify-content: center;
    }
    .cta-steps {
      display: grid;
      gap: 12px;
      margin-top: 20px;
    }
    .cta-step {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 12px;
      align-items: start;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 14px;
      padding: 12px 14px;
      background: rgba(255, 255, 255, 0.04);
    }
    .section.dark .cta-step {
      border-color: rgba(255, 255, 255, 0.16);
    }
    .cta-step .step-number {
      font-size: 12px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(245, 245, 247, 0.6);
    }
    .cta-note {
      font-size: 13px;
      color: rgba(245, 245, 247, 0.7);
    }
    .cta .muted,
    .cta .eyebrow {
      color: var(--muted);
    }
    .reveal,
    .reveal-item {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.25s ease, transform 0.25s ease;
      will-change: opacity, transform;
    }
    .reveal.is-visible,
    .reveal-item.is-visible {
      opacity: 1;
      transform: translateY(0);
    }
    @media (prefers-reduced-motion: reduce) {
      * {
        transition: none !important;
      }
      .reveal {
        opacity: 1;
        transform: none;
      }
    }
    .footer {
      width: 100%;
      margin-top: 48px;
      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) {
      .hero-grid {
        grid-template-columns: 1fr;
      }
      .hero-visual {
        justify-items: start;
      }
      .trust-grid {
        grid-template-columns: 1fr;
      }
      .signal-cards {
        grid-template-columns: 1fr;
      }
      .access-grid {
        grid-template-columns: 1fr;
      }
      .ui-stack {
        max-width: 100%;
      }
      .grid-two {
        grid-template-columns: 1fr;
      }
      .hero {
        padding-top: 78px;
        padding-bottom: 72px;
      }
      .section {
        padding: 112px 20px;
      }
      .hero-blob {
        top: -80px;
        width: 420px;
      }
      .cta-grid {
        grid-template-columns: 1fr;
      }
    }
    @media (max-width: 600px) {
      .nav {
        padding: 12px 16px;
        top: 12px;
        margin: 12px auto 0;
      }
      .nav-link--icon {
        padding: 8px 10px;
      }
      .nav-link--icon .nav-label {
        display: none;
      }
      .nav-link--icon .nav-icon {
        display: inline-flex;
      }
      .section {
        padding: 64px 16px;
      }
      .page-hero {
        padding-top: 32px;
        padding-bottom: 32px;
      }
      .cta {
        padding: 28px;
      }
    }
