:root {
      --bg: #05060a;
      --bg-alt: #0e1015;
      --panel: #12141b;
      --panel-soft: #161925;
      --border: rgba(255, 255, 255, 0.07);
      --border-strong: rgba(255, 255, 255, 0.16);
      --text: #ffffff;
      --text-dim: rgba(255, 255, 255, 0.65);
      --text-muted: rgba(255, 255, 255, 0.5);
      --accent: #4f8cff;
      --accent-soft: rgba(79, 140, 255, 0.2);
      --accent-strong: #78a6ff;
      --danger: #ff5c7a;
      --success: #3cd3a7;
      --radius-lg: 20px;
      --radius-md: 14px;
      --radius-pill: 999px;
      --shadow-soft: 0 30px 80px rgba(0, 0, 0, 0.7);
      --transition-fast: 160ms ease-out;
      --transition-mid: 220ms ease-out;
      --max-width: 1120px;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      background: radial-gradient(circle at top, #171c2b 0, #05060a 45%);
      color: var(--text);
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

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

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

    .page {
      min-height: 100vh;
      color: var(--text);
    }

    .container {
      width: 100%;
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 24px;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 20;
      backdrop-filter: blur(16px);
      background: linear-gradient(to bottom, rgba(5, 6, 10, 0.92), rgba(5, 6, 10, 0.75));
      border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 24px;
      max-width: var(--max-width);
      margin: 0 auto;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .brand-mark {
      width: 30px;
      height: 30px;
      border-radius: 12px;
      background: radial-gradient(circle at 20% 0, #7fb3ff 0, #4f8cff 40%, #7c4dff 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06), 0 16px 40px rgba(0, 0, 0, 0.9);
    }

    .brand-mark svg {
      width: 18px;
      height: 18px;
    }

    .brand-text-main {
      font-weight: 600;
      letter-spacing: 0.02em;
      font-size: 17px;
      display: flex;
      align-items: baseline;
      gap: 6px;
    }

    .brand-text-main span:first-child {
      text-transform: uppercase;
    }

    .brand-pill {
      font-size: 11px;
      padding: 2px 8px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      color: var(--text-muted);
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 24px;
      font-size: 14px;
      color: var(--text-dim);
    }

    .nav a {
      position: relative;
      padding: 4px 0;
    }

    .nav a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -4px;
      width: 0;
      height: 1px;
      background: var(--accent);
      transition: width var(--transition-fast);
    }

    .nav a:hover::after {
      width: 100%;
    }

    .nav-cta {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 8px 18px;
      border-radius: var(--radius-pill);
      font-size: 14px;
      font-weight: 500;
      border: 1px solid transparent;
      cursor: pointer;
      transition:
        background var(--transition-fast),
        color var(--transition-fast),
        border-color var(--transition-fast),
        transform var(--transition-fast),
        box-shadow var(--transition-fast);
      background: none;
      color: var(--text-dim);
    }

    .btn-ghost {
      border-color: rgba(255, 255, 255, 0.12);
    }

    .btn-ghost:hover {
      border-color: rgba(255, 255, 255, 0.25);
      color: var(--text);
      transform: translateY(-1px);
    }

    .btn-primary {
      background: linear-gradient(135deg, #4f8cff, #7b5dff);
      color: #ffffff;
      border-color: rgba(255, 255, 255, 0.2);
      box-shadow: 0 14px 40px rgba(79, 140, 255, 0.6);
    }

    .btn-primary:hover {
      background: linear-gradient(135deg, #689dff, #9074ff);
      box-shadow: 0 18px 55px rgba(79, 140, 255, 0.8);
      transform: translateY(-1px);
    }

    .btn-icon svg {
      width: 15px;
      height: 15px;
    }

    .hero {
      position: relative;
      padding: 80px 0 70px;
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: -30%;
      background:
        radial-gradient(circle at top, rgba(120, 166, 255, 0.16), transparent 60%),
        radial-gradient(circle at 10% 80%, rgba(79, 140, 255, 0.12), transparent 55%),
        radial-gradient(circle at 90% 80%, rgba(131, 88, 255, 0.14), transparent 55%);
      opacity: 0.8;
      z-index: -2;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at center, rgba(0, 0, 0, 0.45), transparent 70%);
      z-index: -1;
    }

    .hero-inner {
      max-width: 780px;
      margin: 0 auto;
      text-align: center;
    }

    .pill-bar {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 4px 10px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(10, 12, 18, 0.86);
      color: var(--text-muted);
      font-size: 11px;
      margin-bottom: 16px;
    }

    .pill-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--success);
      box-shadow: 0 0 0 4px rgba(60, 211, 167, 0.2);
    }

    .pill-label-strong {
      color: var(--accent-strong);
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      font-size: 10px;
    }

    .hero-title {
      font-size: clamp(36px, 5vw, 48px);
      line-height: 1.1;
      letter-spacing: -0.03em;
      margin: 0 0 18px;
    }

    .hero-title span.accent {
      background: linear-gradient(120deg, #78a6ff, #d4e0ff);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .hero-subtitle {
      margin: 0 auto 26px;
      max-width: 520px;
      color: var(--text-dim);
      font-size: 15px;
    }

    .hero-actions {
      display: flex;
      justify-content: center;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 26px;
    }

    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 24px;
      font-size: 12px;
      color: var(--text-muted);
    }

    .hero-meta span {
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .meta-dot {
      width: 4px;
      height: 4px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.38);
    }

    .hero-stats {
      margin-top: 38px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .stat-badge {
      min-width: 150px;
      padding: 10px 18px;
      border-radius: var(--radius-pill);
      background: rgba(7, 9, 13, 0.86);
      border: 1px solid rgba(255, 255, 255, 0.08);
      display: flex;
      align-items: baseline;
      gap: 8px;
      justify-content: center;
      font-size: 12px;
      color: var(--text-muted);
    }

    .stat-badge strong {
      font-size: 16px;
      color: #fff;
    }

    .trust-bar {
      padding: 24px 0 10px;
    }

    .trust-inner {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      padding: 16px 0;
    }

    .trust-label {
      font-size: 12px;
      color: var(--text-muted);
    }

    .trust-logos {
      display: flex;
      flex-wrap: wrap;
      gap: 18px;
      font-size: 13px;
      color: rgba(255, 255, 255, 0.55);
    }

    .trust-pill {
      padding: 6px 10px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(9, 11, 16, 0.9);
    }

    .section {
      padding: 72px 0 64px;
    }

    .section-header {
      margin-bottom: 30px;
      text-align: left;
      max-width: 640px;
    }

    .section-kicker {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--accent-strong);
      margin-bottom: 10px;
    }

    .section-title {
      font-size: 24px;
      margin: 0 0 10px;
      letter-spacing: -0.02em;
    }

    .section-description {
      font-size: 14px;
      color: var(--text-muted);
      margin: 0;
    }

    .cards-row {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 20px;
    }

    @media (max-width: 960px) {
      .cards-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 720px) {
      .cards-row {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .card {
      background: var(--panel);
      border-radius: var(--radius-lg);
      border: 1px solid var(--border);
      padding: 20px 18px 18px;
      box-shadow: 0 14px 35px rgba(0, 0, 0, 0.65);
      position: relative;
      overflow: hidden;
      transition:
        transform var(--transition-mid),
        border-color var(--transition-mid),
        box-shadow var(--transition-mid),
        background var(--transition-mid);
    }

    .card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at top left, rgba(79, 140, 255, 0.18), transparent 55%);
      opacity: 0;
      transition: opacity var(--transition-mid);
      pointer-events: none;
    }

    .card:hover {
      transform: translateY(-4px);
      border-color: var(--border-strong);
      box-shadow: 0 20px 55px rgba(0, 0, 0, 0.9);
      background: var(--panel-soft);
    }

    .card:hover::before {
      opacity: 1;
    }

    .card-header {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 12px;
    }

    .card-icon {
      width: 32px;
      height: 32px;
      border-radius: 12px;
      background: radial-gradient(circle at 20% 0, rgba(120, 166, 255, 1) 0, rgba(52, 92, 178, 1) 45%, rgba(10, 16, 36, 1) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.8);
    }

    .card-icon svg {
      width: 17px;
      height: 17px;
    }

    .card-title {
      font-size: 15px;
      font-weight: 500;
      margin: 0;
    }

    .card-body {
      font-size: 13px;
      color: var(--text-dim);
      margin-bottom: 12px;
    }

    .card-meta {
      font-size: 11px;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
    }

    .card-tag {
      padding: 4px 8px;
      border-radius: 999px;
      background: rgba(9, 12, 20, 0.9);
      border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .layout-split {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
      gap: 26px;
      align-items: stretch;
    }

    @media (max-width: 860px) {
      .layout-split {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .panel {
      border-radius: var(--radius-lg);
      border: 1px solid var(--border);
      background:
        radial-gradient(circle at top, rgba(255, 255, 255, 0.05), transparent 55%),
        #0c0f16;
      padding: 20px 20px 18px;
      box-shadow: var(--shadow-soft);
      position: relative;
      overflow: hidden;
    }

    .panel::after {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 120% 0, rgba(120, 166, 255, 0.14), transparent 60%);
      pointer-events: none;
    }

    .panel-title {
      font-size: 18px;
      margin: 0 0 10px;
      letter-spacing: -0.03em;
    }

    .panel-body {
      font-size: 14px;
      color: var(--text-dim);
      margin-bottom: 18px;
    }

    .feature-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 10px;
      font-size: 13px;
    }

    .feature-item {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      color: var(--text-dim);
    }

    .feature-bullet {
      margin-top: 4px;
      width: 16px;
      height: 16px;
      border-radius: 999px;
      background: rgba(60, 211, 167, 0.08);
      border: 1px solid rgba(60, 211, 167, 0.5);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .feature-bullet svg {
      width: 10px;
      height: 10px;
    }

    .mini-label {
      font-size: 11px;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.12em;
      margin-bottom: 6px;
    }

    .code-panel {
      background: #05070b;
      border-radius: var(--radius-md);
      border: 1px solid rgba(255, 255, 255, 0.1);
      padding: 10px 11px 12px;
      font-family: "JetBrains Mono", Menlo, Consolas, monospace;
      font-size: 11px;
      color: rgba(228, 234, 255, 0.9);
      position: relative;
      overflow: hidden;
    }

    .code-panel-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 6px;
      color: rgba(177, 188, 231, 0.8);
      font-size: 10px;
    }

    .code-dots {
      display: flex;
      gap: 5px;
      align-items: center;
    }

    .code-dot {
      width: 6px;
      height: 6px;
      border-radius: 999px;
    }

    .code-dot.red {
      background: #ff5f57;
    }

    .code-dot.yellow {
      background: #febc2e;
    }

    .code-dot.green {
      background: #28c840;
    }

    .code-line {
      white-space: pre;
      line-height: 1.45;
    }

    .code-muted {
      color: rgba(120, 135, 185, 0.8);
    }

    .code-key {
      color: #78a6ff;
    }

    .code-string {
      color: #ffd27e;
    }

    .code-number {
      color: #ff8ab5;
    }

    .code-comment {
      color: rgba(98, 115, 170, 0.85);
    }

    .steps-row {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    @media (max-width: 900px) {
      .steps-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 680px) {
      .steps-row {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .step {
      border-radius: var(--radius-lg);
      border: 1px dashed rgba(255, 255, 255, 0.15);
      background: rgba(12, 15, 24, 0.96);
      padding: 16px 16px 14px;
      font-size: 13px;
      color: var(--text-dim);
      position: relative;
      overflow: hidden;
    }

    .step-number {
      font-size: 11px;
      font-weight: 500;
      padding: 2px 8px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-bottom: 8px;
      background: rgba(8, 11, 18, 0.9);
      color: var(--text-muted);
    }

    .step-number span {
      width: 16px;
      height: 16px;
      border-radius: 999px;
      background: linear-gradient(135deg, #4f8cff, #7b5dff);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
      color: #fff;
    }

    .step-title {
      font-size: 14px;
      color: #fff;
      margin: 0 0 6px;
    }

    .badge-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 10px;
    }

    .badge {
      font-size: 11px;
      padding: 4px 8px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.14);
      color: var(--text-muted);
      background: rgba(8, 10, 15, 0.92);
    }

    .badge.badge-soft {
      border-color: rgba(79, 140, 255, 0.6);
      background: rgba(79, 140, 255, 0.14);
      color: #d4e0ff;
    }

    .cta-band {
      padding: 48px 24px 56px;
    }

    .cta-panel {
      max-width: var(--max-width);
      margin: 0 auto;
      border-radius: 24px;
      border: 1px solid var(--border-strong);
      background:
        radial-gradient(circle at top left, rgba(79, 140, 255, 0.22), transparent 55%),
        radial-gradient(circle at bottom right, rgba(57, 219, 178, 0.18), transparent 55%),
        #05070b;
      padding: 26px 24px 24px;
      display: grid;
      grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
      gap: 22px;
      align-items: center;
      box-shadow: 0 26px 80px rgba(0, 0, 0, 0.95);
      position: relative;
      overflow: hidden;
    }

    @media (max-width: 860px) {
      .cta-panel {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .cta-panel-main-title {
      font-size: 22px;
      margin: 0 0 8px;
      letter-spacing: -0.02em;
    }

    .cta-panel-text {
      font-size: 14px;
      color: var(--text-dim);
      margin: 0 0 18px;
      max-width: 460px;
    }

    .cta-panel-minilabel {
      font-size: 11px;
      color: rgba(219, 228, 255, 0.8);
      text-transform: uppercase;
      letter-spacing: 0.16em;
      margin-bottom: 6px;
    }

    .cta-panel-right {
      justify-self: flex-end;
      text-align: right;
      font-size: 12px;
      color: var(--text-muted);
    }

    @media (max-width: 860px) {
      .cta-panel-right {
        justify-self: flex-start;
        text-align: left;
      }
    }

    .cta-panel-metric {
      font-size: 20px;
      font-weight: 600;
      color: #fff;
    }

    .cta-panel-meter {
      margin-top: 8px;
      width: 100%;
      height: 7px;
      border-radius: 999px;
      background: rgba(7, 10, 18, 0.95);
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .cta-panel-meter-fill {
      height: 100%;
      width: 88%;
      background: linear-gradient(90deg, #3cd3a7, #4f8cff);
      box-shadow: 0 0 16px rgba(79, 140, 255, 0.9);
    }

    footer {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding: 26px 0 30px;
      font-size: 12px;
      color: var(--text-muted);
      background: #05060a;
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
      align-items: center;
    }

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

    .footer-links a {
      color: var(--text-muted);
    }

    .footer-links a:hover {
      color: #fff;
    }

    /* Reveal animations */

    .reveal {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity 420ms ease-out, transform 420ms ease-out;
      will-change: opacity, transform;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .delay-1 { transition-delay: 80ms; }
    .delay-2 { transition-delay: 160ms; }
    .delay-3 { transition-delay: 240ms; }
    .delay-4 { transition-delay: 320ms; }
    .delay-5 { transition-delay: 400ms; }

    @keyframes pulseGlow {
      0%   { box-shadow: 0 0 0 0 rgba(79, 140, 255, 0.55); }
      70%  { box-shadow: 0 0 0 10px rgba(79, 140, 255, 0); }
      100% { box-shadow: 0 0 0 0 rgba(79, 140, 255, 0); }
    }

    .pulse-glow {
      animation: pulseGlow 2200ms ease-out infinite;
    }

    @media (max-width: 640px) {
      .header-inner {
        padding-inline: 16px;
      }

      .nav {
        display: none;
      }

      .hero {
        padding-top: 60px;
      }

      .trust-inner {
        flex-direction: column;
        align-items: flex-start;
      }

      .cta-panel {
        padding: 20px 18px 18px;
      }

      .hero-title {
        font-size: 32px;
      }

      .hero-subtitle {
        font-size: 14px;
      }
    }
