/* =============================================================
   KHAAMOSH — STYLES
   Black · deep purple glow · glass · disciplined
   ============================================================= */

/* ---------- TOKENS ---------- */
:root {
  --black:      #0D0D0D;
  --dark:       #1A1A1A;
  --purple:     #6B00FF;
  --purple-lt:  #A259FF;
  --white:      #EAEAEA;

  --glass:      rgba(26, 26, 26, 0.55);
  --glass-brd:  rgba(162, 89, 255, 0.18);
  --glass-brd-hover: rgba(162, 89, 255, 0.45);

  --glow:       0 0 40px rgba(107, 0, 255, 0.35);
  --glow-soft:  0 0 60px rgba(107, 0, 255, 0.18);

  --space:      clamp(4rem, 9vw, 8rem);
  --radius:     20px;
  --radius-lg:  28px;

  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --maxw: 1200px;
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}
@media (pointer: coarse) { body { cursor: auto; } }

/* Ambient background orbs */
.bg-orbs { position: fixed; inset: 0; z-index: -2; overflow: hidden; pointer-events: none; }
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(90px); opacity: 0.5;
  background: radial-gradient(circle, var(--purple) 0%, transparent 70%);
  animation: drift 22s ease-in-out infinite;
}
.orb.o1 { width: 480px; height: 480px; top: -120px; left: -100px; }
.orb.o2 { width: 400px; height: 400px; top: 40%; right: -140px; animation-delay: -7s; background: radial-gradient(circle, var(--purple-lt) 0%, transparent 70%); opacity: 0.35; }
.orb.o3 { width: 520px; height: 520px; bottom: -180px; left: 30%; animation-delay: -14s; }
@keyframes drift {
  0%,100% { transform: translate(0,0) scale(1); }
  33%     { transform: translate(60px,-40px) scale(1.08); }
  66%     { transform: translate(-40px,50px) scale(0.95); }
}

body::before {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(ellipse at top, rgba(107,0,255,0.10), transparent 55%),
    linear-gradient(180deg, transparent, rgba(13,13,13,0.4));
}

/* ---------- CUSTOM CURSOR ---------- */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none;
  border-radius: 50%; transform: translate(-50%, -50%);
}
.cursor-dot { width: 7px; height: 7px; background: var(--purple-lt); box-shadow: 0 0 12px var(--purple); }
.cursor-ring {
  width: 34px; height: 34px; border: 1.5px solid rgba(162,89,255,0.5);
  transition: width .2s, height .2s, background .2s, border-color .2s;
}
.cursor-ring.active { width: 50px; height: 50px; background: rgba(162,89,255,0.08); border-color: var(--purple-lt); }
@media (pointer: coarse) { .cursor-dot, .cursor-ring { display: none; } }

.bubble {
  position: fixed; z-index: 9998; pointer-events: none; border-radius: 50%;
  background: radial-gradient(circle, rgba(162,89,255,0.6), rgba(107,0,255,0.1));
  animation: bubble-pop .9s ease-out forwards;
}
@keyframes bubble-pop {
  0%   { transform: translate(-50%,-50%) scale(0.2); opacity: .9; }
  100% { transform: translate(-50%,-50%) scale(2.4); opacity: 0; }
}

/* ---------- LAYOUT ---------- */
.wrap { width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto; }
section { padding-block: var(--space); position: relative; }

.eyebrow {
  font-family: var(--font-body); font-size: .78rem; font-weight: 600;
  letter-spacing: .28em; text-transform: uppercase; color: var(--purple-lt);
  display: inline-block; margin-bottom: 1rem;
}
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; }
.section-title { font-size: clamp(2rem, 4.5vw, 3.4rem); margin-bottom: .6rem; }
.section-sub { color: rgba(234,234,234,0.62); max-width: 60ch; font-size: 1.05rem; }
.center { text-align: center; margin-inline: auto; }
.center .section-sub { margin-inline: auto; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- NAVBAR ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem clamp(1.25rem, 4vw, 2.5rem);
  transition: background .3s, backdrop-filter .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(13,13,13,0.72); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-brd);
}
.nav-brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; }
.nav-brand img { height: 34px; width: auto; }
.nav-brand .wordmark { font-family: var(--font-display); font-weight: 700; letter-spacing: .22em; font-size: 1rem; color: var(--white); }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { color: rgba(234,234,234,0.75); text-decoration: none; font-size: .92rem; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--purple-lt); }
.nav-cta {
  background: var(--purple); color: #fff; padding: .6rem 1.3rem; border-radius: 999px;
  font-weight: 600; font-size: .9rem; text-decoration: none;
  box-shadow: var(--glow); transition: transform .2s, box-shadow .2s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 0 55px rgba(107,0,255,0.6); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; }
.hamburger span { width: 26px; height: 2px; background: var(--white); transition: .3s; }

@media (max-width: 860px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(78vw, 320px);
    flex-direction: column; align-items: flex-start; gap: 1.5rem;
    background: rgba(13,13,13,0.96); backdrop-filter: blur(20px);
    padding: 6rem 2rem 2rem; transform: translateX(100%); transition: transform .35s ease;
    border-left: 1px solid var(--glass-brd);
  }
  .nav-links.open { transform: none; }
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 1.7rem; border-radius: 999px; font-weight: 600; font-size: .98rem;
  text-decoration: none; border: 0; cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s;
  font-family: var(--font-body);
}
.btn-primary { background: var(--purple); color: #fff; box-shadow: var(--glow); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 0 55px rgba(107,0,255,0.65); }
.btn-ghost { background: rgba(162,89,255,0.06); color: var(--white); border: 1px solid var(--glass-brd); }
.btn-ghost:hover { border-color: var(--glass-brd-hover); background: rgba(162,89,255,0.12); }

/* ---------- HERO ---------- */
.hero { min-height: 100vh; display: grid; align-items: center; padding-top: 6rem; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: center; }
.hero-logo { height: 140px; width: auto; margin-bottom: 1.4rem; filter: drop-shadow(0 0 30px rgba(107,0,255,0.5)); }
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  background: linear-gradient(120deg, #fff 30%, var(--purple-lt));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 1.2rem;
}
.hero .sub { font-size: 1.15rem; color: rgba(234,234,234,0.72); max-width: 46ch; margin-bottom: 2rem; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.4rem; }
.hero-badges { display: flex; flex-wrap: wrap; gap: .6rem; }
.badge {
  font-size: .8rem; font-weight: 500; padding: .45rem .9rem; border-radius: 999px;
  background: rgba(162,89,255,0.07); border: 1px solid var(--glass-brd); color: rgba(234,234,234,0.85);
}

/* ---------- PHONE MOCKUP ---------- */
.phone {
  width: 300px; max-width: 82vw; margin-inline: auto;
  background: linear-gradient(160deg, #202024, #0c0c0e);
  border-radius: 44px; padding: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 40px 90px rgba(0,0,0,0.7), var(--glow);
  transition: transform .3s ease;
}
.phone-screen { background: var(--black); border-radius: 34px; overflow: hidden; padding: 1rem; }
.phone-tilt { transform: perspective(1200px) rotateY(-8deg) rotateX(3deg); }

.status-bar { display: flex; justify-content: space-between; font-size: .72rem; color: var(--white); padding: .2rem .3rem .7rem; opacity: .9; }
.app-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: .9rem; }
.app-head .wm { font-family: var(--font-display); font-weight: 700; letter-spacing: .18em; color: var(--purple-lt); font-size: .95rem; }
.app-head .bell { color: var(--white); opacity: .7; }

.glass-card {
  background: var(--glass); border: 1px solid var(--glass-brd);
  border-radius: var(--radius); backdrop-filter: blur(10px);
}

.streak-card { padding: 1rem 1.1rem; display: flex; align-items: center; justify-content: space-between; margin-bottom: .8rem; }
.streak-card .lbl { font-size: .72rem; color: rgba(234,234,234,0.6); }
.streak-card .num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; line-height: 1; }
.streak-card .num small { font-size: 1rem; }
.streak-card .days { font-size: .72rem; color: rgba(234,234,234,0.6); }
.ring { width: 66px; height: 66px; position: relative; }
.ring svg { transform: rotate(-90deg); }
.ring .flame { position: absolute; inset: 0; display: grid; place-items: center; font-size: 1.4rem; }

.quote-card { padding: .9rem 1rem; margin-bottom: .9rem; position: relative; }
.quote-card p { font-size: .82rem; text-align: center; color: var(--white); }
.quote-card .qa { text-align: right; font-size: .68rem; letter-spacing: .12em; color: var(--purple-lt); margin-top: .4rem; }
.quote-card .mark { color: var(--purple); font-size: 1.4rem; font-family: var(--font-display); line-height: 0; }

.prog-head { display: flex; justify-content: space-between; align-items: center; font-size: .82rem; margin: .3rem .1rem .6rem; }
.prog-head span { color: rgba(234,234,234,0.6); font-size: .7rem; }
.prog-item { display: flex; align-items: center; gap: .6rem; padding: .5rem; border-radius: 12px; background: rgba(255,255,255,0.02); margin-bottom: .4rem; }
.prog-ic { width: 30px; height: 30px; border-radius: 8px; background: rgba(162,89,255,0.08); display: grid; place-items: center; font-size: .9rem; }
.prog-body { flex: 1; }
.prog-top { display: flex; justify-content: space-between; font-size: .74rem; margin-bottom: .3rem; }
.prog-bar { height: 5px; border-radius: 999px; background: rgba(255,255,255,0.08); overflow: hidden; }
.prog-fill { height: 100%; background: linear-gradient(90deg, var(--purple), var(--purple-lt)); border-radius: 999px; box-shadow: 0 0 8px var(--purple); }

.app-nav { display: flex; justify-content: space-around; padding-top: .7rem; margin-top: .3rem; border-top: 1px solid rgba(255,255,255,0.05); font-size: .6rem; }
.app-nav div { display: flex; flex-direction: column; align-items: center; gap: .2rem; color: rgba(234,234,234,0.5); }
.app-nav div.on { color: var(--purple-lt); }
.app-nav .ni { font-size: .95rem; }

/* ---------- MOVEMENT / VOTE ---------- */
.movement { text-align: center; }
.vote-shell { max-width: 620px; margin: 2.4rem auto 0; }
.vote-q { font-family: var(--font-display); font-size: clamp(1.4rem, 3.5vw, 2.2rem); margin-bottom: 1.8rem; }
.vote-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.vote-btn {
  padding: 1rem 1.6rem; border-radius: 14px; font-weight: 600; cursor: pointer; font-size: 1rem;
  border: 1px solid var(--glass-brd); background: var(--glass); color: var(--white);
  transition: transform .2s, border-color .2s, background .2s; font-family: var(--font-body);
}
.vote-btn.yes:hover { border-color: var(--purple-lt); background: rgba(107,0,255,0.15); transform: translateY(-3px); box-shadow: var(--glow); }
.vote-btn.no:hover  { border-color: rgba(234,234,234,0.3); transform: translateY(-3px); }
.vote-btn:disabled { cursor: default; opacity: .7; }

.vote-result { margin-top: 1rem; }
.vote-bar { height: 46px; border-radius: 12px; overflow: hidden; display: flex; border: 1px solid var(--glass-brd); background: var(--dark); }
.vote-yes { background: linear-gradient(90deg, var(--purple), var(--purple-lt)); display: flex; align-items: center; padding-left: 1rem; font-weight: 700; font-size: .9rem; width: 0; transition: width 1s cubic-bezier(.2,.8,.2,1); white-space: nowrap; }
.vote-no  { flex: 1; display: flex; align-items: center; justify-content: flex-end; padding-right: 1rem; font-weight: 600; font-size: .9rem; color: rgba(234,234,234,0.6); }
.vote-total { margin-top: 1rem; font-size: .95rem; color: rgba(234,234,234,0.7); }
.vote-total b { color: var(--purple-lt); font-family: var(--font-display); font-size: 1.4rem; }
.live-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: #46d97a; margin-right: .4rem; box-shadow: 0 0 8px #46d97a; animation: pulse 1.6s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .3; } }

/* ---------- PROBLEM / DOPAMINE ---------- */
.problem-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.2rem; margin-top: 2.6rem; }
.problem-card { padding: 1.8rem; border-radius: var(--radius); background: var(--glass); border: 1px solid var(--glass-brd); transition: transform .3s, border-color .3s; }
.problem-card:hover { transform: translateY(-6px); border-color: var(--glass-brd-hover); }
.problem-ic { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 1rem; background: rgba(107,0,255,0.12); color: var(--purple-lt); }
.problem-card h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.problem-card p { color: rgba(234,234,234,0.62); font-size: .95rem; }

/* ---------- APP PREVIEW (3 screens) ---------- */
.screens { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.screen-col { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.screen-label { font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: var(--purple-lt); }
.mini-title { font-family: var(--font-display); font-size: 1.05rem; padding: .2rem 0 .6rem; }

/* streaks screen bits */
.streak-graph { padding: 1rem; margin-bottom: .8rem; }
.big-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; line-height: 1; }
.week-checks { display: flex; justify-content: space-between; margin-top: .8rem; }
.week-checks div { display: flex; flex-direction: column; align-items: center; gap: .3rem; font-size: .62rem; color: rgba(234,234,234,0.5); }
.wc-dot { width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; background: rgba(107,0,255,0.2); border: 1px solid var(--purple); color: var(--white); font-size: .7rem; }
.wc-dot.star { background: var(--purple); }
.milestone { display: flex; align-items: center; gap: .7rem; padding: .7rem .8rem; border-radius: 12px; background: rgba(255,255,255,0.02); margin-bottom: .5rem; }
.ms-ic { width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; font-size: .85rem; }
.ms-ic.done { background: var(--purple); box-shadow: 0 0 12px var(--purple); }
.ms-ic.lock { background: rgba(255,255,255,0.06); color: rgba(234,234,234,0.4); }
.ms-body { flex: 1; }
.ms-body .d { font-weight: 600; font-size: .85rem; }
.ms-body .s { font-size: .68rem; color: rgba(234,234,234,0.5); }

/* rewards screen bits */
.points-card { padding: 1.1rem; margin-bottom: .9rem; display: flex; justify-content: space-between; align-items: center; }
.points-card .pl { font-size: .72rem; color: rgba(234,234,234,0.6); }
.points-card .pv { font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; }
.points-gift { font-size: 2rem; filter: drop-shadow(0 0 14px var(--purple)); }
.rgrid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: .5rem; }
.rmini { padding: .6rem .4rem; border-radius: 12px; background: rgba(255,255,255,0.02); border: 1px solid rgba(162,89,255,0.1); text-align: center; }
.rmini .re { font-size: 1.3rem; }
.rmini .rt { font-size: .62rem; font-weight: 600; margin-top: .2rem; }
.rmini .rb { font-size: .56rem; color: rgba(234,234,234,0.5); }
.rmini .rp { font-size: .62rem; color: var(--purple-lt); font-weight: 700; margin-top: .2rem; }

/* ---------- ANALYTICS ---------- */
.stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1rem; margin-bottom: 3rem; }
.stat-card { padding: 1.6rem 1.2rem; border-radius: var(--radius); background: var(--glass); border: 1px solid var(--glass-brd); text-align: center; }
.stat-card .v { font-family: var(--font-display); font-size: 2.1rem; font-weight: 700; color: var(--purple-lt); }
.stat-card .l { font-size: .82rem; color: rgba(234,234,234,0.6); margin-top: .3rem; }
.charts-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.chart-card { padding: 1.6rem; border-radius: var(--radius); background: var(--glass); border: 1px solid var(--glass-brd); }
.chart-card h3 { font-size: 1rem; margin-bottom: 1rem; color: rgba(234,234,234,0.85); }
.chart-wrap { position: relative; height: 220px; }

/* ---------- HABIT SYSTEM ---------- */
.habits-cols { display: grid; grid-template-columns: 1.2fr 1fr; gap: 2.5rem; align-items: start; margin-top: 2.6rem; }
.habit-chips { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: .8rem; }
.chip { display: flex; align-items: center; gap: .6rem; padding: .8rem 1rem; border-radius: 14px; background: var(--glass); border: 1px solid var(--glass-brd); font-weight: 500; font-size: .95rem; transition: transform .2s, border-color .2s; }
.chip:hover { transform: translateY(-3px); border-color: var(--glass-brd-hover); }
.chip .e { font-size: 1.2rem; }

.creator { padding: 1.8rem; border-radius: var(--radius-lg); background: var(--glass); border: 1px solid var(--glass-brd); }
.creator h3 { font-size: 1.2rem; margin-bottom: 1.2rem; }
.field { margin-bottom: 1rem; }
.field label { display: block; font-size: .8rem; color: rgba(234,234,234,0.7); margin-bottom: .4rem; }
.field input, .field select {
  width: 100%; padding: .75rem .9rem; border-radius: 12px;
  background: var(--dark); border: 1px solid var(--glass-brd); color: var(--white);
  font-family: var(--font-body); font-size: .92rem; outline: none; transition: border-color .2s;
}
.field input:focus, .field select:focus { border-color: var(--purple-lt); }
.saved-habits { margin-top: 1.2rem; display: flex; flex-direction: column; gap: .5rem; }
.saved-habit { display: flex; justify-content: space-between; align-items: center; padding: .6rem .9rem; border-radius: 10px; background: rgba(107,0,255,0.08); font-size: .88rem; }
.saved-habit button { background: none; border: 0; color: rgba(234,234,234,0.5); cursor: pointer; font-size: 1.1rem; }
.saved-habit button:hover { color: var(--purple-lt); }

/* ---------- REWARD ECOSYSTEM ---------- */
.reward-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.2rem; margin-top: 2.6rem; }
.reward-card { padding: 1.5rem; border-radius: var(--radius); background: var(--glass); border: 1px solid var(--glass-brd); transition: transform .3s, box-shadow .3s, border-color .3s; position: relative; overflow: hidden; }
.reward-card:hover { transform: translateY(-6px); border-color: var(--glass-brd-hover); box-shadow: var(--glow); }
.reward-top { display: flex; justify-content: space-between; align-items: start; margin-bottom: 1rem; }
.reward-emoji { font-size: 2rem; }
.reward-cat { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--purple-lt); padding: .25rem .6rem; border: 1px solid var(--glass-brd); border-radius: 999px; }
.reward-brand { font-size: .8rem; color: rgba(234,234,234,0.6); }
.reward-title { font-family: var(--font-display); font-size: 1.3rem; margin: .2rem 0 1rem; }
.reward-foot { display: flex; justify-content: space-between; align-items: center; }
.reward-pts { font-family: var(--font-display); font-weight: 700; color: var(--purple-lt); }
.reward-status { font-size: .72rem; color: #46d97a; display: flex; align-items: center; gap: .35rem; }
.reward-status::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #46d97a; }

.partner-cta { margin-top: 3rem; padding: 2.6rem; border-radius: var(--radius-lg); text-align: center; background: linear-gradient(135deg, rgba(107,0,255,0.14), rgba(162,89,255,0.05)); border: 1px solid var(--glass-brd-hover); }
.partner-cta h3 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: .6rem; }
.partner-cta p { color: rgba(234,234,234,0.72); max-width: 52ch; margin: 0 auto 1.6rem; }

/* ---------- SLIDESHOW ---------- */
.slideshow { position: relative; max-width: 760px; margin: 3rem auto 0; height: 260px; }
.slide {
  position: absolute; inset: 0; display: grid; place-items: center; text-align: center;
  padding: 3rem; border-radius: var(--radius-lg);
  background: var(--glass); border: 1px solid var(--glass-brd); backdrop-filter: blur(14px);
  opacity: 0; transform: scale(.96); transition: opacity .7s, transform .7s; pointer-events: none;
}
.slide.on { opacity: 1; transform: scale(1); pointer-events: auto; box-shadow: var(--glow-soft); }
.slide h3 { font-size: clamp(1.6rem, 4vw, 2.6rem); background: linear-gradient(120deg,#fff,var(--purple-lt)); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: .8rem; }
.slide p { color: rgba(234,234,234,0.72); font-size: 1.05rem; }
.slide-dots { display: flex; justify-content: center; gap: .5rem; margin-top: 1.6rem; }
.slide-dots button { width: 9px; height: 9px; border-radius: 50%; border: 0; background: rgba(162,89,255,0.25); cursor: pointer; transition: background .3s, width .3s; }
.slide-dots button.on { background: var(--purple-lt); width: 26px; border-radius: 999px; }

/* ---------- WHO / WHAT ---------- */
.who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.founder-card { padding: 2rem; border-radius: var(--radius-lg); background: var(--glass); border: 1px solid var(--glass-brd); }
.founder-card ul { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.founder-card li { display: flex; gap: .8rem; align-items: start; font-size: .98rem; color: rgba(234,234,234,0.82); }
.founder-card li::before { content: "◆"; color: var(--purple-lt); font-size: .8rem; margin-top: .25rem; }
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 2.6rem; }
.pillar { padding: 1.8rem; border-radius: var(--radius); background: var(--glass); border: 1px solid var(--glass-brd); }
.pillar .pn { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; color: rgba(162,89,255,0.25); line-height: 1; }
.pillar h3 { font-size: 1.3rem; margin: .4rem 0 .5rem; }
.pillar p { font-size: .94rem; color: rgba(234,234,234,0.65); }

/* ---------- INVESTOR ---------- */
.inv-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; margin-top: 2.6rem; }
.inv-card { padding: 1.4rem 1.5rem; border-radius: var(--radius); background: var(--glass); border: 1px solid var(--glass-brd); display: flex; align-items: center; gap: .9rem; font-weight: 500; transition: transform .2s, border-color .2s; }
.inv-card:hover { transform: translateY(-4px); border-color: var(--glass-brd-hover); }
.inv-card .chk { width: 26px; height: 26px; border-radius: 50%; background: rgba(107,0,255,0.15); color: var(--purple-lt); display: grid; place-items: center; flex-shrink: 0; font-size: .8rem; }
.demo-metrics { margin-top: 3rem; }
.demo-tag { display: inline-block; font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: #d9a94f; background: rgba(217,169,79,0.1); border: 1px solid rgba(217,169,79,0.3); padding: .3rem .8rem; border-radius: 999px; margin-bottom: 1.4rem; }
.demo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; }
.demo-card { padding: 1.6rem; border-radius: var(--radius); background: rgba(217,169,79,0.04); border: 1px dashed rgba(217,169,79,0.28); text-align: center; }
.demo-card .v { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: #e6c179; }
.demo-card .l { font-size: .8rem; color: rgba(234,234,234,0.6); margin-top: .3rem; }

/* ---------- WAITLIST ---------- */
.waitlist { text-align: center; }
.waitlist-form { max-width: 520px; margin: 2.4rem auto 0; text-align: left; padding: 2.2rem; border-radius: var(--radius-lg); background: var(--glass); border: 1px solid var(--glass-brd); }
.waitlist-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.waitlist-form .btn { width: 100%; justify-content: center; margin-top: .6rem; }
.waitlist-success { display: none; padding: 2rem; text-align: center; }
.waitlist-success.show { display: block; }
.waitlist-success .ok { font-size: 2.6rem; }
.waitlist-success p { font-family: var(--font-display); font-size: 1.3rem; margin-top: .6rem; color: var(--purple-lt); }

/* ---------- FOOTER ---------- */
.footer { padding: 4rem 0 2rem; border-top: 1px solid var(--glass-brd); margin-top: var(--space); }
.footer-grid { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 2rem; }
.footer-brand img { height: 40px; margin-bottom: .8rem; }
.footer-brand .wm { font-family: var(--font-display); font-weight: 700; letter-spacing: .22em; }
.footer-brand .tg { font-size: .74rem; letter-spacing: .2em; color: var(--purple-lt); }
.footer-links { display: flex; gap: 3rem; flex-wrap: wrap; }
.footer-links h4 { font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(234,234,234,0.5); margin-bottom: .9rem; }
.footer-links a { display: block; color: rgba(234,234,234,0.75); text-decoration: none; font-size: .9rem; margin-bottom: .5rem; transition: color .2s; }
.footer-links a:hover { color: var(--purple-lt); }
.footer-social { display: flex; gap: 1rem; margin-top: 1rem; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--glass-brd); display: grid; place-items: center; color: rgba(234,234,234,0.7); text-decoration: none; transition: border-color .2s, color .2s; }
.footer-social a:hover { border-color: var(--purple-lt); color: var(--purple-lt); }
.footer-bottom { text-align: center; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.05); font-size: .82rem; color: rgba(234,234,234,0.4); }

/* ---------- BACK TO TOP ---------- */
.to-top {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 800;
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--glass-brd);
  background: rgba(13,13,13,0.8); backdrop-filter: blur(10px); color: var(--purple-lt);
  cursor: pointer; display: grid; place-items: center; opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .3s; font-size: 1.2rem;
}
.to-top.show { opacity: 1; pointer-events: auto; }
.to-top:hover { transform: translateY(-4px); box-shadow: var(--glow); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-logo, .hero h1, .hero .sub { margin-inline: auto; }
  .hero-cta, .hero-badges { justify-content: center; }
  .phone-tilt { transform: none; }
  .screens { grid-template-columns: 1fr; max-width: 340px; margin-inline: auto; }
  .habits-cols, .who-grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .waitlist-form .row { grid-template-columns: 1fr; }
  .rgrid { grid-template-columns: 1fr 1fr; }
  .to-top { bottom: 1.2rem; right: 1.2rem; }
}
