:root {
  --navy:      #0B0F19;
  --navy-2:    #0D1220;
  --navy-3:    #111827;
  --green:     #00FFB2;
  --cyan:      #00D4FF;
  --green-10:  rgba(0,255,178,.10);
  --green-15:  rgba(0,255,178,.15);
  --green-20:  rgba(0,255,178,.20);
  --cyan-10:   rgba(0,212,255,.10);
  --cyan-15:   rgba(0,212,255,.15);
  --white:     #F0F6FF;
  --muted:     rgba(240,246,255,.55);
  --dim:       rgba(240,246,255,.30);
  --glass-bg:  rgba(255,255,255,.035);
  --glass-bd:  rgba(255,255,255,.07);
  --glass-hov: rgba(255,255,255,.06);
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
}

/* scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: rgba(0,255,178,.25); border-radius: 4px; }

/* ══════════════════════════════════════════
   GLOBAL BG LAYER
══════════════════════════════════════════ */
.bg-layer {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
}
.bg-glow {
  position: absolute; border-radius: 50%; filter: blur(120px);
  animation: glowFloat 12s ease-in-out infinite;
}
.bg-glow-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,255,178,.07) 0%, transparent 70%);
  top: -15%; left: -10%;
}
.bg-glow-2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,212,255,.06) 0%, transparent 70%);
  bottom: 10%; right: -10%;
  animation-delay: -6s;
}
.bg-glow-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,255,178,.04) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  animation-delay: -3s;
}
@keyframes glowFloat {
  0%,100% { transform: scale(1) translate(0,0); }
  33%  { transform: scale(1.05) translate(15px,-10px); }
  66%  { transform: scale(.96) translate(-10px,12px); }
}
.bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,255,178,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,255,178,.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, black 20%, transparent 80%);
}

/* ══════════════════════════════════════════
   NAV
══════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 1.1rem 6%;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(11,15,25,.75);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--glass-bd);
}
.nav-logo {
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1.1rem;
  display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--white);
}
.nav-logo-mark {
  width: 34px; height: 34px; border-radius: 9px;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  display: grid; place-items: center; font-size: 15px;
  box-shadow: 0 0 18px rgba(0,255,178,.45);
  flex-shrink: 0;
}
.nav-logo span { color: var(--green); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: .85rem; color: var(--muted); text-decoration: none;
  transition: color .2s; font-weight: 500;
}
.nav-links a:hover { color: var(--green); }
.nav-btn {
  padding: .5rem 1.3rem;
  border: 1px solid rgba(0,255,178,.35);
  border-radius: 8px; background: var(--green-10);
  color: var(--green); font-size: .82rem; font-weight: 600;
  font-family: 'Sora', sans-serif; cursor: pointer; text-decoration: none;
  transition: background .2s, box-shadow .2s;
}
.nav-btn:hover { background: var(--green-20); box-shadow: 0 0 16px rgba(0,255,178,.25); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--muted); border-radius: 2px; transition: .3s; }

/* ══════════════════════════════════════════
   UTILITIES
══════════════════════════════════════════ */
.g-text {
  background: linear-gradient(90deg, var(--green) 0%, var(--cyan) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-wrap { position: relative; z-index: 1; padding: 7rem 6%; }
.tag-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: .9rem;
}
.tag-label::before { content: ''; display: block; width: 18px; height: 1px; background: var(--cyan); }
.section-h {
  font-family: 'Sora', sans-serif; font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.2rem); letter-spacing: -.025em;
  line-height: 1.15; margin-bottom: 1rem;
}
.section-p { color: var(--muted); font-size: 1rem; max-width: 520px; margin-bottom: 3rem; }

/* glass card */
.gc {
  background: var(--glass-bg);
  border: 1px solid var(--glass-bd);
  border-radius: 20px;
  backdrop-filter: blur(18px);
  padding: 2rem;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.gc:hover {
  transform: translateY(-5px);
  border-color: rgba(0,255,178,.18);
  box-shadow: 0 24px 60px rgba(0,0,0,.45), 0 0 30px rgba(0,255,178,.06);
}
.gc-top-bar {
  position: absolute; top: 0; left: 5%; right: 5%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  border-radius: 1px; opacity: 0; transition: opacity .3s;
}
.gc:hover .gc-top-bar { opacity: 1; }

/* reveal animation */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .75s ease, transform .75s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* live dot */
.ldot {
  display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 8px var(--green);
  animation: pulse 1.6s ease infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .3; } }

#hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 8rem 5% 5rem;
  position: relative; z-index: 1; overflow: hidden;
}
.hero-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(0,255,178,.07);
  animation: spinRing linear infinite;
  pointer-events: none;
}
.hr-1 { width: 600px; height: 600px; top:50%; left:50%; transform:translate(-50%,-50%); animation-duration: 28s; }
.hr-2 { width: 900px; height: 900px; top:50%; left:50%; transform:translate(-50%,-50%); animation-duration: 50s; animation-direction: reverse; border-color: rgba(0,212,255,.04); }
@keyframes spinRing { from { transform: translate(-50%,-50%) rotate(0); } to { transform: translate(-50%,-50%) rotate(360deg); } }

.hero-dot {
  position: absolute; width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 14px var(--green);
  top: 0; left: 50%; transform: translateX(-50%);
}
.hero-dot-2 { background: var(--cyan); box-shadow: 0 0 14px var(--cyan); top: auto; bottom: 0; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: .38rem 1.1rem;
  background: var(--green-10); border: 1px solid rgba(0,255,178,.2);
  border-radius: 100px; font-size: .72rem; font-weight: 600;
  color: var(--green); letter-spacing: .07em; text-transform: uppercase;
  margin-bottom: 1.8rem;
  animation: fadeUp .9s ease both;
}
.hero-h {
  font-family: 'Sora', sans-serif; font-weight: 800;
  font-size: clamp(2.8rem, 7vw, 5.5rem); letter-spacing: -.03em; line-height: 1.05;
  margin-bottom: 1.6rem;
  animation: fadeUp .9s .1s ease both;
}
.hero-sub {
  color: var(--muted); font-size: 1.1rem; font-weight: 300;
  max-width: 580px; margin: 0 auto 2.8rem; line-height: 1.75;
  animation: fadeUp .9s .2s ease both;
}
.hero-btns {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  animation: fadeUp .9s .3s ease both;
}
.btn-primary {
  padding: .9rem 2.2rem;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  border: none; border-radius: 11px;
  color: var(--navy); font-family: 'Sora', sans-serif; font-weight: 700;
  font-size: .95rem; cursor: pointer; text-decoration: none;
  box-shadow: 0 0 32px rgba(0,255,178,.4), 0 6px 24px rgba(0,255,178,.2);
  transition: transform .2s, box-shadow .2s; display: inline-block;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 0 55px rgba(0,255,178,.55), 0 10px 35px rgba(0,255,178,.25); }
.btn-ghost {
  padding: .9rem 2.2rem;
  background: var(--glass-bg); border: 1px solid var(--glass-bd);
  border-radius: 11px; color: var(--white);
  font-family: 'Sora', sans-serif; font-weight: 600; font-size: .95rem;
  cursor: pointer; backdrop-filter: blur(12px); text-decoration: none;
  transition: background .2s, border-color .2s; display: inline-block;
}
.btn-ghost:hover { background: var(--glass-hov); border-color: rgba(0,255,178,.25); }

/* floating chips */
.hero-chips {
  display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap;
  margin-top: 4.5rem;
  animation: fadeUp .9s .4s ease both;
}
.chip {
  padding: .65rem 1.3rem;
  background: var(--glass-bg); border: 1px solid var(--glass-bd);
  border-radius: 12px; backdrop-filter: blur(10px); text-align: center;
}
.chip-v { font-family: 'Sora', sans-serif; font-size: 1.35rem; font-weight: 700; color: var(--green); }
.chip-l { font-size: .67rem; color: var(--dim); letter-spacing: .06em; text-transform: uppercase; margin-top: 2px; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }

/* ══════════════════════════════════════════
   PROBLEM
══════════════════════════════════════════ */
#problems { background: var(--navy-2); }
.prob-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 1.5rem;
}
.prob-card {
  position: relative; overflow: hidden;
  background: rgba(255,80,80,.03); border: 1px solid rgba(255,80,80,.08);
  border-radius: 18px; padding: 2rem;
  transition: transform .3s, border-color .3s;
}
.prob-card:hover { transform: translateY(-4px); border-color: rgba(255,80,80,.2); }
.prob-icon {
  font-size: 2.2rem; margin-bottom: 1.2rem; display: block;
}
.prob-card h3 { font-family: 'Sora', sans-serif; font-size: 1.05rem; font-weight: 600; margin-bottom: .5rem; }
.prob-card p { font-size: .875rem; color: var(--muted); line-height: 1.7; }
.prob-tag {
  display: inline-block; margin-top: 1rem;
  padding: .28rem .75rem; border-radius: 6px;
  font-size: .68rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  background: rgba(255,80,80,.08); color: #FF8080;
}

/* ══════════════════════════════════════════
   SOLUTION
══════════════════════════════════════════ */
.sol-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
@media(max-width:680px) { .sol-grid { grid-template-columns: 1fr; } }
.sol-card { position: relative; overflow: hidden; }
.sol-num {
  font-family: 'Sora', sans-serif; font-size: 2.5rem; font-weight: 800;
  color: rgba(0,255,178,.08); line-height: 1; margin-bottom: .5rem;
}
.sol-card h3 { font-family: 'Sora', sans-serif; font-size: 1.05rem; font-weight: 600; margin-bottom: .5rem; }
.sol-card p { font-size: .875rem; color: var(--muted); line-height: 1.7; }
.sol-icon { font-size: 1.6rem; margin-bottom: .8rem; display: block; }

/* ══════════════════════════════════════════
   FEATURES
══════════════════════════════════════════ */
#features { background: var(--navy-2); }
.feat-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 1.4rem;
}
.feat-card { position: relative; overflow: hidden; }
.feat-icon-wrap {
  width: 50px; height: 50px; border-radius: 14px;
  display: grid; place-items: center; font-size: 22px; margin-bottom: 1.3rem;
}
.fi-g { background: var(--green-10); box-shadow: 0 0 18px rgba(0,255,178,.12); }
.fi-c { background: var(--cyan-10);  box-shadow: 0 0 18px rgba(0,212,255,.12); }
.feat-card h3 { font-family: 'Sora', sans-serif; font-size: 1.05rem; font-weight: 600; margin-bottom: .5rem; }
.feat-card p { font-size: .875rem; color: var(--muted); line-height: 1.7; }
.feat-pill {
  display: inline-block; margin-top: 1.1rem;
  padding: .26rem .7rem; border-radius: 6px;
  font-size: .68rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase;
}
.fp-g { background: var(--green-10); color: var(--green); }
.fp-c { background: var(--cyan-10);  color: var(--cyan); }

/* ══════════════════════════════════════════
   DASHBOARD PREVIEW
══════════════════════════════════════════ */
#dashboard { position: relative; }
.dash-container {
  max-width: 900px; margin: 0 auto;
}
.dash-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.5rem; flex-wrap: wrap; gap: 1rem;
}
.dash-title { font-family: 'Sora', sans-serif; font-size: 1rem; font-weight: 600; display: flex; align-items: center; gap: 10px; }
.dash-time { font-size: .75rem; color: var(--dim); }

.dash-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.1rem;
}
@media(max-width:720px) { .dash-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:480px) { .dash-grid { grid-template-columns: 1fr; } }

.dc-wide { grid-column: span 2; }
@media(max-width:480px) { .dc-wide { grid-column: span 1; } }

.dc-label { font-size: .68rem; color: var(--dim); letter-spacing: .07em; text-transform: uppercase; margin-bottom: .4rem; }
.dc-val { font-family: 'Sora', sans-serif; font-size: 2.1rem; font-weight: 700; line-height: 1; }
.dc-val.dg { color: var(--green); }
.dc-val.dc { color: var(--cyan); }
.dc-val.dw { color: var(--white); }
.dc-sub { font-size: .78rem; color: var(--dim); margin-top: .35rem; display: flex; align-items: center; gap: 5px; }
.up { color: var(--green); }
.dn { color: #FF6B8A; }

/* progress */
.pbar { height: 5px; background: rgba(255,255,255,.05); border-radius: 3px; margin-top: .9rem; overflow: hidden; }
.pfill { height: 100%; border-radius: 3px; background: linear-gradient(90deg,var(--green),var(--cyan)); animation: grow 1.8s ease both; }
@keyframes grow { from { width: 0 !important; } }

/* bar chart */
.bars { display: flex; align-items: flex-end; gap: 5px; height: 55px; margin-top: 1rem; }
.bar {
  flex: 1; border-radius: 4px 4px 0 0; background: rgba(0,255,178,.14);
  transition: background .3s;
  animation: barUp .8s ease both;
}
.bar:hover { background: rgba(0,255,178,.4); }
.bar.active { background: linear-gradient(180deg, var(--green), rgba(0,255,178,.3)); }
@keyframes barUp { from { transform: scaleY(0); transform-origin: bottom; } }

.dl-row { display: flex; justify-content: space-between; align-items: center; padding: .55rem 0; border-bottom: 1px solid var(--glass-bd); }
.dl-row:last-child { border-bottom: none; }
.dl-label { font-size: .83rem; color: var(--muted); }
.dpill { padding: .22rem .65rem; border-radius: 100px; font-size: .67rem; font-weight: 600; }
.dpg { background: var(--green-10); color: var(--green); }
.dpc { background: var(--cyan-10);  color: var(--cyan); }
.dpy { background: rgba(255,213,79,.1); color: #FFDF55; }

/* ring */
.ring-row { display: flex; align-items: center; gap: 1.4rem; margin-top: .9rem; }
.ring-info h4 { font-family: 'Sora', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--green); }
.ring-info p { font-size: .75rem; color: var(--dim); margin-top: 3px; line-height: 1.5; }

/* ══════════════════════════════════════════
   WHY DIFFERENT
══════════════════════════════════════════ */
#why { background: var(--navy-2); }
.why-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
@media(max-width:768px) { .why-inner { grid-template-columns: 1fr; gap: 3rem; } }
.why-visual { position: relative; height: 380px; display: flex; align-items: center; justify-content: center; }
.wr { position: absolute; border-radius: 50%; border: 1px solid rgba(0,255,178,.1); animation: spinRing linear infinite; }
.wr-1 { width: 280px; height: 280px; animation-duration: 20s; }
.wr-2 { width: 200px; height: 200px; animation-duration: 14s; animation-direction: reverse; border-color: rgba(0,212,255,.08); }
.wr-3 { width: 130px; height: 130px; animation-duration: 9s; }
.wr-dot { position: absolute; width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 12px var(--green); top: 0; left: 50%; transform: translateX(-50%); }
.wr-dot-2 { background: var(--cyan); box-shadow: 0 0 12px var(--cyan); bottom: 0; top: auto; }
.wr-center {
  width: 72px; height: 72px; border-radius: 18px;
  background: linear-gradient(135deg, rgba(0,255,178,.15), rgba(0,212,255,.15));
  border: 1px solid rgba(0,255,178,.25);
  display: grid; place-items: center; font-size: 28px; z-index: 1;
  box-shadow: 0 0 35px rgba(0,255,178,.18);
}
.why-float {
  position: absolute; padding: .5rem 1rem;
  background: var(--glass-bg); border: 1px solid var(--glass-bd);
  border-radius: 10px; backdrop-filter: blur(10px);
  font-size: .73rem; color: var(--muted); white-space: nowrap;
}
.wf-1 { top: 14%; right: 2%; }
.wf-2 { bottom: 14%; left: 2%; }
.wf-3 { top: 50%; right: -4%; transform: translateY(-50%); }
.why-points { list-style: none; display: flex; flex-direction: column; gap: 1.1rem; margin-top: 2rem; }
.why-points li { display: flex; align-items: flex-start; gap: 12px; font-size: .9rem; color: var(--muted); }
.wp-icon {
  flex-shrink: 0; width: 20px; height: 20px; border-radius: 6px; margin-top: 2px;
  background: var(--green-10); border: 1px solid rgba(0,255,178,.25);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%2300FFB2' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}

/* ══════════════════════════════════════════
   WAITLIST
══════════════════════════════════════════ */
#waitlist { text-align: center; }
.waitlist-card {
  max-width: 680px; margin: 0 auto;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, rgba(0,255,178,.05), rgba(0,212,255,.04));
  border: 1px solid rgba(0,255,178,.12);
  border-radius: 28px; padding: 4rem 3rem;
  backdrop-filter: blur(20px);
}
.waitlist-card::before {
  content: '';
  position: absolute; top: -50%; left: 50%; transform: translateX(-50%);
  width: 500px; height: 350px;
  background: radial-gradient(ellipse, rgba(0,255,178,.08) 0%, transparent 70%);
  pointer-events: none;
}
.wl-launch {
  font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--green); margin-bottom: 1.2rem;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.waitlist-card h2 { font-family: 'Sora', sans-serif; font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 800; letter-spacing: -.025em; margin-bottom: .8rem; }
.waitlist-card > p { color: var(--muted); margin-bottom: 2rem; font-size: 1rem; }

/* countdown */
.countdown {
  display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.cd-unit { text-align: center; }
.cd-val {
  display: block;
  width: 62px; height: 62px;
  background: var(--glass-bg); border: 1px solid var(--glass-bd);
  border-radius: 12px; font-family: 'Sora', sans-serif;
  font-size: 1.6rem; font-weight: 700; color: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.cd-lbl { font-size: .62rem; color: var(--dim); letter-spacing: .08em; text-transform: uppercase; margin-top: .4rem; }

/* email form */
.wl-form { display: flex; gap: .7rem; max-width: 460px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.wl-input {
  flex: 1 1 240px;
  padding: .85rem 1.2rem;
  background: rgba(255,255,255,.05); border: 1px solid var(--glass-bd);
  border-radius: 11px; color: var(--white); font-family: 'Inter', sans-serif; font-size: .9rem;
  outline: none; transition: border-color .2s, box-shadow .2s;
}
.wl-input::placeholder { color: var(--dim); }
.wl-input:focus { border-color: rgba(0,255,178,.35); box-shadow: 0 0 0 3px rgba(0,255,178,.08); }
.wl-btn {
  padding: .85rem 1.8rem;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  border: none; border-radius: 11px;
  color: var(--navy); font-family: 'Sora', sans-serif; font-weight: 700; font-size: .9rem;
  cursor: pointer; white-space: nowrap;
  box-shadow: 0 0 28px rgba(0,255,178,.35);
  transition: transform .2s, box-shadow .2s;
}
.wl-btn:hover { transform: translateY(-2px); box-shadow: 0 0 45px rgba(0,255,178,.5); }
.wl-note { font-size: .75rem; color: var(--dim); margin-top: 1.1rem; }
.wl-count { font-size: .82rem; color: var(--muted); margin-top: 1.8rem; display: flex; align-items: center; justify-content: center; gap: 8px; }
.wl-avatars { display: flex; }
.wl-av {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid var(--navy-2); margin-left: -8px;
  font-size: .7rem; display: grid; place-items: center;
  font-weight: 600; font-family: 'Sora', sans-serif;
}
.wl-av:first-child { margin-left: 0; }
.av1 { background: linear-gradient(135deg, #667eea, #764ba2); }
.av2 { background: linear-gradient(135deg, #f093fb, #f5576c); }
.av3 { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.av4 { background: linear-gradient(135deg, #43e97b, #38f9d7); }

/* success state */
.wl-success {
  display: none; flex-direction: column; align-items: center; gap: .7rem;
  color: var(--green);
}
.wl-success-icon {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--green-10); border: 1px solid rgba(0,255,178,.3);
  display: grid; place-items: center; font-size: 22px;
}
.wl-success h3 { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1.2rem; color: var(--white); }
.wl-success p { font-size: .875rem; color: var(--muted); }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer {
  position: relative; z-index: 1;
  border-top: 1px solid var(--glass-bd);
  padding: 2.5rem 6%;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem;
}
.ft-logo { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1rem; display: flex; align-items: center; gap: 9px; color: var(--white); text-decoration: none; }
.ft-logo-m { width: 28px; height: 28px; border-radius: 7px; background: linear-gradient(135deg,var(--green),var(--cyan)); display: grid; place-items: center; font-size: 13px; box-shadow: 0 0 12px rgba(0,255,178,.3); }
.ft-logo span { color: var(--green); }
.ft-links { display: flex; gap: 2rem; }
.ft-links a { font-size: .8rem; color: var(--dim); text-decoration: none; transition: color .2s; }
.ft-links a:hover { color: var(--green); }
.ft-copy { font-size: .75rem; color: var(--dim); }

/* ══════════════════════════════════════════
   MOBILE NAV
══════════════════════════════════════════ */
.mobile-menu {
  display: none; position: fixed; top: 64px; left: 0; right: 0; z-index: 199;
  background: rgba(11,15,25,.97); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-bd);
  padding: 1.5rem 6%;
  flex-direction: column; gap: 1.2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--muted); text-decoration: none; font-size: .95rem; font-weight: 500; transition: color .2s; }
.mobile-menu a:hover { color: var(--green); }

@media(max-width:768px) {
  .nav-links { display: none; }
  .nav-btn-desk { display: none; }
  .hamburger { display: flex; }
}

/* ══════════════════════════════════════════
   PARALLAX PARTICLES
══════════════════════════════════════════ */
#particles { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.particle {
  position: absolute; border-radius: 50%;
  background: var(--green); opacity: .35;
  animation: drift linear infinite;
}
@keyframes drift {
  from { transform: translateY(110vh) scale(0); opacity: 0; }
  10%  { opacity: .35; }
  90%  { opacity: .2; }
  to   { transform: translateY(-10vh) scale(1); opacity: 0; }
}
