    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --bg: #0F172A; --bg2: #111827;
      --surface: #1E293B; --surface2: #162032;
      --rose: #F43F5E; --rose-dim: #E11D48;
      --rose-glow: rgba(244,63,94,0.15);
      --rose-glow2: rgba(244,63,94,0.07);
      --cyan: #22D3EE;
      --emerald: #10B981;
      --white: #F8FAFC; --muted: #94A3B8;
      --border: rgba(244,63,94,0.18);
    }
    html { scroll-behavior: smooth; }
    body {
      background: var(--bg); color: var(--white);
      font-family: 'DM Sans', sans-serif;
      font-size: 16px; line-height: 1.7; overflow-x: hidden;
    }
    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='0.04'/%3E%3C/svg%3E");
      pointer-events: none; z-index: 0; opacity: 0.4;
    }
    section { position: relative; z-index: 1; }

    /* NAV */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; justify-content: space-between; align-items: center;
      padding: 1.25rem 5%;
      background: rgba(15,23,42,0.88); backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--border);
    }
    .nav-logo {
      font-family: 'Syne', sans-serif; font-weight: 800;
      font-size: 1.1rem; letter-spacing: 0.03em;
      color: var(--white); display: flex; align-items: center; gap: 0.5rem;
      text-decoration: none;
    }
    .nav-logo span { color: var(--rose); }
    .nav-right { display: flex; align-items: center; gap: 2rem; }
    .nav-links { display: flex; gap: 2rem; }
    .nav-links a {
      font-family: 'DM Mono', monospace; font-size: 0.75rem;
      color: var(--muted); text-decoration: none;
      letter-spacing: 0.08em; text-transform: uppercase; transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--rose); }
    .nav-platform {
      font-family: 'DM Mono', monospace; font-size: 0.72rem;
      color: var(--muted); text-decoration: none;
      letter-spacing: 0.08em; text-transform: uppercase;
      border: 1px solid var(--border); padding: 0.35rem 0.8rem;
      border-radius: 6px; transition: all 0.2s;
    }
    .nav-platform:hover { color: var(--cyan); border-color: rgba(34,211,238,0.3); }
    .nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
    .nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--muted); border-radius: 2px; }
    .nav-mobile { display: none; flex-direction: column; background: rgba(15,23,42,0.97); border-top: 1px solid var(--border); padding: 1rem 5%; position: fixed; top: 62px; left: 0; right: 0; z-index: 99; }
    .nav-mobile a { font-family: 'DM Mono', monospace; font-size: 0.85rem; color: var(--muted); text-decoration: none; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.04); transition: color 0.2s; }
    .nav-mobile a:last-child { border-bottom: none; }
    .nav-mobile a:hover { color: var(--rose); }
    .nav-mobile.open { display: flex; }

    /* HERO */
    #hero {
      min-height: 100vh;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      text-align: center; padding: 10rem 5% 6rem; overflow: hidden;
    }
    .hero-glow {
      position: absolute; width: 800px; height: 800px; border-radius: 50%;
      background: radial-gradient(circle, rgba(244,63,94,0.09) 0%, transparent 68%);
      top: 50%; left: 50%; transform: translate(-50%, -50%);
      pointer-events: none; animation: pulse-glow 7s ease-in-out infinite;
    }
    @keyframes pulse-glow {
      0%, 100% { opacity: 0.6; transform: translate(-50%,-50%) scale(1); }
      50% { opacity: 1; transform: translate(-50%,-50%) scale(1.07); }
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 0.5rem;
      font-family: 'DM Mono', monospace; font-size: 0.72rem;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--rose); background: var(--rose-glow2); border: 1px solid var(--border);
      padding: 0.4rem 1rem; border-radius: 999px;
      margin-bottom: 2rem; animation: fadeUp 0.6s ease both;
    }
    .badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--rose); animation: blink 2s ease infinite; }
    @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
    h1 {
      font-family: 'Syne', sans-serif; font-weight: 800;
      font-size: clamp(2.2rem, 5.5vw, 4.5rem);
      line-height: 1.1; letter-spacing: -0.02em;
      margin-bottom: 1.5rem; animation: fadeUp 0.7s 0.1s ease both;
    }
    h1 .accent { color: var(--rose); }
    .hero-sub {
      font-size: clamp(1rem, 2vw, 1.18rem); color: var(--muted);
      max-width: 500px; margin: 0 auto 2.8rem; font-weight: 300;
      animation: fadeUp 0.7s 0.2s ease both;
    }
    .btn-group { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; animation: fadeUp 0.7s 0.3s ease both; }
    .btn {
      display: inline-flex; align-items: center; gap: 0.6rem;
      padding: 0.85rem 1.8rem; border-radius: 8px;
      font-family: 'DM Sans', sans-serif; font-size: 0.95rem;
      font-weight: 500; text-decoration: none; cursor: pointer; transition: all 0.2s;
    }
    .btn-primary { background: var(--rose); color: #fff; border: none; font-weight: 600; }
    .btn-primary:hover { background: var(--rose-dim); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(244,63,94,0.4); }
    .btn-secondary { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.15); }
    .btn-secondary:hover { border-color: var(--rose); color: var(--rose); transform: translateY(-2px); }
    .btn-soon { opacity: 0.5; cursor: default; pointer-events: none; }

    /* NOTIFY FORM */
    .notify-strip {
      display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
      background: var(--rose-glow2); border: 1px solid var(--border);
      border-radius: 10px; padding: 1rem 1.4rem; margin-top: 1.8rem;
      animation: fadeUp 0.7s 0.45s ease both; max-width: 500px;
    }
    .notify-strip p { font-size: 0.85rem; color: var(--muted); margin: 0; white-space: nowrap; }
    .notify-form { display: flex; gap: 0.5rem; flex: 1; min-width: 200px; }
    .notify-form input[type="email"] {
      flex: 1; background: var(--bg); border: 1px solid var(--border);
      border-radius: 6px; padding: 0.55rem 0.85rem;
      font-family: 'DM Sans', sans-serif; font-size: 0.85rem; color: var(--white);
      outline: none; transition: border-color 0.2s;
    }
    .notify-form input[type="email"]::placeholder { color: var(--muted); opacity: 0.55; }
    .notify-form input[type="email"]:focus { border-color: var(--rose); }
    .notify-form button {
      background: var(--rose); color: #fff; border: none; border-radius: 6px;
      padding: 0.55rem 1.1rem; font-family: 'DM Sans', sans-serif; font-size: 0.85rem;
      font-weight: 600; cursor: pointer; transition: background 0.2s; white-space: nowrap;
    }
    .notify-form button:hover { background: var(--rose-dim); }

    .hero-stat-bar {
      display: flex; gap: 2.5rem; flex-wrap: wrap; justify-content: center;
      margin-top: 5rem; padding-top: 3rem; border-top: 1px solid var(--border);
      animation: fadeUp 0.7s 0.55s ease both;
    }
    .stat { text-align: center; }
    .stat-num { font-family: 'Syne', sans-serif; font-size: 1.6rem; font-weight: 700; color: var(--rose); }
    .stat-label { font-size: 0.75rem; color: var(--muted); font-family: 'DM Mono', monospace; text-transform: uppercase; letter-spacing: 0.08em; }
    @keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }

    /* SECTION COMMON */
    .section-label { font-family: 'DM Mono', monospace; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--rose); margin-bottom: 1rem; }
    .section-title { font-family: 'Syne', sans-serif; font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; line-height: 1.2; margin-bottom: 1rem; }

    /* PHILOSOPHY */
    #philosophy { padding: 7rem 5%; background: var(--surface2); border-top: 1px solid var(--border); }
    .philosophy-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
    .philosophy-copy p { color: var(--muted); margin-bottom: 2rem; font-size: 1.05rem; }
    .philosophy-pills { display: flex; flex-wrap: wrap; gap: 0.6rem; }
    .pill { font-family: 'DM Mono', monospace; font-size: 0.75rem; padding: 0.4rem 0.9rem; border-radius: 999px; border: 1px solid var(--border); color: var(--rose); background: var(--rose-glow2); letter-spacing: 0.04em; }
    .philosophy-visual { display: flex; flex-direction: column; gap: 0.8rem; }
    .concept-row {
      display: flex; align-items: center; gap: 1rem; padding: 1.1rem 1.4rem;
      background: var(--surface); border: 1px solid var(--border); border-radius: 10px; transition: all 0.2s;
    }
    .concept-row:hover { border-color: rgba(244,63,94,0.35); background: var(--rose-glow2); }
    .concept-icon { flex-shrink: 0; display: flex; align-items: center; }
    .concept-body { flex: 1; }
    .concept-title { font-family: 'Syne', sans-serif; font-size: 0.9rem; font-weight: 700; }
    .concept-desc { font-size: 0.8rem; color: var(--muted); }

    /* FEATURES */
    #features { padding: 7rem 5%; max-width: 1200px; margin: 0 auto; }
    .features-header { text-align: center; margin-bottom: 4rem; }
    .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
    .feature-card {
      background: var(--surface); border: 1px solid var(--border);
      border-radius: 12px; padding: 2rem; transition: all 0.25s; position: relative; overflow: hidden;
    }
    .feature-card::before { content:''; position:absolute; top:0; left:0; right:0; height:2px; background:linear-gradient(90deg, transparent, var(--rose), transparent); opacity:0; transition:opacity 0.3s; }
    .feature-card:hover { transform: translateY(-4px); border-color: rgba(244,63,94,0.4); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
    .feature-card:hover::before { opacity: 1; }
    .feature-icon { width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; background: var(--rose-glow); border-radius: 8px; margin-bottom: 1.2rem; }
    .feature-title { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 0.6rem; color: var(--white); }
    .feature-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }

    /* PLATFORMS */
    #platforms { padding: 6rem 5%; background: var(--surface2); border-top: 1px solid var(--border); }
    .platforms-inner { max-width: 900px; margin: 0 auto; text-align: center; }
    .platform-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 3rem; }
    .platform-tag {
      display: flex; align-items: center; gap: 0.6rem;
      font-family: 'Syne', sans-serif; font-size: 0.95rem; font-weight: 600;
      padding: 0.8rem 1.6rem; border-radius: 10px;
      border: 1px solid var(--border); background: var(--surface);
      color: var(--white); transition: all 0.2s;
    }
    .platform-tag:hover { background: var(--rose-glow2); border-color: rgba(244,63,94,0.35); color: var(--rose); transform: translateY(-2px); }
    .platform-tag .icon { font-size: 1.2rem; }

    /* ROADMAP */
    #roadmap { padding: 7rem 5%; }
    .roadmap-inner { max-width: 800px; margin: 0 auto; }
    .roadmap-header { text-align: center; margin-bottom: 3.5rem; }
    .roadmap-header p { color: var(--muted); font-size: 1rem; margin-top: 0.5rem; }
    .phases { display: flex; flex-direction: column; gap: 0; }
    .phase {
      display: grid; grid-template-columns: 60px 1fr; gap: 1.5rem;
      padding: 1.8rem 0; border-bottom: 1px solid rgba(255,255,255,0.04); align-items: start;
    }
    .phase:last-child { border-bottom: none; }
    .phase-num {
      width: 44px; height: 44px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-family: 'DM Mono', monospace; font-size: 0.8rem; flex-shrink: 0;
    }
    .phase-num.done { background: rgba(16,185,129,0.15); border: 1px solid rgba(16,185,129,0.3); color: var(--emerald); }
    .phase-num.active { background: var(--rose-glow); border: 1px solid rgba(244,63,94,0.35); color: var(--rose); }
    .phase-num.next { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); color: var(--muted); }
    .phase-name { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 0.3rem; }
    .phase-desc { font-size: 0.88rem; color: var(--muted); }
    .phase-items { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.8rem; }
    .phase-item { font-family: 'DM Mono', monospace; font-size: 0.68rem; letter-spacing: 0.04em; padding: 0.2rem 0.55rem; border-radius: 4px; }
    .phase-item.done-item { background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.22); color: var(--emerald); }
    .phase-item.todo-item { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); color: var(--muted); }

    /* CONTACT */
    #contact { padding: 6rem 5%; background: var(--surface2); border-top: 1px solid var(--border); text-align: center; }
    .contact-box { max-width: 500px; margin: 2rem auto 0; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 2.5rem; }
    .contact-box p { color: var(--muted); font-size: 0.95rem; margin-bottom: 1.4rem; }
    .contact-email { display: inline-block; font-family: 'DM Mono', monospace; font-size: 0.95rem; color: var(--rose); text-decoration: none; padding: 0.5rem 1rem; border: 1px solid var(--border); border-radius: 6px; transition: border-color 0.2s; }
    .contact-email:hover { border-color: var(--rose); }

    /* FOOTER */
    footer { padding: 2.5rem 5%; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; position: relative; z-index: 1; }
    .footer-logo { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 0.95rem; text-decoration: none; color: var(--white); display: flex; align-items: center; gap: 0.4rem; }
    .footer-logo span { color: var(--rose); }
    .footer-links { display: flex; gap: 1.8rem; flex-wrap: wrap; }
    .footer-links a { font-family: 'DM Mono', monospace; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color 0.2s; }
    .footer-links a:hover { color: var(--rose); }
    .footer-copy { font-family: 'DM Mono', monospace; font-size: 0.72rem; color: var(--muted); opacity: 0.5; }

    .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .reveal.visible { opacity: 1; transform: none; }

    @media (max-width: 768px) {
      .philosophy-inner { grid-template-columns: 1fr; gap: 3rem; }
      .nav-links { display: none; } .nav-hamburger { display: flex; }
      .nav-right { gap: 1rem; }
      #hero { padding: 7rem 5% 4rem; }
      h1 { font-size: clamp(1.9rem, 8vw, 2.8rem); }
      .hero-stat-bar { gap: 1.5rem; margin-top: 3rem; padding-top: 2rem; }
      .stat-num { font-size: 1.3rem; }
      footer { flex-direction: column; text-align: center; align-items: center; }
      .footer-links { justify-content: center; gap: 1rem; }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
      html { scroll-behavior: auto; }
      .reveal { opacity: 1; transform: none; }
    }
    .feature-card--highlight { border-color: rgba(244,63,94,0.3); background: var(--rose-glow2); }
    .note-dim { color: var(--muted); margin-top: 0.5rem; }
    .footer-links .footer-platform { color: var(--rose); }
  
/* Hint text under notify forms */
.notify-sub { font-family: 'DM Mono', monospace; font-size: 0.68rem; color: var(--muted); opacity: 0.7; }

/* Skip-to-content — WCAG 2.4.1 Level A */
.skip-link {
  position: absolute;
  top: -48px;
  left: 1rem;
  background: #10B981;
  color: #0F172A;
  padding: 0.5rem 1.1rem;
  border-radius: 0 0 6px 6px;
  z-index: 9999;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.15s ease;
}
.skip-link:focus { top: 0; outline: 2px solid #0F172A; outline-offset: 2px; }
