  :root {
    --bg: #0a0a0f;
    --surface: #13131a;
    --surface2: #1c1c26;
    --border: rgba(255,255,255,0.07);
    --text: #f0f0f5;
    --muted: rgba(240,240,245,0.45);
    --red: #ff4d4d;
    --orange: #ff8c42;
    --yellow: #ffd166;
    --green: #06d6a0;
    --teal: #0cbaba;
    --blue: #4ea8de;
    --purple: #9b72cf;
    --pink: #e040fb;
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    overflow-x: hidden;
  }

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

  /* ── TYPOGRAPHY ── */
  h1, h2, h3, .logo { font-family: 'Syne', sans-serif; }

  /* ── NAV ── */
  .top-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to bottom, rgba(10,10,15,0.95), transparent);
    backdrop-filter: blur(0px);
  }

  .logo {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text);
    text-decoration: none;
  }
  .logo span {
    background: linear-gradient(135deg, var(--orange), var(--yellow), var(--green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .nav-badge {
    font-size: 12px;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    position: relative;
    overflow: hidden;
  }

  /* Radial glow behind wheel */
  .hero-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle,
      rgba(255,140,66,0.12) 0%,
      rgba(155,114,207,0.08) 40%,
      transparent 70%
    );
    pointer-events: none;
    animation: pulse 6s ease-in-out infinite;
  }

  @keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
  }

  /* ── WHEEL SVG ── */
  .wheel-wrap {
    position: relative;
    width: 280px;
    height: 280px;
    margin-bottom: 48px;
    animation: float 4s ease-in-out infinite;
  }

  @keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
  }

  .wheel-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 40px rgba(255,140,66,0.3)) drop-shadow(0 20px 60px rgba(0,0,0,0.6));
    animation: spin-slow 20s linear infinite;
  }

  .wheel-svg.paused { animation-play-state: paused; }

  @keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }

  .wheel-pointer {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 28px;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.8));
    z-index: 2;
  }

  /* Rays background behind wheel */
  .wheel-rays {
    position: absolute;
    inset: -60px;
    background: conic-gradient(
      from 0deg,
      rgba(255,77,77,0.06),
      rgba(255,140,66,0.06),
      rgba(255,209,102,0.06),
      rgba(6,214,160,0.06),
      rgba(12,186,186,0.06),
      rgba(78,168,222,0.06),
      rgba(155,114,207,0.06),
      rgba(224,64,251,0.06),
      rgba(255,77,77,0.06)
    );
    border-radius: 50%;
    animation: spin-slow 30s linear infinite reverse;
  }

  /* ── HERO TEXT ── */
  .hero-eyebrow {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 16px;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.2s;
  }

  h1 {
    font-size: clamp(52px, 10vw, 96px);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -3px;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.4s;
  }

  h1 .gradient {
    background: linear-gradient(135deg, var(--orange) 0%, var(--yellow) 40%, var(--green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .hero-sub {
    font-size: 18px;
    font-weight: 300;
    color: var(--muted);
    max-width: 440px;
    line-height: 1.6;
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.6s;
  }

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

  /* ── CTA BUTTONS ── */
  .cta-group {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.8s;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s;
    cursor: pointer;
    border: none;
  }

  .btn:hover { transform: translateY(-2px); }
  .btn:active { transform: translateY(0); }

  .btn-apple {
    background: var(--text);
    color: #0a0a0f;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  }
  .btn-apple:hover { box-shadow: 0 12px 40px rgba(255,255,255,0.15); }

  .btn-google {
    background: var(--surface2);
    color: var(--text);
    border: 1px solid var(--border);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  }
  .btn-google:hover { border-color: rgba(255,255,255,0.15); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }

  .btn-icon { width: 22px; height: 22px; flex-shrink: 0; }

  .btn-text-wrap { display: flex; flex-direction: column; text-align: left; }
  .btn-sub { font-size: 11px; font-weight: 400; opacity: 0.6; line-height: 1; margin-bottom: 2px; }
  .btn-main { font-size: 15px; font-weight: 600; line-height: 1; }

  /* ── PRICE TAG ── */
  .price-note {
    margin-top: 20px;
    font-size: 13px;
    color: var(--muted);
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 1s;
  }
  .price-note strong { color: var(--green); }

  /* ── SECTION ── */
  section {
    padding: 100px 24px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .section-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 16px;
    display: block;
  }

  h2 {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 20px;
  }

  .section-intro {
    font-size: 17px;
    color: var(--muted);
    max-width: 500px;
    line-height: 1.7;
    margin-bottom: 64px;
  }

  /* ── MOCKUP ── */
  .mockup-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 100px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 24px;
  }

  .mockup-phone {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 40px;
    aspect-ratio: 9/19.5;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease;
  }
  .mockup-phone:hover { transform: translateY(-8px) rotate(-1deg); }
  .mockup-phone:last-child:hover { transform: translateY(-8px) rotate(1deg); }

  .mockup-phone::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,140,66,0.06), transparent 60%);
  }

  .phone-notch {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 26px;
    background: var(--bg);
    border-radius: 20px;
    z-index: 2;
  }

  .phone-screen {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 24px 40px;
    gap: 16px;
  }

  /* Mini wheel inside mockup */
  .mini-wheel {
    width: 140px;
    height: 140px;
    position: relative;
  }
  .mini-wheel svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 8px 24px rgba(255,140,66,0.25));
    animation: spin-slow 15s linear infinite;
  }

  .mock-result {
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--text);
    text-align: center;
  }
  .mock-result-sub {
    font-size: 13px;
    color: var(--muted);
    text-align: center;
  }

  .mock-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    margin-top: 8px;
  }

  .mock-option {
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 13px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .mock-option-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
  }

  .mock-label {
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    color: var(--muted);
    white-space: nowrap;
    font-weight: 500;
  }

  .mockup-wrap {
    position: relative;
    padding-bottom: 32px;
  }

  /* ── FEATURES ── */
  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--border);
    border-radius: 24px;
    overflow: hidden;
  }

  .feature-card {
    background: var(--surface);
    padding: 36px 32px;
    transition: background 0.3s ease;
  }
  .feature-card:hover { background: var(--surface2); }

  .feature-icon {
    font-size: 32px;
    margin-bottom: 20px;
    display: block;
  }

  .feature-title {
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
  }

  .feature-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
  }

  /* accent color per card */
  .f-red .feature-icon { filter: hue-rotate(0deg); }

  /* ── COLOR BAR ── */
  .color-bar {
    height: 4px;
    border-radius: 2px;
    width: 40px;
    margin-bottom: 20px;
  }

  /* ── SECOND CTA ── */
  .cta-section {
    text-align: center;
    padding: 80px 24px 120px;
  }

  .cta-section h2 {
    margin-bottom: 16px;
  }

  .cta-section p {
    color: var(--muted);
    margin-bottom: 40px;
    font-size: 16px;
  }

  /* ── FOOTER ── */
  footer {
    border-top: 1px solid var(--border);
    padding: 32px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer-brand {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--muted);
  }

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

  .footer-links a {
    font-size: 13px;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--text); }

  /* ── DIVIDER ── */
  .rainbow-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--red), var(--orange), var(--yellow), var(--green), var(--teal), var(--blue), var(--purple), transparent);
    opacity: 0.4;
    margin: 0 40px;
  }

  /* ── SCROLL REVEAL ── */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }

  /* ── RESPONSIVE ── */
  @media (max-width: 700px) {
    nav { padding: 16px 20px; }
    .mockup-section { grid-template-columns: 1fr; max-width: 320px; }
    .features-grid { grid-template-columns: 1fr; }
    h1 { letter-spacing: -2px; }
    footer { flex-direction: column; gap: 16px; text-align: center; }
    .rainbow-divider { margin: 0 20px; }
  }


  .modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(6px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
  }
  .modal-backdrop.open {
    opacity: 1;
    pointer-events: all;
  }
  .modal {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    max-width: 520px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px) scale(0.97);
    transition: transform 0.25s ease;
  }
  .modal-backdrop.open .modal {
    transform: translateY(0) scale(1);
  }
  .modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--surface2);
    border: 1px solid var(--border);
    color: var(--muted);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
  }
  .modal-close:hover { background: var(--border); color: var(--text); }

  .modal-tag {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 12px;
    display: block;
  }
  .modal h3 {
    font-family: 'Syne', sans-serif;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 20px;
  }
  .modal p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 16px;
  }
  .modal p:last-child { margin-bottom: 0; }

  /* Contact form */
  .contact-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
  }
  .contact-field label {
    font-size: 12px;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
  .contact-field input,
  .contact-field textarea {
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 16px;
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s;
    resize: vertical;
  }
  .contact-field input:focus,
  .contact-field textarea:focus {
    border-color: rgba(255,140,66,0.5);
  }
  .contact-field textarea { min-height: 100px; }

  .btn-submit {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    background: var(--text);
    color: var(--bg);
    font-family: 'Syne', sans-serif;
    font-size: 15px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
    margin-top: 4px;
  }
  .btn-submit:hover { opacity: 0.88; transform: translateY(-1px); }

  .contact-email-note {
    text-align: center;
    font-size: 13px;
    color: var(--muted);
    margin-top: 14px;
  }
  .contact-email-note a {
    color: var(--orange);
    text-decoration: none;
  }
  .contact-email-note a:hover { text-decoration: underline; }


  #modal-privacy .modal {
    max-width: 680px;
  }
  .policy-date {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 28px;
    display: block;
  }
  .policy-body h2 {
    font-family: 'Syne', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--text);
    margin: 32px 0 12px;
  }
  .policy-body h3 {
    font-family: 'Syne', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin: 20px 0 8px;
    letter-spacing: 0;
  }
  .policy-body h4 {
    font-size: 13px;
    font-weight: 600;
    color: rgba(240,240,245,0.7);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin: 16px 0 6px;
  }
  .policy-body p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 12px;
  }
  .policy-body ul {
    padding-left: 20px;
    margin-bottom: 12px;
  }
  .policy-body ul li {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 8px;
  }
  .policy-body ul li ul {
    margin-top: 6px;
    margin-bottom: 0;
  }
  .policy-body strong {
    color: rgba(240,240,245,0.8);
    font-weight: 600;
  }
  .policy-body a {
    color: var(--orange);
    text-decoration: none;
  }
  .policy-body a:hover { text-decoration: underline; }
  .policy-divider {
    height: 1px;
    background: var(--border);
    margin: 8px 0 24px;
  }
  .policy-footer-note {
    font-size: 12px;
    color: rgba(240,240,245,0.2);
    text-align: center;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
  }

<!-- Contact Modal -->
  .captcha-row {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .captcha-question {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 11px 16px;
    flex-shrink: 0;
    letter-spacing: 0.03em;
  }
  .captcha-row input {
    flex: 1;
  }
  .form-msg {
    font-size: 14px;
    padding: 12px 16px;
    border-radius: 10px;
    margin-top: 12px;
    display: none;
  }
  .form-msg.success {
    background: rgba(6,214,160,0.1);
    border: 1px solid rgba(6,214,160,0.3);
    color: var(--green);
    display: block;
  }
  .form-msg.error {
    background: rgba(255,77,77,0.1);
    border: 1px solid rgba(255,77,77,0.3);
    color: var(--red);
    display: block;
  }
  .btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
  }
