/* ══════════════════════════════════════════════════════════════════════════
   LOGEET — Landing + Auth + Mascot
   ════════════════════════════════════════════════════════════════════════ */
:root {
  --primary: #7C3AED;
  --primary-dark: #6D28D9;
  --primary-light: #EDE9FE;
  --primary-glow: rgba(124, 58, 237, 0.20);
  --grad: linear-gradient(140deg,#9061F9,#6D28D9);
  --beacon: #EDE0FF;
  --navy: #0f172a;
  --navy-2: #1e2d47;
  --navy-3: #16223c;
  --body-bg: #f8fafc;
  --card-bg: #ffffff;
  --card-border: #e2e8f0;
  --text: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --warning: #f59e0b;
  --danger: #ef4444;
  --danger-light: #fee2e2;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 18px 50px rgba(15,23,42,0.16);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 26px;
  --transition: 0.22s cubic-bezier(.4,0,.2,1);
  --maxw: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--body-bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ── BUTTONS ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 600; font-size: 15px; cursor: pointer;
  padding: 12px 22px; border-radius: 12px; border: 1.5px solid transparent;
  transition: var(--transition); white-space: nowrap; font-family: inherit;
}
.btn-primary {
  background: var(--primary); color: #fff;
  box-shadow: 0 8px 22px var(--primary-glow);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 12px 28px var(--primary-glow); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--card-border); }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary-dark); background: var(--primary-light); }
.btn-light { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.22); }
.btn-light:hover { background: rgba(255,255,255,.2); }
.btn-lg { padding: 15px 30px; font-size: 16px; border-radius: 14px; }
.btn-block { width: 100%; justify-content: center; }

/* ── NAVBAR ──────────────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.82); backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid rgba(226,232,240,.8);
  transition: var(--transition);
}
.nav-inner { display: flex; align-items: center; height: 70px; gap: 28px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 800; font-size: 21px; letter-spacing: -.02em; }
.brand .logo-mark {
  position: relative;
  width: 38px; height: 38px; border-radius: 11px;
  background: var(--grad);
  display: grid; place-items: center;
  box-shadow: 0 8px 18px -6px var(--primary-glow);
}
.brand .logo-mark svg { width: 58%; height: 58%; }
.brand .logo-mark .lg-dot { position: absolute; top: 20%; right: 20%; width: 7px; height: 7px;
  border-radius: 50%; background: var(--beacon); box-shadow: 0 0 8px rgba(233,213,255,.9); }
.nav-links { display: flex; gap: 6px; margin-left: 8px; }
.nav-links a {
  padding: 9px 15px; border-radius: 9px; font-weight: 500; font-size: 15px;
  color: var(--text-secondary); transition: var(--transition);
}
.nav-links a:hover { color: var(--text); background: var(--primary-light); }
.nav-cta { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; background: none; border: none; font-size: 22px; cursor: pointer; color: var(--text); }

/* ── HERO ────────────────────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 460px at 78% -8%, rgba(124,58,237,.20), transparent 60%),
    radial-gradient(900px 500px at -5% 25%, rgba(124,58,237,.08), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f4fbf8 100%);
}
.hero-inner {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center;
  padding: 86px 0 78px;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary-light); color: var(--primary-dark);
  font-weight: 600; font-size: 13.5px; padding: 7px 14px; border-radius: 100px;
  border: 1px solid rgba(124,58,237,.22); margin-bottom: 22px;
}
/* Modern announcement pill (hero) */
.announce {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid rgba(124,58,237,.28);
  padding: 8px 18px 8px 8px; border-radius: 100px; margin-bottom: 24px;
  font-size: 14.5px; font-weight: 600; color: var(--text);
  box-shadow: 0 6px 20px rgba(124,58,237,.10);
  text-decoration: none; transition: var(--transition);
}
.announce:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(124,58,237,.18); border-color: rgba(124,58,237,.45); }
.announce .tag {
  background: linear-gradient(120deg, var(--primary), var(--primary-dark)); color: #fff;
  font-size: 11px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 100px;
}
.announce i { color: var(--primary); font-size: 12px; transition: var(--transition); }
.announce:hover i { transform: translateX(3px); }
.hero h1 {
  font-size: clamp(38px, 5.2vw, 58px); line-height: 1.06; letter-spacing: -.03em;
  font-weight: 800; margin-bottom: 20px;
}
.hero h1 .accent {
  background: linear-gradient(120deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero p.lead { font-size: 18.5px; color: var(--text-secondary); max-width: 520px; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 13px; flex-wrap: wrap; margin-bottom: 26px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 18px; }
.hero-points span { display: inline-flex; align-items: center; gap: 8px; color: var(--text-secondary); font-weight: 500; font-size: 14.5px; }
.hero-points i { color: var(--primary); }

/* Hero phone mockup */
.hero-visual { position: relative; display: grid; place-items: center; }
.phone {
  position: relative; width: 290px; height: 580px; border-radius: 42px;
  background: var(--navy); padding: 13px;
  box-shadow: var(--shadow-lg), 0 0 0 2px rgba(15,23,42,.06);
  animation: floaty 6s ease-in-out infinite;
}
.phone::before {
  content: ""; position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
  width: 120px; height: 26px; background: var(--navy); border-radius: 0 0 16px 16px; z-index: 3;
}
.phone-screen {
  width: 100%; height: 100%; border-radius: 30px; overflow: hidden;
  background: #ECE5DD; display: flex; flex-direction: column;
}
/* Authentic WhatsApp chrome: teal header, beige wallpaper, real bubbles */
.wa-top {
  background: #075E54; color: #fff; padding: 30px 14px 12px;
  display: flex; align-items: center; gap: 10px;
}
.wa-top .av { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.22); display: grid; place-items: center; font-weight: 700; flex: none; }
.wa-top .nm { font-weight: 600; font-size: 14.5px; }
.wa-top .st { font-size: 11px; opacity: .8; }
.wa-top .wa-icons { margin-left: auto; display: flex; gap: 16px; font-size: 14px; opacity: .9; }
.wa-body { flex: 1; padding: 12px 10px; display: flex; flex-direction: column; gap: 5px; overflow: hidden;
  background: #ECE5DD;
  font-family: -apple-system, "Segoe UI", system-ui, Roboto, sans-serif; }
.day-pill {
  align-self: center; background: #FDFDFD; color: #54656F; font-size: 10.5px; font-weight: 600;
  padding: 4px 10px; border-radius: 7px; box-shadow: 0 1px .5px rgba(0,0,0,.13);
  text-transform: uppercase; letter-spacing: .02em; margin-bottom: 4px;
}
.bubble {
  position: relative; max-width: 82%; padding: 6px 8px 7px 9px; border-radius: 7.5px;
  font-size: 12.8px; line-height: 1.4; color: #111B21;
  box-shadow: 0 1px .5px rgba(0,0,0,.13);
}
.bubble.in  { background: #fff; border-top-left-radius: 0; align-self: flex-start; margin-left: 7px; }
.bubble.out { background: #DCF8C6; border-top-right-radius: 0; align-self: flex-end; margin-right: 7px; }
.bubble.in::before {
  content: ""; position: absolute; top: 0; left: -7px;
  border-top: 9px solid #fff; border-left: 8px solid transparent;
}
.bubble.out::before {
  content: ""; position: absolute; top: 0; right: -7px;
  border-top: 9px solid #DCF8C6; border-right: 8px solid transparent;
}
.bubble b { color: #075E54; font-weight: 600; }
.bubble .meta {
  float: right; margin: 6px 0 -3px 9px; font-size: 10px; color: rgba(17,27,33,.45);
  display: inline-flex; align-items: center; gap: 3px; line-height: 1;
}
.bubble .meta i { font-size: 10.5px; color: #53BDEB; }
.wa-products { display: flex; gap: 8px; padding: 0 7px; }
.wa-prod { background: #fff; border-radius: 8px; padding: 8px; flex: 1; box-shadow: 0 1px .5px rgba(0,0,0,.13); }
.wa-prod .ph { height: 42px; border-radius: 6px; background: #E7F6EF; margin-bottom: 6px; display: grid; place-items: center; color: #128C7E; font-size: 16px; }
.wa-prod .pn { font-size: 11px; font-weight: 600; color: #111B21; }
.wa-prod .pp { font-size: 11px; color: #075E54; font-weight: 700; }

/* Floating stat chips around phone */
.chip {
  position: absolute; background: #fff; border-radius: 14px; padding: 12px 15px;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 11px; font-size: 13px;
  animation: floaty 5s ease-in-out infinite;
}
.chip .ic { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; color: #fff; font-size: 15px; }
.chip .lbl { color: var(--text-muted); font-size: 11px; font-weight: 600; }
.chip .val { font-weight: 800; font-size: 15px; letter-spacing: -.02em; }
.chip-1 { top: 56px; left: -18px; animation-delay: .4s; }
.chip-1 .ic { background: var(--primary); }
.chip-2 { bottom: 92px; right: -22px; animation-delay: 1.4s; }
.chip-2 .ic { background: var(--warning); }

@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ── LOGO STRIP ──────────────────────────────────────────────────────────── */
.strip { border-top: 1px solid var(--card-border); border-bottom: 1px solid var(--card-border); background: #fff; }
.strip-inner { display: flex; align-items: center; gap: 36px; padding: 26px 0; flex-wrap: wrap; justify-content: center; }
.strip-inner span { color: var(--text-muted); font-weight: 700; font-size: 15px; letter-spacing: .03em; opacity: .65; }

/* ── SECTIONS ────────────────────────────────────────────────────────────── */
.section { padding: 92px 0; }
.section.alt { background: #fff; border-top: 1px solid var(--card-border); border-bottom: 1px solid var(--card-border); }
.section-head { text-align: center; max-width: 660px; margin: 0 auto 56px; }
.section-tag { color: var(--primary-dark); font-weight: 700; font-size: 13.5px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 12px; }
.section-head h2 { font-size: clamp(28px, 3.6vw, 40px); letter-spacing: -.03em; font-weight: 800; line-height: 1.12; margin-bottom: 14px; }
.section-head p { font-size: 17px; color: var(--text-secondary); }

/* Features grid */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature {
  background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius);
  padding: 30px 26px; transition: var(--transition); position: relative; overflow: hidden;
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(124,58,237,.35); }
.feature .f-ic {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  font-size: 22px; color: #fff; margin-bottom: 18px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 8px 20px var(--primary-glow);
}
.feature.c2 .f-ic { background: linear-gradient(135deg,#3b82f6,#2563eb); box-shadow: 0 8px 20px rgba(59,130,246,.25); }
.feature.c3 .f-ic { background: linear-gradient(135deg,#f59e0b,#ea580c); box-shadow: 0 8px 20px rgba(245,158,11,.25); }
.feature.c4 .f-ic { background: linear-gradient(135deg,#8b5cf6,#7c3aed); box-shadow: 0 8px 20px rgba(139,92,246,.25); }
.feature.c5 .f-ic { background: linear-gradient(135deg,#ef4444,#dc2626); box-shadow: 0 8px 20px rgba(239,68,68,.25); }
.feature.c6 .f-ic { background: linear-gradient(135deg,#06b6d4,#0891b2); box-shadow: 0 8px 20px rgba(6,182,212,.25); }
.feature h3 { font-size: 19px; font-weight: 700; letter-spacing: -.01em; margin-bottom: 8px; }
.feature p { color: var(--text-secondary); font-size: 15px; }

/* Bento layout: two showcase cards up top, smaller cards below */
.features.bento { grid-template-columns: repeat(6, 1fr); }
.features.bento .feature { grid-column: span 2; }
.features.bento .feature.big { grid-column: span 3; }
.feature.big h3 { font-size: 22px; }
.feature.big > p { font-size: 15.5px; margin-bottom: 18px; }
.feature.big p b { color: var(--text); }

/* Mini WhatsApp exchange inside feature cards */
.mini-chat {
  background: #ECE5DD; border-radius: 12px; padding: 12px;
  display: flex; flex-direction: column; gap: 6px;
  font-family: -apple-system, "Segoe UI", system-ui, Roboto, sans-serif;
}
.mini-bubble {
  max-width: 88%; padding: 6px 9px; border-radius: 7.5px; font-size: 12.5px;
  line-height: 1.4; color: #111B21; box-shadow: 0 1px .5px rgba(0,0,0,.13);
}
.mini-bubble.in  { background: #fff; border-top-left-radius: 0; align-self: flex-start; }
.mini-bubble.out { background: #DCF8C6; border-top-right-radius: 0; align-self: flex-end; }
.mini-bubble b { color: #075E54; font-weight: 600; }
.mini-bubble .mini-btns { display: block; margin-top: 5px; color: #128C7E; font-weight: 600; font-size: 12px; }
.mini-bubble i { color: #128C7E; }

/* Mini status pills inside feature cards */
.mini-pill {
  margin-top: 14px; display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 600; padding: 8px 12px; border-radius: 100px;
}
.mini-pill.warn { background: #FEF3C7; color: #92400E; }
.mini-pill.warn i { color: #D97706; }
.mini-pill.link { background: var(--primary-light); color: var(--primary-dark); }

@media (max-width: 980px) {
  .features.bento { grid-template-columns: 1fr 1fr; }
  .features.bento .feature, .features.bento .feature.big { grid-column: span 2; }
}

/* How it works */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; position: relative; }
.step { text-align: center; position: relative; }
.step .num {
  width: 62px; height: 62px; margin: 0 auto 20px; border-radius: 50%;
  background: #fff; border: 2px solid var(--primary); color: var(--primary-dark);
  display: grid; place-items: center; font-size: 24px; font-weight: 800;
  box-shadow: 0 8px 22px var(--primary-glow); position: relative; z-index: 2;
}
.step h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; }
.step p { color: var(--text-secondary); font-size: 15px; max-width: 300px; margin: 0 auto; }
.steps::before {
  content: ""; position: absolute; top: 31px; left: 16%; right: 16%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--primary) 0 8px, transparent 8px 16px); opacity: .4; z-index: 1;
}

/* Spotlight — manage inventory from WhatsApp */
.spotlight { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.spotlight-copy .eyebrow { background: #e9fbf3; color: var(--primary-dark); }
.spotlight-copy .eyebrow i { color: #25D366; }
.spotlight-copy h2 { font-size: clamp(28px, 3.6vw, 40px); font-weight: 800; letter-spacing: -.03em; line-height: 1.12; margin: 6px 0 16px; }
.spotlight-copy > p { font-size: 17px; color: var(--text-secondary); max-width: 480px; margin-bottom: 24px; }
.spotlight-list { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-bottom: 30px; }
.spotlight-list li { display: flex; align-items: center; gap: 12px; font-size: 15.5px; font-weight: 500; color: var(--text); }
.spotlight-list i { width: 30px; height: 30px; border-radius: 9px; background: var(--primary-light); color: var(--primary-dark); display: grid; place-items: center; font-size: 13px; flex: none; }

.spotlight-chat {
  background: #fff; border: 1px solid var(--card-border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden; max-width: 420px; margin: 0 auto; width: 100%;
}
.sc-head {
  background: #075E54; color: #fff; padding: 13px 16px; font-weight: 600; font-size: 14.5px;
  display: flex; align-items: center; gap: 11px;
}
.sc-head .av { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.22); display: grid; place-items: center; flex: none; font-size: 17px; }
.sc-head .st { display: block; font-size: 11px; font-weight: 400; opacity: .8; }
.sc-head .wa-icons { margin-left: auto; display: flex; gap: 16px; font-size: 14px; opacity: .9; }
.sc-body {
  padding: 16px 14px; display: flex; flex-direction: column; gap: 5px;
  background: #ECE5DD;
  font-family: -apple-system, "Segoe UI", system-ui, Roboto, sans-serif;
}
.sc-body .bubble { max-width: 84%; font-size: 13.2px; }

/* Pricing */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.plan {
  background: var(--card-bg); border: 1.5px solid var(--card-border); border-radius: var(--radius-lg);
  padding: 34px 30px; display: flex; flex-direction: column; transition: var(--transition); position: relative;
}
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.plan.featured { border-color: var(--primary); box-shadow: 0 20px 50px var(--primary-glow); transform: scale(1.02); }
.plan.featured:hover { transform: scale(1.02) translateY(-6px); }
.plan-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: #fff; font-size: 12px; font-weight: 700;
  padding: 5px 15px; border-radius: 100px; box-shadow: 0 6px 16px var(--primary-glow); white-space: nowrap;
}
.plan h3 { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.plan .desc { color: var(--text-muted); font-size: 14px; margin-bottom: 20px; }
.plan .price { font-size: 42px; font-weight: 800; letter-spacing: -.03em; line-height: 1; }
.plan .price small { font-size: 16px; font-weight: 600; color: var(--text-muted); }
.plan .price-sub { color: var(--text-muted); font-size: 13.5px; margin: 8px 0 24px; }
.plan ul { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-bottom: 28px; flex: 1; }
.plan li { display: flex; align-items: flex-start; gap: 11px; font-size: 14.5px; color: var(--text-secondary); }
.plan li i { color: var(--primary); margin-top: 3px; font-size: 13px; }
.plan li.off { color: var(--text-muted); opacity: .7; }
.plan li.off i { color: var(--text-muted); }

/* CTA band */
.cta-band {
  background:
    radial-gradient(700px 300px at 80% 10%, rgba(124,58,237,.30), transparent 60%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
  border-radius: var(--radius-lg); padding: 64px 50px; text-align: center; color: #fff;
  position: relative; overflow: hidden;
}
.cta-band h2 { font-size: clamp(26px, 3.4vw, 38px); font-weight: 800; letter-spacing: -.03em; margin-bottom: 14px; }
.cta-band p { font-size: 17.5px; color: rgba(255,255,255,.78); max-width: 540px; margin: 0 auto 28px; }
.cta-band .hero-actions { justify-content: center; }

/* ── FOOTER ──────────────────────────────────────────────────────────────── */
.footer { background: var(--navy); color: rgba(255,255,255,.7); padding: 56px 0 30px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 38px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer .brand { color: #fff; margin-bottom: 14px; }
.footer-col h4 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 16px; letter-spacing: .02em; }
.footer-col a { display: block; padding: 6px 0; font-size: 14.5px; transition: var(--transition); }
.footer-col a:hover { color: var(--primary); }
.footer-about { max-width: 290px; font-size: 14.5px; }
.footer-bottom { padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 13.5px; }
.footer-bottom .socials { display: flex; gap: 12px; }
.footer-bottom .socials a { width: 36px; height: 36px; border-radius: 9px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; transition: var(--transition); }
.footer-bottom .socials a:hover { background: var(--primary); }

/* ── COMMUNITY PAGE ──────────────────────────────────────────────────────── */
.c-hero { padding-bottom: 0; }
.c-hero-inner { text-align: center; max-width: 720px; margin: 0 auto; padding: 78px 0 30px; }
.c-hero-inner .lead { margin-left: auto; margin-right: auto; }
.nav-links a.active { color: var(--primary-dark); font-weight: 700; }

.c-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  background: #fff; border: 1px solid var(--card-border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 30px 26px; margin: 26px auto 0; max-width: 860px;
  position: relative; z-index: 2; transform: translateY(38px);
}
.c-stat { text-align: center; }
.c-stat .n { font-size: 34px; font-weight: 800; letter-spacing: -.03em; color: var(--primary-dark); }
.c-stat .l { font-size: 13px; color: var(--text-muted); font-weight: 600; margin-top: 4px; }

#stories { padding-top: 130px; }
.stories { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.story {
  background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius);
  padding: 28px 26px; display: flex; flex-direction: column; transition: var(--transition);
}
.story:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(124,58,237,.35); }
.story-quote { color: var(--primary); font-size: 22px; margin-bottom: 12px; opacity: .8; }
.story p { color: var(--text-secondary); font-size: 15px; line-height: 1.65; flex: 1; }
.story-who { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.story-av {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  background: linear-gradient(140deg, var(--primary), var(--primary-dark));
  color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 16px;
}
.story-who b { display: block; font-size: 14.5px; }
.story-who span { font-size: 12.5px; color: var(--text-muted); }

.c-wl { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.c-wl-copy h2 { font-size: clamp(28px, 3.6vw, 38px); font-weight: 800; letter-spacing: -.03em; line-height: 1.12; margin: 6px 0 16px; }
.c-wl-copy > p { font-size: 16.5px; color: var(--text-secondary); margin-bottom: 24px; }
.c-wl-card {
  background: #fff; border: 1px solid var(--card-border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 34px 30px; max-width: 460px; width: 100%; margin: 0 auto;
}
.c-wl-card h3 { font-size: 20px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 18px; }
.wl-roles { display: grid; grid-template-columns: 1fr; gap: 9px; }
.wl-role {
  display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500;
  border: 1.5px solid var(--card-border); border-radius: 11px; padding: 11px 13px; cursor: pointer;
  transition: var(--transition);
}
.wl-role:has(input:checked) { border-color: var(--primary); background: var(--primary-light); }
.wl-role input { accent-color: var(--primary); }
.wl-role i { color: var(--primary-dark); }
.wl-note { text-align: center; font-size: 12.5px; color: var(--text-muted); margin-top: 12px; }
.wl-done { text-align: center; padding: 26px 6px; }
.wl-done-ic { font-size: 48px; color: #10b981; margin-bottom: 14px; }
.wl-done h3 { font-size: 21px; font-weight: 800; margin-bottom: 8px; }
.wl-done p { color: var(--text-secondary); font-size: 15px; }

@media (max-width: 980px) {
  .c-stats { grid-template-columns: repeat(2, 1fr); gap: 22px; transform: translateY(24px); }
  #stories { padding-top: 110px; }
  .stories { grid-template-columns: 1fr; }
  .c-wl { grid-template-columns: 1fr; gap: 36px; }
}

/* ── REVEAL ANIMATION ────────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ══════════════════════════════════════════════════════════════════════════
   MASCOT  (Moni)
   ════════════════════════════════════════════════════════════════════════ */
.moni-fab {
  position: fixed; bottom: 26px; right: 26px; z-index: 90;
  display: flex; align-items: center; gap: 12px; cursor: pointer;
  background: #fff; border: 1px solid var(--card-border); padding: 9px 9px 9px 16px;
  border-radius: 100px; box-shadow: var(--shadow-lg); transition: var(--transition);
}
.moni-fab:hover { transform: translateY(-3px); box-shadow: 0 22px 55px rgba(15,23,42,.22); }
.moni-fab .txt { font-weight: 700; font-size: 14.5px; color: var(--text); }
.moni-fab .txt small { display: block; font-weight: 500; font-size: 11.5px; color: var(--text-muted); }
.moni-avatar {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  background: linear-gradient(140deg, var(--primary), var(--primary-dark));
  display: grid; place-items: center; position: relative; box-shadow: 0 6px 16px var(--primary-glow);
  animation: moniBob 3.4s ease-in-out infinite;
}
.moni-avatar svg { width: 30px; height: 30px; }
.moni-avatar .pulse {
  position: absolute; top: 2px; right: 2px; width: 11px; height: 11px; border-radius: 50%;
  background: #34d399; border: 2px solid #fff;
}
.moni-fab .pulse { box-shadow: 0 0 0 0 rgba(52,211,153,.6); animation: pingDot 2s infinite; }
@keyframes moniBob { 0%,100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-5px) rotate(2deg); } }
@keyframes pingDot { 0% { box-shadow: 0 0 0 0 rgba(52,211,153,.55);} 70%{ box-shadow: 0 0 0 9px rgba(52,211,153,0);} 100%{ box-shadow:0 0 0 0 rgba(52,211,153,0);} }

.moni-panel {
  position: fixed; bottom: 96px; right: 26px; z-index: 91;
  width: 372px; max-width: calc(100vw - 40px); height: 540px; max-height: calc(100vh - 130px);
  background: #fff; border-radius: 22px; box-shadow: var(--shadow-lg), 0 0 0 1px rgba(15,23,42,.05);
  display: flex; flex-direction: column; overflow: hidden;
  opacity: 0; transform: translateY(20px) scale(.96); pointer-events: none; transform-origin: bottom right;
  transition: var(--transition);
}
.moni-panel.open { opacity: 1; transform: none; pointer-events: auto; }
.moni-head {
  background: linear-gradient(135deg, var(--navy), var(--navy-3)); color: #fff; padding: 18px 18px;
  display: flex; align-items: center; gap: 13px; position: relative;
}
.moni-head .moni-avatar { width: 42px; height: 42px; animation: none; }
.moni-head .moni-avatar svg { width: 27px; height: 27px; }
.moni-head .h-nm { font-weight: 700; font-size: 16px; }
.moni-head .h-st { font-size: 12px; color: rgba(255,255,255,.7); display: flex; align-items: center; gap: 6px; }
.moni-head .h-st .d { width: 7px; height: 7px; border-radius: 50%; background: #34d399; }
.moni-close { margin-left: auto; background: rgba(255,255,255,.12); border: none; color: #fff; width: 32px; height: 32px; border-radius: 9px; cursor: pointer; font-size: 15px; transition: var(--transition); }
.moni-close:hover { background: rgba(255,255,255,.24); }
.moni-msgs { flex: 1; overflow-y: auto; padding: 18px 16px; display: flex; flex-direction: column; gap: 12px; background: #f8fafc; }
.m-row { display: flex; gap: 9px; align-items: flex-end; max-width: 88%; }
.m-row.me { align-self: flex-end; flex-direction: row-reverse; }
.m-row .m-av { width: 28px; height: 28px; border-radius: 50%; flex: none; background: linear-gradient(140deg,var(--primary),var(--primary-dark)); display: grid; place-items: center; }
.m-row .m-av svg { width: 17px; height: 17px; }
.m-bubble { padding: 10px 13px; border-radius: 15px; font-size: 14px; line-height: 1.5; box-shadow: var(--shadow-sm); }
.m-row.bot .m-bubble { background: #fff; border-top-left-radius: 4px; color: var(--text); }
.m-row.me .m-bubble { background: var(--primary); color: #fff; border-top-right-radius: 4px; }
.m-bubble b { font-weight: 700; }
.m-row.bot .m-bubble b { color: var(--primary-dark); }
.moni-typing { display: inline-flex; gap: 4px; padding: 12px 14px; }
.moni-typing span { width: 7px; height: 7px; border-radius: 50%; background: var(--text-muted); animation: typing 1.2s infinite; }
.moni-typing span:nth-child(2){ animation-delay:.2s; } .moni-typing span:nth-child(3){ animation-delay:.4s; }
@keyframes typing { 0%,60%,100%{ transform: translateY(0); opacity:.4;} 30%{ transform: translateY(-5px); opacity:1;} }
.moni-chips { display: flex; gap: 8px; padding: 0 16px 12px; flex-wrap: wrap; background: #f8fafc; }
.moni-chip { background: #fff; border: 1px solid var(--card-border); color: var(--text-secondary); font-size: 12.5px; font-weight: 600; padding: 7px 12px; border-radius: 100px; cursor: pointer; transition: var(--transition); }
.moni-chip:hover { border-color: var(--primary); color: var(--primary-dark); background: var(--primary-light); }
.moni-input { display: flex; gap: 9px; padding: 13px 14px; border-top: 1px solid var(--card-border); background: #fff; }
.moni-input input { flex: 1; border: 1.5px solid var(--card-border); border-radius: 12px; padding: 11px 14px; font-size: 14px; font-family: inherit; outline: none; transition: var(--transition); }
.moni-input input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-glow); }
.moni-send { flex: none; width: 44px; border: none; border-radius: 12px; background: var(--primary); color: #fff; cursor: pointer; font-size: 16px; transition: var(--transition); }
.moni-send:hover { background: var(--primary-dark); }

/* ══════════════════════════════════════════════════════════════════════════
   AUTH  (login / signup split screen)
   ════════════════════════════════════════════════════════════════════════ */
.auth { min-height: 100vh; display: grid; grid-template-columns: 1fr 1.05fr; }
.auth-aside {
  background:
    radial-gradient(600px 360px at 75% 12%, rgba(124,58,237,.30), transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-3) 100%);
  color: #fff; padding: 52px 54px; display: flex; flex-direction: column; position: relative; overflow: hidden;
}
.auth-aside::after {
  content: ""; position: absolute; bottom: -120px; left: -80px; width: 360px; height: 360px;
  border-radius: 50%; background: radial-gradient(circle, rgba(124,58,237,.22), transparent 70%);
}
.auth-aside .brand { color: #fff; }
.auth-aside .brand .logo-mark { box-shadow: 0 6px 18px rgba(0,0,0,.3); }
.auth-aside-body { margin-top: auto; margin-bottom: auto; position: relative; z-index: 2; }
.auth-aside h2 { font-size: 34px; font-weight: 800; letter-spacing: -.03em; line-height: 1.15; margin-bottom: 18px; }
.auth-aside p { color: rgba(255,255,255,.78); font-size: 16.5px; max-width: 380px; margin-bottom: 32px; }
.auth-perks { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.auth-perks li { display: flex; align-items: center; gap: 13px; font-size: 15.5px; }
.auth-perks .pk-ic { width: 34px; height: 34px; border-radius: 10px; background: rgba(124,58,237,.2); border: 1px solid rgba(124,58,237,.4); display: grid; place-items: center; color: #C4B5FD; flex: none; }
.auth-quote { position: relative; z-index: 2; margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: 14.5px; color: rgba(255,255,255,.7); font-style: italic; }

.auth-main { display: flex; align-items: center; justify-content: center; padding: 40px 28px; background: var(--body-bg); }
.auth-card { width: 100%; max-width: 410px; }
.auth-card .back { display: inline-flex; align-items: center; gap: 7px; color: var(--text-muted); font-size: 14px; font-weight: 500; margin-bottom: 28px; transition: var(--transition); }
.auth-card .back:hover { color: var(--primary-dark); }
.auth-card h1 { font-size: 28px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 7px; }
.auth-card .sub { color: var(--text-secondary); font-size: 15px; margin-bottom: 28px; }
.field { margin-bottom: 17px; }
.field label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 7px; color: var(--text); }
.field .input-wrap { position: relative; }
.field .input-wrap i { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--text-muted); font-size: 14px; }
.field input {
  width: 100%; padding: 13px 14px 13px 42px; border: 1.5px solid var(--card-border); border-radius: 12px;
  font-size: 15px; font-family: inherit; outline: none; transition: var(--transition); background: #fff;
}
.field input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-glow); }
.field .hint { font-size: 12.5px; color: var(--text-muted); margin-top: 6px; }
.field-row { display: flex; gap: 14px; }
.field-row .field { flex: 1; }
.label-row { display: flex; justify-content: space-between; align-items: center; }
.label-row a { font-size: 12.5px; color: var(--primary-dark); font-weight: 600; }
.toggle-pw { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 14px; left: auto; }
.auth-divider { display: flex; align-items: center; gap: 14px; margin: 22px 0; color: var(--text-muted); font-size: 13px; }
.auth-divider::before, .auth-divider::after { content: ""; flex: 1; height: 1px; background: var(--card-border); }
.btn-wa { background: #fff; border: 1.5px solid var(--card-border); color: var(--text); width: 100%; justify-content: center; }
.btn-wa:hover { border-color: #25D366; background: #f0fdf4; }
.btn-wa i { color: #25D366; font-size: 18px; }
.auth-alt { text-align: center; margin-top: 24px; font-size: 14.5px; color: var(--text-secondary); }
.auth-alt a { color: var(--primary-dark); font-weight: 700; }
.flash { padding: 12px 15px; border-radius: 11px; font-size: 14px; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.flash.error { background: var(--danger-light); color: #b91c1c; border: 1px solid #fecaca; }
.flash.success { background: var(--primary-light); color: var(--primary-dark); border: 1px solid rgba(124,58,237,.3); }

/* ── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 36px; }
  .hero p.lead { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-points { justify-content: center; }
  .features, .steps, .pricing { grid-template-columns: 1fr; }
  .spotlight { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .spotlight-copy > p { margin-left: auto; margin-right: auto; }
  .spotlight-list { display: inline-flex; text-align: left; }
  .steps::before { display: none; }
  .plan.featured { transform: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .auth { grid-template-columns: 1fr; }
  .auth-aside { display: none; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; flex: none; }
  .nav.menu-open .nav-links {
    display: flex; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0;
    background: #fff; padding: 14px 24px; border-bottom: 1px solid var(--card-border); box-shadow: var(--shadow);
  }
  .footer-top { grid-template-columns: 1fr; }
  .moni-fab .txt { display: none; }
  /* keep the nav bar within the screen */
  .nav-inner { gap: 12px; }
  .brand { font-size: 18px; gap: 9px; }
  .brand .logo-mark { width: 32px; height: 32px; }
  .nav-cta { gap: 8px; margin-left: auto; }
  .nav-cta .btn { padding: 9px 14px; font-size: 13px; }
}
@media (max-width: 480px) {
  .nav-cta .btn-ghost { display: none; }
  .nav-cta .btn { padding: 8px 12px; font-size: 12.5px; }
  .hero h1 { font-size: 40px; }
  .wrap { padding: 0 18px; }
  .moni-panel { right: 16px; left: 16px; width: auto; max-width: none; }
  /* keep the floating stat chips inside the viewport (no horizontal scroll) */
  .chip-1 { left: 0; }
  .chip-2 { right: 0; }
  /* bento showcase cards: comfortable padding + type on small screens */
  .feature.big h3 { font-size: 19px; }
  .feature { padding: 24px 20px; }
  .mini-bubble { max-width: 95%; }
}
