/* ================================================================
   VAARUNA — Design System v4  |  Human. Editorial. Purposeful.
   Ubuntu (headings) · Karla (body) · Inter (numbers/labels)
   Matches the real app's font system exactly (src/lib/theme.ts) so the
   phone mockup reads as an authentic screenshot, not a stand-in.
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,400;0,500;0,700;1,700&family=Karla:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Inter:wght@400;500;600;700&display=swap');

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

/* ── Design Tokens ──────────────────────────────────────────── */
:root {
  --bg:         #FDFBF7;
  --surface:    #FDFAF6;
  --surface2:   #FFFFFF;
  --primary:    #72383D;
  --primary-dk: #5A2A2E;
  --primary-lt: #8C4248;
  --fg:         #1A1411;
  --fg2:        #2C2420;
  --muted:      #6E6560;
  --muted2:     #9C948E;
  --border:     #E3DDD6;
  --border2:    #D6CFC7;
  --yes:        #2F6242;
  --yes-lt:     rgba(47,98,66,.1);
  --no:         #8A3628;
  --gold:       #B8894E;
  --gold-lt:    #F4E8D6;
  --gold-bg:    #FAF2E6;
  --dark:       #18120F;
  --dark-surf:  #221A16;

  --f-display: 'Ubuntu', system-ui, sans-serif;
  --f-body:    'Karla', system-ui, sans-serif;
  --f-mono:    'Inter', system-ui, sans-serif;

  --r-xs:  5px;
  --r-sm:  8px;
  --r-md:  12px;
  --r-lg:  16px;
  --r-xl:  22px;
  --r-2xl: 32px;

  --max:   1160px;
  --nav-h: 66px;
  --pad:   clamp(1rem, 4.5vw, 2.25rem);

  --sh-sm: 0 1px 4px rgba(26,17,11,.06), 0 1px 2px rgba(26,17,11,.04);
  --sh-md: 0 4px 20px rgba(26,17,11,.09), 0 2px 4px rgba(26,17,11,.04);
  --sh-lg: 0 12px 40px rgba(26,17,11,.12), 0 4px 8px rgba(26,17,11,.05);
  --sh-xl: 0 24px 64px rgba(26,17,11,.15), 0 8px 16px rgba(26,17,11,.06);
}

/* ── Base ───────────────────────────────────────────────────── */
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--f-body);
  font-size: 1rem;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 700;
  line-height: 1.14;
  color: var(--fg);
  letter-spacing: -.02em;
}
h1 { font-size: clamp(2.4rem, 5.8vw, 4.2rem); }
h2 { font-size: clamp(1.75rem, 3.6vw, 2.6rem); letter-spacing: -.018em; }
h3 { font-size: clamp(1.08rem, 2vw, 1.35rem); letter-spacing: -.01em; }
h4 { font-size: 1rem; font-weight: 600; letter-spacing: 0; }
p  { color: var(--muted); line-height: 1.72; }

/* Wordmark — no gradient, clean authority */
.wordmark {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary);
  transition: opacity .18s;
}
.wordmark:hover { opacity: .76; }

/* Section eyebrow tag — editorial dash style, no pill */
.tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--f-mono);
  font-size: .66rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .6rem;
}
.tag::before {
  content: '';
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--primary);
  flex-shrink: 0;
}

/* ── Layout ─────────────────────────────────────────────────── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.section   { padding: clamp(3.5rem, 8vw, 6rem) 0; position: relative; }
.section-alt { background: var(--surface); position: relative; }

/* Section-to-section blend — a flat bg swap at the boundary read as a hard
   seam; this fades one section's background into the next's over ~140px
   instead, so sections feel like one continuous surface. */
.section + .section-alt::before,
.section-alt + .section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 140px;
  pointer-events: none;
  z-index: 0;
}
.section + .section-alt::before {
  background: linear-gradient(to bottom, var(--bg), var(--surface));
}
.section-alt + .section::before {
  background: linear-gradient(to bottom, var(--surface), var(--bg));
}

.section-head {
  text-align: center;
  margin-bottom: clamp(2.25rem, 5vw, 3.5rem);
}
.section-head h2 { margin-bottom: .45rem; }
.section-head p  {
  font-size: 1.05rem;
  max-width: 500px;
  margin: .35rem auto 0;
}

/* ══════════════════════════════════════════════════════════════
   NAV — Redesigned: logo mark + wordmark, underline active state
   ══════════════════════════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 300;
  height: var(--nav-h);
  width: 880px;
  max-width: calc(100vw - 32px);
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 10px 30px rgba(114, 56, 61, 0.08), 0 1px 3px rgba(0, 0, 0, 0.03);
  transition: transform .3s, box-shadow .3s;
}
.nav.scrolled {
  box-shadow: 0 12px 36px rgba(114, 56, 61, 0.14), 0 2px 8px rgba(0, 0, 0, 0.05);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 24px;
}

/* Logo: icon + wordmark */
.nav-brand {
  display: flex;
  align-items: center;
  gap: .48rem;
  flex-shrink: 0;
  margin-right: 2rem;
  text-decoration: none;
}
.nav-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .2s, box-shadow .2s;
}
.nav-icon svg { display: block; }
.nav-brand:hover .nav-icon {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(114,56,61,.32);
}
.nav-name {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--primary);
}

/* Nav links — centered, underline active */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0 auto;
}
.nav-links li a {
  display: block;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: .9rem;
  color: #5C524C;
  padding: .36rem .68rem;
  position: relative;
  transition: color .18s;
  white-space: nowrap;
  letter-spacing: .01em;
}
.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: .68rem;
  right: .68rem;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .22s cubic-bezier(.16,1,.3,1);
}
.nav-links li a:hover        { color: var(--primary); }
.nav-links li a:hover::after { transform: scaleX(.35); }
.nav-links li a.active       { color: var(--primary); font-weight: 600; }
.nav-links li a.active::after { transform: scaleX(1); }

/* Nav right: CTA */
.nav-right {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-left: 1.5rem;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: .38rem;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: .875rem;
  color: #FFFFFF;
  background: var(--primary);
  padding: .48rem 1.05rem;
  border-radius: 8px;
  transition: background .18s, transform .2s, box-shadow .2s;
  white-space: nowrap;
}
.nav-cta:hover {
  background: #5A2B2F;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(114, 56, 61, 0.28);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  transition: background .18s;
  margin-left: auto;
  flex-shrink: 0;
}
.hamburger:hover { background: rgba(26,17,11,.06); }
.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--fg);
  border-radius: 2px;
  transition: transform .28s cubic-bezier(.16,1,.3,1), opacity .22s, width .22s;
}
.hamburger span:nth-child(1) { width: 20px; }
.hamburger span:nth-child(2) { width: 14px; }
.hamburger span:nth-child(3) { width: 18px; }
.hamburger.active span:nth-child(1) { width: 20px; transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.active span:nth-child(3) { width: 20px; transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer — Matched to Nav Floating Card Style */
.mobile-menu {
  display: none;
  position: fixed;
  top: calc(var(--nav-h) + 6px);
  left: 1rem; right: 1rem;
  width: calc(100vw - 2rem);
  max-width: 440px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: 24px;
  padding: 1.25rem 1.5rem 1.6rem;
  z-index: 299;
  box-shadow: 0 16px 40px rgba(114, 56, 61, 0.14), 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(114, 56, 61, 0.08);
}
.mobile-menu.open {
  display: block;
  animation: menuDown .28s cubic-bezier(.16,1,.3,1);
}
@keyframes menuDown {
  from { opacity: 0; transform: translateY(-12px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.1rem;
}
.mobile-menu ul a {
  display: block;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 1rem;
  padding: .65rem .25rem;
  color: var(--muted);
  transition: color .15s;
  border-bottom: 1px solid var(--border);
}
.mobile-menu ul a:last-child { border-bottom: none; }
.mobile-menu ul a:hover { color: var(--fg); }
.mobile-menu ul a.active { color: var(--primary); font-weight: 600; }
.mobile-menu .nav-cta {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: .7rem;
  font-size: .95rem;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: .95rem;
  padding: .62rem 1.3rem;
  border-radius: var(--r-sm);
  border: 1.5px solid transparent;
  transition: background .18s, transform .2s, box-shadow .2s, border-color .18s;
  white-space: nowrap;
  line-height: 1;
  cursor: pointer;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dk);
  border-color: var(--primary-dk);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(114,56,61,.28);
}
.btn-outline {
  background: transparent;
  color: var(--fg2);
  border-color: var(--border2);
}
.btn-outline:hover {
  background: rgba(26,17,11,.04);
  border-color: rgba(26,17,11,.2);
  transform: translateY(-1px);
}
.btn-ghost  { background: transparent; color: var(--muted); }
.btn-ghost:hover { color: var(--fg); background: rgba(26,17,11,.05); }
.btn-lg { font-size: 1rem; padding: .78rem 1.6rem; }
.btn-gold {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.btn-gold:hover {
  background: #9E7540;
  border-color: #9E7540;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(184,137,78,.3);
}
.btn-white {
  background: #fff;
  color: var(--primary);
  border-color: rgba(255,255,255,.5);
}
.btn-white:hover {
  background: rgba(255,255,255,.92);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(26,17,11,.14);
}
.btn:active { transform: translateY(0) !important; box-shadow: none !important; }

/* ══════════════════════════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════════════════════════ */
.hero {
  padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(3rem, 6vw, 5.5rem);
  overflow: hidden;
  position: relative;
}
/* Single soft radial accent — not AI gradient mesh */
.hero::before {
  content: '';
  position: absolute;
  width: 640px; height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,137,78,.08) 0%, transparent 68%);
  top: -180px; right: -120px;
  pointer-events: none;
  animation: orbPulse 9s ease-in-out infinite;
}
@keyframes orbPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.08); opacity: .75; }
}

/* ── Premium Animated Mesh Background for Facil Hero ── */
.hero-facil {
  position: relative;
  background: linear-gradient(135deg, #FDFBF7 0%, #F5F1EB 100%);
  overflow: hidden;
  margin-top: calc(-1 * var(--nav-h));
  padding-top: calc(var(--nav-h) + clamp(3.5rem, 7vw, 5.5rem));
  padding-bottom: clamp(3rem, 6vw, 5rem);
  scroll-margin-top: var(--nav-h);
  box-shadow: inset 0 -140px 160px -30px var(--surface);
}
.hero-facil::before,
.hero-facil::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  z-index: 0;
  pointer-events: none;
  animation: meshDrift 16s ease-in-out infinite alternate;
}
.hero-facil::before {
  width: 700px; height: 700px;
  background: rgba(114, 56, 61, 0.14);
  top: -100px; left: -100px;
}
.hero-facil::after {
  width: 800px; height: 800px;
  background: rgba(184, 137, 78, 0.12);
  bottom: -200px; right: -150px;
  animation-delay: -8s;
}
.hero-container-facil {
  position: relative;
  z-index: 2;
}
@keyframes meshDrift {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(80px, 40px) scale(1.05); }
  66% { transform: translate(-40px, 80px) scale(0.95); }
  100% { transform: translate(0, 0) scale(1); }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 4.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-inner-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2.75rem;
}
.hero-text-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 720px;
  margin: 0 auto;
}

/* Eyebrow */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.4rem;
  font-family: 'Karla', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: #72383D;
  background: rgba(114, 56, 61, 0.08);
  padding: 6px 14px;
  border-radius: 100px;
}
.eyebrow-live {
  display: none !important;
}
@keyframes liveDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(47,98,66,.35); opacity: 1; }
  50%       { box-shadow: 0 0 0 5px rgba(47,98,66,0); opacity: .85; }
}

/* Hero heading */
.hero h1 { margin-bottom: .9rem; }
.hero h1 em {
  font-style: italic;
  color: var(--primary);
}

.hero-meta {
  font-family: var(--f-mono);
  font-size: .76rem;
  font-weight: 500;
  color: var(--muted2);
  letter-spacing: .05em;
  margin-bottom: 1.1rem;
}

.hero-desc {
  font-size: 1.06rem;
  line-height: 1.74;
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 440px;
}

.hero-actions { display: flex; align-items: center; gap: .85rem; flex-wrap: wrap; }
.hero-right   { display: flex; justify-content: center; width: 100%; }

/* Hero entrance stagger */
.hero-anim {
  animation: heroIn .65s cubic-bezier(.16,1,.3,1) both;
}
.hero-anim:nth-child(1) { animation-delay: .04s; }
.hero-anim:nth-child(2) { animation-delay: .1s; }
.hero-anim:nth-child(3) { animation-delay: .16s; }
.hero-anim:nth-child(4) { animation-delay: .22s; }
.hero-anim:nth-child(5) { animation-delay: .28s; }
.hero-anim:nth-child(6) { animation-delay: .34s; }
@keyframes heroIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}

/* ── Massive Phone Mockup Hero (facilpay.io style) ───────── */
.hero-container-facil {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* Hero Top Centered Header */
.hero-header-top {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.phone-stage-facil {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
}
.phone-outer-facil {
  width: 100%;
  display: flex;
  justify-content: center;
}

/* Portrait Smartphone Frame (exact match to mobile screenshot ratio, enlarged with NO inner scrollbar) */
.phone-portrait {
  width: 520px;
  max-width: 95vw;
  height: auto;
  background: #111113;
  border-radius: 52px;
  border: 10px solid #1C1C1E;
  box-shadow: 0 30px 90px rgba(0,0,0,.35), 0 0 0 1px rgba(255,255,255,.08);
  position: relative;
  overflow: visible;
  animation: phoneFloat 5s ease-in-out infinite;
}

.app-screen-portrait {
  background: #FAF8F5;
  padding: 0 0 20px;
  display: flex;
  flex-direction: column;
  height: auto;
  border-radius: 42px;
  overflow: hidden;
}

/* ── In-Mockup Hero Block (between TODAY'S MISSIONS and Card) ── */
.in-mockup-hero-block {
  text-align: center;
  padding: 16px 20px 8px;
}
.mockup-h1 {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 8px;
}
.mockup-h1 em {
  font-style: italic;
  color: var(--primary);
}
.mockup-meta {
  font-family: var(--f-mono);
  font-size: .75rem;
  font-weight: 500;
  color: var(--muted2);
  letter-spacing: .06em;
  margin-bottom: .7rem;
}
.mockup-desc {
  font-family: var(--f-body);
  font-size: .98rem;
  line-height: 1.6;
  color: var(--muted);
  max-width: 440px;
  margin: 0 auto .9rem;
}
.mockup-actions {
  display: flex;
  justify-content: center;
}

/* iPhone Top Notch (exact match to user image) */
.iphone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 24px;
  background: #111113;
  border-radius: 0 0 16px 16px;
  z-index: 20;
  display: flex;
  justify-content: center;
  align-items: center;
}
.iphone-notch-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: -2px;
}
.iphone-speaker {
  width: 42px;
  height: 4px;
  background: #252528;
  border-radius: 100px;
  box-shadow: inset 0 1px 2px rgba(0,0,0,.8);
}
.iphone-camera {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1A1A24;
  border: 1px solid #2C2C38;
  box-shadow: inset 0 0 2px rgba(255,255,255,.2);
}
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,.12);
}
.di-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #2F6242;
  box-shadow: 0 0 6px #2F6242;
}

/* Inside Phone Screen for Facil Hero */
.app-screen-facil {
  background: #FAF8F5;
  padding: 8px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.app-hdr-facil {
  width: 100%;
  padding: 8px 0;
}
.app-cats-facil {
  justify-content: center;
  margin-bottom: 18px;
}

/* Phone Hero Content (facilpay style) */
.phone-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}
.hero-eyebrow-facil {
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: .08em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.facil-h1 {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 4.8vw, 3.6rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--fg);
  margin-bottom: 10px;
}
.facil-h1 em {
  font-style: italic;
  color: var(--primary);
}
.facil-desc {
  font-family: var(--f-body);
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  color: var(--muted);
  line-height: 1.6;
  max-width: 560px;
  margin-bottom: 20px;
}

/* App Card inside Facil Screen */
.app-card-facil {
  width: 100%;
  max-width: 540px;
  background: white;
  border: 1.5px solid #E6E0D8;
  border-radius: 20px;
  padding: 20px 22px;
  box-shadow: 0 10px 30px rgba(26,17,11,.06);
  text-align: left;
}

/* ── Exact Poll Card Styling (matches user image 1:1) ─────── */
.app-poll-card {
  /* Real PollCard: 20px radius, 22px padding, #ECE8E1 hairline border,
     soft floating-matte shadow — matched exactly (was a rounder 28px/
     heavier shadow before, which read as a generic "card UI" rather
     than the actual app's card). */
  background: #FDFCF8 !important;
  border: 1px solid #ECE8E1 !important;
  border-radius: 20px !important;
  padding: 22px !important;
  box-shadow: 0 5px 18px rgba(26,17,11,.06) !important;
}

.app-tag-infra {
  background: #F2EBE8;
  color: #72383D;
  border-color: transparent;
}

.poll-question-title {
  font-family: 'Ubuntu', sans-serif;
  font-size: 18px;
  font-weight: 500; /* Ubuntu_500Medium — the real question weight, not bold */
  color: #1C1714;
  line-height: 1.4;
  margin: 14px 0 6px;
}

.poll-question-desc {
  font-family: 'Karla', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #7A746E;
  line-height: 1.55;
  margin-bottom: 14px;
}

.poll-options-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 14px 0 16px;
}

.poll-opt-btn {
  width: 100%;
  padding: 13px 16px;
  border-radius: 14px;
  background: #FAF8F5;
  border: 1.5px solid #D6D0C7;
  font-family: 'Karla', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all .18s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.poll-opt-btn.opt-green {
  color: #2F6242;
  border-color: #C2D8C9;
}
.poll-opt-btn.opt-maroon {
  color: #72383D;
  border-color: #E2DDD6;
}
.poll-opt-btn:hover {
  background: #FFFFFF;
  border-color: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,.04);
}

.poll-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid #E6E0D8;
}

.poll-stat-count {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'Karla', sans-serif; /* real totalText uses FONTS.body (Karla), not the numeric face */
  font-size: 12px;
  color: #7A746E;
  font-weight: 400;
}

.poll-action-btns {
  display: flex;
  align-items: center;
  gap: 6px;
}

.poll-circle-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #D5CCC0;
  background: #FAF8F5;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .18s, border-color .18s;
}
.poll-circle-btn:hover {
  background: #FFFFFF;
  border-color: var(--primary);
}
.app-form-grid-facil {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.app-submit-btn-facil {
  width: 100%;
  margin-top: 10px;
}

/* Floating badge positioning for Facil hero */
.phone-stage-facil .float-chip-1 { top: 18%; left: -45px; z-index: 100; }
.phone-stage-facil .float-chip-2 { top: 42%; right: -45px; z-index: 100; }
.phone-stage-facil .float-chip-3 { bottom: 18%; left: -35px; z-index: 100; }

@media (max-width: 640px) {
  .app-form-grid-facil { grid-template-columns: 1fr; }
  .phone-facil { border-radius: 32px 32px 0 0; border-width: 6px; }
  .app-screen-facil { padding: 6px 12px 18px; }
  .app-card-facil { padding: 14px; }
}
@keyframes phoneFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
.phone-notch {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 124px; height: 26px;
  background: #1C1C1E;
  border-radius: 0 0 16px 16px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.notch-speaker {
  width: 44px; height: 5px;
  background: #0D0D0E;
  border-radius: 4px;
}
.notch-camera {
  width: 8px; height: 8px;
  background: #080809;
  border-radius: 50%;
  box-shadow: inset -1px -1px 2px rgba(255,255,255,0.06);
}

/* ── App Screen (Image 2 style) ─────────────────────────── */
.app-screen {
  padding: 0;
  background: #F6F4F0;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  position: relative;
}

/* App Header */
.app-hdr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 22px 12px;
  flex-shrink: 0;
  background: #FAF8F5;
  border-bottom: 1px solid #E6E0D8;
}
.app-hdr-wm {
  font-family: 'Ubuntu', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #72383D;
  line-height: 1;
  transform: translateY(2px);
}
.app-hdr-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.app-switch-pill {
  width: 44px;
  height: 24px;
  background: #D5CCC0;
  border-radius: 100px;
  padding: 3px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.app-switch-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 1px 3px rgba(0,0,0,.15);
}
.app-hdr-bell {
  width: 36px;
  height: 36px;
  background: #FAF8F5;
  border: 1px solid #E6E0D8;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}
.app-hdr-bell svg {
  width: 16px;
  height: 16px;
}

/* Categories Bar */
.app-cats-bar {
  display: flex;
  gap: 10px;
  padding: 16px 20px 14px;
  overflow-x: auto;
  scrollbar-width: none;
  flex-shrink: 0;
  -webkit-mask-image: linear-gradient(to right, black 85%, transparent 100%);
  mask-image: linear-gradient(to right, black 85%, transparent 100%);
}
.app-cats-bar::-webkit-scrollbar { display: none; }
.app-cat-chip {
  font-family: 'Karla', sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 100px;
  background: transparent;
  border: 1px solid #D5CCC0;
  color: #7A746E;
  white-space: nowrap;
  cursor: pointer;
  transition: all .18s ease;
}
.app-cat-chip:hover {
  border-color: #72383D;
  color: #72383D;
}
.app-cat-chip.active {
  background: #72383D;
  color: white;
  border-color: #72383D;
}

/* Subheader (Image 2 style) */
.app-missions-hdr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2px 14px 5px;
  flex-shrink: 0;
}
.app-missions-hdr .m-title {
  font-family: 'Inter', sans-serif;
  font-size: 7.5px;
  font-weight: 700;
  letter-spacing: .08em;
  color: #8C847D;
}
.app-missions-hdr .m-count {
  font-family: 'Inter', sans-serif;
  font-size: 8px;
  font-weight: 700;
  color: #72383D;
  display: flex;
  align-items: center;
  gap: 2px;
}

/* App Card (Image 2 white card model with Form inside) */
.app-body {
  flex: 1;
  padding: 0 16px 16px;
  overflow: visible;
}
.app-card {
  background: white;
  border: 1px solid #E2DDD6;
  border-radius: 15px;
  padding: 10px;
  box-shadow: 0 4px 12px rgba(26,17,11,.04);
}
.app-tags {
  display: flex;
  gap: 5px;
  margin-bottom: 6px;
}
.app-tag {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 6px 12px;
  border-radius: 100px;
  border: 1px solid transparent;
}
.app-tag-env { background: rgba(114,56,61,.1); color: #72383D; }
/* Matches the real card's "closing in…" status pill exactly. */
.app-tag-time { border: 1px solid #D9D5CE; color: #5C5650; background: #FAF8F4; }

.app-q {
  font-family: 'Ubuntu', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #1C1714;
  line-height: 1.35;
  margin-bottom: 5px;
}
.app-auth {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
}
.app-auth-av {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #F6F5F2;
  border: 1px solid #E2DDD6;
  display: flex;
  align-items: center;
  justify-content: center;
}
.app-auth-av svg {
  width: 16px;
  height: 16px;
}
.app-auth-name {
  font-family: 'Karla', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: #5C5650; /* real proposerName color for a verified org row */
}

/* Card Form Inputs (matching user screenshot 1:1) */
.wl-label {
  display: block;
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #7A746E;
  margin-bottom: 5px;
}
.app-card-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 14px 0 10px;
  position: relative;
  z-index: 10;
}
.app-input-wrap {
  position: relative;
  z-index: 10;
}
.app-input-wrap input,
.app-input-wrap select {
  width: 100%;
  font-family: 'Karla', sans-serif;
  font-size: 13.5px;
  padding: 11px 14px;
  border-radius: 12px;
  border: 1.5px solid #E6E0D8;
  background: #FAF8F5;
  color: #1C1714;
  outline: none;
  pointer-events: auto !important;
  position: relative;
  z-index: 15;
  transition: border-color .18s, box-shadow .18s, background .18s;
}
.app-input-wrap input {
  cursor: text !important;
}
.app-input-wrap select {
  cursor: pointer !important;
}
.app-input-wrap input:focus,
.app-input-wrap select:focus {
  border-color: #72383D;
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(114,56,61,.12);
}
.app-input-wrap input::placeholder { color: #A09890; }
.app-input-wrap select {
  color: #4A4440;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%239C948E' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 30px;
  appearance: none;
}
.app-submit-btn-card {
  width: 100%;
  padding: 13px 16px;
  border-radius: 14px;
  background: #72383D;
  color: white;
  font-family: 'Karla', sans-serif;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer !important;
  pointer-events: auto !important;
  position: relative;
  z-index: 15;
  box-shadow: 0 4px 14px rgba(114,56,61,.2);
  transition: transform .18s, background .18s;
}
.app-submit-btn-card:hover {
  background: #5B2C30;
  transform: translateY(-1px);
}
  background-repeat: no-repeat;
  background-position: right 8px center;
  padding-right: 24px;
  appearance: none;
}
.app-submit-btn {
  width: 100%;
  padding: 8px 10px;
  border-radius: 8px;
  background: #72383D;
  color: white;
  font-family: 'Karla', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  margin-top: 2px;
  transition: background .18s, transform .15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.app-submit-btn:hover {
  background: #5A2A2E;
  transform: translateY(-1px);
}

.app-msg-text {
  font-size: 9px;
  color: #7A746E;
  margin-bottom: 8px;
  text-align: center;
}

.app-foot { display:flex; justify-content:space-between; align-items:center; padding:5px 10px; border-top:1px solid #EDE9E4; }
.app-foot-l { display:flex; align-items:center; gap:3px; font-family:'Inter',sans-serif; font-size:5.5px; color:#7A746E; }
.app-foot-r { display:flex; gap:4px; }
.app-foot-btn { width:20px; height:20px; border:1.5px solid #E2DDD6; border-radius:50%; display:flex; align-items:center; justify-content:center; background:white; }
.app-nav { background:white; border-top:1px solid #E2DDD6; display:flex; align-items:center; justify-space-around; padding:6px 8px 10px; flex-shrink:0; }
.app-nav-i { width:24px; height:24px; display:flex; align-items:center; justify-content:center; color:#9A948F; }
.app-nav-fab { width:31px; height:31px; border-radius:50%; background:#72383D; display:flex; align-items:center; justify-content:center; color:white; }
.app-nav-s { width:22px; height:22px; border-radius:50%; background:#E8622C; display:flex; align-items:center; justify-content:center; font-family:'Ubuntu',sans-serif; font-size:8px; font-weight:700; color:white; }

/* ── Bottom Sheet (In-Mockup Popup) ───────────────────────── */
.app-bottom-sheet {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: #FAF8F5;
  border-radius: 32px 32px 0 0;
  padding: 12px 20px 30px;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.15);
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s, visibility 0.3s;
  z-index: 50;
  border-top: 1px solid #E6E0D8;
}
.app-bottom-sheet.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.sheet-handle {
  width: 40px; height: 5px;
  background: #D5CCC0;
  border-radius: 100px;
  margin: 0 auto 16px;
}
.sheet-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.sheet-header h4 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #1C1714;
}
.sheet-close {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: #EAE5DF;
  display: flex; align-items: center; justify-content: center;
  color: #554D47;
  cursor: pointer;
}
.sheet-close:hover {
  background: #D5CCC0;
}
.sheet-body textarea {
  width: 100%;
  font-family: 'Karla', sans-serif;
  font-size: 14px;
  padding: 14px;
  border-radius: 16px;
  border: 1.5px solid #E6E0D8;
  background: #FFFFFF;
  color: #1C1714;
  outline: none;
  resize: none;
  margin-bottom: 12px;
  transition: border-color 0.2s;
  pointer-events: auto !important;
}
.sheet-body textarea:focus {
  border-color: #72383D;
}
.sheet-submit {
  margin-top: 4px;
}

/* Floating chips around phone */
.phone-stage {
  position: relative;
  perspective: 1200px;
}
.phone-stage .phone-outer {
  transform: rotateX(var(--tiltX, 0deg)) rotateY(var(--tiltY, 0deg));
  transition: transform .4s cubic-bezier(.16,1,.3,1);
  will-change: transform;
}
.float-chip {
  position: absolute;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--f-mono);
  font-size: .67rem;
  font-weight: 600;
  color: var(--fg);
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: .44rem .8rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
  pointer-events: none;
  will-change: transform;
}
.float-chip-1 {
  top: 16%; left: -70px;
  animation: floatA 5.8s ease-in-out infinite;
}
.float-chip-2 {
  top: 50%; right: -80px;
  animation: floatB 6.4s ease-in-out infinite;
}
.float-chip-3 {
  bottom: 12%; left: -55px;
  animation: floatA 5.2s ease-in-out infinite .6s;
}
@keyframes floatA {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes floatB {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ── Achievement icon boxes ─── */
.achieve-icon { width:52px; height:52px; border-radius:14px; display:flex; align-items:center; justify-content:center; margin:0 auto .9rem; }
.ai-gold   { background:rgba(184,137,78,.12); color:#A8793C; }
.ai-maroon { background:rgba(114,56,61,.09);  color:var(--primary); }
.ai-green  { background:rgba(47,98,66,.1);    color:var(--yes); }
.ai-blue   { background:rgba(46,80,148,.08);  color:#2B4E8C; }
.rank-step-icon svg { width:26px; height:26px; }
.mode-icon svg { width:26px; height:26px; }
.trust-icon svg { width:28px; height:28px; }

/* ── Mode Cards ─────────────────────────────────────────────── */
.mode-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.mode-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}
.mode-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.mode-civic::before   { background: var(--yes); }
.mode-rewards::before { background: var(--gold); }
.mode-card:hover { box-shadow: var(--sh-md); transform: translateY(-4px); }

.mode-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
}
.mode-civic   .mode-icon { background: rgba(47,98,66,.1);   color: var(--yes); }
.mode-rewards .mode-icon { background: var(--gold-lt);      color: #8B6030; }

.mode-card h3 { margin-bottom: .4rem; }
.mode-card > p { font-size: .95rem; margin-bottom: 1.3rem; line-height: 1.66; }

.mode-features { display: flex; flex-direction: column; gap: .55rem; }
.mode-feature {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .93rem;
  font-weight: 500;
  color: var(--fg2);
  line-height: 1.5;
}
.mode-feature-icon {
  flex-shrink: 0;
  width: 17px; height: 17px;
  display: flex; align-items: center; justify-content: center;
  margin-top: .1rem;
}
.mode-civic   .mode-feature-icon { color: var(--yes); }
.mode-rewards .mode-feature-icon { color: #8B6030; }

/* ── Rank Path ──────────────────────────────────────────────── */
.rank-path {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: auto;
  padding: 1rem 0 .5rem;
  scrollbar-width: none;
  flex-wrap: wrap;
  row-gap: 1.75rem;
}
.rank-path::-webkit-scrollbar { display: none; }

.rank-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  gap: .5rem;
}
.rank-step-icon {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--surface2);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  transition: all .25s cubic-bezier(.16,1,.3,1);
}
.rank-step:hover .rank-step-icon {
  border-color: var(--primary);
  background: rgba(114,56,61,.06);
  color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(114,56,61,.16);
}
.rank-step.legend .rank-step-icon {
  border-color: var(--gold);
  background: var(--gold-lt);
  color: #8B6030;
}
.rank-step-name { font-family: var(--f-display); font-size: .82rem; font-weight: 700; color: var(--fg); text-align: center; }
.rank-step-desc { font-family: var(--f-mono); font-size: .58rem; color: var(--muted); text-align: center; line-height: 1.5; }

.rank-arrow {
  width: clamp(20px, 3.5vw, 44px);
  flex-shrink: 0;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--border2);
}

/* ── Achievement Grid ───────────────────────────────────────── */
.achieve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.achieve-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s;
}
.achieve-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.achieve-card.cash {
  border-color: rgba(184,137,78,.3);
  background: linear-gradient(150deg, #fff 0%, var(--gold-bg) 100%);
}
.achieve-card h4 { font-family: var(--f-display); font-size: .97rem; font-weight: 700; margin-bottom: .35rem; }
.achieve-card p  { font-size: .87rem; line-height: 1.55; }
.achieve-cash {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-family: var(--f-mono);
  font-size: .74rem;
  font-weight: 700;
  color: #8B6030;
  background: var(--gold-lt);
  padding: .2rem .65rem;
  border-radius: 100px;
  margin-top: .7rem;
  border: 1px solid rgba(184,137,78,.2);
}

/* ── Categories ─────────────────────────────────────────────── */
.cat-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  justify-content: center;
  margin-top: 2.25rem;
}
.cat-chip-dot {
  display: inline-flex;
  align-items: center;
  gap: .48rem;
  padding: .46rem 1rem .46rem .72rem;
  border-radius: 100px;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: .86rem;
  color: var(--fg2);
  background: var(--surface2);
  border: 1px solid var(--border);
  cursor: default;
  transition: transform .22s, box-shadow .22s, border-color .22s;
}
.cat-chip-dot:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-sm);
  border-color: var(--border2);
}
.cat-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--dot, var(--primary));
  flex-shrink: 0;
}

/* ── Trust Grid ─────────────────────────────────────────────── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.trust-item {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.85rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .8rem;
  transition: box-shadow .25s, transform .25s;
}
.trust-item:hover { box-shadow: var(--sh-md); transform: translateY(-4px); }
.trust-icon { color: var(--primary); }
.trust-item h4 { font-family: var(--f-display); font-size: 1rem; }
.trust-item p  { font-size: .93rem; line-height: 1.66; }

/* ── CTA Band ───────────────────────────────────────────────── */
.cta-band {
  background: var(--dark);
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,137,78,.12) 0%, transparent 70%);
  top: -200px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.cta-band h2 { color: #fff; margin-bottom: .65rem; }
.cta-band p  {
  font-family: var(--f-body);
  color: rgba(255,255,255,.62);
  font-size: 1.05rem;
  max-width: 450px;
  margin: 0 auto 2.25rem;
}
.cta-band .actions { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ── Waitlist form — multi-field stacked ──────────────────── */
.waitlist-form-stacked {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  max-width: 520px;
  width: 100%;
  margin-top: 1.35rem;
}
.waitlist-form-band.waitlist-form-stacked {
  max-width: 580px;
  margin: 1.35rem auto 0;
}
.wl-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.wl-field {
  display: flex;
  flex-direction: column;
  gap: .32rem;
}
.wl-label {
  font-family: var(--f-mono);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.wl-label-light { color: rgba(255,255,255,.5); }

.waitlist-form-stacked input[type="text"],
.waitlist-form-stacked input[type="email"],
.waitlist-form-stacked select {
  width: 100%;
  font-family: var(--f-body);
  font-size: .97rem;
  color: var(--fg);
  background: var(--surface2);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: .72rem 1rem;
  transition: border-color .18s, box-shadow .18s;
  appearance: none;
  -webkit-appearance: none;
}
.waitlist-form-stacked select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239C948E' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.4rem;
  cursor: pointer;
}
.waitlist-form-stacked input:focus,
.waitlist-form-stacked select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(114,56,61,.12);
}

/* Dark variant for band (dark bg) */
.waitlist-form-band .wl-field input,
.waitlist-form-band .wl-field select,
.waitlist-form-band .wl-field select.wl-select-dark {
  background: rgba(255,255,255,.1);
  color: #fff;
  border-color: rgba(255,255,255,.22);
}
.waitlist-form-band .wl-field input::placeholder { color: rgba(255,255,255,.4); }
.waitlist-form-band .wl-field select { color: rgba(255,255,255,.85); }
.waitlist-form-band .wl-field select option { background: var(--dark-surf); color: #fff; }
.waitlist-form-band .wl-field input:focus,
.waitlist-form-band .wl-field select:focus {
  border-color: rgba(255,255,255,.55);
  box-shadow: 0 0 0 3px rgba(255,255,255,.1);
}
.waitlist-form-band .wl-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.5)' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* Mobile: stack the two-col row */
@media (max-width: 560px) {
  .wl-row { grid-template-columns: 1fr; }
}
/* Shared waitlist helpers */
.waitlist-band { position: relative; overflow: hidden; }
.waitlist-band .container { position: relative; z-index: 1; }
.waitlist-btn { white-space: nowrap; }
.waitlist-btn[disabled] { opacity: .5; cursor: default; pointer-events: none; }
.waitlist-msg {
  margin-top: .65rem;
  font-family: var(--f-body);
  font-size: .86rem;
  color: var(--muted);
}
.waitlist-msg.ok  { color: var(--yes); font-weight: 600; }
.waitlist-msg.err { color: var(--no); font-weight: 600; }
.waitlist-msg-band { text-align: center; color: rgba(255,255,255,.55); font-family: var(--f-body); }
.waitlist-msg-band.ok  { color: #8FD4A8; }
.waitlist-msg-band.err { color: #F0A69A; }
.waitlist-count {
  text-align: center;
  margin-top: 1.1rem;
  font-family: var(--f-mono);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(244,232,214,.7);
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .4;
  pointer-events: none;
}
.cta-orb-1 {
  width: 300px; height: 300px;
  top: -100px; left: 5%;
  background: radial-gradient(circle, rgba(184,137,78,.4), transparent 70%);
  animation: orbDrift 15s ease-in-out infinite;
}
.cta-orb-2 {
  width: 260px; height: 260px;
  bottom: -80px; right: 4%;
  background: radial-gradient(circle, rgba(255,255,255,.12), transparent 70%);
  animation: orbDrift 18s ease-in-out infinite -6s;
}
@keyframes orbDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(20px, -16px) scale(1.06); }
  66%       { transform: translate(-14px, 12px) scale(.97); }
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,.05);
  padding-top: 3.75rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 2.5rem;
  padding-bottom: 2.75rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand .wordmark {
  display: block;
  margin-bottom: .55rem;
  font-size: 1.12rem;
  color: rgba(255,255,255,.85);
}
.footer-brand .wordmark:hover { opacity: .65; }
.footer-brand > p {
  font-size: .9rem;
  line-height: 1.62;
  color: rgba(255,255,255,.4);
  font-family: var(--f-body);
}
.footer-brand .india-badge {
  display: inline-flex;
  align-items: center;
  gap: .38rem;
  margin-top: .95rem;
  font-family: var(--f-mono);
  font-size: .63rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.3);
}
.footer-col h4 {
  font-family: var(--f-mono);
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255,255,255,.3);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col ul a {
  font-family: var(--f-body);
  font-size: .9rem;
  color: rgba(255,255,255,.48);
  transition: color .18s;
}
.footer-col ul a:hover { color: rgba(255,255,255,.82); }
.footer-bottom { padding: 1.1rem 0; }
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-bottom p  { font-family: var(--f-body); font-size: .8rem; color: rgba(255,255,255,.26); }
.footer-bottom a  { color: rgba(255,255,255,.36); transition: color .18s; }
.footer-bottom a:hover { color: rgba(255,255,255,.65); }

/* ── Scroll entrance animations ─────────────────────────────── */
[data-animate] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity .6s cubic-bezier(.16,1,.3,1),
    transform .6s cubic-bezier(.16,1,.3,1);
}
[data-animate].in-view { opacity: 1; transform: none; }

/* Stagger delays — applied ONLY during entrance, cleared below for interactive cards */
[data-delay="1"] { transition-delay: .08s; }
[data-delay="2"] { transition-delay: .16s; }
[data-delay="3"] { transition-delay: .24s; }
[data-delay="4"] { transition-delay: .32s; }
[data-delay="5"] { transition-delay: .40s; }
[data-delay="6"] { transition-delay: .48s; }

/*
  FIX: Once an interactive card is in-view, the stagger delay from [data-delay]
  stays applied and makes hover transforms slow / non-responsive on cards 2+.
  Reset to the card's natural fast hover transition here.
*/
.mode-card.in-view,
.achieve-card.in-view,
.trust-item.in-view,
.rank-step.in-view,
.cat-chip-dot.in-view {
  transition:
    box-shadow .26s cubic-bezier(.16,1,.3,1),
    transform  .26s cubic-bezier(.16,1,.3,1),
    border-color .2s,
    background .2s;
  transition-delay: 0s;
}

/* ── Page Headers ───────────────────────────────────────────── */
.page-hero {
  padding: clamp(2.75rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3.5rem);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { font-size: clamp(1.9rem, 4.5vw, 3rem); margin-bottom: .55rem; }
.page-hero p  { font-family: var(--f-body); font-size: 1.05rem; max-width: 540px; }

/* ── About ──────────────────────────────────────────────────── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-split.flip { direction: rtl; }
.about-split.flip > * { direction: ltr; }
.about-text h2 { margin-bottom: .85rem; }
.about-text p  { font-family: var(--f-body); font-size: .97rem; margin-bottom: 1rem; line-height: 1.72; }
.about-text p:last-child { margin-bottom: 0; }

.about-card-stack { display: flex; flex-direction: column; gap: 1rem; }
.about-stat-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: box-shadow .22s, transform .22s;
}
.about-stat-card:hover { box-shadow: var(--sh-md); transform: translateY(-2px); }
.stat-num { font-family: var(--f-mono); font-size: 2rem; font-weight: 700; color: var(--primary); white-space: nowrap; }
.stat-lbl { font-family: var(--f-body); font-size: .93rem; color: var(--muted); line-height: 1.44; }

.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}
.diff-item {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.5rem;
}
.diff-item h4 { font-family: var(--f-display); margin-bottom: .35rem; }
.diff-item p  { font-family: var(--f-body); font-size: .88rem; line-height: 1.6; }

/* ── Steps ──────────────────────────────────────────────────── */
.steps { display: flex; flex-direction: column; }
.step {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 1.5rem;
  padding-bottom: 2.5rem;
}
.step:last-child { padding-bottom: 0; }
.step-num-col { display: flex; flex-direction: column; align-items: center; }
.step-num {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--surface2);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-mono);
  font-size: .92rem;
  font-weight: 700;
  color: var(--primary);
  flex-shrink: 0;
  transition: border-color .22s, background .22s;
}
.step:hover .step-num { border-color: var(--primary); background: rgba(114,56,61,.06); }
.step-line { width: 1.5px; flex: 1; background: var(--border); margin-top: 7px; }
.step:last-child .step-line { display: none; }
.step-body { padding-top: .55rem; }
.step-body h3 { font-family: var(--f-display); margin-bottom: .4rem; font-size: 1.15rem; }
.step-body p  { font-family: var(--f-body); font-size: .95rem; line-height: 1.65; }
.step-note {
  margin-top: .75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: .8rem 1rem;
  font-family: var(--f-body);
  font-size: .87rem;
  color: var(--muted);
  line-height: 1.62;
}
.step-note strong { color: var(--fg); }

/* ── Compare cards ──────────────────────────────────────────── */
.compare-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.compare-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.compare-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.compare-civic::before   { background: var(--yes); }
.compare-rewards::before { background: var(--gold); }
.compare-card h3 { font-family: var(--f-display); margin-bottom: .5rem; }
.compare-card > p { font-family: var(--f-body); font-size: .92rem; margin-bottom: 1.25rem; }
.compare-list { display: flex; flex-direction: column; gap: .6rem; }
.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  font-family: var(--f-body);
  font-size: .9rem;
  color: var(--fg2);
  line-height: 1.5;
}
.compare-list li svg { flex-shrink: 0; margin-top: .1rem; width: 14px; height: 14px; }
.compare-civic   .compare-list li svg { color: var(--yes); }
.compare-rewards .compare-list li svg { color: #8B6030; }

/* ── FAQ Accordion ──────────────────────────────────────────── */
.accordion { border: 1px solid var(--border); border-radius: var(--r-xl); overflow: hidden; }
.acc-item   { border-bottom: 1px solid var(--border); }
.acc-item:last-child { border-bottom: none; }
.acc-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.2rem 1.5rem;
  text-align: left;
  font-family: var(--f-body);
  font-size: .97rem;
  font-weight: 600;
  color: var(--fg);
  background: var(--surface2);
  gap: 1rem;
  transition: background .18s;
}
.acc-btn:hover { background: rgba(26,17,11,.02); }
.acc-btn[aria-expanded="true"] { color: var(--primary); }
.acc-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all .22s;
}
.acc-icon svg { width: 11px; height: 11px; transition: transform .22s; }
.acc-btn[aria-expanded="true"] .acc-icon {
  border-color: var(--primary);
  background: rgba(114,56,61,.08);
}
.acc-btn[aria-expanded="true"] .acc-icon svg { transform: rotate(45deg); color: var(--primary); }
.acc-panel {
  display: none;
  padding: 0 1.5rem 1.2rem;
  background: var(--surface2);
}
.acc-panel.open { display: block; }
.acc-panel p { font-family: var(--f-body); font-size: .93rem; line-height: 1.72; }

/* ── Legal Pages ────────────────────────────────────────────── */
.legal-wrap { max-width: 700px; margin: 0 auto; padding: 3.5rem 0 5rem; }
.legal-wrap h1 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin-bottom: .45rem; }
.legal-meta {
  font-family: var(--f-mono);
  font-size: .74rem;
  color: var(--muted);
  padding-bottom: 1.75rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.legal-wrap h2 { font-size: 1.2rem; margin: 2.25rem 0 .65rem; }
.legal-wrap h3 { font-family: var(--f-body); font-size: 1rem; font-weight: 700; margin: 1.4rem 0 .45rem; color: var(--fg); }
.legal-wrap p  { font-family: var(--f-body); font-size: .94rem; line-height: 1.78; margin-bottom: .9rem; color: var(--fg2); }
.legal-wrap ul, .legal-wrap ol { margin-left: 1.4rem; margin-bottom: 1rem; list-style: disc; }
.legal-wrap li { font-family: var(--f-body); font-size: .94rem; line-height: 1.72; color: var(--fg2); margin-bottom: .3rem; }
.legal-wrap ol { list-style: decimal; }
.legal-highlight {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: .9rem 1.1rem;
  margin: 1rem 0;
  font-family: var(--f-body);
  font-size: .92rem;
  color: var(--fg2);
  line-height: 1.65;
}

/* ── Packs ──────────────────────────────────────────────────── */
.packs-page {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1rem;
}
.checkout-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 2.5rem 2.25rem;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--sh-xl);
}
.checkout-logo { text-align: center; margin-bottom: 1.5rem; }
.checkout-logo .wordmark { font-size: 1.3rem; }
.checkout-pack { text-align: center; margin-bottom: 1.75rem; padding-bottom: 1.75rem; border-bottom: 1px solid var(--border); }
.pack-label { font-family: var(--f-mono); font-size: .63rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); margin-bottom: .4rem; }
.pack-name { font-family: var(--f-display); font-size: 1.3rem; font-weight: 700; color: var(--fg); margin-bottom: .25rem; }
.pack-votes { font-family: var(--f-mono); font-size: 2.7rem; font-weight: 700; color: var(--primary); line-height: 1; }
.pack-votes-label { font-family: var(--f-body); font-size: .82rem; color: var(--muted); margin-top: .2rem; }
.price-breakdown { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; margin-bottom: 1.5rem; }
.price-row { display: flex; justify-content: space-between; align-items: center; padding: .8rem 1.1rem; border-bottom: 1px solid var(--border); }
.price-row:last-child { border-bottom: none; }
.price-row.total { background: var(--primary); }
.price-row-lbl { font-family: var(--f-body); font-size: .88rem; color: var(--muted); }
.price-row.total .price-row-lbl { color: rgba(255,255,255,.75); font-weight: 600; }
.price-row-amt { font-family: var(--f-mono); font-weight: 700; font-size: .9rem; color: var(--fg); }
.price-row.total .price-row-amt { color: #fff; font-size: 1.02rem; }
.pay-btn { width: 100%; font-size: 1rem; padding: .9rem; }
.checkout-security { display: flex; align-items: center; justify-content: center; gap: .35rem; font-family: var(--f-body); font-size: .76rem; color: var(--muted); margin-top: .9rem; }
.payment-state { text-align: center; padding: 1rem 0; display: none; }
.payment-state h2 { font-size: 1.4rem; margin-bottom: .5rem; }
.payment-state p  { font-family: var(--f-body); font-size: .93rem; margin-bottom: 1.75rem; }

/* ── Misc ───────────────────────────────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.ladder-note {
  max-width: 640px; margin: 2.5rem auto 0;
  text-align: center;
  font-family: var(--f-body);
  font-size: .87rem; color: var(--muted);
  padding: .9rem 1.2rem; border-radius: var(--r-md);
  background: var(--surface2); border: 1px solid var(--border);
  line-height: 1.65;
}
.ladder-note strong { color: var(--fg); }
.section-foot-note {
  max-width: 600px; margin: 2.75rem auto 0;
  text-align: center;
  font-family: var(--f-body);
  font-size: .93rem; color: var(--muted);
  font-style: italic; line-height: 1.65;
}

/* ── Reduced motion ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .phone, .float-chip-1, .float-chip-2, .float-chip-3,
  .eyebrow-live, .cta-orb, .hero::before { animation: none !important; }
  .phone-stage .phone-outer { transform: none !important; transition: none; }
  [data-animate] { opacity: 1; transform: none; transition: none; }
}

/* ════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ════════════════════════════════════════ */

/* Large: hide some nav items if needed */
@media (max-width: 1080px) {
  .nav-links li a { font-size: .86rem; padding: .36rem .58rem; }
}

/* Tablet: hero stack, grid adjustments */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-right { order: -1; }
  .hero-desc  { max-width: none; }
  .about-split,
  .about-split.flip { grid-template-columns: 1fr; gap: 2.5rem; direction: ltr; }
}

/* Medium: nav collapses to hamburger */
@media (max-width: 780px) {
  .nav { width: calc(100% - 2rem); max-width: none; border-radius: 16px; margin: 0.5rem auto; }
  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; }
  .hero-right { display: none; }

  .mode-cards, .compare-cards { grid-template-columns: 1fr; }
  .trust-grid   { grid-template-columns: 1fr; }
  .achieve-grid { grid-template-columns: repeat(2, 1fr); }
  .diff-grid    { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

/* Small: further stacking */
@media (max-width: 560px) {
  :root { --pad: 1rem; }

  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.65rem; }

  .achieve-grid { grid-template-columns: 1fr; }
  .footer { padding-top: 2rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 1.25rem 1rem; padding-bottom: 1.5rem; }
  .footer-brand { grid-column: 1 / -1; margin-bottom: 0.25rem; }
  .footer-col h4 { margin-bottom: 0.4rem; }
  .footer-col ul { gap: 0.35rem; }
  .footer-bottom { padding: 0.75rem 0; }
  .footer-bottom .container { flex-direction: row; justify-content: space-between; align-items: center; text-align: left; gap: .5rem; }

  .waitlist-form { max-width: none; }
  .waitlist-form .waitlist-btn { flex: 1 1 100%; justify-content: center; }

  .checkout-card { padding: 1.75rem 1.2rem; }

  .rank-path { padding: .5rem 0; }
  .rank-step-icon { width: 52px; height: 52px; }

  .float-chip-1 { left: -6px; font-size: .6rem; padding: .36rem .65rem; }
  .float-chip-2 { right: -6px; font-size: .6rem; padding: .36rem .65rem; }
  .float-chip-3 { left: -4px; font-size: .6rem; padding: .36rem .65rem; }

  .mode-card { padding: 1.6rem; }
  .trust-item { padding: 1.4rem; }
}

/* XS: 375px */
@media (max-width: 400px) {
  h1 { font-size: 2rem; }
  .section { padding: clamp(2.5rem, 7vw, 4rem) 0; }
  .achieve-grid { gap: 1rem; }
  .mode-cards   { gap: 1rem; }
}

/* ── World-Class Website Level Modal Popup ─────────────────── */
.web-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(26, 17, 11, 0.45);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s;
}
.web-modal-backdrop.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.web-modal-card {
  position: relative;
  background: #FFFFFF;
  border-radius: 28px;
  padding: 2.75rem 2.25rem 2.25rem;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 30px 90px rgba(114, 56, 61, 0.22), 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.9);
  transform: scale(0.92) translateY(12px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.web-modal-backdrop.open .web-modal-card {
  transform: scale(1) translateY(0);
}
.web-modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #F5F2EE;
  color: #6E6560;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.18s;
}
.web-modal-close:hover {
  background: #72383D;
  color: #FFFFFF;
  transform: rotate(90deg);
}
.web-modal-icon-ring {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #72383D 0%, #5A2A2E 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.4rem;
  box-shadow: 0 0 0 8px rgba(114, 56, 61, 0.12), 0 8px 24px rgba(114, 56, 61, 0.25);
}
.web-modal-title {
  font-family: var(--f-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.web-modal-desc {
  font-family: var(--f-body);
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 1.75rem;
}
.web-modal-btn {
  width: 100%;
  padding: 0.95rem 1.5rem;
  border-radius: 14px;
  background: var(--primary);
  color: #FFFFFF;
  font-family: var(--f-body);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(114, 56, 61, 0.25);
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
}
.web-modal-btn:hover {
  background: var(--primary-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(114, 56, 61, 0.35);
}

/* ── Waitlist Success State ─────────────────────────────────── */
.wl-success-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 6px 6px;
  gap: 6px;
}
.wl-success-in {
  animation: wl-pop-in .42s cubic-bezier(.16,1,.3,1) both;
}
@keyframes wl-pop-in {
  from { opacity: 0; transform: scale(.88) translateY(8px); }
  to   { opacity: 1; transform: none; }
}
.wl-success-ring {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #EAF4EE;
  border: 1.5px solid #BFE0CB;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2px;
}
.wl-success-title {
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 600;
  color: #1C1714;
  margin: 0;
}
.wl-success-sub {
  font-family: var(--f-body);
  font-size: 9px;
  color: #7A746E;
  line-height: 1.5;
  margin: 0;
  max-width: 180px;
}
.wl-success-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #F5F0EB;
  border: 1px solid #E4DDD5;
  border-radius: 20px;
  padding: 3px 9px;
  font-family: var(--f-mono);
  font-size: 7.5px;
  font-weight: 600;
  letter-spacing: .06em;
  color: #72383D;
  text-transform: uppercase;
  margin-top: 2px;
}

/* ── Cookie Consent Banner ──────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 9000;
  width: calc(100% - 2.5rem);
  max-width: 620px;
  background: var(--fg);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,.22);
  transition: transform .35s cubic-bezier(.16,1,.3,1), opacity .3s;
  opacity: 0;
}
.cookie-banner.cookie-in {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
.cookie-banner.cookie-out {
  transform: translateX(-50%) translateY(120%);
  opacity: 0;
}
.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .9rem 1.25rem;
}
.cookie-text {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex: 1;
  min-width: 0;
}
.cookie-text svg { flex-shrink: 0; color: rgba(255,255,255,.55); }
.cookie-text p {
  font-family: var(--f-body);
  font-size: .83rem;
  color: rgba(255,255,255,.8);
  margin: 0;
  line-height: 1.45;
}
.cookie-text a {
  color: rgba(255,255,255,.9);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-actions {
  display: flex;
  gap: .5rem;
  flex-shrink: 0;
}
.cookie-btn {
  padding: .45rem .95rem;
  border-radius: 9px;
  font-family: var(--f-body);
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background .18s, transform .15s;
}
.cookie-btn:hover { transform: translateY(-1px); }
.cookie-accept {
  background: #fff;
  color: var(--primary);
}
.cookie-accept:hover { background: #f5f0eb; }
.cookie-decline {
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.75);
}
.cookie-decline:hover { background: rgba(255,255,255,.2); }

@media (max-width: 540px) {
  .cookie-inner { flex-direction: column; align-items: flex-start; gap: .75rem; }
  .cookie-actions { width: 100%; justify-content: flex-end; }
}
