    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      --accent: #6366f1;
      --accent-dim: rgba(99, 102, 241, 0.15);
      --positive: #22c55e;
      --warning: #f59e0b;
      --negative: #ef4444;
      --bg: #0f1117;
      --surface: #1a1d27;
      --border: #252836;
      --text-primary: #f1f5f9;
      --text-muted: #94a3b8;
      --focus-ring: rgba(99, 102, 241, 0.5);
    }

    [data-theme="light"] {
      --bg: #f8fafc;
      --surface: #ffffff;
      --border: #e2e8f0;
      --accent: #6366f1;
      --accent-dim: rgba(99, 102, 241, 0.12);
      --positive: #16a34a;
      --warning: #d97706;
      --negative: #dc2626;
      --text-primary: #0f172a;
      --text-muted: #64748b;
      --focus-ring: rgba(99, 102, 241, 0.4);
    }

    html {
      font-family: 'Inter', system-ui, sans-serif;
      background: var(--bg);
      color: var(--text-primary);
      font-size: 16px;
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
      scroll-behavior: smooth;
    }

    body { min-height: 100vh; }

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

    /* ── Navbar ──────────────────────────────────────── */
    .navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 24px;
      height: 64px;
      background: transparent;
      border-bottom: 1px solid transparent;
      transition: background 0.3s ease, border-bottom-color 0.3s ease, backdrop-filter 0.3s ease;
    }

    .navbar.scrolled {
      background: rgba(15, 17, 23, 0.92);
      border-bottom-color: #252836;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }

    [data-theme="light"] .navbar.scrolled {
      background: rgba(248, 250, 252, 0.92);
      border-bottom-color: #e2e8f0;
    }

    .navbar-brand {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .logo-dark { display: block; }
    .logo-light { display: none; }
    [data-theme="light"] .logo-dark { display: none; }
    [data-theme="light"] .logo-light { display: block; }

    .navbar-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--accent);
      flex-shrink: 0;
    }

    .navbar-name {
      font-size: 15px;
      font-weight: 700;
      color: #f1f5f9;
      letter-spacing: -0.3px;
      transition: color 0.3s ease;
    }

    .navbar.scrolled .navbar-name { color: var(--text-primary); }
    [data-theme="light"] .navbar:not(.scrolled) .navbar-name { color: #0f172a; }

    .navbar-links {
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .navbar-link {
      color: rgba(255, 255, 255, 0.65);
      text-decoration: none;
      font-size: 14px;
      font-weight: 400;
      padding: 8px 14px;
      border-radius: 8px;
      transition: color 0.2s ease, background 0.2s ease;
    }

    .navbar-link:hover { color: #fff; background: rgba(255,255,255,0.08); }

    .navbar.scrolled .navbar-link { color: var(--text-muted); }
    .navbar.scrolled .navbar-link:hover { color: var(--text-primary); background: var(--accent-dim); }
    [data-theme="light"] .navbar:not(.scrolled) .navbar-link { color: #475569; }
    [data-theme="light"] .navbar:not(.scrolled) .navbar-link:hover { color: #0f172a; background: rgba(99, 102, 241, 0.14); }

    .navbar-actions { display: flex; align-items: center; gap: 8px; }

    .navbar-cta {
      background: var(--accent);
      color: #fff;
      border: none;
      border-radius: 8px;
      padding: 8px 18px;
      font-family: inherit;
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: opacity 0.2s ease;
    }

    .navbar-cta:hover { opacity: 0.88; }

    .theme-toggle-btn {
      background: transparent;
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 8px;
      color: rgba(255, 255, 255, 0.65);
      cursor: pointer;
      padding: 8px 12px;
      font-family: inherit;
      font-size: 13px;
      display: flex;
      align-items: center;
      gap: 6px;
      transition: border-color 0.2s ease, color 0.2s ease;
    }

    .navbar.scrolled .theme-toggle-btn { border-color: var(--border); color: var(--text-muted); }
    .theme-toggle-btn:hover { border-color: rgba(255,255,255,0.3); color: #fff; }
    .navbar.scrolled .theme-toggle-btn:hover { border-color: var(--accent); color: var(--text-primary); }
    [data-theme="light"] .navbar:not(.scrolled) .theme-toggle-btn {
      border-color: rgba(148, 163, 184, 0.55);
      color: #475569;
      background: rgba(255, 255, 255, 0.4);
    }
    [data-theme="light"] .navbar:not(.scrolled) .theme-toggle-btn:hover {
      border-color: rgba(99, 102, 241, 0.45);
      color: #0f172a;
    }

    .theme-icon { width: 16px; height: 16px; }

    .mobile-nav-toggle {
      display: none;
      width: 44px;
      height: 44px;
      min-width: 44px;
      min-height: 44px;
      padding: 0;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      background: transparent;
      border: 1px solid var(--border);
      border-radius: 10px;
      color: var(--text-primary);
      cursor: pointer;
      transition: border-color 0.2s ease, background 0.2s ease;
    }

    .mobile-nav-toggle:hover {
      border-color: var(--accent);
      background: var(--accent-dim);
    }

    .mobile-nav-toggle-line {
      width: 18px;
      height: 2px;
      border-radius: 99px;
      background: currentColor;
      transition: transform 0.22s ease, opacity 0.22s ease;
    }

    .navbar.mobile-nav-open .mobile-nav-toggle-line:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .navbar.mobile-nav-open .mobile-nav-toggle-line:nth-child(2) {
      opacity: 0;
    }

    .navbar.mobile-nav-open .mobile-nav-toggle-line:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-nav-drawer {
      display: none;
      position: fixed;
      top: 64px;
      left: 0;
      right: 0;
      z-index: 999;
      padding: 14px 16px 16px;
      border-bottom: 1px solid var(--border);
      background: color-mix(in srgb, var(--surface) 92%, transparent);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      box-shadow: 0 12px 26px rgba(2, 6, 23, 0.25);
      transform: translateY(-14px);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: transform 0.22s ease, opacity 0.22s ease, visibility 0.22s ease;
    }

    .mobile-nav-drawer.is-open {
      transform: translateY(0);
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }

    .mobile-nav-links,
    .mobile-nav-auth {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .mobile-nav-links {
      margin-bottom: 10px;
    }

    .mobile-nav-drawer .navbar-link,
    .mobile-nav-drawer .navbar-login,
    .mobile-nav-drawer .navbar-cta {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      width: 100%;
      border-radius: 10px;
      text-decoration: none;
    }

    .mobile-nav-drawer .navbar-link {
      color: var(--text-primary);
      background: color-mix(in srgb, var(--surface) 82%, transparent);
      border: 1px solid var(--border);
      font-size: 14px;
      font-weight: 500;
    }

    .mobile-nav-drawer .navbar-link:hover {
      border-color: var(--accent);
      background: var(--accent-dim);
    }

    .mobile-nav-drawer .navbar-login {
      padding: 10px 16px;
      font-size: 13px;
      font-weight: 600;
    }

    .mobile-nav-drawer .navbar-cta {
      padding: 10px 16px;
      font-size: 13px;
      font-weight: 700;
    }

    /* ── Hero Section ─────────────────────────────────── */
    .hero-section {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 88px 48px 60px;
      background: #0a0b0f;
      overflow: hidden;
    }

    .hero-section::before {
      content: '';
      position: absolute;
      inset: -12%;
      z-index: 1;
      pointer-events: none;
      background:
        repeating-linear-gradient(
          105deg,
          rgba(99, 102, 241, 0.18) 0%,
          rgba(99, 102, 241, 0.18) 8%,
          rgba(56, 189, 248, 0.12) 12%,
          rgba(99, 102, 241, 0.16) 18%,
          rgba(14, 165, 233, 0.12) 24%
        ),
        radial-gradient(circle at 15% 22%, rgba(99, 102, 241, 0.28), transparent 44%),
        radial-gradient(circle at 84% 72%, rgba(14, 165, 233, 0.22), transparent 48%);
      background-size: 280% 280%, 150% 150%, 170% 170%;
      filter: blur(14px) saturate(1.04);
      opacity: 0.56;
      animation: auroraDrift 22s ease-in-out infinite alternate;
      transform: translateZ(0);
      will-change: background-position, transform, opacity;
    }

    /* Gradient fade into below-fold */
    .hero-section::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 160px;
      background: linear-gradient(to bottom, transparent, var(--bg));
      pointer-events: none;
      z-index: 5;
    }

    [data-theme="light"] .hero-section::after { height: 72px; }
    [data-theme="light"] .hero-section {
      background:
        radial-gradient(circle at 18% 16%, rgba(99, 102, 241, 0.18), transparent 42%),
        radial-gradient(circle at 84% 74%, rgba(59, 130, 246, 0.12), transparent 48%),
        linear-gradient(180deg, #f8fbff 0%, #eef4ff 56%, #f8fafc 100%);
    }
    [data-theme="light"] .hero-section::before {
      background:
        repeating-linear-gradient(
          105deg,
          rgba(99, 102, 241, 0.14) 0%,
          rgba(99, 102, 241, 0.14) 8%,
          rgba(125, 211, 252, 0.1) 12%,
          rgba(129, 140, 248, 0.12) 18%,
          rgba(147, 197, 253, 0.1) 24%
        ),
        radial-gradient(circle at 18% 18%, rgba(99, 102, 241, 0.22), transparent 42%),
        radial-gradient(circle at 82% 78%, rgba(59, 130, 246, 0.18), transparent 44%);
      opacity: 0.68;
      filter: blur(12px) saturate(1.03);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: center;
      max-width: 1280px;
      margin: 0 auto;
      width: 100%;
      position: relative;
      z-index: 10;
    }

    /* ── Hero Left: Text ─────────────────────────────── */
    .hero-left { display: flex; flex-direction: column; gap: 0; }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(22px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    @keyframes gradientShift {
      0%   { background-position: 0% 50%; }
      50%  { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    @keyframes auroraDrift {
      0% {
        background-position: 0% 46%, 12% 20%, 86% 78%;
        transform: translate3d(-1.8%, -1.2%, 0) scale(1.02);
      }
      50% {
        background-position: 70% 52%, 20% 32%, 78% 62%;
        transform: translate3d(1.6%, 1%, 0) scale(1.05);
      }
      100% {
        background-position: 100% 54%, 28% 26%, 72% 70%;
        transform: translate3d(-1.2%, 1.4%, 0) scale(1.03);
      }
    }

    .hero-badge-pill {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 7px 15px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(8px);
      margin-bottom: 24px;
      position: relative;
      overflow: hidden;
      width: fit-content;
      animation: fadeUp 0.6s ease 0.2s both;
    }

    .hero-badge-pill::before {
      content: '';
      position: absolute;
      top: 0; left: 8px; right: 8px;
      height: 1px;
      background: linear-gradient(to right, transparent, rgba(99, 102, 241, 0.5), transparent);
    }

    .hero-badge-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: #6366f1;
      flex-shrink: 0;
      box-shadow: 0 0 6px rgba(99, 102, 241, 0.9);
    }

    .hero-badge-pill span {
      font-size: 12px;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.8);
      letter-spacing: 0.01em;
    }
    [data-theme="light"] .hero-badge-pill {
      background: rgba(255, 255, 255, 0.88);
      border-color: rgba(99, 102, 241, 0.2);
    }
    [data-theme="light"] .hero-badge-pill span {
      color: #334155;
    }

    .hero-headline {
      font-size: clamp(34px, 4.2vw, 58px);
      font-weight: 800;
      letter-spacing: -2px;
      line-height: 1.05;
      margin-bottom: 20px;
      animation: fadeUp 0.8s ease 0.4s both;
    }

    .hero-hl-gradient {
      display: block;
      background: linear-gradient(135deg, #ffffff 0%, #6366f1 40%, #818cf8 100%);
      background-size: 200% 200%;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: gradientShift 8s linear 1.2s infinite;
    }
    [data-theme="light"] .hero-hl-gradient {
      background: linear-gradient(135deg, #0f172a 0%, #4338ca 42%, #2563eb 100%);
      background-size: 200% 200%;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-hl-plain {
      display: block;
      color: rgba(255, 255, 255, 0.65);
      font-weight: 300;
      font-style: italic;
    }
    [data-theme="light"] .hero-hl-plain { color: #475569; }

    .hero-sub {
      font-size: clamp(14px, 1.3vw, 16px);
      color: rgba(255, 255, 255, 0.48);
      line-height: 1.7;
      margin-bottom: 36px;
      max-width: 440px;
      font-weight: 300;
      animation: fadeUp 0.6s ease 0.8s both;
    }
    [data-theme="light"] .hero-sub { color: #64748b; }

    .hero-buttons {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
      animation: fadeUp 0.6s ease 1.0s both;
    }

    .btn-hero-primary {
      padding: 13px 26px;
      border-radius: 999px;
      background: linear-gradient(135deg, #6366f1 0%, #818cf8 100%);
      color: #fff;
      font-family: inherit;
      font-size: 14px;
      font-weight: 600;
      border: none;
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0 4px 18px rgba(99, 102, 241, 0.45);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .btn-hero-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 24px rgba(99, 102, 241, 0.6);
    }

    .btn-hero-primary:active { transform: translateY(0); }

    .btn-hero-secondary {
      padding: 13px 26px;
      border-radius: 999px;
      background: transparent;
      border: 2px solid rgba(255, 255, 255, 0.18);
      color: rgba(255, 255, 255, 0.75);
      font-family: inherit;
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
    }

    .btn-hero-secondary:hover {
      border-color: rgba(99, 102, 241, 0.5);
      color: #fff;
      background: rgba(99, 102, 241, 0.1);
    }
    [data-theme="light"] .btn-hero-secondary {
      border-color: rgba(15, 23, 42, 0.18);
      color: #334155;
      background: rgba(255, 255, 255, 0.4);
    }
    [data-theme="light"] .btn-hero-secondary:hover {
      border-color: rgba(99, 102, 241, 0.45);
      color: #0f172a;
      background: rgba(99, 102, 241, 0.12);
    }

    /* ── Property Field (right column) ──────────────── */
    .hero-right { position: relative; z-index: 10; }

    .property-field {
      position: relative;
      width: 100%;
      height: 560px;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid rgba(99, 102, 241, 0.14);
      background:
        radial-gradient(circle at 24% 22%, rgba(99, 102, 241, 0.14), transparent 54%),
        radial-gradient(circle at 78% 80%, rgba(109, 40, 217, 0.1), transparent 58%),
        linear-gradient(145deg, #111426 0%, #17172b 48%, #0d1220 100%);
      box-shadow:
        inset 0 0 0 1px rgba(99, 102, 241, 0.1),
        0 16px 40px rgba(2, 6, 23, 0.34);
    }
    [data-theme="light"] .property-field {
      border-color: rgba(99, 102, 241, 0.22);
      background:
        radial-gradient(circle at 28% 22%, rgba(99, 102, 241, 0.16), transparent 56%),
        radial-gradient(circle at 74% 78%, rgba(59, 130, 246, 0.12), transparent 58%),
        #f8fbff;
    }

    .field-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(18, 20, 34, 0.06) 0%,
        transparent 25%,
        transparent 75%,
        rgba(18, 20, 34, 0.1) 100%
      );
      pointer-events: none;
      z-index: 5;
    }
    [data-theme="light"] .field-overlay {
      background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.2) 0%,
        transparent 30%,
        transparent 72%,
        rgba(226, 232, 240, 0.25) 100%
      );
    }

    /* ── Metadata Bubbles ───────────────────────────── */
    #bubbleCenter {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 144px; height: 144px;
      pointer-events: none;
      z-index: 20;
      display: none;
    }

    .meta-bubble { position: absolute; }

    .meta-top {
      top: 0; left: 50%;
      transform: translate(-50%, calc(-100% - 10px));
    }

    .meta-left {
      top: 50%; left: 0;
      transform: translate(calc(-100% - 10px), -50%);
    }

    .meta-right {
      top: 50%; right: 0;
      transform: translate(calc(100% + 10px), -50%);
    }

    .meta-inner {
      display: flex;
      align-items: center;
      gap: 10px;
      background: rgba(13, 14, 20, 0.96);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 10px;
      padding: 10px 14px;
      backdrop-filter: blur(16px);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
      white-space: nowrap;
      opacity: 0;
      transform: scale(0.85);
      transition: opacity 0.25s ease, transform 0.25s ease;
    }
    [data-theme="light"] .meta-inner {
      background: rgba(255, 255, 255, 0.95);
      border-color: rgba(99, 102, 241, 0.2);
      box-shadow: 0 6px 22px rgba(15, 23, 42, 0.12);
    }

    .meta-bubble.visible .meta-inner {
      opacity: 1;
      transform: scale(1);
    }

    .meta-name-inner {
      white-space: normal;
      text-align: center;
      justify-content: center;
      min-width: 150px;
      max-width: 220px;
    }

    .meta-name-text {
      font-size: 13px;
      font-weight: 600;
      color: #f1f5f9;
      line-height: 1.4;
    }
    [data-theme="light"] .meta-name-text { color: #0f172a; }

    .meta-icon-wrap {
      width: 26px; height: 26px;
      background: #3b82f6;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-weight: 800;
      color: #fff;
      flex-shrink: 0;
    }

    .meta-lbl {
      font-size: 10px;
      color: rgba(255, 255, 255, 0.45);
      font-weight: 500;
      margin-bottom: 1px;
    }
    [data-theme="light"] .meta-lbl { color: #64748b; }

    .meta-val {
      font-size: 13px;
      font-weight: 700;
      color: #f1f5f9;
    }
    [data-theme="light"] .meta-val { color: #0f172a; }

    .meta-val-pos { color: #22c55e; }

    .score-ring {
      width: 30px; height: 30px;
      border-radius: 50%;
      flex-shrink: 0;
      mask: radial-gradient(circle at center, transparent 9px, black 10px);
      -webkit-mask: radial-gradient(circle at center, transparent 9px, black 10px);
    }

    /* ── Below-fold ──────────────────────────────────── */
    .below-fold {
      position: relative;
      z-index: 1;
      background: var(--bg);
    }

    /* ── Section Base ────────────────────────────────── */
    .section-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .section-title {
      font-size: clamp(26px, 3.5vw, 40px);
      font-weight: 700;
      letter-spacing: -1px;
      color: var(--text-primary);
      margin-bottom: 12px;
    }

    .section-subtitle {
      font-size: 16px;
      color: var(--text-muted);
    }

    /* ── Features ────────────────────────────────────── */
    .features {
      padding: 100px 24px;
      max-width: 1080px;
      margin: 0 auto;
      overflow: hidden;
    }

    .features-intro {
      max-width: 700px;
      margin-bottom: 36px;
    }

    .features-title {
      font-size: clamp(30px, 4.1vw, 50px);
      line-height: 1.08;
      letter-spacing: -1.4px;
      color: var(--text-primary);
      margin-bottom: 14px;
      font-weight: 700;
    }

    .features-subtitle {
      font-size: 18px;
      line-height: 1.65;
      color: var(--text-muted);
      max-width: 640px;
    }

    .features-showcase {
      position: relative;
      margin: 0 -22px 72px;
      padding: 0;
      border: 0;
      border-radius: 0;
      background: transparent;
      isolation: isolate;
    }

    .features-showcase::before {
      content: '';
      position: absolute;
      inset: -2%;
      pointer-events: none;
      z-index: 4;
      background:
        radial-gradient(ellipse at center, rgba(2, 6, 23, 0) 66%, rgba(2, 6, 23, 0.2) 86%, rgba(2, 6, 23, 0.62) 100%),
        radial-gradient(ellipse at 20% 18%, rgba(99, 102, 241, 0.15), transparent 58%),
        radial-gradient(ellipse at 80% 78%, rgba(14, 165, 233, 0.1), transparent 62%);
      filter: blur(1px);
    }

    .features-showcase::after {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 5;
      pointer-events: none;
      background: repeating-linear-gradient(
        to bottom,
        rgba(15, 23, 42, 0.045) 0,
        rgba(15, 23, 42, 0.045) 1px,
        transparent 1px,
        transparent 3px
      );
      mix-blend-mode: soft-light;
      opacity: 0.24;
    }

    .features-visual-perspective {
      perspective: 900px;
      position: relative;
      z-index: 2;
    }

    .features-visual-tilt {
      transform: skewY(-2deg) skewX(-2deg) rotateX(6deg);
      transform-origin: center top;
      border-radius: 14px;
      overflow: hidden;
      border: 1px solid rgba(99, 102, 241, 0.32);
      background: transparent;
      box-shadow:
        0 24px 54px rgba(2, 6, 23, 0.44),
        0 0 0 1px rgba(99, 102, 241, 0.16) inset;
    }

    .features-visual-stage {
      position: relative;
      aspect-ratio: 88 / 36;
      overflow: hidden;
      background: transparent;
    }

    .features-visual-stage::after {
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        linear-gradient(180deg, rgba(2, 6, 23, 0.1), rgba(2, 6, 23, 0.3)),
        radial-gradient(circle at 74% 24%, rgba(99, 102, 241, 0.18), transparent 58%);
      z-index: 3;
    }

    .features-edge-blur {
      position: absolute;
      pointer-events: none;
      z-index: 4;
      -webkit-backdrop-filter: blur(4px);
      backdrop-filter: blur(4px);
    }

    .features-edge-top {
      top: 0;
      left: 0;
      right: 0;
      height: 3.5%;
      background: linear-gradient(to bottom, rgba(2, 6, 23, 0.18), transparent);
    }

    .features-edge-bottom {
      bottom: 0;
      left: 0;
      right: 0;
      height: 4.5%;
      background: linear-gradient(to top, rgba(2, 6, 23, 0.22), transparent);
    }

    .features-edge-left {
      top: 0;
      bottom: 0;
      left: 0;
      width: 1.8%;
      background: linear-gradient(to right, rgba(2, 6, 23, 0.2), transparent);
    }

    .features-edge-right {
      top: 0;
      bottom: 0;
      right: 0;
      width: 1.8%;
      background: linear-gradient(to left, rgba(2, 6, 23, 0.2), transparent);
    }

    .features-visual-light,
    .features-visual-dark {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .features-visual-light {
      z-index: 2;
      display: none;
      transform: scale(1.01);
      filter: saturate(1.02) contrast(1.01);
    }

    .features-visual-dark {
      z-index: 2;
      transform: scale(1.01);
      filter: saturate(1.04) contrast(1.02);
    }

    .features-grid {
      position: relative;
      margin: 0 auto;
      margin-top: 0;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px 16px;
    }

    .feature-card {
      background: color-mix(in srgb, var(--surface) 88%, transparent);
      border: 1px solid color-mix(in srgb, var(--border) 92%, var(--accent) 8%);
      border-radius: 14px;
      padding: 18px 16px;
      transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
    }

    .feature-card:hover {
      border-color: color-mix(in srgb, var(--accent) 55%, var(--border) 45%);
      background: color-mix(in srgb, var(--surface) 72%, var(--accent-dim) 28%);
      transform: translateY(-2px);
    }

    .feature-head {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 8px;
    }

    .feature-icon {
      width: 28px;
      height: 28px;
      border-radius: 8px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--accent-dim);
      color: var(--accent);
      flex-shrink: 0;
    }

    .feature-icon svg {
      width: 16px;
      height: 16px;
    }

    .feature-title {
      font-size: 15px;
      font-weight: 600;
      color: var(--text-primary);
      letter-spacing: -0.2px;
      margin: 0;
    }

    .feature-description {
      margin: 0;
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.55;
    }

    [data-theme="light"] .features-showcase::before {
      background:
        radial-gradient(ellipse at center, rgba(248, 250, 252, 0) 68%, rgba(248, 250, 252, 0.14) 88%, rgba(248, 250, 252, 0.54) 100%),
        radial-gradient(ellipse at 22% 20%, rgba(99, 102, 241, 0.06), transparent 60%),
        radial-gradient(ellipse at 82% 80%, rgba(56, 189, 248, 0.05), transparent 62%);
    }

    [data-theme="light"] .features-visual-tilt {
      border-color: rgba(99, 102, 241, 0.28);
      box-shadow:
        0 22px 44px rgba(99, 102, 241, 0.16),
        0 0 0 1px rgba(99, 102, 241, 0.12) inset;
    }

    [data-theme="light"] .features-visual-stage::after {
      background:
        linear-gradient(180deg, rgba(248, 250, 252, 0.06), rgba(226, 232, 240, 0.3)),
        radial-gradient(circle at 75% 25%, rgba(99, 102, 241, 0.1), transparent 58%);
    }

    [data-theme="light"] .features-showcase::after {
      background: repeating-linear-gradient(
        to bottom,
        rgba(148, 163, 184, 0.03) 0,
        rgba(148, 163, 184, 0.03) 1px,
        transparent 1px,
        transparent 3px
      );
      opacity: 0.08;
    }

    [data-theme="light"] .features-edge-blur {
      -webkit-backdrop-filter: blur(3px);
      backdrop-filter: blur(3px);
    }

    [data-theme="light"] .features-edge-top {
      background: linear-gradient(to bottom, rgba(248, 250, 252, 0.12), transparent);
    }

    [data-theme="light"] .features-edge-bottom {
      background: linear-gradient(to top, rgba(248, 250, 252, 0.15), transparent);
    }

    [data-theme="light"] .features-edge-left {
      background: linear-gradient(to right, rgba(248, 250, 252, 0.12), transparent);
    }

    [data-theme="light"] .features-edge-right {
      background: linear-gradient(to left, rgba(248, 250, 252, 0.12), transparent);
    }

    [data-theme="light"] .features-visual-light {
      display: block;
    }

    [data-theme="light"] .features-visual-dark {
      display: none;
    }

    /* ── Product Media ───────────────────────────────── */
    .media-section {
      padding: 100px 24px;
      background: var(--bg);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .media-shell {
      max-width: 1080px;
      margin: 0 auto;
    }

    .media-intro {
      max-width: 760px;
      margin-bottom: 32px;
    }

    .media-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 20px;
      align-items: start;
    }

    .media-column {
      display: grid;
      gap: 14px;
    }

    .media-column-title {
      margin: 0;
      font-size: 22px;
      line-height: 1.2;
      letter-spacing: -0.5px;
      color: var(--text-primary);
    }

    .media-column-subtitle {
      margin: 0;
      color: var(--text-muted);
      font-size: 14px;
      line-height: 1.6;
    }

    .video-grid {
      display: grid;
      gap: 14px;
    }

    .video-card {
      background: color-mix(in srgb, var(--surface) 92%, transparent);
      border: 1px solid color-mix(in srgb, var(--border) 88%, var(--accent) 12%);
      border-radius: 14px;
      padding: 12px;
      display: grid;
      gap: 10px;
    }

    .video-frame-wrap {
      border-radius: 10px;
      overflow: hidden;
      aspect-ratio: 16 / 9;
      background: #090b12;
      border: 1px solid color-mix(in srgb, var(--border) 80%, var(--accent) 20%);
    }

    .video-frame-wrap iframe {
      width: 100%;
      height: 100%;
      border: 0;
      display: block;
    }

    .video-card-title {
      margin: 0;
      font-size: 16px;
      line-height: 1.3;
      color: var(--text-primary);
      letter-spacing: -0.2px;
    }

    .video-card-copy {
      margin: 0;
      color: var(--text-muted);
      font-size: 13px;
      line-height: 1.5;
    }

    .video-card-link {
      width: fit-content;
      color: var(--accent);
      text-decoration: none;
      font-size: 13px;
      font-weight: 600;
      text-underline-offset: 3px;
    }

    .video-card-link:hover {
      text-decoration: underline;
    }

    .showcase-card {
      background: color-mix(in srgb, var(--surface) 92%, transparent);
      border: 1px solid color-mix(in srgb, var(--border) 86%, var(--accent) 14%);
      border-radius: 14px;
      overflow: hidden;
      display: grid;
      gap: 0;
      outline: none;
    }

    .showcase-card:focus-visible {
      box-shadow: 0 0 0 3px var(--focus-ring);
    }

    .showcase-viewport {
      overflow: hidden;
      background: #0a0c14;
      border-bottom: 1px solid color-mix(in srgb, var(--border) 86%, var(--accent) 14%);
    }

    .showcase-track {
      display: flex;
      transition: transform 0.32s ease;
      will-change: transform;
    }

    .showcase-slide {
      min-width: 100%;
      margin: 0;
      display: grid;
      grid-template-rows: auto auto;
      background: color-mix(in srgb, var(--surface) 94%, transparent);
    }

    .showcase-slide img {
      width: 100%;
      height: auto;
      display: block;
      aspect-ratio: 16 / 10;
      object-fit: cover;
      background: #0f1117;
    }

    .showcase-caption {
      margin: 0;
      padding: 12px 14px 14px;
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.55;
    }

    .showcase-controls {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      padding: 12px 14px;
    }

    .showcase-nav {
      width: 34px;
      height: 34px;
      border-radius: 999px;
      border: 1px solid var(--border);
      background: color-mix(in srgb, var(--surface) 84%, var(--accent-dim) 16%);
      color: var(--text-primary);
      font-size: 18px;
      line-height: 1;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
    }

    .showcase-nav:hover {
      border-color: var(--accent);
      background: color-mix(in srgb, var(--surface) 68%, var(--accent-dim) 32%);
      transform: translateY(-1px);
    }

    .showcase-dots {
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .showcase-dot {
      width: 9px;
      height: 9px;
      border-radius: 999px;
      border: 0;
      background: color-mix(in srgb, var(--text-muted) 55%, transparent);
      cursor: pointer;
      transition: transform 0.2s ease, background 0.2s ease;
    }

    .showcase-dot.active {
      background: var(--accent);
      transform: scale(1.1);
    }

    @media (max-width: 1024px) {
      .media-section {
        padding: 88px 24px;
      }

      .media-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
      .media-section {
        padding: 64px 20px;
      }

      .media-intro {
        margin-bottom: 24px;
      }

      .media-column-title {
        font-size: 20px;
      }

      .showcase-controls {
        padding: 10px 12px 12px;
      }
    }

    /* ── How It Works ────────────────────────────────── */
    .how-it-works {
      padding: 100px 24px;
      background: var(--bg);
    }

    .how-shell {
      max-width: 1080px;
      margin: 0 auto;
    }

    .how-kicker {
      margin: 0 0 12px;
      color: var(--accent);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.09em;
      text-transform: uppercase;
    }

    .how-title {
      margin: 0;
      max-width: 760px;
      font-size: clamp(30px, 4vw, 48px);
      line-height: 1.1;
      letter-spacing: -1.3px;
      color: var(--text-primary);
      font-weight: 700;
    }

    .how-steps {
      margin-top: 38px;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      position: relative;
    }

    .how-steps::before {
      content: '';
      position: absolute;
      left: 16%;
      right: 16%;
      top: 42px;
      border-top: 1px solid var(--border);
      z-index: 0;
    }

    .how-step {
      position: relative;
      z-index: 1;
      border: 1px solid var(--border);
      border-radius: 14px;
      background: color-mix(in srgb, var(--surface) 86%, var(--bg) 14%);
      padding: 20px 18px 18px;
      min-height: 228px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .how-step-num {
      margin: 0;
      color: var(--accent);
      font-size: clamp(32px, 4vw, 42px);
      line-height: 1;
      font-weight: 800;
      letter-spacing: -0.04em;
    }

    .how-step-title {
      margin: 0;
      color: var(--text-primary);
      font-size: 20px;
      line-height: 1.2;
      font-weight: 700;
      letter-spacing: -0.02em;
    }

    .how-step-copy {
      margin: 0;
      color: var(--text-muted);
      font-size: 15px;
      line-height: 1.6;
    }

    /* ── Pricing ─────────────────────────────────────── */
    .pricing {
      padding: 108px 24px;
      background: var(--surface);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .pricing2-shell {
      max-width: 1040px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 18px;
    }

    .pricing2-title {
      font-size: clamp(34px, 4.8vw, 60px);
      line-height: 1.05;
      letter-spacing: -1.8px;
      color: var(--text-primary);
      font-weight: 700;
    }

    .pricing2-description {
      color: var(--text-muted);
      font-size: 18px;
      line-height: 1.6;
      max-width: 760px;
    }

    .pricing2-toggle-row {
      margin-top: 2px;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: var(--text-muted);
      font-size: 16px;
      font-weight: 500;
    }

    .pricing2-toggle-label {
      transition: color 0.2s ease, opacity 0.2s ease;
      opacity: 0.72;
    }

    .pricing2-toggle-label.active {
      color: var(--text-primary);
      opacity: 1;
    }

    .pricing2-switch {
      width: 52px;
      height: 30px;
      border-radius: 999px;
      border: 1px solid color-mix(in srgb, var(--border) 80%, var(--accent) 20%);
      background: color-mix(in srgb, var(--input-bg, var(--bg)) 82%, var(--accent-dim) 18%);
      position: relative;
      cursor: pointer;
      transition: border-color 0.2s ease, background 0.2s ease;
      padding: 0;
      appearance: none;
      -webkit-appearance: none;
    }

    .pricing2-switch:focus-visible {
      outline: 2px solid var(--focus-ring);
      outline-offset: 2px;
    }

    .pricing2-switch-thumb {
      position: absolute;
      top: 4px;
      left: 4px;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: #ffffff;
      box-shadow: 0 2px 8px rgba(2, 6, 23, 0.24);
      transition: transform 0.22s ease;
      pointer-events: none;
    }

    .pricing2-switch.is-yearly .pricing2-switch-thumb {
      transform: translateX(22px);
    }

    .pricing2-switch.is-yearly {
      background: color-mix(in srgb, var(--accent) 40%, var(--input-bg, var(--bg)) 60%);
      border-color: color-mix(in srgb, var(--accent) 62%, var(--border) 38%);
    }

    .pricing2-grid {
      margin-top: 12px;
      width: 100%;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 22px;
      align-items: stretch;
    }

    .pricing2-card {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 26px 24px 22px;
      display: flex;
      flex-direction: column;
      text-align: left;
      transition: border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
    }

    .pricing2-card:hover {
      border-color: color-mix(in srgb, var(--accent) 54%, var(--border) 46%);
      transform: translateY(-2px);
    }

    .pricing2-card.is-featured {
      border-color: color-mix(in srgb, var(--accent) 70%, var(--border) 30%);
      box-shadow: 0 14px 40px rgba(99, 102, 241, 0.22);
    }

    .pricing2-pill {
      align-self: flex-start;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 4px 10px;
      margin-bottom: 12px;
      border-radius: 999px;
      font-size: 11px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      font-weight: 700;
      color: var(--accent);
      background: var(--accent-dim);
    }

    .pricing2-plan-name {
      color: var(--text-primary);
      font-size: 29px;
      line-height: 1.1;
      letter-spacing: -0.7px;
      font-weight: 700;
      margin-bottom: 6px;
    }

    .pricing2-plan-description {
      color: var(--text-muted);
      font-size: 14px;
      margin-bottom: 14px;
      line-height: 1.5;
    }

    .pricing2-price-row {
      display: flex;
      align-items: baseline;
      gap: 8px;
      margin-bottom: 5px;
      min-height: 56px;
    }

    .pricing2-price {
      font-size: 52px;
      line-height: 1;
      font-weight: 800;
      letter-spacing: -2.4px;
      color: var(--text-primary);
    }

    .pricing2-unit {
      color: var(--text-muted);
      font-size: 16px;
      font-weight: 600;
    }

    .pricing2-billed {
      color: var(--text-muted);
      font-size: 13px;
      line-height: 1.5;
      margin-bottom: 18px;
      min-height: 40px;
    }

    .pricing2-divider {
      border: none;
      border-top: 1px solid var(--border);
      margin: 0 0 18px;
    }

    .pricing2-subhead {
      margin: 0 0 12px;
      color: var(--text-primary);
      font-size: 14px;
      font-weight: 700;
    }

    .pricing2-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 11px;
      margin: 0 0 20px;
      padding: 0;
      flex: 1;
    }

    .pricing2-list li {
      display: flex;
      align-items: flex-start;
      gap: 9px;
      color: var(--text-muted);
      font-size: 14px;
      line-height: 1.45;
    }

    .pricing2-check {
      flex-shrink: 0;
      width: 17px;
      height: 17px;
      margin-top: 1px;
      color: var(--accent);
    }

    .pricing2-cta {
      margin-top: auto;
      width: 100%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 13px 18px;
      border-radius: 10px;
      border: 1px solid var(--border);
      color: var(--text-primary);
      text-decoration: none;
      font-size: 14px;
      font-weight: 700;
      transition: all 0.2s ease;
      background: transparent;
    }

    .pricing2-cta:hover {
      border-color: var(--accent);
      background: var(--accent-dim);
      color: var(--accent);
    }

    .pricing2-card.is-featured .pricing2-cta {
      border: none;
      color: #ffffff;
      background: linear-gradient(135deg, #6366f1 0%, #818cf8 100%);
      box-shadow: 0 4px 14px rgba(99, 102, 241, 0.35);
    }

    .pricing2-card.is-featured .pricing2-cta:hover {
      color: #ffffff;
      box-shadow: 0 6px 22px rgba(99, 102, 241, 0.52);
      transform: translateY(-1px);
    }

    .pricing2-arrow {
      width: 16px;
      height: 16px;
      flex-shrink: 0;
    }

    /* ── FAQ ─────────────────────────────────────────── */
    .faq-section {
      padding: 96px 24px;
      background: var(--bg);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .faq-shell {
      max-width: 1040px;
      margin: 0 auto;
      display: grid;
      gap: 24px;
    }

    .faq-header {
      max-width: 760px;
    }

    .faq-title {
      margin: 0;
      font-size: clamp(30px, 4vw, 46px);
      line-height: 1.08;
      letter-spacing: -1.2px;
      color: var(--text-primary);
      font-weight: 700;
    }

    .faq-subtitle {
      margin: 12px 0 0;
      color: var(--text-muted);
      font-size: 16px;
      line-height: 1.65;
    }

    .faq-groups {
      display: grid;
      gap: 16px;
    }

    .faq-category {
      border: 1px solid color-mix(in srgb, var(--border) 88%, var(--accent) 12%);
      border-radius: 16px;
      background: color-mix(in srgb, var(--surface) 90%, transparent);
      overflow: clip;
    }

    .faq-category-title {
      margin: 0;
      padding: 14px 18px;
      color: var(--text-primary);
      font-size: 13px;
      line-height: 1.4;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      border-bottom: 1px solid color-mix(in srgb, var(--border) 92%, transparent);
      background: color-mix(in srgb, var(--accent-dim) 40%, transparent);
    }

    .faq-items {
      display: grid;
    }

    .faq-item {
      border-bottom: 1px solid color-mix(in srgb, var(--border) 92%, transparent);
    }

    .faq-item:last-child {
      border-bottom: 0;
    }

    .faq-question {
      margin: 0;
    }

    .faq-trigger {
      width: 100%;
      border: 0;
      background: transparent;
      color: var(--text-primary);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      text-align: left;
      font: inherit;
      font-size: 16px;
      line-height: 1.55;
      font-weight: 600;
      padding: 17px 18px;
      cursor: pointer;
      transition: color 0.2s ease, background 0.2s ease;
    }

    .faq-trigger:hover {
      color: var(--accent);
    }

    .faq-trigger:focus-visible {
      outline: 2px solid var(--focus-ring);
      outline-offset: -2px;
    }

    .faq-icon {
      width: 16px;
      height: 16px;
      flex-shrink: 0;
      color: color-mix(in srgb, var(--text-muted) 80%, var(--text-primary) 20%);
      transition: transform 0.22s ease;
    }

    .faq-item.is-open .faq-icon {
      transform: rotate(180deg);
      color: var(--text-primary);
    }

    .faq-panel {
      height: 0;
      opacity: 0;
      overflow: hidden;
      transition: height 0.24s ease, opacity 0.2s ease;
    }

    .faq-item.is-open .faq-panel {
      opacity: 1;
    }

    .faq-panel-inner {
      padding: 0 18px 18px;
      color: var(--text-muted);
      font-size: 15px;
      line-height: 1.7;
    }

    .faq-panel-inner p {
      margin: 0;
    }

    [data-theme="light"] .faq-category {
      box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04);
    }

    /* ── Metrics ─────────────────────────────────────── */
    .metrics { padding: 100px 24px; }

    .metrics-container { max-width: 1280px; margin: 0 auto; }

    .metrics-marquee-stack {
      display: grid;
      gap: 14px;
    }

    .metrics-marquee {
      position: relative;
      overflow: hidden;
      mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
      -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    }

    .metrics-track {
      display: flex;
      align-items: center;
      gap: 16px;
      width: max-content;
      animation: metrics-scroll-left 30s linear infinite;
      will-change: transform;
    }

    .metrics-marquee.reverse .metrics-track {
      animation-name: metrics-scroll-right;
      animation-duration: 34s;
    }

    .metrics-marquee:hover .metrics-track {
      animation-play-state: paused;
    }

    @keyframes metrics-scroll-left {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    @keyframes metrics-scroll-right {
      from { transform: translateX(-50%); }
      to { transform: translateX(0); }
    }

    .metric-item {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 14px 20px;
      min-width: 220px;
      text-align: center;
      transition: border-color 0.15s ease;
      flex: 0 0 auto;
    }

    .metric-item:hover { border-color: var(--accent); }
    .metric-item-label { font-size: 13px; font-weight: 500; color: var(--text-primary); }

    /* ── Bottom CTA ──────────────────────────────────── */
    .bottom-cta {
      padding: 120px 24px;
      text-align: center;
      background: var(--surface);
      border-top: 1px solid var(--border);
    }

    .bottom-cta-container { max-width: 640px; margin: 0 auto; }

    .bottom-cta-title {
      font-size: clamp(26px, 3.5vw, 40px);
      font-weight: 700;
      letter-spacing: -1px;
      color: var(--text-primary);
      margin-bottom: 16px;
    }

    .bottom-cta-subtitle { font-size: 18px; color: var(--text-muted); margin-bottom: 40px; }

    .bottom-cta-checklist {
      padding: 56px 24px;
      background: color-mix(in srgb, var(--surface) 88%, var(--bg) 12%);
    }

    .bottom-cta-checklist-title {
      font-size: clamp(24px, 3vw, 32px);
      margin-bottom: 18px;
    }

    .btn-cta {
      background: linear-gradient(135deg, var(--accent) 0%, #818cf8 100%);
      color: #fff;
      border: none;
      border-radius: 12px;
      padding: 16px 32px;
      font-family: inherit;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: transform 0.15s ease, box-shadow 0.15s ease;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      box-shadow: 0 4px 14px rgba(99, 102, 241, 0.4);
      text-decoration: none;
    }

    .btn-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(99,102,241,0.5); }
    .btn-cta svg { width: 20px; height: 20px; }

    #checklistForm {
      width: 100%;
      max-width: 560px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
    }

    #checklistEmail {
      flex: 1 1 0;
      min-width: 0;
      height: 54px;
      padding: 0 16px;
      border-radius: 12px;
      border: 1px solid color-mix(in srgb, var(--border) 84%, var(--accent) 16%);
      background: var(--bg);
      color: var(--text-primary);
      font: inherit;
      font-size: 16px;
    }

    #checklistEmail::placeholder {
      color: var(--text-muted);
    }

    #checklistEmail:focus-visible {
      outline: 2px solid var(--focus-ring);
      outline-offset: 2px;
      border-color: var(--accent);
    }

    #checklistForm .btn-cta {
      min-height: 54px;
      padding: 0 26px;
      white-space: nowrap;
      justify-content: center;
    }

    #checklistConfirmation {
      margin: 12px 0 0;
      margin-bottom: 0;
    }

    /* ── Footer ──────────────────────────────────────── */
    .footer {
      padding: 72px 24px 34px;
      border-top: 1px solid var(--border);
      background: var(--bg);
    }

    .footer-container {
      max-width: 1280px;
      margin: 0 auto;
    }

    .footer-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 20px;
    }

    .footer-brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      color: var(--text-primary);
    }

    .footer-logo {
      width: 40px;
      height: 40px;
      border-radius: 11px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--accent);
      background: var(--accent-dim);
      border: 1px solid color-mix(in srgb, var(--accent) 45%, transparent);
    }

    .footer-logo svg {
      width: 20px;
      height: 20px;
    }

    .footer-brand-name {
      font-size: 22px;
      font-weight: 700;
      letter-spacing: -0.5px;
      color: var(--text-primary);
    }

    .footer-social-list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .footer-social-link {
      width: 40px;
      height: 40px;
      border-radius: 999px;
      border: 1px solid var(--border);
      background: var(--surface);
      color: var(--text-muted);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      transition: all 0.2s ease;
    }

    .footer-social-link:hover {
      color: var(--text-primary);
      border-color: var(--accent);
      background: var(--accent-dim);
      transform: translateY(-1px);
    }

    .footer-social-link svg {
      width: 18px;
      height: 18px;
    }

    .footer-divider {
      margin: 24px 0 0;
      border-top: 1px solid var(--border);
      padding-top: 26px;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 20px;
      align-items: start;
    }

    .footer-copy {
      color: var(--text-muted);
      font-size: 14px;
      line-height: 1.6;
    }

    .footer-right-stack {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 14px;
    }

    .footer-link-list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 8px 16px;
    }

    .footer-right-stack .footer-link-list {
      flex-direction: row;
      flex-wrap: nowrap;
      align-items: center;
      justify-content: flex-end;
      gap: 8px 16px;
    }

    .footer-link-list a {
      font-size: 14px;
      text-decoration: none;
      text-underline-offset: 4px;
      transition: color 0.2s ease, text-decoration-color 0.2s ease;
    }

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

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

    .footer-link-list a:hover {
      color: var(--accent);
      text-decoration: underline;
    }

    /* ── Responsive ──────────────────────────────────── */
    @media (max-width: 1024px) {
      .hero-section { padding: 88px 32px 60px; }
      .hero-grid { gap: 40px; }
      .property-field { height: 480px; }
      .features { padding: 88px 24px; }
      .features-showcase { margin-bottom: 30px; }
      .features-grid { grid-template-columns: repeat(2, 1fr); }
      .how-step { min-height: 244px; }
      .metric-item { min-width: 200px; }
    }

    @media (max-width: 768px) {
      .mobile-nav-toggle {
        display: inline-flex;
      }

      .mobile-nav-drawer {
        display: block;
      }

      .hero-section { padding: 80px 20px 48px; }
      .hero-grid { grid-template-columns: 1fr; gap: 32px; }
      .hero-right { order: -1; }
      .property-field { height: 320px; }
      .navbar-links { display: none; }
      .navbar-auth { display: none; }
      .hero-sub { max-width: 100%; }
      .hero-buttons { flex-direction: column; width: 100%; }
      .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; min-height: 48px; }
      .features { padding: 64px 20px; }
      .features-intro { margin-bottom: 24px; }
      .features-subtitle { font-size: 16px; }
      .features-showcase { margin: 0 -8px 44px; }
      .features-grid { margin-top: 0; }
      .features-grid { grid-template-columns: 1fr; }
      .how-it-works { padding: 64px 20px; }
      .how-title { font-size: clamp(28px, 8vw, 40px); }
      .how-steps {
        margin-top: 28px;
        grid-template-columns: 1fr;
        gap: 14px;
      }
      .how-steps::before { display: none; }
      .how-step {
        min-height: 0;
        padding: 18px 16px;
      }
      .how-step-num { font-size: 34px; }
      .pricing       { padding: 64px 20px; }
      .faq-section   { padding: 64px 20px; }
      .pricing2-grid { grid-template-columns: 1fr; }
      .faq-groups    { gap: 14px; }
      .faq-category-title { padding: 13px 16px; font-size: 12px; }
      .faq-trigger { min-height: 44px; padding: 12px 16px; font-size: 15px; line-height: 1.5; }
      .faq-panel-inner { padding: 0 16px 16px; font-size: 14px; }
      .metrics      { padding: 64px 20px; }
      .metrics-marquee {
        mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
        -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
      }
      .metrics-track {
        gap: 12px;
        animation-duration: 26s;
      }
      .metrics-marquee.reverse .metrics-track {
        animation-duration: 30s;
      }
      .metric-item { min-width: 182px; padding: 13px 16px; }
      .bottom-cta   { padding: 80px 20px; }
      #checklistForm {
        max-width: 420px;
        flex-direction: column;
      }
      #checklistForm .btn-cta {
        width: 100%;
      }
      .footer { padding: 56px 20px 28px; }
      .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
      }
      .footer-divider {
        margin-top: 20px;
        padding-top: 22px;
        grid-template-columns: 1fr;
        gap: 14px;
      }
      .footer-right-stack {
        align-items: flex-start;
        gap: 10px;
      }
      .footer-link-list {
        justify-content: flex-start;
        gap: 8px 14px;
      }
      .footer-right-stack .footer-link-list {
        justify-content: flex-start;
      }
    }

    @media (max-width: 480px) {
      .how-it-works { padding: 56px 20px; }
      .how-step-title { font-size: 18px; }
      .how-step-copy { font-size: 14px; }
      .faq-title { font-size: clamp(28px, 8vw, 38px); }
      .metrics-track { gap: 10px; }
      .metric-item { min-width: 164px; }
      .pricing2-price { font-size: 44px; }
    }

    .navbar-auth {
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .navbar-login {
      background: transparent;
      color: var(--text-muted);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 8px 18px;
      font-family: inherit;
      font-size: 13px;
      font-weight: 500;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      transition: border-color 0.2s ease, color 0.2s ease;
    }

    .navbar-login:hover {
      border-color: var(--accent);
      color: var(--text-primary);
    }

    .bottom-cta-account-link {
      display: inline-block;
      margin-top: 14px;
      color: var(--accent);
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
    }

    .bottom-cta-account-link:hover {
      text-decoration: underline;
      text-underline-offset: 4px;
    }

    @media (max-width: 768px) {
      .navbar-auth { display: none; }
    }

    /* ── Hero trust line ─────────────────────────────── */
    .hero-trust {
      margin-top: 14px;
      font-size: 13px;
      color: var(--text-muted);
      letter-spacing: 0.01em;
    }

    /* ── Problem-Agitate Section ─────────────────────── */
    .problem-section {
      padding: 80px 48px;
      background: var(--bg);
      overflow: hidden;
    }

    .problem-shell {
      max-width: 900px;
      margin: 0 auto;
    }

    .problem-kicker {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      color: var(--accent);
      margin: 0 0 12px;
    }

    .problem-title {
      font-size: clamp(30px, 4vw, 48px);
      font-weight: 700;
      letter-spacing: -1.3px;
      color: var(--text-primary);
      margin-bottom: 48px;
      line-height: 1.1;
    }

    .problem-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-bottom: 48px;
    }

    /* Entrance animation */
    .problem-card {
      opacity: 0;
      transform: translateY(28px);
      transition:
        opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
    }

    .problem-card.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .problem-card:nth-child(2) { transition-delay: 0.1s; }
    .problem-card:nth-child(3) { transition-delay: 0.2s; }

    /* Glassmorphism card */
    .problem-card {
      position: relative;
      background: rgba(26, 29, 39, 0.45);
      border: 1px solid rgba(255, 255, 255, 0.07);
      border-radius: 16px;
      padding: 28px 24px;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      overflow: hidden;
      cursor: default;
    }

    [data-theme="light"] .problem-card {
      background: rgba(255, 255, 255, 0.55);
      border-color: rgba(0, 0, 0, 0.07);
    }

    /* Subtle inner glow top edge */
    .problem-card::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 16px;
      background: linear-gradient(135deg, rgba(99,102,241,0.07) 0%, transparent 60%);
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

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

    .problem-card:hover {
      border-color: rgba(99, 102, 241, 0.4);
      box-shadow:
        0 0 0 1px rgba(99, 102, 241, 0.15),
        0 20px 40px rgba(99, 102, 241, 0.1),
        0 8px 16px rgba(0, 0, 0, 0.2);
      background: rgba(26, 29, 39, 0.65);
    }

    [data-theme="light"] .problem-card:hover {
      border-color: rgba(99, 102, 241, 0.35);
      box-shadow:
        0 0 0 1px rgba(99, 102, 241, 0.12),
        0 20px 40px rgba(99, 102, 241, 0.08),
        0 8px 16px rgba(0, 0, 0, 0.06);
      background: rgba(255, 255, 255, 0.85);
    }

    .problem-card-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: rgba(239, 68, 68, 0.12);
      border: 1px solid rgba(239, 68, 68, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
      color: #ef4444;
      transition: background 0.25s ease, transform 0.25s ease;
    }

    .problem-card:hover .problem-card-icon {
      background: rgba(239, 68, 68, 0.2);
      transform: scale(1.08);
    }

    .problem-card-title {
      font-size: 15px;
      font-weight: 600;
      color: var(--text-primary);
      margin-bottom: 10px;
      line-height: 1.4;
      transition: color 0.2s ease;
    }

    .problem-card:hover .problem-card-title {
      color: #f1f5f9;
    }

    [data-theme="light"] .problem-card:hover .problem-card-title {
      color: #0f172a;
    }

    .problem-card-body {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.65;
    }

    .problem-card-divider {
      height: 1px;
      background: rgba(255, 255, 255, 0.07);
      margin: 14px 0;
      transition: background 0.25s ease;
    }

    [data-theme="light"] .problem-card-divider {
      background: rgba(0, 0, 0, 0.07);
    }

    .problem-card:hover .problem-card-divider {
      background: rgba(99, 102, 241, 0.2);
    }

    .problem-card-agitate {
      font-size: 13px;
      color: rgba(239, 68, 68, 0.8);
      font-style: italic;
      line-height: 1.55;
      display: flex;
      gap: 7px;
      align-items: flex-start;
    }

    .problem-card-agitate::before {
      content: '→';
      flex-shrink: 0;
      font-style: normal;
      opacity: 0.7;
    }

    .problem-bridge {
      border-left: 3px solid var(--accent);
      padding-left: 20px;
      font-size: 16px;
      color: var(--text-primary);
      line-height: 1.7;
      opacity: 0;
      transform: translateX(-10px);
      transition: opacity 0.55s ease 0.35s, transform 0.55s ease 0.35s;
    }

    .problem-bridge.is-visible {
      opacity: 1;
      transform: translateX(0);
    }

    .problem-bridge strong {
      color: var(--accent);
    }

    @media (max-width: 768px) {
      .problem-section { padding: 64px 20px; }
      .problem-grid { grid-template-columns: 1fr; gap: 14px; }
      .problem-card:nth-child(2),
      .problem-card:nth-child(3) { transition-delay: 0s; }
    }

    /* ── Transformation Section ──────────────────────── */
    /* ── Transformation Section ──────────────────────── */
    .transformation-section {
      padding: 100px 24px;
      background: var(--bg);
    }

    .transformation-timeline {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      position: relative;
      margin-top: 38px;
    }

    .transformation-timeline::before {
      content: '';
      position: absolute;
      top: 28px;
      left: calc(12.5% + 12px);
      right: calc(12.5% + 12px);
      height: 2px;
      background: linear-gradient(to right, var(--accent), rgba(99,102,241,0.3));
      z-index: 0;
    }

    .transformation-step {
      padding: 0 16px;
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .transformation-step-node {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: var(--surface);
      border: 2px solid var(--accent);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px;
      font-size: 18px;
      font-weight: 700;
      color: var(--accent);
    }

    .transformation-step:nth-child(4) .transformation-step-node {
      background: var(--accent);
      color: #fff;
    }

    .transformation-step-label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 8px;
    }

    .transformation-step-title {
      font-size: 15px;
      font-weight: 600;
      color: var(--text-primary);
      margin-bottom: 8px;
      line-height: 1.35;
    }

    .transformation-step-body {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    @media (max-width: 768px) {
      .transformation-section { padding: 64px 20px; }
      .transformation-timeline {
        grid-template-columns: 1fr;
        gap: 32px;
      }
      .transformation-timeline::before { display: none; }
      .transformation-step { text-align: left; display: flex; gap: 16px; align-items: flex-start; padding: 0; }
      .transformation-step-node { flex-shrink: 0; margin: 0; width: 44px; height: 44px; font-size: 15px; }
    }

    /* ── Value stack note in pricing ─────────────────── */
    .pricing-value-note {
      max-width: 540px;
      margin: 0 auto 36px;
      padding: 16px 20px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 10px;
      text-align: center;
    }

    .pricing-value-note-title {
      font-size: 13px;
      font-weight: 600;
      color: var(--text-primary);
      margin-bottom: 6px;
    }

    .pricing-value-note-body {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.55;
    }

    .pricing-value-note-body s {
      color: var(--text-muted);
      opacity: 0.6;
    }

    /* ── Bottom CTA guarantee ────────────────────────── */
    .bottom-cta-guarantee {
      margin-top: 16px;
      font-size: 13px;
      color: var(--text-muted);
    }

    .bottom-cta-guarantee svg {
      display: inline;
      vertical-align: middle;
      margin-right: 4px;
      color: var(--positive);
    }

.js-display-none:not([style]) {
  display: none;
}
