    :root {
      --bg: #f5f7fb;
      --bg-soft: #eef2ff;
      --bg-card: #ffffff;
      --bg-dark: #0f172a;
      --accent: #DC2626;
      --accent-soft: rgba(220,38,38,0.14);
      --accent-dark: #991B1B;
      --ink: #0f172a;
      --ink-soft: #475569;
      --ink-muted: #94a3b8;
      --border: #e2e8f0;
      --border-strong: #cbd5f5;
      --mono: 'DM Mono', monospace;
      --th: 'Prompt', sans-serif;
      --display: 'Space Grotesk', 'Prompt', sans-serif;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--th);
      background: var(--bg);
      color: var(--ink);
      -webkit-font-smoothing: antialiased;
      min-height: 100vh;
    }

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

    .noise {
      position: fixed;
      inset: 0;
      pointer-events: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 300'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.8' numOctaves='3'/%3E%3C/filter%3E%3Crect width='600' height='300' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
      z-index: 1;
    }

    .wrap {
      position: relative;
      z-index: 2;
    }

    header.nav {
      position: sticky;
      top: 0;
      z-index: 20;
      backdrop-filter: saturate(1.2) blur(14px);
      background: rgba(245,247,251,0.92);
      border-bottom: 1px solid rgba(148,163,184,0.2);
    }
    .nav-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 16px clamp(20px, 5vw, 48px);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 600;
      letter-spacing: -0.4px;
    }
    .brand img {
      width: 36px;
      height: 36px;
      border-radius: 12px;
      box-shadow: 0 8px 24px rgba(15,23,42,0.2);
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 20px;
      font-size: 14px;
      color: var(--ink-soft);
    }
    nav ul a { padding: 8px 0; position: relative; }
    nav ul a::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 2px;
      background: var(--accent);
      transition: width 0.25s;
    }
    nav ul a:hover::after { width: 100%; }

    .nav-cta {
      margin-left: auto;
      display: flex;
      gap: 12px;
      align-items: center;
      font-size: 14px;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 12px 22px;
      border-radius: 999px;
      border: 1px solid transparent;
      font-weight: 600;
      transition: all 0.25s ease;
    }
    .btn-outline {
      border-color: var(--border);
      color: var(--ink);
      background: transparent;
    }
    .btn-outline:hover { border-color: var(--ink); }
    .btn-accent {
      background: var(--accent);
      color: #fff;
      box-shadow: 0 15px 40px rgba(220,38,38,0.35);
    }
    .btn-accent:hover { background: var(--accent-dark); }

    main { position: relative; }

    .hero {
      padding: 80px clamp(20px, 5vw, 64px) 60px;
      max-width: 1280px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 60px;
      align-items: center;
    }

    .eyebrow {
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: 0.3em;
      color: var(--accent);
      text-transform: uppercase;
      margin-bottom: 18px;
    }

    .hero h1 {
      font-family: var(--display);
      font-size: clamp(40px, 5vw, 62px);
      line-height: 1.1;
      letter-spacing: -0.03em;
      margin-bottom: 24px;
    }
    .hero h1 span { color: var(--accent); }

    .hero p {
      font-size: 18px;
      line-height: 1.7;
      color: var(--ink-soft);
      margin-bottom: 32px;
      max-width: 520px;
    }

    .hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 36px; }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
      gap: 16px;
    }
    .stat {
      padding: 16px 18px;
      border: 1px solid var(--border);
      border-radius: 16px;
      background: rgba(255,255,255,0.9);
    }
    .stat strong {
      display: block;
      font-size: 24px;
      font-weight: 600;
    }
    .stat span {
      font-size: 13px;
      color: var(--ink-muted);
    }

    .hero-card {
      position: relative;
      border-radius: 28px;
      padding: 32px;
      background: radial-gradient(circle at 20% 20%, rgba(220,38,38,0.35), transparent 65%), var(--bg-dark);
      color: #fff;
      box-shadow: 0 40px 80px rgba(15,23,42,0.35);
      overflow: hidden;
    }
    .hero-card::after {
      content: '';
      position: absolute;
      inset: 16px;
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 24px;
      pointer-events: none;
    }
    .hero-card h3 {
      font-size: 18px;
      margin-bottom: 18px;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.6);
    }
    .timeline {
      display: flex;
      flex-direction: column;
      gap: 18px;
    }
    .time-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 16px;
      border-radius: 18px;
      background: rgba(15,23,42,0.65);
      border: 1px solid rgba(255,255,255,0.08);
    }
    .time-row strong { font-size: 15px; }
    .time-row small { color: rgba(255,255,255,0.7); font-size: 12px; display: block; }
    .pill {
      font-family: var(--mono);
      font-size: 11px;
      padding: 6px 12px;
      border-radius: 999px;
      background: rgba(220,38,38,0.18);
      border: 1px solid rgba(220,38,38,0.4);
    }

    .trust {
      max-width: 1100px;
      margin: 0 auto;
      padding: 10px clamp(20px, 5vw, 48px) 60px;
      text-align: center;
      color: var(--ink-muted);
      font-size: 13px;
    }
    .trust-logos {
      margin-top: 16px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 36px;
      opacity: 0.8;
    }
    .trust-logos span { font-family: var(--mono); font-size: 14px; }

    section.section {
      max-width: 1200px;
      margin: 0 auto;
      padding: 80px clamp(20px, 5vw, 64px);
    }
    .section h2 {
      font-size: clamp(32px, 4vw, 46px);
      margin-bottom: 16px;
      letter-spacing: -0.02em;
    }
    .section > p {
      max-width: 620px;
      color: var(--ink-soft);
      line-height: 1.7;
      margin-bottom: 36px;
    }

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 24px;
    }
    .feature {
      padding: 32px 28px;
      background: var(--bg-card);
      border-radius: 24px;
      border: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      gap: 16px;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .feature:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    }
    .feature-icon {
      width: 56px;
      height: 56px;
      border-radius: 16px;
      background: linear-gradient(135deg, var(--accent-soft), rgba(220,38,38,0.06));
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent);
    }
    .feature-icon svg { width: 28px; height: 28px; }
    .feature h3 { font-size: 20px; font-weight: 700; letter-spacing: -0.01em; }
    .feature p { color: var(--ink-soft); line-height: 1.7; font-size: 15px; }

    .automation {
      background: var(--bg-dark);
      color: #fff;
      border-radius: 36px;
      padding: 60px;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
    }
    .automation h2 { color: #fff; }
    .automation-steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 24px;
      margin-top: 40px;
    }
    .step {
      padding: 24px;
      border-radius: 24px;
      background: rgba(15,23,42,0.55);
      border: 1px solid rgba(255,255,255,0.08);
    }
    .step span {
      font-family: var(--mono);
      font-size: 12px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
    }
    .step h4 { margin: 14px 0; font-size: 20px; }
    .step p { color: rgba(255,255,255,0.7); line-height: 1.6; }

    .storage-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 40px;
      align-items: center;
    }
    .storage-card {
      padding: 32px;
      border-radius: 28px;
      background: #fff;
      border: 1px solid var(--border-strong);
    }
    .storage-card ul { list-style: none; margin-top: 20px; display: flex; flex-direction: column; gap: 14px; }
    .storage-card li { display: flex; align-items: center; gap: 12px; color: var(--ink-soft); }
    .badge {
      padding: 6px 14px;
      border-radius: 999px;
      background: var(--accent-soft);
      color: var(--accent);
      font-size: 13px;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .metrics-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 24px;
    }
    .metric {
      background: #fff;
      border-radius: 22px;
      padding: 30px;
      border: 1px solid var(--border);
    }
    .metric strong { font-size: 36px; display: block; margin-bottom: 4px; }
    .metric p { color: var(--ink-soft); font-size: 14px; }

    .cta-panel {
      padding: 50px;
      border-radius: 32px;
      background: linear-gradient(120deg, #0f172a, #1e1b4b 45%, #432371);
      color: #fff;
      text-align: center;
      box-shadow: 0 40px 70px rgba(30,27,75,0.35);
    }
    .cta-panel p { color: rgba(255,255,255,0.78); margin: 20px auto; max-width: 560px; }

    .faq {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .faq-item { border: 1px solid var(--border); border-radius: 18px; background: #fff; overflow: hidden; }
    .faq-head {
      padding: 18px 22px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
    }
    .faq-head h4 { font-size: 16px; }
    .faq-body {
      padding: 0 22px 18px;
      color: var(--ink-soft);
      line-height: 1.6;
      display: none;
    }
    .faq-item.active .faq-body { display: block; }

    footer {
      border-top: 1px solid rgba(148,163,184,0.3);
      margin-top: 60px;
      padding: 24px clamp(20px, 5vw, 64px) 40px;
      background: rgba(255,255,255,0.6);
    }
    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 16px;
      font-size: 14px;
      color: var(--ink-soft);
    }

    @media (max-width: 900px) {
      .nav-inner { flex-wrap: wrap; }
      nav ul { width: 100%; justify-content: center; flex-wrap: wrap; }
      .nav-cta { width: 100%; justify-content: center; }
      .automation { padding: 40px 28px; border-radius: 26px; }
    }

    @media (max-width: 540px) {
      .hero { padding-top: 50px; }
      .hero-card { padding: 24px; }
      .cta-panel { padding: 36px; }
    }

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