/* ============================================================
   TenX AI — Dark Theme Landing Page
   ============================================================ */

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

:root {
  --bg:         #080810;
  --bg2:        #0d0d1a;
  --bg3:        #111127;
  --card:       rgba(18,18,32,0.4);
  --card-solid: rgba(19,19,32,0.6);
  --border:     rgba(255,255,255,.07);
  --border2:    rgba(255,255,255,.11);
  --orange:     #f97316;
  --orange2:    #fb923c;
  --text:       #f1f5f9;
  --text2:      #94a3b8;
  --text3:      #64748b;
  --radius:     16px;
  --radius-lg:  24px;
  --radius-xl:  32px;
  --shadow:     0 8px 40px rgba(0,0,0,.5);
  --font:       'Inter', system-ui, sans-serif;
  --font-heading: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  --nav-h:      72px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.65;
  word-break: normal;
  overflow-wrap: break-word;
}

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,.12); border-radius: 3px; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ────────────────────────────────────────────────
   Typography Scale
──────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text);
}

p { line-height: 1.7; }

/* ────────────────────────────────────────────────
   Utilities
──────────────────────────────────────────────── */
.text-gradient {
  background: linear-gradient(135deg, #f97316 0%, #fb923c 45%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: .9rem;
  padding: 10px 22px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all .25s ease;
  white-space: nowrap;
  letter-spacing: -.01em;
}
.btn--orange {
  background: linear-gradient(135deg, #f97316, #fb923c);
  color: #fff;
  box-shadow: 0 4px 24px rgba(249,115,22,.35);
}
.btn--orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(249,115,22,.5);
  background: linear-gradient(135deg, #ea6c0d, #f97316);
}
.btn--ghost {
  background: rgba(255,255,255,.06);
  color: var(--text);
  border: 1px solid var(--border2);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.11);
  border-color: rgba(255,255,255,.2);
  transform: translateY(-2px);
}
.btn--lg { padding: 15px 30px; font-size: 1.02rem; border-radius: 12px; }

/* ────────────────────────────────────────────────
   NAV
──────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background .3s, border-color .3s;
}
.nav.scrolled {
  background: rgba(8,8,16,.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 28px;
  width: 100%;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -.02em;
  flex-shrink: 0;
}
.logo-ai { color: var(--orange); }
.nav__badge {
  background: rgba(249,115,22,.14);
  color: var(--orange);
  border: 1px solid rgba(249,115,22,.28);
  padding: 2px 9px;
  border-radius: 20px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .5px;
  font-family: var(--font);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav__links a {
  color: var(--text2);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all .2s;
}
.nav__links a:hover {
  color: var(--text);
  background: rgba(255,255,255,.07);
}
.nav__cta { margin-left: 12px; }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav__hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(8,8,16,.97);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  flex-direction: column;
  padding: 16px 20px 24px;
  gap: 4px;
  z-index: 99;
}
.nav__mobile a {
  color: var(--text);
  text-decoration: none;
  padding: 13px 16px;
  border-radius: 10px;
  font-weight: 500;
  transition: background .2s;
}
.nav__mobile a:hover { background: rgba(255,255,255,.07); }
.nav__mobile.open { display: flex; }

/* ────────────────────────────────────────────────
   SECTION COMMON
──────────────────────────────────────────────── */
section {
  padding: 100px 0;
  position: relative;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-eyebrow {
  display: inline-block;
  font-family: var(--font);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3.8vw, 2.85rem);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 18px;
  letter-spacing: -0.015em;
  color: var(--text);
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text2);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75;
  font-weight: 400;
}

/* ────────────────────────────────────────────────
   HERO
──────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: calc(var(--nav-h) + 60px);
  padding-bottom: 80px;
  overflow: hidden;
}
.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(249,115,22,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249,115,22,.035) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black, transparent);
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black, transparent);
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .45;
  pointer-events: none;
  will-change: transform;
}
.hero__orb--1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(249,115,22,.22) 0%, transparent 70%);
  top: -200px; left: 50%;
  transform: translateX(-50%);
}
.hero__orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(139,92,246,.18) 0%, transparent 70%);
  bottom: 0; left: -100px;
}
.hero__orb--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(59,130,246,.14) 0%, transparent 70%);
  top: 30%; right: -50px;
}
.hero__inner {
  text-align: center;
  position: relative;
  z-index: 2;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(249,115,22,.09);
  border: 1px solid rgba(249,115,22,.22);
  color: var(--orange2);
  padding: 9px 20px;
  border-radius: 30px;
  font-family: var(--font);
  font-size: .84rem;
  font-weight: 600;
  margin-bottom: 28px;
}
.badge__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 8px var(--orange);
  animation: pulse-dot 2s infinite;
  flex-shrink: 0;
}
.badge__dot--white {
  background: #fff;
  box-shadow: 0 0 8px rgba(255,255,255,.5);
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.4); }
}
.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  color: var(--text);
}
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: var(--text2);
  max-width: 540px;
  margin: 0 auto 44px;
  line-height: 1.75;
  font-weight: 400;
}
.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

/* Floating cards */
.hero__float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(17,17,38,.88);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border2);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.45);
  z-index: 3;
  animation: float-y 4s ease-in-out infinite;
}
.float-card--1 {
  left: max(24px, 8%);
  bottom: 13%;
  animation-delay: 0s;
}
.float-card--2 {
  right: max(24px, 8%);
  bottom: 21%;
  animation-delay: 1.6s;
}
@keyframes float-y {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.fc-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.fc-dot--green { background: #22c55e; box-shadow: 0 0 8px #22c55e; }
.fc-icon { font-size: 1.4rem; }
.fc-text { display: flex; flex-direction: column; gap: 2px; }
.fc-text strong { font-size: .85rem; font-weight: 600; color: var(--text); }
.fc-text span { font-size: .74rem; color: var(--text2); }

/* ────────────────────────────────────────────────
   ALICE
──────────────────────────────────────────────── */
.alice {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
}
.alice__grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: start;
}
.alice__profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.alice__avatar-wrap {
  position: relative;
  width: 160px; height: 160px;
}
.alice__avatar-ring {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 2px solid transparent;
  background: conic-gradient(from 0deg, var(--orange), #8b5cf6, #3b82f6, var(--orange)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: spin-ring 8s linear infinite;
}
@keyframes spin-ring { to { transform: rotate(360deg); } }
.alice__avatar {
  width: 160px; height: 160px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #1e1e3f, #111127);
  display: flex;
  align-items: center;
  justify-content: center;
}
.alice__status-badge {
  position: absolute;
  bottom: 8px; right: 8px;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(34,197,94,.28);
  border-radius: 20px;
  padding: 4px 10px;
  font-size: .7rem;
  font-weight: 600;
  color: #22c55e;
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font);
}
.pulse-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse-dot 1.5s infinite;
}
.alice__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 100%;
}
.astat {
  background: rgba(19,19,32,.65);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 10px;
  text-align: center;
  transition: all .25s;
}
.astat:hover {
  border-color: rgba(249,115,22,.28);
  background: rgba(249,115,22,.05);
}
.astat__num {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.01em;
}
.astat__unit { font-size: .82rem; color: var(--text2); font-weight: 500; }
.astat p { font-family: var(--font); font-size: .73rem; color: var(--text3); margin-top: 5px; font-weight: 500; }

.alice__features h3 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text);
  letter-spacing: -.02em;
}
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(19,19,32,.6);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 18px;
  transition: all .25s;
}
.feature-item:hover {
  border-color: rgba(249,115,22,.22);
  background: rgba(249,115,22,.04);
  transform: translateX(4px);
}
.fi-icon { font-size: 1.35rem; flex-shrink: 0; margin-top: 2px; }
.feature-item strong {
  display: block;
  font-size: .92rem;
  font-weight: 600;
  margin-bottom: 3px;
  color: var(--text);
  font-family: var(--font);
}
.feature-item p { font-size: .83rem; color: var(--text2); line-height: 1.55; }

/* ────────────────────────────────────────────────
   HOW SHE WORKS
──────────────────────────────────────────────── */
.how { background: var(--bg); }
.how__steps {
  display: flex;
  flex-direction: column;
  gap: 72px;
}

/* Desktop layout: step-num | content | visual  (3 cols)   */
.how-step {
  display: grid;
  grid-template-columns: 52px 1fr 1fr;
  grid-template-rows: auto;
  column-gap: 44px;
  row-gap: 0;
  align-items: center;
}
.how-step .step-num    { grid-column: 1; grid-row: 1; align-self: start; padding-top: 4px; }
.how-step .step-content { grid-column: 2; grid-row: 1; }
.how-step .step-visual  { grid-column: 3; grid-row: 1; }

/* Reverse: visual | content  (swap cols 2 & 3)            */
.how-step--reverse .step-content { grid-column: 3; grid-row: 1; }
.how-step--reverse .step-visual  { grid-column: 2; grid-row: 1; }

.step-num {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(249,115,22,.1);
  line-height: 1;
  width: 52px;
  text-align: center;
}
.step-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.step-icon--blue   { background: rgba(59,130,246,.14);  color: #3b82f6; }
.step-icon--orange { background: rgba(249,115,22,.14);  color: var(--orange); }
.step-icon--purple { background: rgba(139,92,246,.14);  color: #8b5cf6; }
.step-content h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: var(--text);
}
.step-content p {
  color: var(--text2);
  line-height: 1.75;
  font-size: .95rem;
  font-weight: 400;
}

/* Step visual card */
.step-visual {
  background: rgba(19,19,32,.6);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  backdrop-filter: blur(12px);
}

/* Chat bubbles */
.chat-bubble {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  align-items: flex-end;
}
.chat-bubble--out { flex-direction: row-reverse; }
.cb-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: .72rem;
  font-weight: 700;
  flex-shrink: 0;
  color: var(--text);
}
.cb-avatar--alice { background: linear-gradient(135deg, #f97316, #fb923c); color: #fff; }
.cb-msg {
  background: rgba(255,255,255,.07);
  border-radius: 14px 14px 14px 4px;
  padding: 9px 13px;
  font-size: .83rem;
  color: var(--text);
  line-height: 1.5;
  max-width: 230px;
}
.chat-bubble--out .cb-msg {
  background: rgba(249,115,22,.14);
  border-radius: 14px 14px 4px 14px;
  color: var(--orange2);
}

/* Booking card */
.booking-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border2);
}
.bk-header {
  background: rgba(34,197,94,.09);
  padding: 11px 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: .87rem;
  font-weight: 600;
  color: #22c55e;
  border-bottom: 1px solid var(--border);
}
.bk-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.bk-dot--green { background: #22c55e; }
.bk-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 15px;
  border-bottom: 1px solid var(--border);
  font-family: var(--font);
  font-size: .83rem;
  gap: 12px;
}
.bk-row:last-child { border-bottom: none; }
.bk-row > span:first-child { color: var(--text2); white-space: nowrap; }
.bk-row strong { color: var(--text); text-align: right; }
.bk-status { color: #22c55e; font-weight: 600; }

/* Resolve card */
.resolve-card {
  display: flex;
  gap: 14px;
  align-items: center;
  background: rgba(34,197,94,.06);
  border: 1px solid rgba(34,197,94,.18);
  border-radius: 14px;
  padding: 14px 18px;
  margin-bottom: 14px;
}
.rc-icon { font-size: 1.8rem; flex-shrink: 0; }
.rc-body strong { display: block; font-family: var(--font); font-size: .92rem; font-weight: 600; margin-bottom: 3px; }
.rc-body p { font-size: .78rem; color: var(--text2); }
.rc-stars { color: #fbbf24; font-size: .95rem; margin-top: 4px; }
.resolve-log { display: flex; flex-direction: column; gap: 9px; }
.rlog-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-size: .8rem;
  color: var(--text2);
  flex-wrap: nowrap;
}
.rlog-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--text3); flex-shrink: 0; }
.rlog-dot--orange { background: var(--orange); }
.rlog-dot--green  { background: #22c55e; }
.rlog-time { margin-left: auto; color: var(--text3); font-size: .74rem; white-space: nowrap; }

/* ────────────────────────────────────────────────
   FEATURES
──────────────────────────────────────────────── */
.features { background: var(--bg2); }
.features__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(249,115,22,.055) 0%, transparent 60%);
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
  z-index: 1;
}
.feat-card {
  background: rgba(255,255,255,.028);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  transition: all .3s ease;
  cursor: default;
}
.feat-card:hover {
  background: rgba(255,255,255,.055);
  border-color: rgba(255,255,255,.14);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.3);
}
.feat-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
/* Icon background colors — using rgba directly, no color-mix */
.feat-icon[style*="--ic:#f97316"] { background: rgba(249,115,22,.14); color: #f97316; }
.feat-icon[style*="--ic:#3b82f6"] { background: rgba(59,130,246,.14);  color: #3b82f6; }
.feat-icon[style*="--ic:#10b981"] { background: rgba(16,185,129,.14);  color: #10b981; }
.feat-icon[style*="--ic:#8b5cf6"] { background: rgba(139,92,246,.14);  color: #8b5cf6; }
.feat-icon[style*="--ic:#f43f5e"] { background: rgba(244,63,94,.14);   color: #f43f5e; }
.feat-icon[style*="--ic:#06b6d4"] { background: rgba(6,182,212,.14);   color: #06b6d4; }
.feat-icon[style*="--ic:#eab308"] { background: rgba(234,179,8,.14);   color: #eab308; }
.feat-icon[style*="--ic:#ec4899"] { background: rgba(236,72,153,.14);  color: #ec4899; }
.feat-card h4 {
  font-family: var(--font);
  font-size: .92rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
  letter-spacing: -.01em;
}
.feat-card p { font-size: .83rem; color: var(--text2); line-height: 1.6; }

/* ────────────────────────────────────────────────
   CHANNELS
──────────────────────────────────────────────── */
.channels { background: var(--bg); }
.channels__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.channel-card {
  background: rgba(255,255,255,.028);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .3s;
}
.channel-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,.4); }
.channel-card--voice:hover    { border-color: rgba(239,68,68,.28); }
.channel-card--sms:hover      { border-color: rgba(59,130,246,.28); }
.channel-card--email:hover    { border-color: rgba(234,179,8,.28); }
.channel-card--whatsapp:hover { border-color: rgba(34,197,94,.28); }

.ch-phone {
  background: linear-gradient(180deg, rgba(255,255,255,.048) 0%, rgba(255,255,255,.018) 100%);
  padding: 20px;
  border-bottom: 1px solid var(--border);
  min-height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ch-phone__screen {
  background: var(--bg);
  border: 1px solid var(--border2);
  border-radius: 13px;
  padding: 14px;
  width: 100%;
}
/* Call UI */
.call-ui { text-align: center; }
.call-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ef4444, #f97316);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin: 0 auto 8px;
}
.call-name   { font-family: var(--font); font-size: .78rem; font-weight: 600; color: var(--text); }
.call-status { font-family: var(--font); font-size: .7rem; color: var(--text2); margin-bottom: 8px; }
.call-wave {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  height: 22px;
  margin-bottom: 12px;
}
.call-wave span {
  display: block;
  width: 4px;
  background: #ef4444;
  border-radius: 2px;
  animation: wave 1.2s ease-in-out infinite;
}
.call-wave span:nth-child(1) { animation-delay: 0s; }
.call-wave span:nth-child(2) { animation-delay: .1s; }
.call-wave span:nth-child(3) { animation-delay: .2s; }
.call-wave span:nth-child(4) { animation-delay: .3s; }
.call-wave span:nth-child(5) { animation-delay: .4s; }
@keyframes wave { 0%,100% { height: 5px; } 50% { height: 18px; } }
.call-actions { display: flex; justify-content: center; gap: 18px; }
.call-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: .85rem;
  transition: transform .2s;
}
.call-btn:hover { transform: scale(1.1); }
.call-btn--end    { background: #ef4444; color: #fff; }
.call-btn--accept { background: #22c55e; color: #fff; }

/* SMS UI */
.sms-header {
  font-family: var(--font);
  font-size: .72rem;
  font-weight: 600;
  color: var(--text2);
  text-align: center;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.sms-msg {
  font-family: var(--font);
  font-size: .76rem;
  padding: 7px 11px;
  border-radius: 12px;
  margin-bottom: 7px;
  line-height: 1.45;
}
.sms-msg--in  { background: rgba(255,255,255,.07); color: var(--text); max-width: 82%; border-bottom-left-radius: 4px; }
.sms-msg--out { background: rgba(59,130,246,.18);  color: #93c5fd; max-width: 90%; margin-left: auto; text-align: right; border-bottom-right-radius: 4px; }

/* Email UI */
.email-header { display: flex; align-items: center; gap: 10px; margin-bottom: 9px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }
.email-icon { font-size: 1.15rem; }
.email-header strong { display: block; font-family: var(--font); font-size: .77rem; font-weight: 600; color: var(--text); }
.email-header span   { font-family: var(--font); font-size: .68rem; color: var(--text2); }
.email-subject { font-family: var(--font); font-size: .77rem; font-weight: 600; color: var(--text); margin-bottom: 7px; }
.email-body    { font-family: var(--font); font-size: .73rem; color: var(--text2); line-height: 1.5; }

/* WhatsApp UI */
.wa-header { display: flex; align-items: center; gap: 10px; padding-bottom: 8px; margin-bottom: 9px; border-bottom: 1px solid rgba(34,197,94,.14); }
.wa-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font); font-size: .76rem; font-weight: 700;
  color: #fff; flex-shrink: 0;
}
.wa-header strong { display: block; font-family: var(--font); font-size: .77rem; font-weight: 600; color: var(--text); }
.wa-header span   { font-family: var(--font); font-size: .68rem; color: #22c55e; }
.wa-brand { margin-left: auto; font-size: .82rem; color: #22c55e; }
.wa-msg {
  font-family: var(--font); font-size: .76rem;
  padding: 7px 11px; border-radius: 12px;
  margin-bottom: 7px; line-height: 1.45;
}
.wa-msg--in  { background: rgba(255,255,255,.07); color: var(--text); max-width: 78%; border-bottom-left-radius: 4px; }
.wa-msg--out { background: rgba(37,211,102,.14);  color: #4ade80;   max-width: 90%; margin-left: auto; text-align: right; border-bottom-right-radius: 4px; }

/* Channel info */
.ch-info { padding: 18px 20px; }
.ch-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 10px;
}
.ch-icon--voice { background: rgba(239,68,68,.14); color: #ef4444; }
.ch-icon--sms   { background: rgba(59,130,246,.14); color: #3b82f6; }
.ch-icon--email { background: rgba(234,179,8,.14);  color: #eab308; }
.ch-icon--wa    { background: rgba(34,197,94,.14);  color: #22c55e; }
.ch-info h4 { font-family: var(--font); font-size: .97rem; font-weight: 700; margin-bottom: 6px; letter-spacing: -.01em; }
.ch-info p  { font-size: .83rem; color: var(--text2); line-height: 1.55; }

/* ────────────────────────────────────────────────
   WHY ALICE
──────────────────────────────────────────────── */
.why { background: var(--bg2); }
.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 56px;
}
.why-card {
  background: rgba(255,255,255,.028);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: all .3s;
}
.why-card--featured {
  background: rgba(249,115,22,.055);
  border-color: rgba(249,115,22,.18);
}
.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,.14);
  box-shadow: 0 20px 50px rgba(0,0,0,.28);
}
.wc-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.wc-icon[style*="--c:#f97316"] { background: rgba(249,115,22,.12); color: #f97316; }
.wc-icon[style*="--c:#3b82f6"] { background: rgba(59,130,246,.12);  color: #3b82f6; }
.wc-icon[style*="--c:#10b981"] { background: rgba(16,185,129,.12);  color: #10b981; }
.wc-icon[style*="--c:#8b5cf6"] { background: rgba(139,92,246,.12);  color: #8b5cf6; }
.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  color: var(--text);
}
.why-card p { font-size: .88rem; color: var(--text2); line-height: 1.7; margin-bottom: 18px; }
.wc-metric  { display: flex; align-items: baseline; gap: 7px; }
.wm-num {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.015em;
}
.wm-label { font-family: var(--font); font-size: .78rem; color: var(--text3); }

/* Testimonial */
.testimonial {
  background: rgba(255,255,255,.025);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px 56px;
  position: relative;
  overflow: hidden;
}
.testimonial::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}
.testimonial__quote {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  color: var(--orange);
  opacity: .25;
  line-height: .8;
  margin-bottom: 10px;
}
.testimonial__text {
  font-size: 1.12rem;
  line-height: 1.78;
  color: var(--text);
  margin-bottom: 28px;
  max-width: 700px;
  font-style: italic;
  font-weight: 400;
}
.testimonial__author { display: flex; align-items: center; gap: 16px; }
.ta-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f97316, #8b5cf6);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font); font-weight: 700; font-size: .88rem;
  color: #fff; flex-shrink: 0;
}
.testimonial__author strong { display: block; font-family: var(--font); font-size: .93rem; font-weight: 600; }
.testimonial__author span   { font-family: var(--font); font-size: .8rem; color: var(--text2); }

/* ────────────────────────────────────────────────
   CTA SECTION
──────────────────────────────────────────────── */
.cta-section {
  background: var(--bg);
  padding: 120px 0;
  overflow: hidden;
}
.cta__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 100%, rgba(249,115,22,.1) 0%, transparent 60%),
    linear-gradient(180deg, transparent 0%, rgba(249,115,22,.035) 100%);
}
.cta__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .28;
  pointer-events: none;
}
.cta__orb--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(249,115,22,.28) 0%, transparent 70%);
  bottom: -200px; left: -100px;
}
.cta__orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(139,92,246,.18) 0%, transparent 70%);
  bottom: -150px; right: -100px;
}
.cta__inner { position: relative; z-index: 2; text-align: center; }
.cta__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.065);
  border: 1px solid rgba(255,255,255,.11);
  color: var(--text2);
  padding: 8px 18px;
  border-radius: 30px;
  font-family: var(--font);
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: 28px;
}
.cta__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--text);
}
.cta__sub {
  font-size: 1.02rem;
  color: var(--text2);
  max-width: 460px;
  margin: 0 auto 40px;
  line-height: 1.75;
  font-weight: 400;
}
.cta__form {
  display: flex;
  max-width: 480px;
  margin: 0 auto 18px;
  gap: 12px;
}
.cta__input {
  flex: 1;
  background: rgba(255,255,255,.055);
  border: 1px solid var(--border2);
  border-radius: 12px;
  padding: 14px 18px;
  font-family: var(--font);
  font-size: .97rem;
  color: var(--text);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  min-width: 0;
}
.cta__input::placeholder { color: var(--text3); }
.cta__input:focus {
  border-color: rgba(249,115,22,.45);
  box-shadow: 0 0 0 3px rgba(249,115,22,.09);
}
.cta__disclaimer { font-family: var(--font); font-size: .8rem; color: var(--text3); }

/* ────────────────────────────────────────────────
   FOOTER
──────────────────────────────────────────────── */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}
.footer__brand {
  margin-bottom: 32px;
}
.footer__brand p {
  margin-top: 12px;
  font-family: var(--font);
  font-size: .86rem;
  color: var(--text2);
  line-height: 1.7;
  max-width: 320px;
}
.footer__bottom {
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid var(--border);
}
.footer__bottom p {
  font-family: var(--font);
  font-size: .82rem;
  color: var(--text3);
}

/* ────────────────────────────────────────────────
   SCROLL ANIMATIONS
──────────────────────────────────────────────── */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal-left  { transform: translateX(-36px); }
.reveal-right { transform: translateX(36px); }
.revealed { opacity: 1 !important; transform: translate(0) !important; }

/* Toast */
.toast {
  position: fixed;
  bottom: 28px; right: 28px;
  background: #22c55e;
  color: #fff;
  padding: 15px 22px;
  border-radius: 14px;
  font-family: var(--font);
  font-weight: 600;
  font-size: .88rem;
  box-shadow: 0 8px 30px rgba(0,0,0,.3);
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all .4s cubic-bezier(.34,1.56,.64,1);
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ────────────────────────────────────────────────
   RESPONSIVE — 1200px
──────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .container { padding: 0 24px; }
}

/* ────────────────────────────────────────────────
   RESPONSIVE — 1024px
──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .features__grid { grid-template-columns: repeat(3, 1fr); }
  .why__grid      { grid-template-columns: repeat(2, 1fr); }
  .channels__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ────────────────────────────────────────────────
   RESPONSIVE — 900px (Tablet)
──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .container { padding: 0 20px; }
  section { padding: 80px 0; }

  /* Alice */
  .alice__grid { grid-template-columns: 1fr; gap: 48px; }
  .alice__profile { flex-direction: row; align-items: center; flex-wrap: wrap; gap: 24px; }
  .alice__avatar-wrap { width: 130px; height: 130px; }
  .alice__avatar { width: 130px; height: 130px; }

  /* How steps — stack visual below content, keep 2-col (num + content/visual) */
  .how-step {
    grid-template-columns: 44px 1fr;
    column-gap: 24px;
    row-gap: 24px;
  }
  .how-step .step-num     { grid-column: 1; grid-row: 1; }
  .how-step .step-content { grid-column: 2; grid-row: 1; }
  .how-step .step-visual  { grid-column: 2; grid-row: 2; }

  /* Reverse — same layout as regular on tablet */
  .how-step--reverse .step-num     { grid-column: 1; grid-row: 1; }
  .how-step--reverse .step-content { grid-column: 2; grid-row: 1; }
  .how-step--reverse .step-visual  { grid-column: 2; grid-row: 2; }

  .testimonial { padding: 32px 28px; }
}

/* ────────────────────────────────────────────────
   RESPONSIVE — 700px (Mobile)
──────────────────────────────────────────────── */
@media (max-width: 700px) {
  .container { padding: 0 16px; }
  section { padding: 64px 0; }

  /* Nav */
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  /* Hero */
  .hero { padding-top: calc(var(--nav-h) + 32px); padding-bottom: 48px; }
  .hero__title { letter-spacing: -.03em; }
  .float-card--1, .float-card--2 { display: none; }
  .hero__orb--2, .hero__orb--3 { display: none; }

  /* Alice */
  .alice__grid { gap: 36px; }
  .alice__profile { flex-direction: column; align-items: center; }
  .alice__stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .astat__num { font-size: 1.4rem; }

  /* How steps — fully stacked flex column */
  .how-step,
  .how-step--reverse {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .how-step .step-num,
  .how-step--reverse .step-num { font-size: 2.8rem; width: auto; }
  .how-step .step-content,
  .how-step .step-visual,
  .how-step--reverse .step-content,
  .how-step--reverse .step-visual {
    grid-column: unset;
    grid-row: unset;
    order: unset;
    width: 100%;
  }
  .how__steps { gap: 56px; }

  /* Features */
  .features__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  /* Channels */
  .channels__grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }

  /* Why */
  .why__grid { grid-template-columns: 1fr; gap: 16px; }

  /* CTA */
  .cta__form { flex-direction: column; }
  .cta-section { padding: 80px 0; }

  .footer__brand p { max-width: 100%; }
}

/* ────────────────────────────────────────────────
   RESPONSIVE — 480px (Small Mobile)
──────────────────────────────────────────────── */
@media (max-width: 480px) {
  .features__grid { grid-template-columns: 1fr; gap: 12px; }
  .hero__actions  { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; justify-content: center; max-width: 320px; }
  .section-title  { font-size: clamp(1.75rem, 7vw, 2.2rem); letter-spacing: -0.01em; }
  .cta__title     { font-size: clamp(1.9rem, 8vw, 2.6rem); letter-spacing: -0.015em; }
  .testimonial    { padding: 24px 20px; }
  .testimonial__text { font-size: 1rem; }
}

/* ────────────────────────────────────────────────
   CTA main button
──────────────────────────────────────────────── */
.cta__main-btn {
  font-size: 1.05rem;
  padding: 16px 36px;
  border-radius: 14px;
  margin-bottom: 20px;
}

/* ════════════════════════════════════════════════
   WAITLIST MODAL
════════════════════════════════════════════════ */

/* Overlay */
.wl-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.wl-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* Modal card */
.wl-modal {
  position: relative;
  background: #0f0f1e;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 28px;
  padding: 48px 44px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 40px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(249,115,22,.08);
  transform: translateY(24px) scale(.97);
  transition: transform .35s cubic-bezier(.34,1.36,.64,1), opacity .3s ease;
  overflow: hidden;
}
.wl-modal::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #f97316, #fb923c, #fbbf24);
  border-radius: 28px 28px 0 0;
}
.wl-modal::after {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(249,115,22,.1) 0%, transparent 70%);
  pointer-events: none;
}
.wl-overlay.open .wl-modal {
  transform: translateY(0) scale(1);
}

/* Close button */
.wl-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--text2);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all .2s;
  z-index: 2;
}
.wl-close:hover {
  background: rgba(255,255,255,.13);
  color: var(--text);
  transform: rotate(90deg);
}

/* Header */
.wl-header { text-align: center; margin-bottom: 32px; }
.wl-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: rgba(249,115,22,.14);
  color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 0 24px rgba(249,115,22,.2);
}
.wl-header h2 {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  color: var(--text);
}
.wl-header p {
  font-size: .92rem;
  color: var(--text2);
  line-height: 1.6;
}

/* Form fields */
.wl-form { display: flex; flex-direction: column; gap: 18px; }
.wl-field { display: flex; flex-direction: column; gap: 7px; }
.wl-field label {
  font-family: var(--font);
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: .01em;
}
.wl-req     { color: var(--orange); }
.wl-optional { color: var(--text3); font-weight: 400; font-size: .78rem; }

/* Input wrapper */
.wl-input-wrap,
.wl-select-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.wl-input-icon {
  position: absolute;
  left: 14px;
  color: var(--text3);
  pointer-events: none;
  flex-shrink: 0;
}
.wl-input-wrap input,
.wl-select-wrap select {
  width: 100%;
  background: rgba(255,255,255,.055);
  border: 1.5px solid rgba(255,255,255,.09);
  border-radius: 12px;
  padding: 13px 16px 13px 42px;
  font-family: var(--font);
  font-size: .93rem;
  color: var(--text);
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
  -webkit-appearance: none;
  appearance: none;
}
.wl-input-wrap input::placeholder { color: var(--text3); }
.wl-input-wrap input:focus,
.wl-select-wrap select:focus {
  border-color: rgba(249,115,22,.5);
  box-shadow: 0 0 0 3px rgba(249,115,22,.1);
  background: rgba(249,115,22,.04);
}
.wl-select-wrap select option { background: #0f0f1e; color: var(--text); }
.wl-select-arrow {
  position: absolute;
  right: 14px;
  color: var(--text3);
  pointer-events: none;
}

/* Field error state */
.wl-field.has-error .wl-input-wrap input,
.wl-field.has-error .wl-select-wrap select {
  border-color: rgba(239,68,68,.5);
  box-shadow: 0 0 0 3px rgba(239,68,68,.1);
}
.wl-error {
  font-family: var(--font);
  font-size: .78rem;
  color: #f87171;
  min-height: 16px;
  display: block;
}

/* Submit button */
.wl-submit {
  position: relative;
  width: 100%;
  padding: 15px 24px;
  background: linear-gradient(135deg, #f97316, #fb923c);
  border: none;
  border-radius: 12px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 24px rgba(249,115,22,.35);
  transition: all .25s ease;
  margin-top: 6px;
  overflow: hidden;
}
.wl-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(249,115,22,.5);
}
.wl-submit:disabled {
  opacity: .7;
  cursor: not-allowed;
  transform: none;
}
.wl-submit-arrow { display: flex; align-items: center; transition: transform .2s; }
.wl-submit:hover:not(:disabled) .wl-submit-arrow { transform: translateX(3px); }

/* Spinner */
.wl-spinner {
  display: none;
  width: 18px; height: 18px;
  border: 2.5px solid rgba(255,255,255,.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin-ring .7s linear infinite;
}
.wl-submit.loading .wl-submit-label,
.wl-submit.loading .wl-submit-arrow { display: none; }
.wl-submit.loading .wl-spinner { display: block; }

/* Note */
.wl-note {
  text-align: center;
  font-family: var(--font);
  font-size: .78rem;
  color: var(--text3);
  margin-top: 14px;
}

/* ── Success state ── */
.wl-success-state {
  display: none;
  text-align: center;
  animation: fade-in-up .5s ease forwards;
}
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.wl-success-ring {
  width: 80px; height: 80px;
  margin: 0 auto 24px;
}
.wl-checkmark {
  width: 80px; height: 80px;
}
.wl-checkmark__circle {
  stroke: var(--orange);
  stroke-width: 2;
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  animation: stroke-circle .6s cubic-bezier(.65,0,.45,1) forwards;
}
.wl-checkmark__check {
  stroke: var(--orange);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke-check .4s cubic-bezier(.65,0,.45,1) .6s forwards;
}
@keyframes stroke-circle {
  to { stroke-dashoffset: 0; }
}
@keyframes stroke-check {
  to { stroke-dashoffset: 0; }
}
.wl-success-state h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.wl-success-state > p {
  font-size: .93rem;
  color: var(--text2);
  line-height: 1.65;
  margin-bottom: 28px;
}
.wl-success-state > p strong { color: var(--orange); }

/* Perks */
.wl-success-perks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 28px;
  text-align: left;
}
.wl-perk {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font);
  font-size: .88rem;
  color: var(--text);
}
.wl-perk-icon { font-size: 1.1rem; flex-shrink: 0; }

/* Done button */
.wl-done-btn {
  width: 100%;
  padding: 13px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  font-family: var(--font);
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: all .2s;
}
.wl-done-btn:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.18);
}

/* Modal responsive */
@media (max-width: 520px) {
  .wl-modal { padding: 36px 24px; border-radius: 22px; }
  .wl-header h2 { font-size: 1.45rem; }
}
