/* ============================================================
   Communication Mall — VoiceAI
   Monochrome dark + glow design system
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500;600;700&family=Hanken+Grotesk:wght@300;400;500;600;700&family=Geist+Mono:wght@400;500&display=swap');

:root {
  --bg: #050506;
  --bg-soft: #0a0a0c;
  --panel: rgba(255, 255, 255, 0.022);
  --panel-2: rgba(255, 255, 255, 0.045);
  --panel-3: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.09);
  --border-2: rgba(255, 255, 255, 0.14);
  --border-strong: rgba(255, 255, 255, 0.22);

  --text: #f5f5f6;
  --text-dim: rgba(245, 245, 246, 0.60);
  --text-faint: rgba(245, 245, 246, 0.38);
  --white: #ffffff;
  --ink: #07070a;

  --glow: rgba(255, 255, 255, 0.95);
  --accent: #ffffff;

  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  --maxw: 1240px;
  --gut: clamp(20px, 5vw, 48px);

  --font: 'Geist', 'Hanken Grotesk', system-ui, -apple-system, sans-serif;
  --mono: 'Geist Mono', ui-monospace, 'SF Mono', monospace;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img, svg { display: block; max-width: 100%; }
::selection { background: rgba(255, 255, 255, 0.85); color: #000; }

/* ---------- layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gut); }
.section { position: relative; padding-block: clamp(72px, 11vw, 140px); }
.section--tight { padding-block: clamp(56px, 8vw, 96px); }

/* ---------- type ---------- */
.display {
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-size: clamp(2.7rem, 7.4vw, 5.4rem);
}
h2.head {
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-size: clamp(2rem, 4.6vw, 3.4rem);
}
h3.sub {
  font-weight: 500;
  letter-spacing: -0.02em;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  line-height: 1.1;
}
.lead {
  font-size: clamp(1.06rem, 1.5vw, 1.28rem);
  line-height: 1.5;
  color: var(--text-dim);
  font-weight: 400;
  max-width: 56ch;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 400;
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 10px 1px rgba(255,255,255,.8);
}
.text-grad {
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 38%, rgba(245,245,246,.55) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  padding: 0 18px;
  height: 46px;
  border-radius: var(--r-md);
  white-space: nowrap;
  transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), opacity .25s;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: var(--white);
  color: var(--ink);
  padding-right: 6px;
}
.btn--primary:hover { background: #e9e9ec; }
.btn--primary .arrow {
  display: grid; place-items: center;
  width: 34px; height: 34px;
  border-radius: 9px;
  background: var(--ink);
  color: var(--white);
  transition: transform .3s var(--ease);
}
.btn--primary:hover .arrow { transform: translateX(3px); }
.btn--ghost {
  background: rgba(255,255,255,0.03);
  color: var(--text);
  border: 1px solid var(--border-2);
}
.btn--ghost:hover { background: rgba(255,255,255,0.07); border-color: var(--border-strong); }
.btn--lg { height: 52px; font-size: 1rem; padding-inline: 22px; }
.btn--lg.btn--primary { padding-right: 7px; }
.btn--block { width: 100%; justify-content: center; }

/* ---------- chips / pills ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  height: 32px; padding: 0 13px;
  border-radius: var(--r-pill);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  font-size: 0.8rem; color: var(--text-dim);
  font-weight: 400;
}
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: #36d399; box-shadow: 0 0 9px 1px rgba(54,211,153,.7); }
.pill .dot--live { animation: pulse 1.8s var(--ease) infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.35} }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(8, 8, 10, 0.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--border);
}
.nav__in {
  height: 74px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 11px; font-weight: 500; letter-spacing: -0.02em; font-size: 1.06rem; }
.brand__mark {
  width: 32px; height: 32px; border-radius: 9px;
  display: grid; place-items: center; flex: none;
  background: radial-gradient(120% 120% at 30% 20%, #fff 0%, #cfcfd6 55%, #6a6a73 100%);
  color: #000;
  box-shadow: 0 0 0 1px rgba(255,255,255,.18), 0 8px 24px -8px rgba(255,255,255,.45);
}
.brand__mark svg { width: 17px; height: 17px; }
.brand small { color: var(--text-faint); font-weight: 400; font-size: .82rem; letter-spacing: 0; }
.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__link {
  display: inline-flex; align-items: center; gap: 5px;
  height: 38px; padding: 0 14px; border-radius: 10px;
  color: var(--text-dim); font-size: 0.93rem; font-weight: 400;
  transition: color .2s, background .2s;
}
.nav__link:hover { color: var(--text); background: rgba(255,255,255,.05); }
.nav__link svg { width: 13px; height: 13px; opacity: .6; }
.nav__actions { display: flex; align-items: center; gap: 10px; }
.nav__toggle { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding-top: 74px; overflow: hidden; isolation: isolate; }
.hero__inner { position: relative; padding-top: clamp(80px, 13vw, 150px); padding-bottom: clamp(28px, 4vw, 44px); }

/* glow stack */
.glow { position: absolute; top: 0; left: 0; right: 0; height: 880px; z-index: -1; pointer-events: none; overflow: hidden; }
.glow__arc {
  position: absolute; left: 50%; border-radius: 50%;
  transform: translateX(-50%);
  width: 190vw; height: 190vw; max-width: 2600px; max-height: 2600px;
  background:
    radial-gradient(circle at center,
      transparent 49.5%,
      rgba(255,255,255,0.55) 49.82%,
      rgba(255,255,255,1) 50%,
      rgba(255,255,255,0.55) 50.18%,
      transparent 50.5%);
  filter: blur(1.2px);
}
.glow__arc--top {
  top: calc(205px - 190vw);
  -webkit-mask-image: radial-gradient(64% 44% at 50% 100%, #000 6%, rgba(0,0,0,.32) 50%, transparent 72%);
  mask-image: radial-gradient(64% 44% at 50% 100%, #000 6%, rgba(0,0,0,.32) 50%, transparent 72%);
}
.glow__arc--bottom {
  top: 286px;
  -webkit-mask-image: radial-gradient(64% 44% at 50% 0%, #000 6%, rgba(0,0,0,.32) 50%, transparent 72%);
  mask-image: radial-gradient(64% 44% at 50% 0%, #000 6%, rgba(0,0,0,.32) 50%, transparent 72%);
}
.glow__bloom {
  position: absolute; left: 50%; top: 212px; transform: translate(-50%, -50%);
  width: min(680px, 84vw); height: 300px;
  background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(255,255,255,.22), rgba(255,255,255,.05) 46%, transparent 72%);
  filter: blur(18px);
}
.glow__beam {
  position: absolute; left: 50%; top: 80px; transform: translateX(-50%);
  width: 2px; height: 330px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.65) 22%, rgba(255,255,255,.95) 44%, rgba(255,255,255,.18) 80%, transparent);
  filter: blur(.4px);
  box-shadow: 0 0 26px 5px rgba(255,255,255,.4);
}
.glow__flare {
  position: absolute; left: 50%; top: 212px; transform: translate(-50%,-50%);
  width: 13px; height: 13px; border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 20px 7px rgba(255,255,255,.9), 0 0 58px 22px rgba(255,255,255,.32);
  animation: flarePulse 5s var(--ease) infinite;
}
@keyframes flarePulse { 0%,100%{ opacity:.85; } 50%{ opacity:1; transform: translate(-50%,-50%) scale(1.16);} }
.glow__speck {
  position: absolute; left: 50%; top: 220px; width: 1px; height: 220px;
  transform: translateX(-50%);
  background-image: radial-gradient(circle, rgba(255,255,255,.6) 50%, transparent 51%);
  background-size: 2px 9px;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 45%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 45%, transparent);
  opacity: .45;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 40px;
  align-items: end;
}
.hero h1 { margin-top: 26px; }
.hero__sub { margin-top: 26px; }
.hero__cta { display: flex; gap: 12px; margin-top: 34px; flex-wrap: wrap; }
.hero__side { display: flex; flex-direction: column; gap: 16px; padding-bottom: 8px; }
.check {
  display: flex; gap: 12px; align-items: flex-start;
  color: var(--text); font-size: 1rem; line-height: 1.35;
}
.check__ic {
  flex: none; margin-top: 1px;
  width: 22px; height: 22px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid var(--border-2);
  background: rgba(255,255,255,.04);
}
.check__ic svg { width: 12px; height: 12px; }
.check b { font-weight: 500; }
.check span { color: var(--text-dim); }

/* trusted bar */
.trusted {
  margin-top: clamp(40px, 6vw, 72px);
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px clamp(20px, 4vw, 48px);
  box-shadow: 0 40px 90px -50px rgba(255,255,255,.25);
}
.trusted__label { text-align: center; color: #6b6b73; font-family: var(--mono); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; }
.trusted__row {
  margin-top: 22px; display: flex; align-items: center; justify-content: space-between;
  gap: clamp(16px, 4vw, 40px); flex-wrap: wrap;
}
.logoph { display: flex; align-items: center; gap: 9px; color: #15151a; opacity: .55; font-weight: 600; letter-spacing: -.02em; font-size: 1.05rem; }
.logoph svg { width: 22px; height: 22px; }

/* ============================================================
   STATS
   ============================================================ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; }
.stat { background: var(--bg); padding: 30px clamp(18px,2.4vw,32px); }
.stat__n { font-size: clamp(2rem, 3.6vw, 3rem); font-weight: 500; letter-spacing: -.04em; line-height: 1; }
.stat__l { margin-top: 10px; color: var(--text-dim); font-size: .94rem; }

/* ============================================================
   SECTION HEADER
   ============================================================ */
.sechead { max-width: 720px; }
.sechead .lead { margin-top: 18px; }
.sechead--center { margin-inline: auto; text-align: center; }
.sechead--center .lead { margin-inline: auto; }

/* ============================================================
   STEPS
   ============================================================ */
.steps { margin-top: 56px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step {
  position: relative; padding: 26px 24px 28px;
  border: 1px solid var(--border); border-radius: var(--r-lg);
  background: linear-gradient(180deg, var(--panel-2), transparent 60%);
  min-height: 215px; display: flex; flex-direction: column;
}
.step__n { font-family: var(--mono); font-size: .78rem; color: var(--text-faint); letter-spacing: .1em; }
.step__ic { margin-top: 18px; width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; border: 1px solid var(--border-2); background: rgba(255,255,255,.04); }
.step__ic svg { width: 21px; height: 21px; }
.step h3 { margin-top: auto; padding-top: 22px; font-size: 1.14rem; font-weight: 500; letter-spacing: -.02em; }
.step p { margin-top: 9px; color: var(--text-dim); font-size: .95rem; }

/* ============================================================
   FEATURES BENTO
   ============================================================ */
.bento { margin-top: 56px; display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.card {
  border: 1px solid var(--border); border-radius: var(--r-lg);
  background: linear-gradient(180deg, var(--panel-2), var(--panel) 70%);
  padding: 26px; position: relative; overflow: hidden;
  transition: border-color .3s, transform .3s var(--ease);
}
.card:hover { border-color: var(--border-2); transform: translateY(-3px); }
.card__ic { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; border: 1px solid var(--border-2); background: rgba(255,255,255,.05); margin-bottom: 18px; }
.card__ic svg { width: 22px; height: 22px; }
.card h3 { font-size: 1.16rem; font-weight: 500; letter-spacing: -.02em; }
.card p { margin-top: 9px; color: var(--text-dim); font-size: .95rem; line-height: 1.5; }
.card--lg { grid-column: span 3; }
.card--md { grid-column: span 2; }
.card--sm { grid-column: span 2; }
.card--wide { grid-column: span 4; }
.card__glow { position: absolute; right: -40px; top: -40px; width: 180px; height: 180px; background: radial-gradient(circle, rgba(255,255,255,.10), transparent 70%); filter: blur(8px); pointer-events: none; }

/* equalizer mini */
.eq { display: flex; align-items: flex-end; gap: 4px; height: 46px; margin-top: 20px; }
.eq span { width: 5px; border-radius: 3px; background: linear-gradient(180deg, #fff, rgba(255,255,255,.35)); animation: eq 1.1s ease-in-out infinite; }
@keyframes eq { 0%,100%{ height: 22%; } 50%{ height: 100%; } }

/* ============================================================
   INDUSTRIES
   ============================================================ */
.ind { margin-top: 52px; }
.ind__tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.ind__tab {
  height: 40px; padding: 0 16px; border-radius: var(--r-pill);
  border: 1px solid var(--border); background: rgba(255,255,255,.02);
  color: var(--text-dim); font-size: .9rem; font-weight: 400;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all .25s var(--ease);
}
.ind__tab svg { width: 15px; height: 15px; }
.ind__tab:hover { color: var(--text); border-color: var(--border-2); }
.ind__tab.active { background: var(--white); color: var(--ink); border-color: var(--white); }
.ind__panel {
  margin-top: 26px; display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
  border: 1px solid var(--border); border-radius: var(--r-xl);
  background: linear-gradient(180deg, var(--panel-2), transparent 70%);
  padding: clamp(26px, 4vw, 44px);
}
.ind__copy h3 { font-size: clamp(1.5rem,2.6vw,2rem); font-weight: 500; letter-spacing: -.025em; line-height: 1.05; }
.ind__copy p { margin-top: 14px; color: var(--text-dim); font-size: 1.02rem; line-height: 1.55; max-width: 44ch; }
.ind__stats { margin-top: 24px; display: flex; gap: 28px; flex-wrap: wrap; }
.ind__stat .n { font-size: 1.7rem; font-weight: 500; letter-spacing: -.03em; }
.ind__stat .l { color: var(--text-faint); font-size: .82rem; margin-top: 3px; }
.ind__demo {
  border: 1px solid var(--border); border-radius: var(--r-lg);
  background: var(--bg-soft); padding: 20px; align-self: stretch;
  display: flex; flex-direction: column; gap: 12px;
}
.ind__demo .head { display: flex; align-items: center; gap: 9px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.ind__demo .head .pill { height: 26px; font-size: .72rem; }

/* chat bubbles */
.bubble { max-width: 86%; padding: 11px 14px; border-radius: 14px; font-size: .92rem; line-height: 1.45; }
.bubble--agent { align-self: flex-start; background: rgba(255,255,255,.06); border: 1px solid var(--border); border-bottom-left-radius: 5px; }
.bubble--caller { align-self: flex-end; background: var(--white); color: var(--ink); border-bottom-right-radius: 5px; }
.bubble__who { font-family: var(--mono); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; opacity: .5; margin-bottom: 4px; }

/* ============================================================
   CONSOLE PREVIEW
   ============================================================ */
.console {
  border: 1px solid var(--border-2); border-radius: var(--r-xl);
  background: linear-gradient(180deg, #0e0e11, #08080a);
  overflow: hidden; margin-top: 52px;
  box-shadow: 0 60px 120px -60px rgba(0,0,0,.9), 0 0 0 1px rgba(255,255,255,.02);
}
.console__bar { display: flex; align-items: center; gap: 14px; padding: 13px 18px; border-bottom: 1px solid var(--border); background: rgba(255,255,255,.015); }
.console__dots { display: flex; gap: 7px; }
.console__dots i { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,.16); }
.console__url { font-family: var(--mono); font-size: .78rem; color: var(--text-faint); }
.console__body { display: grid; grid-template-columns: 210px 1fr; min-height: 460px; }
.console__side { border-right: 1px solid var(--border); padding: 18px 14px; display: flex; flex-direction: column; gap: 4px; }
.console__side .grp { font-family: var(--mono); font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text-faint); padding: 14px 10px 6px; }
.navi { display: flex; align-items: center; gap: 11px; height: 38px; padding: 0 11px; border-radius: 9px; color: var(--text-dim); font-size: .9rem; transition: all .2s; }
.navi svg { width: 16px; height: 16px; opacity: .8; }
.navi.active { background: rgba(255,255,255,.07); color: var(--text); }
.navi .badge { margin-left: auto; font-size: .68rem; background: rgba(255,255,255,.1); padding: 1px 7px; border-radius: 999px; color: var(--text-dim); }
.console__main { padding: clamp(18px,2.4vw,26px); display: flex; flex-direction: column; gap: 18px; }
.console__row { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.console__title { font-size: 1.2rem; font-weight: 500; letter-spacing: -.02em; }
.kpis { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.kpi { border: 1px solid var(--border); border-radius: var(--r-md); padding: 15px 16px; background: var(--panel); }
.kpi .l { color: var(--text-faint); font-size: .76rem; letter-spacing: .02em; }
.kpi .n { font-size: 1.5rem; font-weight: 500; letter-spacing: -.03em; margin-top: 7px; }
.kpi .d { font-size: .74rem; margin-top: 5px; color: #36d399; }
.kpi .d.down { color: var(--text-faint); }
.panelbox { border: 1px solid var(--border); border-radius: var(--r-lg); background: var(--panel); overflow: hidden; }
.panelbox__h { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; border-bottom: 1px solid var(--border); }
.panelbox__h .t { font-size: .96rem; font-weight: 500; }
.live-call { display: grid; grid-template-columns: 1fr; }
.wave { display: flex; align-items: center; gap: 3px; height: 54px; padding: 16px 18px 8px; }
.wave span { flex: 1; border-radius: 2px; background: linear-gradient(180deg,#fff,rgba(255,255,255,.3)); animation: eq 1s ease-in-out infinite; min-height: 3px; }
.translog { padding: 6px 18px 18px; display: flex; flex-direction: column; gap: 12px; }
.tline { display: flex; gap: 11px; align-items: flex-start; }
.tline .who { font-family: var(--mono); font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-faint); width: 54px; flex: none; padding-top: 3px; }
.tline .msg { font-size: .92rem; color: var(--text-dim); line-height: 1.45; }
.tline .msg b { color: var(--text); font-weight: 500; }
.bars { display: flex; align-items: flex-end; gap: 8px; height: 120px; padding: 16px 18px; }
.bars .b { flex: 1; background: linear-gradient(180deg, rgba(255,255,255,.85), rgba(255,255,255,.18)); border-radius: 4px 4px 2px 2px; min-height: 6px; position: relative; }
.bars .b::after { content: attr(data-d); position: absolute; bottom: -20px; left: 0; right: 0; text-align: center; font-size: .62rem; color: var(--text-faint); font-family: var(--mono); }

/* ============================================================
   SECURITY
   ============================================================ */
.sec-grid { margin-top: 50px; display: grid; grid-template-columns: 1.1fr 1fr; gap: 20px; align-items: stretch; }
.badges { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.badge-card { border: 1px solid var(--border); border-radius: var(--r-lg); padding: 22px; background: var(--panel); display: flex; flex-direction: column; gap: 12px; }
.badge-card .ic { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; border: 1px solid var(--border-2); background: rgba(255,255,255,.05); }
.badge-card .ic svg { width: 20px; height: 20px; }
.badge-card .t { font-weight: 500; font-size: 1.02rem; letter-spacing: -.01em; }
.badge-card .p { color: var(--text-dim); font-size: .9rem; line-height: 1.45; }

/* ============================================================
   PRICING
   ============================================================ */
.price-grid { margin-top: 52px; display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; align-items: start; }
.plan { border: 1px solid var(--border); border-radius: var(--r-xl); padding: 30px 28px; background: linear-gradient(180deg, var(--panel), transparent 80%); display: flex; flex-direction: column; }
.plan--hot { border-color: var(--border-strong); background: linear-gradient(180deg, rgba(255,255,255,.08), transparent 70%); box-shadow: 0 40px 90px -60px rgba(255,255,255,.3); position: relative; }
.plan--hot::before { content: "Most popular"; position: absolute; top: -11px; left: 28px; background: var(--white); color: var(--ink); font-size: .72rem; font-weight: 600; padding: 3px 12px; border-radius: 999px; letter-spacing: -.01em; }
.plan__name { font-size: 1.05rem; font-weight: 500; }
.plan__desc { color: var(--text-dim); font-size: .9rem; margin-top: 6px; min-height: 40px; }
.plan__price { margin-top: 18px; display: flex; align-items: baseline; gap: 7px; }
.plan__price .amt { font-size: 2.6rem; font-weight: 500; letter-spacing: -.04em; line-height: 1; }
.plan__price .per { color: var(--text-faint); font-size: .9rem; }
.plan ul { list-style: none; margin: 24px 0; display: flex; flex-direction: column; gap: 13px; }
.plan li { display: flex; gap: 11px; align-items: flex-start; font-size: .93rem; color: var(--text-dim); }
.plan li svg { width: 16px; height: 16px; flex: none; margin-top: 2px; opacity: .9; }
.plan .btn { margin-top: auto; }

/* ============================================================
   TESTIMONIAL
   ============================================================ */
.quote { max-width: 920px; margin-inline: auto; text-align: center; }
.quote blockquote { font-size: clamp(1.5rem, 3.2vw, 2.4rem); font-weight: 500; letter-spacing: -.025em; line-height: 1.2; }
.quote blockquote .text-grad { display: inline; }
.quote__by { margin-top: 26px; display: inline-flex; align-items: center; gap: 13px; }
.quote__av { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(140deg,#3a3a42,#15151a); border: 1px solid var(--border-2); }
.quote__by .n { font-weight: 500; }
.quote__by .r { color: var(--text-faint); font-size: .86rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { margin-top: 48px; max-width: 820px; }
.faq details { border-bottom: 1px solid var(--border); }
.faq summary { list-style: none; cursor: pointer; padding: 22px 4px; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: 1.08rem; font-weight: 500; letter-spacing: -.015em; transition: color .2s; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: #fff; }
.faq summary .x { flex: none; width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--border-2); display: grid; place-items: center; transition: transform .3s var(--ease), background .3s; }
.faq summary .x svg { width: 13px; height: 13px; }
.faq details[open] summary .x { transform: rotate(45deg); background: rgba(255,255,255,.08); }
.faq .a { padding: 0 60px 24px 4px; color: var(--text-dim); font-size: 1rem; line-height: 1.6; }

/* ============================================================
   CTA + FOOTER
   ============================================================ */
.cta { position: relative; overflow: hidden; isolation: isolate; text-align: center; }
.cta__glow { position: absolute; left: 50%; bottom: -260px; transform: translateX(-50%); width: min(900px, 110vw); height: 600px; z-index: -1;
  background: radial-gradient(ellipse 50% 50% at 50% 100%, rgba(255,255,255,.22), rgba(255,255,255,.05) 45%, transparent 72%); filter: blur(20px); }
.cta__arc { position: absolute; left: 50%; bottom: -90vw; transform: translateX(-50%); width: 200vw; height: 200vw; max-width: 2400px; max-height: 2400px; border-radius: 50%; z-index: -1;
  background: radial-gradient(circle at center, transparent 49.5%, rgba(255,255,255,.85) 50%, transparent 50.6%);
  -webkit-mask-image: radial-gradient(50% 36% at 50% 0%, #000, transparent 75%);
  mask-image: radial-gradient(50% 36% at 50% 0%, #000, transparent 75%); filter: blur(2px); }
.cta h2 { margin-inline: auto; }
.cta .lead { margin: 18px auto 0; }
.cta__btns { margin-top: 32px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.footer { border-top: 1px solid var(--border); padding-block: 60px 40px; }
.footer__top { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 32px; }
.footer__brand { max-width: 280px; }
.footer__brand p { margin-top: 16px; color: var(--text-dim); font-size: .92rem; line-height: 1.5; }
.fcol h4 { font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; color: var(--text-faint); font-family: var(--mono); font-weight: 400; }
.fcol a { display: block; margin-top: 13px; color: var(--text-dim); font-size: .93rem; transition: color .2s; }
.fcol a:hover { color: var(--text); }
.footer__bot { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--text-faint); font-size: .86rem; }
.footer__social { display: flex; gap: 8px; }
.footer__social a { width: 36px; height: 36px; border-radius: 10px; border: 1px solid var(--border); display: grid; place-items: center; color: var(--text-dim); transition: all .2s; }
.footer__social a:hover { color: var(--text); border-color: var(--border-2); background: rgba(255,255,255,.04); }
.footer__social svg { width: 16px; height: 16px; }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  * { animation: none !important; scroll-behavior: auto !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .hero__grid { grid-template-columns: 1fr; gap: 30px; align-items: start; }
  .hero__side { flex-direction: row; flex-wrap: wrap; gap: 14px 26px; }
  .check { flex: 1 1 240px; }
  .bento { grid-template-columns: repeat(4, 1fr); }
  .card--lg, .card--wide { grid-column: span 4; }
  .card--md, .card--sm { grid-column: span 2; }
  .ind__panel { grid-template-columns: 1fr; }
  .sec-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .nav__links, .nav__actions .btn--ghost { display: none; }
  .nav__toggle { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 10px; border: 1px solid var(--border-2); }
  .nav__toggle svg { width: 20px; height: 20px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .plan--hot { order: -1; }
  .console__body { grid-template-columns: 1fr; }
  .console__side { flex-direction: row; overflow-x: auto; border-right: none; border-bottom: 1px solid var(--border); }
  .console__side .grp { display: none; }
  .kpis { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .bento { grid-template-columns: 1fr; }
  .card--lg, .card--wide, .card--md, .card--sm { grid-column: span 1; }
  .stats { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .ind__stats { gap: 18px; }
  .hero__cta .btn { flex: 1 1 100%; }
}

/* mobile menu */
.mobnav { position: fixed; inset: 74px 0 auto 0; z-index: 99; background: rgba(8,8,10,.96); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); padding: 16px var(--gut) 24px; transform: translateY(-12px); opacity: 0; pointer-events: none; transition: all .3s var(--ease); }
.mobnav.open { transform: none; opacity: 1; pointer-events: auto; }
.mobnav a { display: block; padding: 13px 4px; border-bottom: 1px solid var(--border); color: var(--text-dim); font-size: 1.04rem; }
.mobnav .btn { margin-top: 18px; }
