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

  /* ── LIGHT / DARK MODE — full page ── */
  :root {
    --purple: #533AB7; --purple-light: #EEEDFE; --purple-dark: #3C3489;
    --text: #111; --text-muted: #666; --bg: #fff; --bg2: #F7F6FF;
    --border: rgba(83,58,183,0.12);
    --card-bg: #F7F6FF; --card-border: rgba(83,58,183,0.12);
    --toggle-bg: rgba(83,58,183,0.1);
    --hero-bg: #0a0718; --orb-opacity: 0.55;
  }
  [data-mode="dark"] {
    --text: #F0EFFE; --text-muted: #9B97C4; --bg: #0D0B1A; --bg2: #130F28;
    --border: rgba(140,114,240,0.15);
    --card-bg: #1A1630; --card-border: rgba(140,114,240,0.15);
    --toggle-bg: rgba(140,114,240,0.15);
    --hero-bg: #04020f; --orb-opacity: 0.7;
  }

  html { scroll-behavior: smooth; scroll-padding-top: 90px; scrollbar-color: var(--purple) transparent; scrollbar-width: thin; }
  body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); transition: background 0.4s, color 0.4s; }

  /* ── CUSTOM SCROLLBAR ── */
  ::-webkit-scrollbar { width: 10px; }
  ::-webkit-scrollbar-track { background: transparent; }
  ::-webkit-scrollbar-thumb { background-color: var(--purple); border-radius: 20px; border: 2px solid var(--bg); background-clip: padding-box; }
  ::-webkit-scrollbar-thumb:hover { background-color: #442f96; }

  /* ── CURSOR SPOTLIGHT (cards) ── */
  .about-card, .faq-item { position: relative; }
  .about-card::before, .faq-item::before { content: ''; position: absolute; inset: 0; border-radius: inherit; background: radial-gradient(280px circle at var(--spot-x, 50%) var(--spot-y, 50%), rgba(140,114,240,0.16), transparent 70%); opacity: 0; transition: opacity 0.35s ease; pointer-events: none; z-index: 0; }
  .about-card:hover::before, .faq-item:hover::before { opacity: 1; }
  .about-card > *, .faq-item > * { position: relative; z-index: 1; }

  /* ── MAGNETIC BUTTONS ── */
  .magnetic-btn { transition: transform 0.2s ease-out; will-change: transform; }

  /* ── LOGO ── */
  .grind-logo { display: inline-flex; align-items: center; font-family: 'Syne', sans-serif; font-weight: 800; letter-spacing: 2px; line-height: 1; }
  .grind-logo svg { display: block; }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 48px;
    background: rgba(10,7,24,0.75);
    -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: background 0.4s, border-color 0.4s;
  }
  nav.scrolled { background: rgba(255,255,255,0.97); border-bottom: 1px solid var(--border); }
  nav.scrolled .nav-links a { color: var(--text-muted); }
  nav.scrolled .nav-links a:hover { color: var(--purple); }
  nav.scrolled .nav-logo-el { color: var(--purple) !important; }
  .nav-logo-el img { filter: brightness(0) invert(1); transition: filter 0.3s ease; }
  nav.scrolled .nav-logo-el img { filter: none; }
  [data-mode="dark"] nav.scrolled { background: rgba(13,11,26,0.97); border-bottom: 1px solid var(--border); }
  [data-mode="dark"] nav.scrolled .nav-logo-el { color: #8C72F0 !important; }
  [data-mode="dark"] nav.scrolled .nav-logo-el img { filter: brightness(0) invert(1); }
  [data-mode="dark"] nav.scrolled .nav-links a { color: var(--text-muted); }
  [data-mode="dark"] nav.scrolled .nav-links a:hover { color: #8C72F0; }

  .nav-right { display: flex; align-items: center; gap: 14px; }
  .nav-links { display: flex; align-items: center; gap: 32px; }
  .nav-links a { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.2s; }
  .nav-links a:hover { color: #fff; }
  .nav-cta { background: var(--purple); color: #fff; border: none; border-radius: 10px; padding: 10px 22px; font-size: 14px; font-family: 'Inter', sans-serif; font-weight: 500; cursor: pointer; transition: all 0.2s; white-space: nowrap; }
  .nav-cta:hover { opacity: 0.88; }
  .nav-cta-short { display: none; }

  /* ── NAV ACTIVE HIGHLIGHT ── */
  .nav-links a.active { color: #fff; position: relative; }
  .nav-links a.active::after { content: ''; position: absolute; bottom: -4px; left: 50%; right: 50%; height: 2px; background: #8C72F0; border-radius: 2px; transition: left 0.3s ease, right 0.3s ease; }
  .nav-links a.active::after { left: 0; right: 0; }
  nav.scrolled .nav-links a.active { color: var(--purple); }
  nav.scrolled .nav-links a.active::after { background: var(--purple); }

  /* ── HAMBURGER ── */
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
  .hamburger span { display: block; width: 22px; height: 2px; background: white; border-radius: 2px; transition: all 0.3s; }
  nav.scrolled .hamburger span { background: var(--text); }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-menu { display: none; position: fixed; top: 57px; left: 0; right: 0; z-index: 99; background: rgba(10,7,24,0.97); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(255,255,255,0.1); flex-direction: column; padding: 12px 20px 20px; gap: 2px; }
  .mobile-menu.open { display: flex; }
  .mobile-menu a { font-size: 16px; font-weight: 500; color: rgba(255,255,255,0.85); text-decoration: none; padding: 12px 4px; border-bottom: 1px solid rgba(255,255,255,0.07); transition: color 0.2s; }
  .mobile-menu a:last-child { border-bottom: none; }
  .mobile-menu a:hover { color: #fff; }
  nav.scrolled ~ .mobile-menu { background: rgba(255,255,255,0.98); border-bottom: 1px solid var(--border); }
  nav.scrolled ~ .mobile-menu a { color: var(--text-muted); border-bottom-color: var(--border); }
  nav.scrolled ~ .mobile-menu a:hover { color: var(--purple); }
  [data-mode="dark"] nav.scrolled ~ .mobile-menu { background: rgba(13,11,26,0.98); }
  [data-mode="dark"] nav.scrolled ~ .mobile-menu a { color: var(--text-muted); }

  /* toggle */
  .mode-toggle { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); border-radius: 20px; padding: 6px 12px; cursor: pointer; transition: background 0.3s, border-color 0.3s; flex-shrink: 0; font-size: 13px; color: rgba(255,255,255,0.85); font-family: 'Inter', sans-serif; font-weight: 500; user-select: none; }
  .mode-toggle:hover { background: rgba(255,255,255,0.22); }
  .toggle-track { width: 32px; height: 18px; border-radius: 9px; background: rgba(255,255,255,0.25); position: relative; transition: background 0.3s; flex-shrink: 0; }
  .toggle-thumb { position: absolute; top: 3px; left: 3px; width: 12px; height: 12px; border-radius: 50%; background: #fff; transition: transform 0.3s; }
  [data-mode="dark"] .toggle-thumb { transform: translateX(14px); background: #8C72F0; }
  [data-mode="dark"] .toggle-track { background: rgba(140,114,240,0.4); }
  nav.scrolled .mode-toggle { background: var(--toggle-bg); border-color: var(--border); color: var(--text-muted); }
  nav.scrolled .toggle-track { background: rgba(83,58,183,0.2); }
  nav.scrolled .toggle-thumb { background: var(--purple); }
  [data-mode="dark"] nav.scrolled .toggle-thumb { background: #8C72F0; }

  /* ── SHARED ── */
  .section-eyebrow { text-align: center; font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--purple); margin-bottom: 14px; }
  .section-title { font-family: 'Syne', sans-serif; font-size: clamp(32px, 5vw, 52px); font-weight: 800; text-align: center; letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 14px; color: var(--text); }
  .section-sub { text-align: center; font-size: 17px; color: var(--text-muted); max-width: 500px; margin: 0 auto 64px; line-height: 1.6; }
  .btn-primary { background: var(--purple); color: #fff; padding: 15px 32px; border-radius: 12px; font-size: 16px; font-weight: 500; font-family: 'Inter', sans-serif; border: none; cursor: pointer; transition: all 0.2s; text-decoration: none; display: inline-block; }
  .btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
  .btn-secondary { background: transparent; color: var(--purple); padding: 15px 32px; border-radius: 12px; font-size: 16px; font-weight: 500; font-family: 'Inter', sans-serif; border: 1.5px solid rgba(83,58,183,0.3); cursor: pointer; transition: all 0.2s; text-decoration: none; display: inline-block; }
  .btn-secondary:hover { background: var(--purple-light); }
  .btn-primary-dark { background: #fff; color: var(--purple); padding: 15px 32px; border-radius: 12px; font-size: 16px; font-weight: 500; font-family: 'Inter', sans-serif; border: none; cursor: pointer; transition: all 0.2s; }
  .btn-primary-dark:hover { opacity: 0.92; transform: translateY(-1px); }
  .btn-secondary-dark { background: transparent; color: #fff; padding: 15px 32px; border-radius: 12px; font-size: 16px; font-weight: 500; font-family: 'Inter', sans-serif; border: 1.5px solid rgba(255,255,255,0.25); cursor: pointer; transition: all 0.2s; }
  .btn-secondary-dark:hover { background: rgba(255,255,255,0.08); }

  /* ── SCROLL ANIMATIONS (fade in AND out) ── */
  .fade-in { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
  .fade-in-left { opacity: 0; transform: translateX(-32px); transition: opacity 0.65s ease, transform 0.65s ease; }
  .fade-in-left.visible { opacity: 1; transform: translateX(0); }
  .fade-in-right { opacity: 0; transform: translateX(32px); transition: opacity 0.65s ease, transform 0.65s ease; }
  .fade-in-right.visible { opacity: 1; transform: translateX(0); }
  .fade-in.visible { opacity: 1; transform: translateY(0); }
  .fade-in-delay-1 { transition-delay: 0.1s; }
  .fade-in-delay-2 { transition-delay: 0.2s; }
  .fade-in-delay-3 { transition-delay: 0.3s; }
  .fade-in-delay-4 { transition-delay: 0.4s; }

  /* ── HERO ── */
  .hero-pin-wrap { position: relative; }
  .hero-pinned .hero { position: sticky; }
  .hero { min-height: 100vh; min-height: 100dvh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 120px 24px 80px; position: relative; top: 0; overflow: hidden; background: var(--hero-bg); transition: background 0.5s; }
  .orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: var(--orb-opacity); transition: opacity 0.5s; }
  .orb1 { width: 600px; height: 600px; background: #533AB7; top: -100px; left: -100px; animation: drift1 7s ease-in-out infinite; }
  .orb2 { width: 500px; height: 500px; background: #8C72F0; bottom: -150px; right: -80px; animation: drift2 9s ease-in-out infinite; }
  .orb3 { width: 400px; height: 400px; background: #3C3489; top: 30%; left: 40%; animation: drift3 11s ease-in-out infinite; }
  .orb4 { width: 300px; height: 300px; background: #B8AEF5; top: 10%; right: 10%; animation: drift4 6s ease-in-out infinite; }
  .orb5 { width: 250px; height: 250px; background: #7B5EA7; bottom: 10%; left: 20%; animation: drift1 8s ease-in-out infinite reverse; }
  .orb6 { width: 180px; height: 180px; background: #533AB7; top: 50%; right: 25%; animation: drift2 5s ease-in-out infinite reverse; }
  .orb7 { width: 220px; height: 220px; background: #4A2FA0; top: 20%; left: 30%; animation: drift3 10s ease-in-out infinite; }
  .orb8 { width: 160px; height: 160px; background: #9B87F0; bottom: 30%; right: 5%; animation: drift4 7s ease-in-out infinite reverse; }
  @keyframes drift1 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(80px,60px) scale(1.1)} }
  @keyframes drift2 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-60px,-80px) scale(1.15)} }
  @keyframes drift3 { 0%,100%{transform:translate(0,0) scale(1)} 33%{transform:translate(-40px,50px) scale(0.9)} 66%{transform:translate(60px,-30px) scale(1.05)} }
  @keyframes drift4 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-50px,40px)} }
  .hero-now-building { position: absolute; top: 88px; left: 48px; z-index: 2; display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); color: #CECBF6; font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 14px; border-radius: 20px; -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
  .hero-now-building span { width: 6px; height: 6px; border-radius: 50%; background: #8C72F0; animation: pulse 2s infinite; }
  @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.8)} }
  .hero-content { position: relative; z-index: 1; max-width: 780px; will-change: transform; }
  .hero-canvas { position: absolute; inset: 0; z-index: 0; will-change: transform; }
  /* hero h1 always white regardless of mode */
  .hero h1 { font-family: 'Syne', sans-serif; font-size: clamp(48px, 8vw, 88px); font-weight: 800; line-height: 1.0; letter-spacing: -0.03em; color: #fff !important; -webkit-text-fill-color: #fff !important; margin-bottom: 16px; }
  .hero h1 em { font-style: normal; background: linear-gradient(135deg, #B8AEF5, #8C72F0); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

  /* typing animation */
  .hero-sub { font-size: 18px; color: rgba(255,255,255,0.55); line-height: 1.6; max-width: 520px; margin: 16px auto 28px; min-height: 32px; display: flex; align-items: center; justify-content: center; text-align: center; }
  .typing-cursor { display: inline-block; width: 2px; height: 1.1em; background: rgba(255,255,255,0.6); margin-left: 2px; vertical-align: middle; animation: blink 1s infinite; }
  @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

  .hero-pills { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; width: 280px; margin: 0 auto 32px; }
  .hero-pill { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.9); font-size: 13px; font-weight: 500; padding: 8px 0; border-radius: 24px; text-align: center; -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); opacity: 0; transform: translateY(10px); animation: pillEnter 0.5s ease forwards; }
  .hero-pill:nth-child(1) { animation-delay: 0.5s; }
  .hero-pill:nth-child(2) { animation-delay: 0.62s; }
  .hero-pill:nth-child(3) { animation-delay: 0.74s; }
  .hero-pill:nth-child(4) { animation-delay: 0.86s; }
  @keyframes pillEnter { to { opacity: 1; transform: translateY(0); } }
  .hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
  .hero-social-proof { margin-top: 48px; display: flex; align-items: center; gap: 16px; justify-content: center; font-size: 13px; color: rgba(255,255,255,0.5); }
  .avatar-stack { display: flex; }
  .avatar-stack div { width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.1); border: 2px solid rgba(255,255,255,0.3); margin-left: -4px; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 500; color: #CECBF6; position: relative; }
  .avatar-stack div:first-child { margin-left: 0; }

  /* ── TIMELINE STRIP ── */
  .timeline-strip { background: #0a0718; padding: 48px 24px; position: relative; overflow: hidden; }
  .timeline-strip::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(83,58,183,0.3) 0%, rgba(140,114,240,0.1) 100%); }
  .timeline-header { text-align: center; margin-bottom: 36px; position: relative; z-index: 1; }
  .timeline-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); padding: 6px 16px; border-radius: 20px; }
  .timeline-inner { max-width: 640px; margin: 0 auto; display: flex; align-items: flex-start; justify-content: center; position: relative; z-index: 1; }
  .timeline-item { display: flex; flex-direction: column; align-items: center; text-align: center; flex: 1; position: relative; }
  .timeline-dot { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 8px; flex-shrink: 0; position: relative; }
  .timeline-dot-done { background: #533AB7; border: 2px solid #8C72F0; }
  .timeline-dot-active { background: #533AB7; border: 2px solid #8C72F0; }
  .timeline-dot-upcoming { background: rgba(255,255,255,0.05); border: 2px solid rgba(255,255,255,0.15); width: 36px; height: 36px; border-radius: 50%; margin-bottom: 8px; }
  .timeline-pulse { position: absolute; inset: -6px; border-radius: 50%; border: 2px solid #8C72F0; animation: timelinePulse 2s ease-in-out infinite; }
  @keyframes timelinePulse { 0%,100%{opacity:0.6;transform:scale(1)} 50%{opacity:0;transform:scale(1.5)} }
  .timeline-line { position: absolute; top: 18px; left: calc(50% + 18px); right: calc(-50% + 18px); height: 2px; z-index: 0; }
  .timeline-line-done { background: linear-gradient(90deg, #8C72F0, #533AB7); }
  .timeline-line-upcoming { background: rgba(255,255,255,0.1); }
  .timeline-icon { font-size: 24px; margin-bottom: 8px; }
  .timeline-label { font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 4px; }
  .timeline-sub { font-size: 12px; color: rgba(255,255,255,0.4); }
  .timeline-sub-active { font-size: 12px; color: #8C72F0; font-weight: 600; }
  /* ── SKIP TO CONTENT (a11y) ── */
  .skip-link { position: absolute; top: -60px; left: 16px; background: var(--purple); color: #fff; padding: 12px 20px; border-radius: 10px; font-size: 14px; font-weight: 600; text-decoration: none; z-index: 1000; transition: top 0.2s ease; }
  .skip-link:focus { top: 16px; }

  /* ── SCROLL PROGRESS BAR ── */
  .scroll-progress { position: fixed; top: 0; left: 0; height: 3px; background: linear-gradient(90deg, #533AB7, #8C72F0); z-index: 200; width: 0%; transition: width 0.1s ease-out; }

  /* ── about card icon hover ── */
  .about-icon { transition: transform 0.3s ease; }
  .about-card:hover .about-icon { animation: iconWiggle 0.5s ease; }
  @keyframes iconWiggle { 0%,100%{transform:rotate(0)} 25%{transform:rotate(-8deg) scale(1.05)} 75%{transform:rotate(8deg) scale(1.05)} }

  /* ── COMPARISON SECTION ── */
  .compare { padding: 100px 24px; max-width: 800px; margin: 0 auto; position: relative; overflow: hidden; }
  .compare-table { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 20px; overflow: hidden; position: relative; box-shadow: 0 20px 60px rgba(83,58,183,0.08); }
  .compare-row { display: grid; grid-template-columns: 1fr 1fr; transition: background 0.2s ease; }
  .compare-row:not(.compare-header):hover { background: var(--purple-light); }
  .compare-row:not(:last-child) { border-bottom: 1px solid var(--card-border); }
  .compare-header { background: var(--bg2); }
  .compare-cell { padding: 18px 24px; display: flex; align-items: center; gap: 10px; font-size: 14px; }
  .compare-cell:first-child { border-right: 1px solid var(--card-border); }
  .compare-cell:last-child { background: linear-gradient(90deg, rgba(83,58,183,0.05), rgba(83,58,183,0.09)); border-right: 3px solid var(--purple); }
  .compare-header .compare-cell { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 15px; }
  .compare-header .compare-cell:first-child { color: var(--text-muted); }
  .compare-header .compare-cell:last-child { color: var(--purple); }
  .compare-winner-tag { position: absolute; top: -14px; right: 24px; background: var(--purple); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; padding: 6px 14px; border-radius: 20px; box-shadow: 0 8px 20px rgba(83,58,183,0.35); z-index: 2; }
  .compare-icon-wrap { width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .compare-icon-wrap.is-no { background: rgba(150,150,150,0.12); }
  .compare-icon-wrap.is-yes { background: var(--purple); }
  .compare-icon { width: 14px; height: 14px; flex-shrink: 0; }
  .compare-label { min-width: 0; flex: 1; }
  .compare-row:not(.compare-header) .compare-cell:first-child { color: var(--text-muted); }
  .compare-row:not(.compare-header) .compare-cell:last-child { color: var(--text); font-weight: 500; }
  .compare-orb { position: absolute; border-radius: 50%; filter: blur(60px); z-index: 0; pointer-events: none; }
  .compare-orb1 { width: 260px; height: 260px; background: rgba(83,58,183,0.12); top: -40px; right: -60px; }
  .compare-orb2 { width: 200px; height: 200px; background: rgba(140,114,240,0.10); bottom: 20px; left: -60px; }

  /* ── COMMAND PALETTE ── */
  .cmdk-trigger { display: flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); border-radius: 20px; padding: 7px 12px; cursor: pointer; color: rgba(255,255,255,0.85); transition: background 0.2s, border-color 0.2s; font-family: 'Inter', sans-serif; }
  .cmdk-trigger:hover { background: rgba(255,255,255,0.22); }
  nav.scrolled .cmdk-trigger { background: var(--toggle-bg); border-color: var(--border); color: var(--text-muted); }
  .cmdk-kbd { font-size: 11px; font-weight: 600; opacity: 0.75; letter-spacing: 0.02em; }
  @media (max-width: 900px) { .cmdk-trigger .cmdk-kbd { display: none; } }
  @media (max-width: 1024px) { .cmdk-trigger { padding: 7px 9px; } }

  .cmdk-overlay { position: fixed; inset: 0; background: rgba(10,7,22,0.55); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); z-index: 2000; display: none; align-items: flex-start; justify-content: center; padding: 12vh 20px 20px; }
  .cmdk-overlay.open { display: flex; }
  .cmdk-panel { background: var(--bg); border: 1px solid var(--card-border); border-radius: 16px; width: 100%; max-width: 560px; box-shadow: 0 30px 80px rgba(0,0,0,0.35); overflow: hidden; animation: cmdkPop 0.16s ease; }
  @keyframes cmdkPop { from { opacity: 0; transform: translateY(-8px) scale(0.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
  .cmdk-input-row { display: flex; align-items: center; gap: 12px; padding: 16px 18px; border-bottom: 1px solid var(--card-border); color: var(--text-muted); }
  .cmdk-input { flex: 1; border: none; outline: none; background: transparent; font-size: 16px; color: var(--text); font-family: 'Inter', sans-serif; }
  .cmdk-input::placeholder { color: var(--text-muted); }
  .cmdk-input-row .cmdk-kbd { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 6px; padding: 2px 7px; color: var(--text-muted); }
  .cmdk-list { max-height: 360px; overflow-y: auto; padding: 8px; }
  .cmdk-group-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); padding: 10px 12px 6px; }
  .cmdk-item { width: 100%; display: flex; align-items: center; gap: 12px; text-align: left; background: none; border: none; padding: 11px 12px; border-radius: 10px; cursor: pointer; font-family: 'Inter', sans-serif; font-size: 14px; color: var(--text); transition: background 0.12s ease; }
  .cmdk-item-icon { width: 22px; height: 22px; border-radius: 7px; background: var(--card-bg); color: var(--purple); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; flex-shrink: 0; }
  .cmdk-item.cmdk-active { background: var(--purple-light); }
  .cmdk-item.cmdk-active .cmdk-item-icon { background: var(--purple); color: #fff; }
  .cmdk-item[style*="display: none"] { display: none; }
  .cmdk-empty { display: none; padding: 32px 20px; text-align: center; color: var(--text-muted); font-size: 14px; }
  .cmdk-empty.visible { display: block; }
  body.cmdk-lock { overflow: hidden; }


  /* ── SIGNUP CONFETTI ── */
  .confetti-piece { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999; border-radius: 1px; will-change: transform, opacity; }

  /* ── WAVE DIVIDERS ── */
  .wave-divider { width: 100%; line-height: 0; overflow: hidden; }
  .wave-divider svg { display: block; width: 100%; height: 70px; }
  @media (max-width: 600px) { .wave-divider svg { height: 44px; } }

  /* ── GRIND SCORE CALCULATOR ── */
  .calc-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 20px; padding: 32px; margin-top: 32px; }
  .calc-row { display: flex; gap: 20px; margin-bottom: 20px; flex-wrap: wrap; }
  .calc-field { flex: 1; min-width: 140px; display: flex; flex-direction: column; gap: 8px; }
  .calc-field label { font-size: 13px; font-weight: 600; color: var(--text-muted); }
  .calc-field input { padding: 12px 14px; border-radius: 10px; border: 1.5px solid var(--card-border); background: var(--bg); color: var(--text); font-size: 16px; font-family: 'Inter', sans-serif; transition: border-color 0.2s ease, box-shadow 0.2s ease; }
  .calc-field input:focus { outline: none; border-color: var(--purple); box-shadow: 0 0 0 3px rgba(83,58,183,0.14); }
  .calc-toggle-group { display: flex; gap: 8px; flex-wrap: wrap; }
  .calc-toggle { flex: 1; min-width: 100px; padding: 11px 8px; border-radius: 10px; border: 1.5px solid var(--card-border); background: var(--bg); color: var(--text-muted); font-size: 13px; font-weight: 600; font-family: 'Inter', sans-serif; cursor: pointer; transition: all 0.2s ease; white-space: nowrap; }
  .calc-toggle:hover { border-color: var(--purple); }
  .calc-toggle.active { background: var(--purple); border-color: var(--purple); color: #fff; }
  .calc-result { text-align: center; padding-top: 24px; border-top: 1px solid var(--card-border); margin-top: 8px; }
  .calc-result-label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; margin-bottom: 10px; }
  .calc-result-num { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 56px; color: var(--purple); line-height: 1; transition: transform 0.15s ease; display: inline-block; }
  .calc-result-num.calc-pulse { animation: calcPulse 0.35s ease; }
  @keyframes calcPulse { 0% { transform: scale(1); } 40% { transform: scale(1.08); } 100% { transform: scale(1); } }
  .calc-result-tier { font-size: 14px; font-weight: 600; color: var(--text-muted); margin-top: 8px; min-height: 20px; }
  .calc-disclaimer { font-size: 12px; color: var(--text-muted); text-align: center; margin-top: 20px; line-height: 1.5; }
  .formula-inline { margin-top: 64px; padding-top: 48px; border-top: 1px solid var(--card-border); }
  .formula-subtitle { font-family: 'Syne', sans-serif; font-size: 24px; font-weight: 700; text-align: center; margin-bottom: 12px; color: var(--text); }
  .formula-toggle summary { list-style: none; cursor: pointer; }
  .formula-toggle summary::-webkit-details-marker { display: none; }
  .formula-toggle-summary { display: flex; align-items: center; justify-content: center; gap: 8px; font-family: 'Syne', sans-serif; font-weight: 700; font-size: 15px; color: var(--purple); text-align: center; padding: 14px; border-radius: 12px; background: var(--card-bg); border: 1px solid var(--card-border); transition: background 0.2s ease; }
  .formula-toggle-summary:hover { background: var(--purple-light); }
  .formula-toggle-summary .chevron { transition: transform 0.25s ease; }
  .formula-toggle[open] .formula-toggle-summary .chevron { transform: rotate(180deg); }
  .formula-toggle-content { margin-top: 32px; }
  .formula-example-row { display: flex; align-items: baseline; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--card-border); gap: 12px; }
  .formula-example-row:last-child { border-bottom: none; }
  .formula-example-label { font-size: 14px; color: var(--text-muted); }
  .formula-example-val { font-size: 14px; color: var(--text); font-weight: 500; text-align: right; }
  .formula-example-final { padding-top: 16px; margin-top: 4px; border-top: 1.5px solid var(--card-border); border-bottom: none; }
  .formula-example-final .formula-example-label { font-family: 'Syne', sans-serif; font-weight: 700; color: var(--text); font-size: 15px; }
  .formula-example-final .formula-example-val { font-family: 'Syne', sans-serif; font-size: 18px; }
  .formula-example-final .formula-example-val strong { color: var(--purple); font-size: 22px; font-weight: 800; }

  /* ── FAQ SECTION ── */
  .faq-wrap { position: relative; overflow: hidden; }
  .faq-orb { position: absolute; border-radius: 50%; filter: blur(70px); z-index: 0; pointer-events: none; }
  .faq-orb1 { width: 300px; height: 300px; background: rgba(83,58,183,0.08); top: -80px; right: -100px; }
  .faq-orb2 { width: 220px; height: 220px; background: rgba(140,114,240,0.08); bottom: -60px; left: -80px; }
  .faq-list { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
  .faq-item { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 16px; padding: 0 24px; transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease; }
  .faq-item:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(83,58,183,0.10); border-color: rgba(83,58,183,0.3); }
  .faq-summary { cursor: pointer; font-family: 'Syne', sans-serif; font-weight: 700; font-size: 16px; list-style: none; padding: 20px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
  .faq-summary::-webkit-details-marker { display: none; }
  .faq-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--purple-light); color: var(--purple); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease; }
  .faq-icon svg { width: 14px; height: 14px; }
  details[open] .faq-icon { transform: rotate(45deg); background: var(--purple); color: #fff; }
  .faq-answer { padding-bottom: 20px; margin-top: -6px; color: var(--text-muted); font-size: 15px; line-height: 1.6; }


  /* ── TESTIMONIALS ── */
  .testimonials { padding: 80px 0; }
  .testimonials .section-eyebrow, .testimonials .section-title, .testimonials .section-sub { padding: 0 24px; }
  .testimonials-marquee-wrap { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent); mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent); }
  .testimonials-track { display: flex; gap: 20px; width: max-content; animation: testimonialsMarquee 34s linear infinite; }
  .testimonials-track:hover { animation-play-state: paused; }
  .testimonials-track .testimonial-card { flex: 0 0 320px; }
  @keyframes testimonialsMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  @media (prefers-reduced-motion: reduce) { .testimonials-track { animation: none; } }
  @media (max-width: 600px) { .testimonials-track .testimonial-card { flex-basis: 260px; } }
  .testimonial-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 20px; padding: 28px; }
  .testimonial-quote { font-size: 15px; color: var(--text); line-height: 1.6; margin-bottom: 20px; font-style: italic; }
  .testimonial-quote::before { content: '"'; color: var(--purple); font-size: 28px; font-family: 'Syne', sans-serif; line-height: 0; vertical-align: -8px; margin-right: 2px; }
  .testimonial-author { display: flex; align-items: center; gap: 10px; }
  .testimonial-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--purple-light); display: flex; align-items: center; justify-content: center; font-family: 'Syne', sans-serif; font-weight: 700; color: var(--purple); font-size: 13px; flex-shrink: 0; }
  .testimonial-name { font-size: 13px; font-weight: 600; color: var(--text); }
  .testimonial-role { font-size: 12px; color: var(--text-muted); }

  /* page fade transition */
  body { animation: pageFadeIn 0.4s ease; }
  @keyframes pageFadeIn { from { opacity: 0; } to { opacity: 1; } }

  /* ── ANIMATED DEMO SEQUENCE ── */
  .demo-screen { position: absolute; inset: 0; top: 38px; display: flex; flex-direction: column; opacity: 0; transform: translateX(20px); transition: opacity 0.4s ease, transform 0.4s ease; pointer-events: none; }
  .demo-screen-active { opacity: 1; transform: translateX(0); pointer-events: auto; }
  .phone-screen { position: relative; }
  .demo-timer { font-family: 'Syne', sans-serif; font-weight: 700; color: #533AB7; font-size: 15px; }
  .demo-log-card { background: #F7F6FF; border-radius: 14px; margin: 8px 10px; padding: 14px; border: 1px solid #EEEDFE; }
  .demo-log-title { font-size: 15px; font-weight: 700; color: #111; margin-bottom: 2px; }
  .demo-log-prev { font-size: 11px; color: #888; margin-bottom: 12px; }
  .demo-set-row { display: flex; align-items: center; gap: 6px; margin-bottom: 8px; }
  .demo-set-num { width: 18px; font-size: 12px; font-weight: 600; color: #533AB7; text-align: center; }
  .demo-input-filled, .demo-input-saved { flex: 1; background: #fff; border: 1.5px solid #E0DEFE; border-radius: 8px; padding: 7px; font-size: 12px; color: #111; text-align: center; font-weight: 500; }
  .demo-input-saved { background: #F0FEEF; border-color: #A8E6B0; color: #2D7A3A; }
  .demo-save-btn { width: 44px; height: 30px; background: #533AB7; border-radius: 8px; color: #fff; font-size: 11px; font-weight: 600; display: flex; align-items: center; justify-content: center; }
  .demo-save-btn-pop { animation: demoSavePop 2.5s ease infinite; }
  @keyframes demoSavePop { 0%,70%,100% { transform: scale(1); } 75% { transform: scale(0.9); } 80% { transform: scale(1.05); } 85% { transform: scale(1); } }
  .demo-saved-check { width: 44px; height: 30px; background: #F0FEEF; border-radius: 8px; color: #2D7A3A; font-size: 14px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
  .demo-pr-burst { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; background: linear-gradient(180deg, #533AB7, #3C3489); margin: 0 10px 10px; border-radius: 18px; padding: 24px; }
  .demo-pr-trophy { font-size: 44px; margin-bottom: 8px; animation: demoTrophyBounce 1.2s ease infinite; }
  @keyframes demoTrophyBounce { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-6px) scale(1.05); } }
  .demo-pr-title { font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.7); letter-spacing: 2px; margin-bottom: 8px; }
  .demo-pr-exercise { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px; }
  .demo-pr-weight { font-size: 44px; font-weight: 800; color: #fff; line-height: 1; }
  .demo-pr-weight span { font-size: 16px; font-weight: 600; color: rgba(255,255,255,0.6); margin-left: 4px; }
  .demo-pr-reps { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 16px; }
  .demo-pr-score { background: rgba(255,255,255,0.15); border-radius: 20px; padding: 5px 14px; color: #fff; font-size: 11px; font-weight: 600; }
  .demo-fire { display: inline-flex; align-items: center; }
  .demo-fire-count { animation: demoFirePulse 2s ease infinite; display: inline-block; margin-left: 2px; }
  @keyframes demoFirePulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.2); color: #533AB7; font-weight: 700; } }
  .demo-dots { display: flex; justify-content: center; gap: 6px; margin-top: 16px; }
  .demo-dot { width: 6px; height: 6px; border-radius: 50%; background: #DDDCFE; transition: background 0.3s, width 0.3s; }
  .demo-dot-active { background: #533AB7; width: 18px; border-radius: 3px; }
  .demo-disclaimer-wrap { background: var(--bg2); padding: 24px 24px 60px; display: flex; justify-content: center; }
  .demo-disclaimer { display: inline-flex; align-items: center; gap: 8px; text-align: center; font-size: 12px; color: var(--purple-dark); line-height: 1.5; background: var(--purple-light); border: 1px solid rgba(83,58,183,0.15); border-radius: 12px; padding: 10px 18px; max-width: 480px; }

  .badges { display: flex; justify-content: center; gap: 16px; margin-top: 32px; flex-wrap: wrap; }
  .badge { display: flex; align-items: center; gap: 10px; background: var(--text); color: var(--bg); border-radius: 12px; padding: 12px 20px; min-width: 160px; cursor: default; opacity: 0.5; border: 1.5px solid var(--border); }
  .badge-icon { flex-shrink: 0; }
  .badge-label { display: flex; flex-direction: column; }
  .badge-sub { font-size: 10px; opacity: 0.7; text-transform: uppercase; letter-spacing: 0.05em; }
  .badge-name { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; line-height: 1.2; }
  .badge-coming { display: inline-block; font-size: 10px; color: var(--purple); background: var(--purple-light); border-radius: 20px; padding: 2px 8px; margin-top: 6px; font-weight: 500; }

  /* ── STATS BAR ── */
  .stats-bar { background: var(--purple); padding: 48px 24px; }
  .stats-inner { max-width: 800px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; text-align: center; }
  .stat-item-num { font-family: 'Syne', sans-serif; font-size: 42px; font-weight: 800; color: #fff; line-height: 1; }
  .stat-item-lbl { font-size: 14px; color: #AFA9EC; margin-top: 6px; }

  /* ── ABOUT ── */
  .about { padding: 100px 24px; max-width: 1100px; margin: 0 auto; }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; perspective: 900px; }
  .about-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 20px; padding: 32px; transition: transform 0.2s, box-shadow 0.2s; }
  .about-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(83,58,183,0.12); }
  .about-icon { width: 48px; height: 48px; border-radius: 14px; background: var(--purple); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
  .about-icon svg { width: 24px; height: 24px; }
  .about-icon svg *, svg.draw-icon * { transition: stroke-dashoffset 1s cubic-bezier(0.4, 0, 0.2, 1); }
  .about-icon.icon-drawn svg *, svg.draw-icon.icon-drawn * { stroke-dashoffset: 0 !important; }
  .about-card-title { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 700; margin-bottom: 10px; color: var(--text); }
  .about-card-desc { font-size: 15px; color: var(--text-muted); line-height: 1.6; }

  /* section wrappers for separation */
  .section-wrapper-alt { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .section-wrapper { background: var(--bg); }

  /* phone mockup tilt */
  .about-mockup { padding: 60px 24px; display: flex; justify-content: center; align-items: center; gap: 64px; flex-wrap: wrap; background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .about-mockup-text { max-width: 380px; }
  .about-mockup-text h2 { font-family: 'Syne', sans-serif; font-size: 32px; font-weight: 800; margin-bottom: 16px; letter-spacing: -0.02em; line-height: 1.2; color: var(--text); }
  .about-mockup-text p { font-size: 16px; color: var(--text-muted); line-height: 1.7; margin-bottom: 12px; }
  .phone-tilt-wrap { perspective: 800px; cursor: pointer; }
  .phone-frame { background: #1a1a1a; border-radius: 44px; padding: 14px; width: 260px; box-shadow: 0 40px 80px rgba(83,58,183,0.2), 0 0 0 1px #333; transition: transform 0.1s ease-out; transform-style: preserve-3d; }
  .phone-screen { background: #fff; border-radius: 32px; overflow: hidden; height: 520px; display: flex; flex-direction: column; }
  .phone-status { display: flex; justify-content: space-between; padding: 12px 18px 6px; font-size: 11px; font-weight: 500; color: #111; }
  .feed-header { display: flex; justify-content: space-between; align-items: center; padding: 6px 16px 10px; font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 700; color: var(--purple); }
  .feed-scroll { flex: 1; overflow: hidden; padding: 0 10px; display: flex; flex-direction: column; gap: 10px; }
  .feed-card { background: #fff; border: 0.5px solid #E8E6F5; border-radius: 14px; padding: 12px; }
  .feed-card-header { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
  .feed-avatar { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 500; flex-shrink: 0; }
  .feed-name { font-size: 13px; font-weight: 500; color: #111; }
  .feed-time { font-size: 10px; color: #999; }
  .feed-badge { margin-left: auto; font-size: 10px; background: #EEEDFE; color: #3C3489; padding: 2px 8px; border-radius: 20px; font-weight: 500; }
  .pr-bar { background: #EEEDFE; border-radius: 8px; padding: 7px 10px; display: flex; align-items: center; gap: 6px; margin-bottom: 8px; }
  .pr-bar-text { font-size: 11px; color: #3C3489; font-weight: 500; }
  .lift-row { display: flex; justify-content: space-between; margin-bottom: 3px; }
  .lift-n { font-size: 11px; color: #666; }
  .lift-v { font-size: 11px; font-weight: 500; color: #111; }
  .card-foot { display: flex; gap: 12px; margin-top: 8px; padding-top: 8px; border-top: 0.5px solid #F0EEF8; font-size: 11px; color: #888; }

  /* ── HOW IT WORKS ── */
  .how { padding: 100px 24px; max-width: 900px; margin: 0 auto; }
  .how-steps { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; position: relative; margin-top: 0; }
  .how-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 32px 24px; background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 20px; position: relative; transition: transform 0.2s, box-shadow 0.2s; }
  .how-step:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(83,58,183,0.1); }
  .how-num { width: 56px; height: 56px; border-radius: 50%; background: var(--purple); color: #fff; font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; box-shadow: 0 8px 24px rgba(83,58,183,0.3); line-height: 1; flex-shrink: 0; }
  .how-title { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--text); }
  .how-desc { font-size: 15px; color: var(--text-muted); line-height: 1.6; }

  /* ── GRIND SCORE ── */
  .score-section { background: var(--purple); padding: 100px 24px; position: relative; }
  .score-section-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; border-radius: inherit; }
  .score-section-bg::before { content: ''; position: absolute; top: -200px; right: -200px; width: 600px; height: 600px; border-radius: 50%; background: rgba(255,255,255,0.04); }
  .score-section-bg::after { content: ''; position: absolute; bottom: -300px; left: -100px; width: 500px; height: 500px; border-radius: 50%; background: rgba(255,255,255,0.03); }
  .score-inner { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
  .score-left .section-eyebrow { text-align: left; color: #AFA9EC; }
  .score-left .section-title { text-align: left; color: #fff; }
  .score-left .section-sub { text-align: left; color: #AFA9EC; margin-left: 0; margin-bottom: 32px; }
  .score-list { display: flex; flex-direction: column; gap: 14px; }
  .score-item { display: flex; align-items: flex-start; gap: 12px; transition: opacity 0.35s ease; }
  .score-dot { width: 8px; height: 8px; border-radius: 50%; background: #AFA9EC; flex-shrink: 0; margin-top: 7px; transition: background 0.3s ease, box-shadow 0.3s ease; }
  .score-item-text { font-size: 15px; color: #CECBF6; line-height: 1.6; transition: color 0.3s ease; }
  .score-item.score-item-dim { opacity: 0.4; }
  .score-item.score-item-active .score-dot { background: #fff; box-shadow: 0 0 0 5px rgba(255,255,255,0.18); }
  .score-item.score-item-active .score-item-text { color: #fff; }

  /* ── SCROLL-SCRUBBED GRIND SCORE PHASES ── */
  .score-pin-wrap { position: relative; height: 210vh; height: 210dvh; }
  .score-pin-wrap.motion-reduced { height: auto; }
  .score-sticky-stage { position: sticky; top: 0; height: 100vh; height: 100dvh; display: flex; align-items: center; padding: 32px 24px; overflow: hidden; }
  .score-pin-wrap.motion-reduced .score-sticky-stage { position: static; height: auto; overflow: visible; padding: 100px 24px; }
  .score-phase-shell { position: relative; min-height: 320px; }
  .score-phase { position: absolute; inset: 0; opacity: 0; transition: opacity 0.05s linear; display: flex; flex-direction: column; justify-content: center; }
  .score-pin-wrap.motion-reduced .score-phase { position: static; opacity: 1 !important; display: none; }
  .score-pin-wrap.motion-reduced .score-phase.motion-reduced-visible { display: flex; }
  .score-phase-eyebrow { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: #AFA9EC; font-weight: 700; margin-bottom: 14px; }
  .score-stat-row { display: flex; align-items: baseline; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .score-stat-row:last-child { border-bottom: none; }
  .score-stat-name { font-size: 14px; color: #CECBF6; }
  .score-stat-num { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 26px; color: #fff; }
  .score-gauge-row { display: flex; align-items: center; gap: 20px; margin-top: 8px; }
  .score-gauge-label { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 30px; color: #fff; }
  .score-gauge-name { font-size: 13px; color: #AFA9EC; margin-bottom: 4px; }
  .score-progress-track { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); width: 120px; height: 3px; background: rgba(255,255,255,0.12); border-radius: 4px; overflow: hidden; z-index: 20; opacity: 0; transition: opacity 0.3s ease; pointer-events: none; }
  .score-progress-track.visible { opacity: 1; }
  .score-progress-fill { height: 100%; background: #fff; width: 0%; }

  .score-card { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); border-radius: 20px; padding: 28px; }
  .score-card-title { color: #AFA9EC; font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 20px; }
  .score-compare { display: flex; flex-direction: column; gap: 14px; }
  .score-row { display: flex; align-items: center; gap: 12px; }
  .score-row-avatar { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 500; color: #fff; flex-shrink: 0; }
  .score-row-info { flex: 1; }
  .score-row-name { font-size: 13px; font-weight: 500; color: #fff; }
  .score-row-lift { font-size: 11px; color: #AFA9EC; }
  .score-row-score { font-size: 18px; font-weight: 700; color: #fff; font-family: 'Syne', sans-serif; }
  .score-row-label { font-size: 10px; color: #AFA9EC; text-align: right; }
  .score-divider { height: 1px; background: rgba(255,255,255,0.1); }

  /* ── TEAM ── */
  .team { padding: 100px 24px; max-width: 960px; margin: 0 auto; }
  .team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
  .team-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 20px; padding: 32px 24px; text-align: center; transition: transform 0.2s, box-shadow 0.2s; }
  .team-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(83,58,183,0.12); }
  .team-avatar { width: 88px; height: 88px; border-radius: 50%; background: var(--purple-light); margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; font-family: 'Syne', sans-serif; font-size: 28px; font-weight: 800; color: var(--purple); overflow: hidden; border: 3px solid var(--purple-light); position: relative; }
  .team-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center top; opacity: 0; transition: opacity 0.4s ease; position: relative; z-index: 1; }
  .team-avatar img.loaded { opacity: 1; }
  .team-avatar::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, var(--purple-light) 25%, #fff 50%, var(--purple-light) 75%); background-size: 200% 100%; animation: avatarShimmer 1.6s ease infinite; z-index: 0; }
  .team-avatar:has(img.loaded)::before { display: none; }
  @keyframes avatarShimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
  .team-name { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 700; margin-bottom: 4px; color: var(--text); }
  .team-role { font-size: 13px; color: var(--purple); font-weight: 500; margin-bottom: 14px; }
  .team-bio { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
  .team-links { display: flex; justify-content: center; gap: 12px; margin-top: 16px; }
  .team-link { width: 32px; height: 32px; border-radius: 8px; background: var(--purple-light); display: flex; align-items: center; justify-content: center; text-decoration: none; transition: background 0.2s; }
  .team-link:hover { background: #CECBF6; }
  .team-link svg { width: 16px; height: 16px; }

  /* ── EARLY ACCESS ── */
  .signup-section { padding: 100px 24px; text-align: center; background: var(--purple); position: relative; overflow: hidden; }
  .signup-section .section-eyebrow { color: #AFA9EC; }
  .signup-section .section-title { color: #fff; }
  .signup-section .section-sub { color: #CECBF6; }
  .signup-input { background: rgba(255,255,255,0.95) !important; }
  .signup-fine { color: rgba(255,255,255,0.6) !important; }
  .signup-perk { color: rgba(255,255,255,0.75) !important; }
  .signup-perk svg { color: #fff !important; }
  .waitlist-counter { background: rgba(255,255,255,0.1) !important; border-color: rgba(255,255,255,0.2) !important; }
  .waitlist-label { color: rgba(255,255,255,0.7) !important; }
  .waitlist-num { color: #fff !important; }
  .signup-section .badge { background: rgba(255,255,255,0.12) !important; border: 1.5px solid rgba(255,255,255,0.25) !important; color: #fff !important; }
  .signup-section .badge-sub { color: rgba(255,255,255,0.6) !important; }
  .signup-section .badge-name { color: #fff !important; }
  .signup-section .badge-coming { background: rgba(255,255,255,0.2) !important; color: #fff !important; }
  .signup-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(255,255,255,0.08) 0%, transparent 70%); }
  [data-mode="dark"] .signup-section::before { background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(255,255,255,0.05) 0%, transparent 70%); }
  .signup-inner { position: relative; z-index: 1; max-width: 520px; margin: 0 auto; }
  /* ── WAITLIST COUNTER ── */
  .waitlist-counter { display: inline-flex; align-items: center; gap: 8px; background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 24px; padding: 8px 18px; margin: 0 auto 24px; }
  .waitlist-dot { width: 7px; height: 7px; border-radius: 50%; background: #1D9E75; animation: waitlistPulse 2s ease infinite; flex-shrink: 0; }
  @keyframes waitlistPulse { 0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(29,158,117,0.4); } 50% { opacity: 0.7; box-shadow: 0 0 0 4px rgba(29,158,117,0); } }
  .waitlist-num { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 16px; color: var(--purple); }
  .waitlist-label { font-size: 13px; color: var(--text-muted); font-weight: 500; }

  .signup-form { display: flex; gap: 10px; margin-top: 32px; flex-wrap: wrap; justify-content: center; }
  .signup-input { flex: 1; min-width: 240px; padding: 14px 18px; border-radius: 12px; border: 1.5px solid var(--border); font-size: 15px; font-family: 'Inter', sans-serif; outline: none; transition: border-color 0.2s; background: var(--bg); color: var(--text); }
  .signup-input:focus { border-color: var(--purple); }
  .signup-input::placeholder { color: #aaa; }
  .signup-fine { font-size: 12px; color: var(--text-muted); margin-top: 14px; }
  .signup-perks { display: flex; justify-content: center; gap: 24px; margin-top: 32px; flex-wrap: wrap; }
  .signup-perk { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); }
  .signup-perk svg { width: 16px; height: 16px; color: var(--purple); flex-shrink: 0; }

  /* ── CONTACT ── */
  .contact { padding: 100px 24px; max-width: 600px; margin: 0 auto; text-align: center; }
  .contact-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 20px; padding: 40px; margin-top: 32px; display: flex; flex-direction: column; align-items: center; gap: 16px; }
  .contact-email { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 700; color: var(--purple); text-decoration: none; }
  .contact-email:hover { text-decoration: underline; }
  .contact-sub { font-size: 15px; color: var(--text-muted); }

  /* ── FOOTER ── */
  footer { border-top: 1px solid var(--border); padding: 32px 48px; display: flex; align-items: center; justify-content: space-between; font-size: 13px; color: var(--text-muted); flex-wrap: wrap; gap: 12px; background: var(--bg); }

  /* ── STICKY MOBILE JOIN BAR ── */
  .sticky-join-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; background: var(--bg); border-top: 1px solid var(--border); padding: 12px 16px; display: none; gap: 8px; align-items: center; box-shadow: 0 -4px 20px rgba(83,58,183,0.1); transform: translateY(100%); transition: transform 0.3s ease; }
  .sticky-join-bar.visible { transform: translateY(0); }
  .sticky-join-input { flex: 1; padding: 11px 14px; border-radius: 10px; border: 1.5px solid var(--border); font-size: 14px; font-family: 'Inter', sans-serif; outline: none; background: var(--bg2); color: var(--text); }
  .sticky-join-input:focus { border-color: var(--purple); }
  .sticky-join-btn { background: var(--purple); color: #fff; border: none; border-radius: 10px; padding: 11px 20px; font-size: 14px; font-weight: 600; font-family: 'Inter', sans-serif; cursor: pointer; white-space: nowrap; }
  @media (max-width: 1024px) { .sticky-join-bar { display: flex; } body { padding-bottom: 0; } }

  /* ── COOKIE NOTICE ── */
  .cookie-notice { position: fixed; left: 20px; bottom: 20px; z-index: 150; max-width: 380px; background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 16px; box-shadow: 0 20px 50px rgba(20,10,50,0.18); padding: 18px 20px; display: flex; align-items: center; gap: 14px; opacity: 0; transform: translateY(16px); pointer-events: none; transition: opacity 0.4s ease, transform 0.4s ease; }
  .cookie-notice.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .cookie-notice-body { display: flex; align-items: flex-start; gap: 10px; }
  .cookie-notice-icon { flex-shrink: 0; margin-top: 1px; }
  .cookie-notice-text { font-size: 13px; color: var(--text); line-height: 1.5; margin: 0; }
  .cookie-notice-text a { color: var(--purple); font-weight: 600; }
  .cookie-notice-btn { flex-shrink: 0; background: var(--purple); color: #fff; border: none; border-radius: 8px; padding: 9px 16px; font-size: 13px; font-weight: 600; font-family: 'Inter', sans-serif; cursor: pointer; transition: opacity 0.2s; white-space: nowrap; }
  .cookie-notice-btn:hover { opacity: 0.88; }
  @media (prefers-reduced-motion: reduce) { .cookie-notice { transition: none; } .floating-contact-btn { transition: none; } .scroll-top-btn { transition: none; } }
  @media (max-width: 1024px) {
    .cookie-notice { left: 12px; right: 12px; bottom: 88px; max-width: none; flex-direction: column; align-items: stretch; }
    .cookie-notice-btn { width: 100%; padding: 11px; }
  }

  /* ── FLOATING CONTACT BUTTON ── */
  .floating-contact-btn { position: fixed; right: 24px; bottom: 24px; z-index: 140; width: 52px; height: 52px; border-radius: 50%; background: var(--purple); display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 30px rgba(83,58,183,0.35); transition: transform 0.2s ease, box-shadow 0.2s ease, bottom 0.3s ease; text-decoration: none; }
  .floating-contact-btn:hover { transform: scale(1.08); box-shadow: 0 14px 36px rgba(83,58,183,0.4); }
  .floating-contact-btn:active { transform: scale(0.96); }
  @media (max-width: 1024px) {
    .floating-contact-btn { right: 16px; bottom: 88px; width: 48px; height: 48px; }
    #cookieNotice.visible ~ .floating-contact-btn { bottom: 220px; }
  }

  /* ── SCROLL TO TOP BUTTON ── */
  .scroll-top-btn { position: fixed; right: 24px; bottom: 88px; z-index: 140; width: 52px; height: 52px; border-radius: 50%; background: var(--card-bg); border: 1px solid var(--card-border); display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 30px rgba(20,10,50,0.18); cursor: pointer; opacity: 0; transform: translateY(10px); pointer-events: none; transition: opacity 0.3s ease, transform 0.3s ease, bottom 0.3s ease; }
  .scroll-top-btn.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .scroll-top-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(20,10,50,0.24); }
  @media (max-width: 1024px) {
    .scroll-top-btn { right: 16px; bottom: 148px; width: 48px; height: 48px; }
    #cookieNotice.visible ~ .scroll-top-btn { bottom: 280px; }
  }
  @media (max-width: 1024px) {
    nav { padding: 12px 16px; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .nav-right { gap: 8px; }
    .nav-cta { padding: 8px 14px; font-size: 13px; }
    .mode-toggle { padding: 5px 8px; font-size: 12px; }
    .hero-now-building { left: 16px; top: 72px; font-size: 10px; }
    .hero { padding: 100px 20px 80px; }
    .calc-card { padding: 24px 20px; }
    .calc-result-num { font-size: 44px; }
    .hero-pills { width: 100%; max-width: 280px; }
    .hero-actions { flex-direction: column; align-items: center; }
    .btn-primary-dark, .btn-secondary-dark { width: 100%; max-width: 320px; text-align: center; }
    .hero-social-proof { flex-wrap: wrap; justify-content: center; gap: 10px; }
    .stats-inner { grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
    .stat-item-num { font-size: 28px; }
    .stat-item-lbl { font-size: 12px; }
    .about { padding: 60px 16px; }
    .about-grid { grid-template-columns: 1fr; }
    .about-mockup { flex-direction: column; gap: 32px; padding: 40px 16px; }
    .about-mockup-text { text-align: center; }
    .about-mockup-text h2 { font-size: 24px; }
    .phone-frame { width: 240px; }
    .phone-screen { height: 480px; }
    .score-section { padding: 60px 16px; }
    .score-inner { grid-template-columns: 1fr; gap: 32px; }
    .score-pin-wrap { height: 190vh; height: 190dvh; }
    .score-sticky-stage { padding: 60px 16px; }
    .score-phase-shell { min-height: 280px; }
    .score-left .section-title { font-size: 28px; }
    .how { padding: 60px 16px; }
    .how-steps { grid-template-columns: 1fr; gap: 16px; }
    .team { padding: 60px 16px; }
    .team-grid { grid-template-columns: 1fr; }
    .compare { padding: 60px 16px; }
    .compare-cell { padding: 10px 8px; gap: 6px; font-size: 11.5px; }
    .compare-header .compare-cell { font-size: 12.5px; }
    .compare-icon-wrap { width: 18px; height: 18px; }
    .compare-icon { width: 10px; height: 10px; }
    .compare-winner-tag { top: -30px; right: 16px; font-size: 9.5px; padding: 5px 11px; }
    .contact { padding: 60px 16px; }
    .contact-card { padding: 24px 16px; }
    .contact-email { font-size: 18px; }
    .signup-section { padding: 60px 16px; }
    .signup-form { flex-direction: column; align-items: center; }
    .signup-input { min-width: unset; width: 100%; max-width: 400px; }
    .signup-form .btn-primary-dark { width: 100%; max-width: 400px; text-align: center; }
    .btn-primary { width: 100%; }
    .signup-perks { flex-direction: column; align-items: center; gap: 12px; }
    .badges { flex-direction: column; align-items: center; }
    .badge { width: 100%; max-width: 220px; justify-content: center; }
    .section-title { font-size: 28px; }
    .section-sub { font-size: 15px; }
    footer { padding: 24px 16px; flex-direction: column; align-items: center; text-align: center; gap: 8px; }
  }
  @media (max-width: 400px) {
    .stats-inner { grid-template-columns: 1fr; }
    .nav-right { gap: 6px; }
    .cmdk-trigger { padding: 6px 8px; }
    .nav-cta { padding: 8px 12px; }
    .nav-cta-full { display: none; }
    .nav-cta-short { display: inline; }
  }

  :focus-visible { outline: 3px solid #8C72F0; outline-offset: 4px; }
  .toggle-track, .toggle-thumb { display: block; }
  .sticky-join-btn:disabled, #signupSubmitBtn:disabled { opacity: .65; cursor: wait; }
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation: none !important; transition: none !important; }
    .fade-in, .fade-in-left, .fade-in-right { opacity: 1; transform: none; }
    .testimonials-marquee-wrap { overflow-x: auto; }
  }

  #signup-msg a { color: inherit; text-underline-offset: 2px; }

/* Signup choices stay visible after success and error messages change. */
.signup-consent { display: block; max-width: 580px; margin: 18px auto 0; color: #fff; font-size: 13px; line-height: 1.6; text-align: left; }
.signup-consent input { width: 18px; height: 18px; margin-right: 8px; vertical-align: middle; accent-color: #fff; }
.signup-consent a { color: inherit; text-decoration: underline; }

#early-access .signup-fine a { color: #fff; text-decoration: underline; }

  /* Keep mobile controls readable and away from page content. */
  @media (max-width: 1024px) {
    .floating-contact-btn, .scroll-top-btn { display: none; }
    .calc-toggle-group { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .calc-toggle { min-width: 0; min-height: 44px; white-space: normal; }
    .calc-toggle:last-child { grid-column: 1 / -1; }
    .calc-field input, .sticky-join-input { min-width: 0; width: 100%; font-size: 16px; }
    .sticky-join-bar { padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px)); }
    .hero-sub { min-height: 58px; }
    .timeline-inner { gap: 12px; }
    .timeline-item { min-width: 0; }
    .timeline-label { font-size: 12px; line-height: 1.4; }
    .section-sub { margin-bottom: 36px; }
  }
  @media (max-width: 360px) {
    .mode-toggle .toggle-track { display: none; }
    .calc-row { gap: 12px; }
    .calc-field { min-width: 100%; }
  }

  /* Match the decorative glow to the screen instead of stacking desktop-sized lights. */
  @media (max-width: 1024px) {
    .hero { --hero-bg: #0a0718; --orb-opacity: 0.45; }
    .hero .orb { filter: blur(48px); }
    .hero .orb1 { width: 80vw; height: 80vw; top: -10vw; left: -20vw; }
    .hero .orb2 { width: 70vw; height: 70vw; bottom: -10vw; right: -20vw; }
    .hero .orb3 { width: 50vw; height: 50vw; left: 45%; }
    .hero .orb4 { width: 35vw; height: 35vw; right: -10%; }
    .hero .orb5, .hero .orb6, .hero .orb7, .hero .orb8 { display: none; }
    .timeline-line { right: calc(-50% + 6px); }
    .timeline-line-upcoming { background: rgba(255,255,255,0.3); }
    .mobile-menu { top: var(--nav-height, 68px); max-height: calc(100dvh - var(--nav-height, 68px)); overflow-y: auto; overscroll-behavior: contain; padding-bottom: max(20px, env(safe-area-inset-bottom)); }
    .hamburger, .cmdk-trigger, .mode-toggle, .nav-cta { min-height: 44px; }
    .hamburger, .cmdk-trigger { min-width: 44px; align-items: center; justify-content: center; }
    .nav-right { gap: 6px; }
    .score-pin-wrap { height: auto; }
    .score-sticky-stage, .score-pin-wrap.motion-reduced .score-sticky-stage { position: static; height: auto; padding: 60px 16px; overflow: visible; }
    .score-phase { display: none; }
    #scorePhase2 { display: flex; position: static; opacity: 1 !important; }
    .score-progress-track { display: none; }
    .cmdk-overlay { padding: 12px; }
    .cmdk-panel { max-height: calc(100dvh - 24px); overflow-y: auto; }
    .cmdk-input { font-size: 16px; }
  }
  @media (max-width: 400px) {
    .mode-toggle .toggle-track { display: none; }
    .nav-cta { padding-inline: 10px; }
  }
  @media (prefers-reduced-motion: reduce) {
    .hero-pill { opacity: 1; transform: none; }
  }

  @media (max-width: 1200px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .mobile-menu { top: var(--nav-height, 68px); max-height: calc(100dvh - var(--nav-height, 68px)); overflow-y: auto; overscroll-behavior: contain; }
  }
  @media (max-width: 1024px) {
    .mode-toggle { min-width: 44px; justify-content: center; }
  }

  /* Maintain readable controls and keyboard feedback across themes. */
  [data-mode="dark"] .contact-email, [data-mode="dark"] .team-role,
  [data-mode="dark"] .section-eyebrow, [data-mode="dark"] .calc-result-num { color: #B8AEF5; }
  .nav-logo-el { text-decoration: none; }
  .team-link { width: 44px; height: 44px; }
  .hero-sub { min-height: 58px; }
  .typing-cursor { flex-shrink: 0; }
  @media (max-width: 360px) { .hero-sub { min-height: 87px; } }
  @media (max-width: 1200px) {
    .hamburger { min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }
  }

  :root { --surface-radius: 20px; --control-radius: 12px; }
  .about-card, .team-card, .calc-card, .contact-card { border-radius: var(--surface-radius); }
  .nav-cta, .btn-primary, .btn-primary-dark, .btn-secondary-dark { border-radius: var(--control-radius); }
  .about-mockup-text .preview-eyebrow { color: var(--purple); font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; }
  .about-mockup-text h2 { font-size: clamp(32px, 4vw, 48px); }
  .about-mockup-text h2 em { font-style: normal; color: var(--purple); }
  .about-mockup-text .preview-hint { font-size: 13px; margin-top: 24px; }
  [data-mode="dark"] .about-mockup-text h2 em, [data-mode="dark"] .about-mockup-text .preview-eyebrow { color: #B8AEF5; }
  .demo-dots { gap: 6px; margin-top: 20px; }
  .demo-dot { width: auto; height: auto; min-height: 44px; padding: 8px 10px; border: 1px solid var(--card-border); border-radius: 10px; background: var(--card-bg); color: var(--text-muted); font: 500 12px 'Inter', sans-serif; cursor: pointer; }
  .demo-dot-active { width: auto; background: var(--purple); border-color: var(--purple); color: #fff; }
  .demo-playback { display: block; margin: 6px auto 0; min-height: 44px; padding: 8px 12px; border: 0; background: transparent; color: var(--text-muted); font: 500 12px 'Inter', sans-serif; cursor: pointer; text-decoration: underline; text-underline-offset: 4px; }
  .motion-paused *, .motion-paused *::before, .motion-paused *::after,
  .motion-suspended *, .motion-suspended *::before, .motion-suspended *::after { animation-play-state: paused !important; }
  .signup-feedback { max-width: 580px; margin-inline: auto; white-space: pre-line; }
  .signup-feedback[data-state="success"] { margin-top: 24px; padding: 24px; border: 1px solid rgba(255,255,255,.35); border-radius: var(--surface-radius); background: rgba(255,255,255,.12); color: #fff; font-size: 15px; line-height: 1.7; }
  .signup-feedback[data-state="success"]::first-line { font-weight: 700; font-size: 22px; }
  .signup-feedback[data-state="error"] { padding: 16px; border: 1px solid rgba(255,255,255,.4); border-radius: var(--control-radius); background: rgba(0,0,0,.12); }
  @media (hover: none) {
    .about-card:hover, .team-card:hover, .btn-primary-dark:hover, .btn-secondary-dark:hover { transform: none; }
  }
