
  :root {
    --ink: #060a12;
    --indigo: #1e3a8a;
    --blue: #3b6cf8;
    --blue-mid: #5585ff;
    --blue-light: #7ba3ff;
    --cyan: #22d3ee;
    --cyan-dim: rgba(34,211,238,0.15);
    --surface: #0b1320;
    --surface2: #111c30;
    --surface3: #172035;
    --border: rgba(59,108,248,0.15);
    --border-bright: rgba(59,108,248,0.32);
    --text: #dce8ff;
    --muted: #6e89b8;
    --white: #ffffff;
    --grad-primary: linear-gradient(135deg, #3b6cf8 0%, #22d3ee 100%);
    --grad-soft: linear-gradient(135deg, rgba(59,108,248,0.14) 0%, rgba(34,211,238,0.06) 100%);
    --glow-blue: 0 0 40px rgba(59,108,248,0.4);
    --glow-cyan: 0 0 40px rgba(34,211,238,0.3);
  }

  @font-face {
    font-family: 'AspektaVF';
    src: url('./AspektaVF.ttf') format('truetype');
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    background: var(--ink);
    color: var(--text);
    font-family: 'AspektaVF', sans-serif;
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
  }

  /* ── GRAIN OVERLAY ── */
  body::after {
    content: '';
    position: fixed; inset: 0; z-index: 9999; pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    opacity: 0.35;
  }

  /* ── SCROLLBAR ── */
  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: var(--ink); }
  ::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 4px; }

  /* ── CURSOR GLOW ── */
  .cursor-glow {
    position: fixed; width: 380px; height: 380px;
    border-radius: 50%; pointer-events: none; z-index: 9998;
    background: radial-gradient(circle, rgba(59,108,248,0.055) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: transform 0.05s linear;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 8px 80px;
    background: rgba(6,10,18,0.78);
    backdrop-filter: blur(28px) saturate(180%);
    border-bottom: 1px solid var(--border);
    transition: background 0.4s;
  }
  nav::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--blue-mid), var(--cyan), transparent);
    opacity: 0.3;
  }

  .nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
  
  .nav-logo-img {
    width: 100px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(91,43,224,0.45));
  }

  .nav-logo-ring {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--grad-primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    box-shadow: 0 0 12px rgba(59,108,248,0.5);
    animation: ring-breathe 3s ease-in-out infinite;
  }
  @keyframes ring-breathe {
    0%,100% { box-shadow: 0 0 12px rgba(59,108,248,0.5); }
    50%      { box-shadow: 0 0 22px rgba(34,211,238,0.7); }
  }
  .nav-logo-text {
    font-family: 'AspektaVF', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: var(--white);
    letter-spacing: -0.01em;
  }
  .nav-logo-text span { color: var(--blue-light); }

  .nav-cta {
    background: var(--grad-primary);
    color: #fff; font-family: 'AspektaVF', sans-serif; font-weight: 500;
    font-size: 14px; padding: 11px 26px; border-radius: 100px;
    text-decoration: none; border: none; cursor: pointer;
    transition: transform 0.3s cubic-bezier(.34,1.56,.64,1), box-shadow 0.3s;
    box-shadow: 0 0 24px rgba(59,108,248,0.35), inset 0 1px 0 rgba(255,255,255,0.15);
    position: relative; overflow: hidden;
  }
  .nav-cta::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, transparent 55%);
    opacity: 0; transition: opacity 0.3s;
  }
  .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(59,108,248,0.6), inset 0 1px 0 rgba(255,255,255,0.2); }
  .nav-cta:hover::before { opacity: 1; }
  .nav-cta:active { transform: translateY(0); }

  /* ── HERO ── */
  .hero {
    min-height: calc(100vh - 96px);
    display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, 520px);
    align-items: center; gap: 64px;
    padding: 140px 80px 80px;
    position: relative; overflow: hidden;
  }

  .hero-bg {
    position: absolute; inset: 0; pointer-events: none;
    background:
      radial-gradient(ellipse 55% 65% at 15% 55%, rgba(59,108,248,0.22) 0%, transparent 68%),
      radial-gradient(ellipse 35% 45% at 85% 15%, rgba(34,211,238,0.14) 0%, transparent 62%),
      radial-gradient(ellipse 25% 35% at 65% 85%, rgba(59,108,248,0.08) 0%, transparent 60%);
    animation: hero-orbs 14s ease-in-out infinite alternate;
  }
  @keyframes hero-orbs {
    0%   { opacity: 1; transform: scale(1); }
    100% { opacity: 0.72; transform: scale(1.07); }
  }

  .dot-grid {
    position: absolute; inset: 0; pointer-events: none;
    background-image: radial-gradient(rgba(59,108,248,0.28) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse 70% 70% at 25% 50%, black 0%, transparent 70%);
    animation: dot-drift 25s linear infinite;
  }
  @keyframes dot-drift {
    0%   { background-position: 0 0; }
    100% { background-position: 40px 40px; }
  }

  /* Floating scan line */
  .hero::before {
    content: ''; position: absolute;
    left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(34,211,238,0.3), transparent);
    animation: scan-line 8s linear infinite;
    pointer-events: none; z-index: 1;
  }
  @keyframes scan-line {
    0%   { top: 0%; opacity: 0; }
    5%   { opacity: 1; }
    95%  { opacity: 0.4; }
    100% { top: 100%; opacity: 0; }
  }

  /* Particles */
  .hero-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
  .particle {
    position: absolute; width: 2px; height: 2px;
    border-radius: 50%; animation: float-p linear infinite; opacity: 0;
    background: var(--blue-light);
  }
  .particle:nth-child(1)  { left:8%;  animation-duration:9s;  animation-delay:0s; }
  .particle:nth-child(2)  { left:22%; animation-duration:13s; animation-delay:2s; }
  .particle:nth-child(3)  { left:38%; animation-duration:10s; animation-delay:4s; background:var(--cyan); }
  .particle:nth-child(4)  { left:52%; animation-duration:15s; animation-delay:1s; }
  .particle:nth-child(5)  { left:68%; animation-duration:11s; animation-delay:3s; background:var(--cyan); }
  .particle:nth-child(6)  { left:82%; animation-duration:8s;  animation-delay:5s; }
  .particle:nth-child(7)  { left:14%; animation-duration:12s; animation-delay:6s; background:var(--cyan); }
  .particle:nth-child(8)  { left:58%; animation-duration:14s; animation-delay:0.5s; }
  @keyframes float-p {
    0%   { bottom: -10px; opacity: 0; }
    8%   { opacity: 0.7; }
    92%  { opacity: 0.3; }
    100% { bottom: 100%; opacity: 0; }
  }

  .hero-content { position: relative; z-index: 2; }

  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(59,108,248,0.1); border: 1px solid rgba(59,108,248,0.28);
    color: var(--blue-light); font-size: 12px; font-weight: 500;
    letter-spacing: 0.12em; text-transform: uppercase;
    padding: 8px 18px; border-radius: 100px; margin-bottom: 32px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 18px rgba(59,108,248,0.1), inset 0 1px 0 rgba(123,163,255,0.1);
    animation: eyebrow-in 0.9s cubic-bezier(.34,1.56,.64,1) both;
  }
  @keyframes eyebrow-in {
    from { opacity: 0; transform: translateY(-14px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .live-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 8px var(--cyan);
    animation: live 1.6s ease-in-out infinite;
  }
  @keyframes live { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.5);opacity:0.4} }

  h1 {
    font-family: 'AspektaVF', sans-serif;
    font-weight: 500;
    font-size: clamp(38px, 4.5vw, 60px); line-height: 1.12;
    color: var(--white); margin-bottom: 24px; letter-spacing: -0.025em;
    animation: h1-in 1s cubic-bezier(.22,1,.36,1) 0.15s both;
  }
  @keyframes h1-in {
    from { opacity: 0; transform: translateY(26px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  h1 em {
    font-family: 'IBM Plex Serif', serif;
    font-style: italic;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 18px rgba(34,211,238,0.35));
  }

  .hero-sub {
    font-size: 18px; color: var(--muted); max-width: 520px;
    margin-bottom: 44px; font-weight: 300; line-height: 1.78;
    animation: sub-in 1s cubic-bezier(.22,1,.36,1) 0.3s both;
  }
  @keyframes sub-in {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .availability-badge {
    display: inline-flex; align-items: center; gap: 12px;
    background: rgba(34,211,238,0.07);
    border: 1px solid rgba(34,211,238,0.22);
    border-radius: 12px; padding: 14px 22px; margin-bottom: 36px;
    backdrop-filter: blur(8px);
    box-shadow: 0 0 20px rgba(34,211,238,0.06), inset 0 1px 0 rgba(34,211,238,0.08);
    animation: badge-in 1s cubic-bezier(.22,1,.36,1) 0.45s both;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  @keyframes badge-in {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .availability-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(34,211,238,0.12), inset 0 1px 0 rgba(34,211,238,0.12);
  }
  .avail-icon { font-size: 22px; }
  .avail-text { font-size: 14px; color: var(--text); }
  .avail-text strong {
    background: var(--grad-primary);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500;
  }

  .hero-stats {
    display: flex; gap: 16px;
    animation: stats-in 1s cubic-bezier(.22,1,.36,1) 0.6s both;
  }
  @keyframes stats-in {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .stat-box {
    text-align: center;
    background: rgba(11,19,32,0.9);
    border: 1px solid var(--border);
    border-radius: 14px; padding: 20px 24px;
    backdrop-filter: blur(12px);
    transition: transform 0.35s cubic-bezier(.34,1.56,.64,1), box-shadow 0.3s, border-color 0.3s;
    position: relative; overflow: hidden;
  }
  .stat-box::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: var(--grad-primary); opacity: 0;
    transition: opacity 0.3s;
  }
  .stat-box:hover { transform: translateY(-5px); box-shadow: 0 14px 36px rgba(59,108,248,0.18); border-color: var(--border-bright); }
  .stat-box:hover::before { opacity: 1; }

  .stat-num {
    font-family: 'AspektaVF', sans-serif; font-size: 36px; font-weight: 500;
    color: var(--white); letter-spacing: -0.03em; line-height: 1;
  }
  .stat-num span {
    font-size: 22px;
    background: var(--grad-primary);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .stat-label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.09em; margin-top: 6px; }

  /* ── FORM CARD ── */
  .form-card {
    width: 100%;
    position: relative; z-index: 2;
    background: rgba(11,19,32,0.92);
    border: 1px solid rgba(59,108,248,0.22);
    border-radius: 24px; padding: 44px 38px;
    backdrop-filter: blur(24px);
    box-shadow:
      0 40px 100px rgba(0,0,0,0.6),
      0 0 0 1px rgba(59,108,248,0.06),
      inset 0 1px 0 rgba(123,163,255,0.08);
    animation: form-in 1.1s cubic-bezier(.22,1,.36,1) 0.2s both;
  }
  @keyframes form-in {
    from { opacity: 0; transform: translateY(32px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
  }
  .form-card::before {
    content: ''; position: absolute;
    top: -1px; left: 16px; right: 16px; height: 2px;
    background: var(--grad-primary);
    border-radius: 100px; filter: blur(0.5px);
  }
  .form-card::after {
    content: ''; position: absolute;
    top: -80px; right: -60px;
    width: 220px; height: 220px; border-radius: 50%;
    background: radial-gradient(circle, rgba(34,211,238,0.08) 0%, transparent 70%);
    pointer-events: none;
  }

  .form-card-header {
    display: flex; align-items: center; gap: 14px; margin-bottom: 28px;
    padding-bottom: 24px; border-bottom: 1px solid var(--border);
  }
  .form-card-icon {
    width: 46px; height: 46px; border-radius: 12px;
    background: var(--grad-primary);
    display: flex; align-items: center; justify-content: center; font-size: 20px;
    box-shadow: 0 4px 18px rgba(59,108,248,0.35);
    transition: transform 0.3s cubic-bezier(.34,1.56,.64,1), box-shadow 0.3s;
  }
  .form-card-icon:hover { transform: scale(1.08) rotate(-4deg); box-shadow: 0 6px 24px rgba(34,211,238,0.4); }

  .form-card-title {
    font-family: 'AspektaVF', sans-serif; font-size: 20px; font-weight: 500;
    color: var(--white); letter-spacing: -0.01em;
  }
  .form-card-sub { font-size: 13px; color: var(--muted); margin-top: 2px; line-height: 1.5; }

  .field { margin-bottom: 16px; }
  .field label {
    display: block; font-size: 11px; font-weight: 500; color: var(--muted);
    text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px;
  }
  .field input, .field select, .field textarea {
    width: 100%;
    background: rgba(17,28,48,0.85);
    border: 1px solid rgba(59,108,248,0.18);
    color: var(--text); font-family: 'AspektaVF', sans-serif; font-size: 15px;
    padding: 13px 16px; border-radius: 10px; outline: none;
    transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
    appearance: none;
    -webkit-appearance: none;
  }
  .field input::placeholder { color: rgba(110,137,184,0.45); }
  .field input:hover, .field select:hover { border-color: rgba(59,108,248,0.32); }
  .field input:focus, .field select:focus, .field textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(59,108,248,0.12), 0 0 16px rgba(59,108,248,0.08);
    background: rgba(23,32,53,0.95);
  }
  .field select { cursor: pointer; }
  .field select option { background: var(--surface2); color: var(--text); }
  .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

  .submit-btn {
    width: 100%; padding: 17px;
    background: var(--grad-primary);
    border: none; border-radius: 12px; color: #fff;
    font-family: 'AspektaVF', sans-serif; font-weight: 500; font-size: 16px;
    cursor: pointer; margin-top: 8px;
    transition: transform 0.3s cubic-bezier(.34,1.56,.64,1), box-shadow 0.3s;
    box-shadow: 0 8px 32px rgba(59,108,248,0.45);
    letter-spacing: 0.02em; position: relative; overflow: hidden;
  }
  .submit-btn::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, transparent 55%);
    opacity: 0; transition: opacity 0.3s;
  }
  .submit-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 44px rgba(34,211,238,0.4), 0 4px 16px rgba(59,108,248,0.4); }
  .submit-btn:hover::before { opacity: 1; }
  .submit-btn:active { transform: scale(0.98); }

  .form-note { text-align: center; font-size: 12px; color: var(--muted); margin-top: 14px; opacity: 0.75; }
  .trust-row { display: flex; justify-content: center; gap: 20px; margin-top: 18px; }
  .trust-item {
    font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 5px;
    transition: color 0.25s;
  }
  .trust-item:hover { color: var(--blue-light); }

  /* ── SECTION BASE ── */
  .section { padding: 100px 80px; position: relative; }
  .section-label {
    font-size: 11px; color: var(--blue-light); text-transform: uppercase;
    letter-spacing: 0.16em; font-weight: 500; margin-bottom: 16px;
    display: flex; align-items: center; gap: 10px;
  }
  .section-label::before {
    content: ''; display: inline-block; width: 24px; height: 1px;
    background: var(--blue-light); opacity: 0.55;
  }
  .section-title {
    font-family: 'AspektaVF', sans-serif; font-weight: 500;
    font-size: clamp(30px, 3.5vw, 48px); color: var(--white);
    line-height: 1.18; margin-bottom: 20px; letter-spacing: -0.025em;
  }
  .section-title em {
    font-family: 'IBM Plex Serif', serif;
    font-style: italic;
    background: var(--grad-primary);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .section-body { font-size: 17px; color: var(--muted); max-width: 580px; line-height: 1.78; }

  /* ── INDUSTRY CARDS ── */
  .ind-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px; margin-top: 60px;
  }
  .ind-card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 16px; padding: 28px 24px; text-align: center;
    transition: transform 0.35s cubic-bezier(.34,1.56,.64,1), box-shadow 0.3s, border-color 0.3s;
    position: relative; overflow: hidden;
  }
  .ind-card::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(59,108,248,0.07) 0%, transparent 60%);
    opacity: 0; transition: opacity 0.4s;
  }
  .ind-card::after {
    content: ''; position: absolute;
    bottom: 0; left: 0; right: 0; height: 2px;
    background: var(--grad-primary);
    opacity: 0; transition: opacity 0.4s;
  }
  .ind-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 48px rgba(59,108,248,0.18);
    border-color: rgba(59,108,248,0.38);
  }
  .ind-card:hover::before, .ind-card:hover::after { opacity: 1; }

  .ind-emoji {
    font-size: 36px; display: block; margin-bottom: 12px;
    transition: transform 0.3s cubic-bezier(.34,1.56,.64,1);
  }
  .ind-card:hover .ind-emoji { transform: scale(1.15) translateY(-2px); }

  .ind-card h4 {
    font-family: 'AspektaVF', sans-serif; font-size: 16px; font-weight: 500;
    color: var(--white); margin-bottom: 8px; letter-spacing: -0.01em;
  }
  .ind-card p { font-size: 13px; color: var(--muted); line-height: 1.65; }

  /* ── COMPARE SECTION ── */
  .compare-section {
    background: var(--surface); padding: 80px;
    position: relative; overflow: hidden;
  }
  .compare-section::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--blue-mid), var(--cyan), transparent);
    opacity: 0.28;
  }
  .compare-section::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--blue-mid), var(--cyan), transparent);
    opacity: 0.28;
  }

  .compare-inner { max-width: 860px; margin: 0 auto; }
  .compare-table { width: 100%; border-collapse: separate; border-spacing: 0; margin-top: 56px; }
  .compare-table th {
    padding: 16px 22px; font-family: 'AspektaVF', sans-serif;
    font-size: 13px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em;
  }
  .compare-table th:first-child { color: var(--muted); text-align: left; }
  .compare-table th:nth-child(2) {
    color: var(--muted); background: rgba(255,255,255,0.03);
    border-radius: 12px 12px 0 0;
    border: 1px solid rgba(255,255,255,0.06); border-bottom: none;
  }
  .compare-table th:nth-child(3) {
    color: var(--cyan); background: rgba(34,211,238,0.1);
    border-radius: 12px 12px 0 0;
    border: 1px solid rgba(34,211,238,0.22); border-bottom: none;
    position: relative;
  }
  .compare-table th:nth-child(3)::before {
    content: ''; position: absolute; top: -1px; left: 10px; right: 10px; height: 2px;
    background: var(--grad-primary); border-radius: 100px;
  }
  .compare-table td {
    padding: 15px 22px; font-size: 14px;
    border-top: 1px solid var(--border);
    transition: background 0.2s;
  }
  .compare-table tr:hover td { background: rgba(59,108,248,0.03); }
  .compare-table td:first-child { color: var(--muted); font-size: 13px; }
  .compare-table td:nth-child(2) {
    background: rgba(255,255,255,0.015); color: var(--muted); text-align: center;
    border-left: 1px solid rgba(255,255,255,0.05); border-right: 1px solid rgba(255,255,255,0.05);
  }
  .compare-table td:nth-child(3) {
    background: rgba(34,211,238,0.04); color: var(--text); text-align: center; font-weight: 500;
    border-left: 1px solid rgba(34,211,238,0.18); border-right: 1px solid rgba(34,211,238,0.18);
  }
  .compare-table tr:last-child td:nth-child(2) { border-radius: 0 0 12px 12px; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .compare-table tr:last-child td:nth-child(3) { border-radius: 0 0 12px 12px; border-bottom: 1px solid rgba(34,211,238,0.22); }
  .hi {
    color: var(--cyan); /* visible fallback when gradient-clip isn't supported */
    font-weight: 500 !important;
    font-family: 'IBM Plex Serif', serif; font-style: italic;
  }

  @supports ((-webkit-background-clip: text) and (-webkit-text-fill-color: transparent)) {
    .hi {
      background: var(--grad-primary);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      color: transparent;
    }
  }

  /* ── FEATURES BENTO ── */
  .features-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px; margin-top: 64px;
  }
  .f-card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 16px; padding: 30px 26px;
    transition: transform 0.35s cubic-bezier(.34,1.56,.64,1), border-color 0.3s, box-shadow 0.3s;
    position: relative; overflow: hidden;
  }
  .f-card::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(59,108,248,0.08) 0%, transparent 55%);
    opacity: 0; transition: opacity 0.4s;
  }
  .f-card::after {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: var(--grad-primary);
    opacity: 0; transition: opacity 0.4s;
    border-radius: 16px 16px 0 0;
  }
  .f-card:first-child { grid-column: span 2; }
  .f-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59,108,248,0.38);
    box-shadow: 0 20px 52px rgba(59,108,248,0.15);
  }
  .f-card:hover::before, .f-card:hover::after { opacity: 1; }

  .f-icon {
    font-size: 30px; margin-bottom: 16px; display: block;
    transition: transform 0.35s cubic-bezier(.34,1.56,.64,1);
  }
  .f-card:hover .f-icon { transform: scale(1.12) translateY(-2px); }

  .f-card h3 {
    font-family: 'AspektaVF', sans-serif; font-size: 19px; font-weight: 500;
    color: var(--white); margin-bottom: 10px; letter-spacing: -0.01em;
  }
  .f-card p { font-size: 14px; color: var(--muted); line-height: 1.72; }

  /* ── INDUSTRIES (second) surface ── */
  .section-surface {
    background: var(--surface);
    position: relative; overflow: hidden;
  }
  .section-surface::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--blue-mid), transparent);
    opacity: 0.25;
  }

  /* ── CTA BOTTOM ── */
  .cta-bottom {
    padding: 100px 80px; text-align: center; position: relative; overflow: hidden;
  }
  .cta-bottom::before {
    content: ''; position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 750px; height: 550px;
    background: radial-gradient(ellipse, rgba(59,108,248,0.16) 0%, rgba(34,211,238,0.06) 40%, transparent 68%);
    pointer-events: none;
    animation: cta-breathe 6s ease-in-out infinite alternate;
    z-index: 0;
  }
  @keyframes cta-breathe {
    0%   { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(1.14); opacity: 1; }
  }
  .cta-bottom::after {
    content: ''; position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(59,108,248,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(59,108,248,0.04) 1px, transparent 1px);
    background-size: 44px 44px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 65% 65% at 50% 50%, black 0%, transparent 75%);
  }

  /* Dot grid specifically for CTA */
  .cta-bottom .dot-grid {
    position: absolute; inset: 0; pointer-events: none; z-index: 0;
    background-image: radial-gradient(rgba(59,108,248,0.06) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.12;
    mask-image: none;
    animation: dot-drift 25s linear infinite;
  }

  .cta-bottom h2 {
    font-family: 'AspektaVF', sans-serif; font-weight: 500;
    font-size: clamp(30px, 3.5vw, 50px);
    color: var(--white); margin-bottom: 20px;
    position: relative; z-index: 1; letter-spacing: -0.025em; line-height: 1.2;
  }
  .cta-bottom p { font-size: 17px; color: var(--muted); margin-bottom: 40px; position: relative; z-index: 1; }
  .cta-btn {
    display: inline-block; padding: 18px 52px;
    background: var(--grad-primary);
    color: #fff; font-family: 'AspektaVF', sans-serif; font-weight: 500; font-size: 17px;
    border-radius: 100px; text-decoration: none;
    box-shadow: 0 12px 40px rgba(59,108,248,0.45), inset 0 1px 0 rgba(255,255,255,0.15);
    transition: transform 0.3s cubic-bezier(.34,1.56,.64,1), box-shadow 0.3s;
    position: relative; z-index: 1; overflow: hidden;
  }
  .cta-btn::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, transparent 55%);
    opacity: 0; transition: opacity 0.3s;
  }
  .cta-btn:hover { transform: translateY(-4px); box-shadow: 0 20px 56px rgba(59,108,248,0.55), 0 4px 16px rgba(34,211,238,0.25); }
  .cta-btn:hover::before { opacity: 1; }

  /* ── FOOTER ── */
  footer {
    padding: 32px 80px; border-top: 1px solid var(--border);
    display: flex; justify-content: space-between; align-items: center;
    background: var(--ink); position: relative;
  }
  footer::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59,108,248,0.4), rgba(34,211,238,0.3), transparent);
  }
  footer p { font-size: 13px; color: var(--muted); }
  footer a { color: var(--blue-light); text-decoration: none; font-size: 13px; transition: color 0.25s; }
  footer a:hover { color: var(--white); }

  /* ── FADE-UP ── */
  .fade-up {
    opacity: 0; transform: translateY(32px);
    transition: opacity 0.75s cubic-bezier(.22,1,.36,1), transform 0.75s cubic-bezier(.22,1,.36,1);
  }
  .fade-up.visible { opacity: 1; transform: translateY(0); }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; padding: 120px 24px 60px; }
    .section, .compare-section, .cta-bottom { padding: 64px 24px; }
    .section-surface { padding: 64px 24px; }
    footer { padding: 28px 24px; flex-direction: column; gap: 12px; text-align: center; }
    nav { padding: 16px 24px; }
    .hero-stats { flex-direction: column; gap: 12px; }
    .features-bento { grid-template-columns: 1fr; }
    .f-card:first-child { grid-column: span 1; }
    .field-row { grid-template-columns: 1fr; }
  }

