    /* ===== FONT SELF-HOSTED ===== */
    @font-face {
      font-family: 'Red Hat Display';
      font-style: normal;
      font-weight: 400 900;
      font-display: swap;
      src: url('fonts/red-hat-display-latin-ext.woff2') format('woff2');
      unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
    }
    @font-face {
      font-family: 'Red Hat Display';
      font-style: normal;
      font-weight: 400 900;
      font-display: swap;
      src: url('fonts/red-hat-display-latin.woff2') format('woff2');
      unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
    }

    /* ===== RESET & BASE ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { font-size: 16px; scroll-behavior: smooth; }

    /* ===== LIGHT THEME (default) ===== */
    :root {
      --background: #F5F5F7;
      --foreground: #0A0613;
      --card: rgba(255, 255, 255, 0.72);
      --secondary: #F0EFF8;
      --muted: #E8E7F0;
      --muted-foreground: #6B6880;
      --accent: #FF33CC;
      --border: rgba(0, 0, 102, 0.12);
      --input-bg: rgba(255,255,255,0.8);
      --brand-gradient: linear-gradient(135deg, #000066, #FF33CC);
      --glow-pink: rgba(255, 51, 204, 0.25);
      --logo-color: #0A0613;
    }

    /* ===== DARK THEME ===== */
    .dark {
      --background: #0A0613;
      --foreground: #F5F5F7;
      --card: rgba(22, 19, 31, 0.75);
      --secondary: rgba(255,255,255,0.06);
      --muted: rgba(255,255,255,0.08);
      --muted-foreground: #A09BB8;
      --accent: #FF33CC;
      --border: rgba(255,255,255,0.1);
      --input-bg: rgba(255,255,255,0.06);
      --glow-pink: rgba(255, 51, 204, 0.35);
      --logo-color: #ffffff;
    }

    body {
      font-family: 'Red Hat Display', system-ui, sans-serif;
      background: var(--background);
      color: var(--foreground);
      min-height: 100vh;
      transition: background 0.3s, color 0.3s;
    }

    a { text-decoration: none; color: inherit; }
    img { display: block; max-width: 100%; }

    /* ===== UTILITIES ===== */
    .container { max-width: 1152px; margin: 0 auto; padding: 0 24px; }
    .grad-text {
      background: var(--brand-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .grad-bg { background: var(--brand-gradient); }
    .card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 16px;
      backdrop-filter: blur(20px);
    }
    .section-label {
      color: var(--accent);
      font-weight: 600;
      font-size: 11px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 12px;
      display: block;
    }
    .section-title {
      font-weight: 700;
      line-height: 1.2;
      letter-spacing: -0.02em;
      font-size: clamp(28px, 4vw, 44px);
      color: var(--foreground);
    }
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 28px;
      border-radius: 9999px;
      color: #fff;
      font-weight: 600;
      font-size: 15px;
      background: var(--brand-gradient);
      box-shadow: 0 8px 32px rgba(255,51,204,0.3);
      border: none;
      cursor: pointer;
      transition: opacity 0.2s, transform 0.2s;
      font-family: inherit;
    }
    .btn-primary:hover { opacity: 0.9; transform: scale(1.02); }
    .btn-primary:active { transform: scale(0.98); }
    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 28px;
      border-radius: 9999px;
      color: var(--foreground);
      font-weight: 600;
      font-size: 15px;
      background: var(--card);
      border: 1px solid var(--border);
      cursor: pointer;
      transition: background 0.2s;
      font-family: inherit;
    }
    .btn-secondary:hover { background: var(--secondary); }

    /* ===== NAVBAR ===== */
    #navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 50;
      height: 64px;
      display: flex;
      align-items: center;
      transition: all 0.3s;
    }
    #navbar.scrolled {
      background: var(--card);
      border-bottom: 1px solid var(--border);
      backdrop-filter: blur(20px);
    }
    #navbar .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
    }
    .nav-links { display: flex; align-items: center; gap: 28px; }
    .nav-links a {
      color: var(--muted-foreground);
      font-size: 14px;
      font-weight: 500;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--foreground); }
    .nav-right { display: flex; align-items: center; gap: 12px; }
    #theme-toggle {
      width: 36px; height: 36px;
      border-radius: 10px;
      border: none;
      background: var(--secondary);
      color: var(--muted-foreground);
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: background 0.2s, color 0.2s;
      font-size: 16px;
    }
    #theme-toggle:hover { background: var(--muted); color: var(--foreground); }
    #menu-btn {
      display: none;
      width: 36px; height: 36px;
      border-radius: 10px;
      border: none;
      background: var(--secondary);
      color: var(--foreground);
      cursor: pointer;
      align-items: center; justify-content: center;
      font-size: 18px;
    }
    #mobile-menu {
      display: none;
      flex-direction: column;
      gap: 16px;
      padding: 20px 24px;
      background: var(--card);
      border-top: 1px solid var(--border);
      backdrop-filter: blur(20px);
      position: fixed;
      top: 64px; left: 0; right: 0;
      z-index: 49;
    }
    #mobile-menu.open { display: flex; }
    #mobile-menu a {
      font-size: 16px; font-weight: 500; color: var(--foreground);
    }

    /* ===== HERO ===== */
    #hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      padding-top: 64px;
    }
    .hero-blob-1 {
      position: absolute;
      top: -200px; left: -200px;
      width: 600px; height: 600px;
      border-radius: 50%;
      opacity: 0.2;
      filter: blur(120px);
      background: radial-gradient(circle, #000066 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-blob-2 {
      position: absolute;
      bottom: -100px; right: -100px;
      width: 500px; height: 500px;
      border-radius: 50%;
      opacity: 0.2;
      filter: blur(100px);
      background: radial-gradient(circle, #FF33CC 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
      padding: 80px 24px;
      max-width: 1152px;
      margin: 0 auto;
      width: 100%;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 16px;
      border-radius: 9999px;
      border: 1px solid var(--border);
      background: var(--card);
      backdrop-filter: blur(20px);
      font-size: 13px;
      font-weight: 500;
      color: var(--muted-foreground);
      margin-bottom: 32px;
    }
    .hero-badge svg { color: var(--accent); }
    .hero-h1 {
      font-size: clamp(40px, 5vw, 64px);
      font-weight: 700;
      letter-spacing: -0.03em;
      line-height: 1.1;
      color: var(--foreground);
      margin-bottom: 24px;
    }
    .hero-p {
      font-size: 18px;
      color: var(--muted-foreground);
      line-height: 1.7;
      max-width: 480px;
      margin-bottom: 40px;
    }
    .hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 20px; }
    .hero-sub { font-size: 14px; color: var(--muted-foreground); }
    /* Dashboard mockup */
    .dashboard-wrap { position: relative; }
    .dashboard-card {
      border-radius: 16px;
      border: 1px solid var(--border);
      backdrop-filter: blur(20px);
      overflow: hidden;
      background: var(--card);
      box-shadow: 0 32px 80px rgba(0,0,102,0.15), 0 0 60px rgba(255,51,204,0.1);
    }
    .win-chrome {
      display: flex; align-items: center; gap: 8px;
      padding: 10px 16px;
      border-bottom: 1px solid var(--border);
    }
    .dot { width: 12px; height: 12px; border-radius: 50%; }
    .dot-r { background: #FC5F57; }
    .dot-y { background: #FDBC2C; }
    .dot-g { background: #25C940; }
    .url-bar {
      flex: 1; margin: 0 16px;
      background: var(--secondary);
      border-radius: 6px;
      padding: 4px 12px;
      font-size: 12px;
      color: var(--muted-foreground);
      text-align: center;
    }
    .dash-body { padding: 20px; }
    .kpi-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 16px; }
    .kpi-card {
      background: var(--secondary);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 12px;
    }
    .kpi-label { font-size: 11px; color: var(--muted-foreground); margin-bottom: 4px; }
    .kpi-val { font-weight: 700; font-size: 18px; color: var(--foreground); }
    .kpi-delta { font-size: 11px; font-weight: 600; color: #22c55e; }
    .mini-chart {
      background: var(--secondary);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 16px;
      margin-bottom: 12px;
    }
    .mini-chart-header {
      display: flex; justify-content: space-between; align-items: center;
      margin-bottom: 12px;
    }
    .mini-chart-title { font-size: 13px; font-weight: 500; color: var(--foreground); }
    .mini-chart-range { font-size: 11px; color: var(--muted-foreground); }
    .bars { display: flex; align-items: flex-end; gap: 4px; height: 60px; }
    .bar { flex: 1; border-radius: 3px; }
    .mini-table {
      background: var(--secondary);
      border: 1px solid var(--border);
      border-radius: 12px;
      overflow: hidden;
    }
    .tbl-head {
      display: grid; grid-template-columns: 1fr 80px 60px;
      padding: 8px 12px;
      border-bottom: 1px solid var(--border);
      font-size: 11px; font-weight: 600; color: var(--muted-foreground);
    }
    .tbl-row {
      display: grid; grid-template-columns: 1fr 80px 60px;
      padding: 6px 12px;
      font-size: 11px; color: var(--foreground);
      transition: background 0.2s;
    }
    .tbl-row:hover { background: var(--muted); }
    .tbl-page { color: var(--muted-foreground); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
    .tbl-v { text-align: center; font-weight: 500; }
    .tbl-b { text-align: right; }
    .dash-glow {
      position: absolute;
      bottom: -32px; left: 50%; transform: translateX(-50%);
      width: 300px; height: 60px;
      filter: blur(40px);
      background: var(--brand-gradient);
      opacity: 0.4;
      border-radius: 50%;
      pointer-events: none;
    }

    /* ===== SOCIAL PROOF ===== */
    #social-proof {
      padding: 64px 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .stats-grid {
      display: grid; grid-template-columns: repeat(4,1fr); gap: 32px;
    }
    .stat { text-align: center; }
    .stat-val {
      font-weight: 700; font-size: 36px; margin-bottom: 4px;
      background: var(--brand-gradient);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }
    .stat-label { font-size: 14px; color: var(--muted-foreground); }
    .logos-label {
      text-align: center;
      font-size: 11px;
      color: var(--muted-foreground);
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 32px;
    }
    .logos-row {
      display: flex; flex-wrap: wrap;
      justify-content: center; align-items: center;
      gap: 40px;
    }

    /* ===== PROBLEM / SOLUTION ===== */
    #benefits { padding: 96px 0; }
    .problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
    .ps-card { border-radius: 16px; padding: 28px; border: 1px solid var(--border); backdrop-blur: blur(20px); background: var(--card); }
    .ps-header { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
    .ps-icon {
      width: 32px; height: 32px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .ps-icon-bad { background: rgba(239,68,68,0.1); }
    .ps-icon-good { background: var(--brand-gradient); }
    .ps-title { font-weight: 700; font-size: 20px; color: var(--foreground); }
    .ps-items { display: flex; flex-direction: column; gap: 16px; }
    .ps-item { display: flex; gap: 12px; align-items: flex-start; }
    .ps-bullet {
      width: 20px; height: 20px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
    }
    .ps-bullet-bad { background: rgba(239,68,68,0.1); }
    .ps-bullet-good { background: var(--brand-gradient); }
    .ps-text { font-size: 14px; color: var(--muted-foreground); line-height: 1.6; }
    .ps-solution-card {
      position: relative;
      overflow: hidden;
      border-color: rgba(255,51,204,0.2) !important;
    }
    .ps-solution-glow {
      position: absolute; top: 0; right: 0;
      width: 192px; height: 192px;
      filter: blur(60px);
      background: radial-gradient(circle, rgba(255,51,204,0.15) 0%, transparent 70%);
      pointer-events: none;
    }

    /* ===== BENEFIT CARDS ===== */
    #product { padding: 96px 0; background: rgba(240,239,248,0.3); }
    .dark #product { background: rgba(255,255,255,0.02); }
    .benefits-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
    .benefit-card {
      border-radius: 16px; padding: 24px;
      border: 1px solid var(--border);
      backdrop-filter: blur(20px);
      background: var(--card);
      transition: border-color 0.3s;
    }
    .benefit-card:hover { border-color: rgba(255,51,204,0.3); }
    .benefit-icon {
      width: 44px; height: 44px; border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      background: var(--brand-gradient);
      margin-bottom: 20px;
      transition: transform 0.3s;
      color: #fff;
    }
    .benefit-card:hover .benefit-icon { transform: scale(1.1); }
    .benefit-title { font-weight: 700; font-size: 18px; color: var(--foreground); margin-bottom: 10px; }
    .benefit-desc { font-size: 14px; color: var(--muted-foreground); line-height: 1.65; }

    /* ===== PRODUCT FEATURES ===== */
    #features { padding: 96px 0; }
    .features-list { display: flex; flex-direction: column; gap: 80px; }
    .feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
    .feature-row.reverse .feature-text { order: 2; }
    .feature-row.reverse .feature-visual { order: 1; }
    .feature-eyebrow { color: var(--accent); font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px; }
    .feature-title { font-weight: 700; font-size: clamp(24px,3vw,32px); letter-spacing: -0.02em; color: var(--foreground); margin-bottom: 20px; line-height: 1.2; }
    .feature-desc { font-size: 17px; color: var(--muted-foreground); line-height: 1.7; }
    .feature-visual { position: relative; }
    .feature-glow {
      position: absolute; bottom: -16px; left: 50%; transform: translateX(-50%);
      width: 200px; height: 40px;
      filter: blur(30px);
      background: var(--brand-gradient);
      opacity: 0.3; border-radius: 50%; pointer-events: none;
    }
    /* Traffic chart */
    .traffic-card { border-radius: 16px; border: 1px solid var(--border); overflow: hidden; background: var(--card); }
    .tc-header { padding: 16px 20px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
    .tc-title { font-size: 13px; font-weight: 600; color: var(--foreground); }
    .tc-live { font-size: 12px; font-weight: 500; color: var(--accent); }
    .tc-body { padding: 20px; }
    .tc-row { margin-bottom: 12px; }
    .tc-row-head { display: flex; justify-content: space-between; font-size: 12px; margin-bottom: 6px; }
    .tc-name { color: var(--foreground); font-weight: 500; }
    .tc-val { color: var(--muted-foreground); }
    .tc-bar-bg { height: 6px; background: var(--secondary); border-radius: 999px; overflow: hidden; }
    .tc-bar-fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, #000066, #FF33CC); }
    /* Funnel chart */
    .funnel-card { border-radius: 16px; border: 1px solid var(--border); overflow: hidden; background: var(--card); }
    .fc-header { padding: 16px 20px; border-bottom: 1px solid var(--border); }
    .fc-title { font-size: 13px; font-weight: 600; color: var(--foreground); }
    .fc-body { padding: 20px; display: flex; flex-direction: column; gap: 8px; }
    .fc-step { display: flex; align-items: center; gap: 12px; }
    .fc-num {
      width: 20px; height: 20px; border-radius: 50%;
      font-size: 10px; font-weight: 700; color: #fff;
      display: flex; align-items: center; justify-content: center;
      background: var(--brand-gradient); flex-shrink: 0;
    }
    .fc-detail { flex: 1; }
    .fc-label-row { display: flex; justify-content: space-between; font-size: 12px; margin-bottom: 4px; }
    .fc-label { color: var(--foreground); font-weight: 500; }
    .fc-stat { color: var(--muted-foreground); }
    .fc-bar-bg { height: 8px; background: var(--secondary); border-radius: 999px; overflow: hidden; }
    .fc-bar-fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, #000066, #FF33CC); }

    /* ===== HOW IT WORKS ===== */
    #how { padding: 96px 0; background: rgba(240,239,248,0.3); }
    .dark #how { background: rgba(255,255,255,0.02); }
    .how-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; position: relative; }
    .how-connector {
      display: none;
      position: absolute;
      top: 40px; left: 20%; right: 20%;
      height: 1px;
      background: linear-gradient(90deg, #000066, #FF33CC);
      opacity: 0.3;
    }
    .how-card { border-radius: 16px; padding: 28px; border: 1px solid var(--border); background: var(--card); height: 100%; min-width: 0; }
    .how-header { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
    .how-icon {
      width: 40px; height: 40px; border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      background: var(--brand-gradient); color: #fff; flex-shrink: 0;
    }
    .how-num { font-weight: 900; font-size: 28px; letter-spacing: -0.03em; color: var(--muted-foreground); opacity: 0.3; }
    .how-title { font-weight: 700; font-size: 20px; color: var(--foreground); margin-bottom: 12px; }
    .how-desc { font-size: 14px; color: var(--muted-foreground); line-height: 1.65; margin-bottom: 16px; }
    .code-block {
      background: var(--muted);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 12px;
      overflow-x: auto;
    }
    .code-block pre { font-size: 12px; color: var(--foreground); font-family: 'Courier New', monospace; white-space: pre; }

    /* ===== COMPARISON ===== */
    #compare { padding: 96px 0; }
    .comparison-table { border-radius: 16px; border: 1px solid var(--border); overflow: hidden; background: var(--card); }
    .cmp-header { display: grid; grid-template-columns: 1.6fr 1fr 1fr; }
    .cmp-h0 { padding: 20px 24px; border-bottom: 1px solid var(--border); }
    .cmp-hcol {
      padding: 20px 12px;
      border-bottom: 1px solid var(--border);
      border-left: 1px solid var(--border);
      text-align: center;
      position: relative;
    }
    .cmp-hcol.highlight { background: rgba(255,51,204,0.04); }
    .cmp-top-line {
      position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: var(--brand-gradient);
    }
    .cmp-hname { font-size: 14px; font-weight: 700; color: var(--foreground); }
    .cmp-hsub { font-size: 11px; color: var(--muted-foreground); margin-top: 4px; opacity: 0.7; }
    .cmp-hname-muted { color: var(--muted-foreground); }
    .cmp-row { display: grid; grid-template-columns: 1.6fr 1fr 1fr; transition: background 0.2s; }
    .cmp-row:hover { background: rgba(240,239,248,0.4); }
    .dark .cmp-row:hover { background: rgba(255,255,255,0.03); }
    .cmp-row:not(:last-child) .cmp-feat,
    .cmp-row:not(:last-child) .cmp-cell { border-bottom: 1px solid var(--border); }
    .cmp-feat { padding: 14px 24px; display: flex; align-items: center; font-size: 14px; font-weight: 500; color: var(--foreground); }
    .cmp-cell {
      padding: 14px 12px;
      border-left: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
    }
    .cmp-cell.highlight { background: rgba(255,51,204,0.04); }
    .icon-yes {
      width: 24px; height: 24px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      background: var(--brand-gradient);
    }
    .icon-no {
      width: 24px; height: 24px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      background: rgba(239,68,68,0.1);
    }
    .icon-partial {
      width: 24px; height: 24px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      background: rgba(234,179,8,0.1);
    }
    .cmp-legend {
      display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
      margin-top: 24px;
    }
    .legend-item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--muted-foreground); }
    .legend-dot { width: 16px; height: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }

    /* ===== CTA FORM ===== */
    #cta { padding: 96px 0; position: relative; overflow: hidden; }
    .cta-glow-1 {
      position: absolute; top: 0; left: 50%; transform: translateX(-50%);
      width: 700px; height: 400px;
      filter: blur(100px);
      background: radial-gradient(ellipse, rgba(255,51,204,0.15) 0%, transparent 70%);
      pointer-events: none;
    }
    .cta-glow-2 {
      position: absolute; bottom: 0; left: 0;
      width: 400px; height: 300px;
      filter: blur(80px);
      background: radial-gradient(ellipse, rgba(0,0,102,0.2) 0%, transparent 70%);
      pointer-events: none;
    }
    .cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; text-align: center; }
    .cta-title { font-weight: 700; font-size: clamp(30px,4vw,48px); letter-spacing: -0.025em; color: var(--foreground); margin-bottom: 20px; line-height: 1.15; }
    .cta-desc { font-size: 18px; color: var(--muted-foreground); margin-bottom: 40px; line-height: 1.6; }
    .cta-form {
      border-radius: 16px; padding: 32px;
      background: var(--card);
      border: 1px solid rgba(255,51,204,0.15);
      text-align: left;
    }
    .form-fields { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }
    .field-label { display: block; font-size: 14px; font-weight: 600; color: var(--foreground); margin-bottom: 6px; }
    .field-input {
      width: 100%; padding: 12px 16px;
      border-radius: 12px;
      border: 1px solid var(--border);
      background: var(--input-bg);
      color: var(--foreground);
      font-size: 14px; font-family: inherit;
      outline: none; transition: border-color 0.2s;
    }
    .field-input::placeholder { color: var(--muted-foreground); }
    .field-input:focus { border-color: rgba(255,51,204,0.5); }
    .form-sub { font-size: 12px; color: var(--muted-foreground); text-align: center; margin-top: 16px; }
    /* ── Privacy consent checkbox ── */
    .privacy-consent-wrap {
      display: flex; align-items: flex-start; gap: 10px;
      margin-bottom: 20px;
    }
    .privacy-checkbox {
      flex-shrink: 0;
      width: 18px; height: 18px;
      margin-top: 2px;
      accent-color: #FF33CC;
      cursor: pointer;
    }
    .privacy-label {
      font-size: 13px;
      color: var(--muted-foreground);
      line-height: 1.5;
      cursor: pointer;
    }
    .privacy-link {
      color: var(--foreground);
      text-decoration: underline;
      text-underline-offset: 2px;
    }
    .privacy-link:hover { color: #FF33CC; }
    /* ===== FOOTER ===== */
    footer {
      border-top: 1px solid var(--border);
      padding: 48px 0;
    }
    .footer-inner {
      display: flex; flex-direction: row;
      align-items: center; justify-content: space-between; gap: 24px;
      flex-wrap: wrap;
    }
    .footer-links { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; }
    .footer-links a { font-size: 14px; color: var(--muted-foreground); transition: color 0.2s; }
    .footer-links a:hover { color: var(--foreground); }
    .footer-copy { font-size: 12px; color: var(--muted-foreground); }

    /* ===== SECTION HEADER ===== */
    .section-header { text-align: center; margin-bottom: 64px; }

    /* ===== SVG ICONS (inline) ===== */
    .icon { display: inline-block; vertical-align: middle; }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 900px) {
      .hero-grid { grid-template-columns: 1fr; }
      .dashboard-wrap { display: none; }
      .stats-grid { grid-template-columns: repeat(2,1fr); }
      .problem-grid { grid-template-columns: 1fr; }
      .benefits-grid { grid-template-columns: repeat(2,1fr); }
      .feature-row { grid-template-columns: 1fr; }
      .feature-row.reverse .feature-text { order: 0; }
      .feature-row.reverse .feature-visual { order: 0; }
      .how-grid { grid-template-columns: 1fr; }
      .cmp-header, .cmp-row { font-size: 13px; }
      .footer-inner { flex-direction: column; align-items: center; text-align: center; }
    }
    @media (max-width: 640px) {
      .nav-links { display: none; }
      #menu-btn { display: flex; }
      .benefits-grid { grid-template-columns: 1fr; }
      .stats-grid { grid-template-columns: repeat(2,1fr); }
    }
    @media (min-width: 768px) {
      .how-connector { display: block; }
    }

    /* ===== CONFIRM MODAL ===== */
    #confirm-modal {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 200;
      align-items: center;
      justify-content: center;
    }
    #confirm-modal.open {
      display: flex;
    }
    .modal-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(10, 6, 19, 0.72);
      backdrop-filter: blur(4px);
    }
    .modal-box {
      position: relative;
      z-index: 1;
      background: var(--card);
      border: 1px solid rgba(255, 51, 204, 0.25);
      border-radius: 20px;
      padding: 48px 40px 40px;
      max-width: 480px;
      width: calc(100% - 48px);
      text-align: center;
      box-shadow: 0 32px 80px rgba(0, 0, 102, 0.2), 0 0 60px rgba(255, 51, 204, 0.12);
      animation: modal-in 0.22s ease;
    }
    @keyframes modal-in {
      from { opacity: 0; transform: scale(0.93) translateY(12px); }
      to   { opacity: 1; transform: scale(1) translateY(0); }
    }
    .modal-close-btn {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: none;
      background: var(--secondary);
      color: var(--muted-foreground);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      line-height: 1;
      transition: background 0.2s, color 0.2s;
    }
    .modal-close-btn:hover {
      background: var(--muted);
      color: var(--foreground);
    }
    .modal-success-icon {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      background: var(--brand-gradient);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 24px;
      box-shadow: 0 8px 32px var(--glow-pink);
    }
    .modal-title {
      font-weight: 700;
      font-size: 22px;
      color: var(--foreground);
      margin-bottom: 12px;
      letter-spacing: -0.02em;
    }
    .modal-desc {
      font-size: 15px;
      color: var(--muted-foreground);
      line-height: 1.65;
      margin-bottom: 32px;
    }

    /* ===== LEGAL PAGES (Cookie Policy, etc.) ===== */
    .legal-wrap {
      padding-top: 64px; /* offset per navbar fissa */
      padding-bottom: 96px;
      min-height: 100vh;
    }
    .legal {
      max-width: 760px;
      padding-top: 56px;
    }
    .legal-header h1 {
      font-size: 40px;
      font-weight: 800;
      letter-spacing: -0.02em;
      color: var(--foreground);
      margin-bottom: 16px;
    }
    .legal-intro {
      font-size: 16px;
      line-height: 1.7;
      color: var(--muted-foreground);
      margin-bottom: 40px;
    }
    .legal section {
      margin-bottom: 40px;
    }
    .legal h2 {
      font-size: 22px;
      font-weight: 700;
      color: var(--foreground);
      letter-spacing: -0.01em;
      margin-bottom: 16px;
      padding-top: 8px;
    }
    .legal h3 {
      font-size: 17px;
      font-weight: 700;
      color: var(--foreground);
      margin: 24px 0 10px;
    }
    .legal p {
      font-size: 15px;
      line-height: 1.75;
      color: var(--muted-foreground);
      margin-bottom: 14px;
    }
    .legal ul {
      margin: 0 0 14px 0;
      padding-left: 22px;
    }
    .legal li {
      font-size: 15px;
      line-height: 1.75;
      color: var(--muted-foreground);
      margin-bottom: 8px;
    }
    .legal strong {
      color: var(--foreground);
      font-weight: 600;
    }
    .legal code {
      font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
      background: var(--secondary);
      border: 1px solid var(--border);
      border-radius: 6px;
      padding: 2px 6px;
      font-size: 13px;
      color: var(--foreground);
    }
    .legal a {
      color: var(--accent);
      text-decoration: underline;
      text-underline-offset: 2px;
    }
    .legal a:hover {
      opacity: 0.85;
    }
    .legal-updated {
      font-size: 13px;
      color: var(--muted-foreground);
      border-top: 1px solid var(--border);
      padding-top: 20px;
      margin-top: 8px;
    }
