/* ============================================================
   Whtvr.AI — Landing page styles
   Depends on colors_and_type.css for tokens.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--fg);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
:focus-visible { outline: 3px solid var(--ring); outline-offset: 2px; border-radius: 4px; }

.wrap { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 28px; }
.section { padding: 104px 0; }
.section--tight { padding: 72px 0; }

/* ---------- Reusable atoms ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: var(--text-eyebrow); font-weight: 600;
  letter-spacing: var(--tracking-eyebrow); text-transform: uppercase;
  color: var(--coral-600);
}
.eyebrow--ondark { color: var(--coral-300); }
.eyebrow .dot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; }

.h1 { font-family: var(--font-display); font-size: var(--text-6xl); font-weight: 400; line-height: 1.0; letter-spacing: -0.005em; margin: 0; text-wrap: balance; }
.h2 { font-family: var(--font-display); font-size: var(--text-4xl); font-weight: 400; line-height: 1.08; letter-spacing: -0.005em; margin: 0; text-wrap: balance; }
.h3 { font-size: var(--text-2xl); font-weight: 600; line-height: var(--leading-snug); letter-spacing: var(--tracking-tight); margin: 0; }
.lead { font-size: var(--text-xl); line-height: var(--leading-normal); color: var(--fg-muted); margin: 0; text-wrap: pretty; }
.muted { color: var(--fg-muted); }
.subtle { color: var(--fg-subtle); }
.grad-text { background: var(--gradient-sunset); -webkit-background-clip: text; background-clip: text; color: transparent; }

.section-head { display: flex; flex-direction: column; gap: 18px; max-width: 680px; }
.section-head.center { margin: 0 auto; text-align: center; align-items: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-sans); font-size: var(--text-sm); font-weight: 600;
  border-radius: var(--radius-md); padding: 11px 18px; cursor: pointer;
  border: 1px solid transparent; transition: all .16s cubic-bezier(.22,1,.36,1);
  white-space: nowrap; line-height: 1;
}
.btn i { width: 16px; height: 16px; }
.btn-primary { background: var(--primary); color: var(--on-primary); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--primary-hover); box-shadow: var(--shadow-md); }
.btn-primary:active { background: var(--primary-press); transform: scale(.98); }
.btn-ghost { background: transparent; color: var(--fg); border-color: var(--border-strong); }
.btn-ghost:hover { background: var(--bg-muted); }
.btn-ghost:active { transform: scale(.98); }
.btn-dark { background: var(--zinc-950); color: var(--white); }
.btn-dark:hover { background: var(--zinc-800); }
.btn-lg { padding: 15px 26px; font-size: var(--text-base); border-radius: var(--radius-lg); }
.btn-ondark { background: var(--white); color: var(--zinc-950); }
.btn-ondark:hover { background: var(--zinc-200); }
.btn-oncoral { background: var(--white); color: var(--coral-700); }
.btn-oncoral:hover { background: var(--coral-50); }
.btn-ghost-oncoral { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn-ghost-oncoral:hover { background: rgba(255,255,255,.12); }
.arrow { transition: transform .16s ease; }
.btn:hover .arrow, .link-arrow:hover .arrow { transform: translateX(3px); }

.link-arrow { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: var(--text-sm); color: var(--coral-600); }
.link-arrow:hover { color: var(--coral-700); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.72); backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent; transition: border-color .2s, box-shadow .2s;
}
.nav.scrolled { border-color: var(--border); box-shadow: var(--shadow-xs); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 18px; letter-spacing: -0.02em; }
.brand img { width: 28px; height: 28px; }
.brand .ai { color: var(--fg-subtle); font-weight: 600; }
/* Serif wordmark (matches whtvr.ai header) */
.brand .wm-serif { font-family: var(--font-display); font-weight: 400; font-size: 24px; letter-spacing: 0; color: var(--fg); }
.brand .dot { width: 22px; height: 22px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: var(--text-sm); font-weight: 500; color: var(--fg-muted); transition: color .15s; }
.nav-links a:hover { color: var(--fg); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-signin { font-size: var(--text-sm); font-weight: 600; color: var(--fg); padding: 8px 4px; }
.nav-signin:hover { color: var(--coral-600); }
.nav-toggle { display: none; }
.nav-toggle { width: 40px; height: 40px; border: 1px solid var(--border-strong); border-radius: 10px; background: #fff; cursor: pointer; padding: 0; place-items: center; gap: 4px; flex-direction: column; }
.nav-toggle span { width: 18px; height: 2px; border-radius: 2px; background: var(--fg); transition: transform .22s ease, opacity .18s ease; }
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.nav-drawer {
  display: none; flex-direction: column; gap: 4px;
  padding: 8px 20px 18px; border-top: 1px solid var(--border);
  background: rgba(255,255,255,.97); backdrop-filter: blur(14px);
}
.nav.open .nav-drawer { display: flex; }
.nav-drawer a { font-size: var(--text-base); font-weight: 500; color: var(--fg); padding: 13px 6px; border-bottom: 1px solid var(--border); }
.nav-drawer a.drawer-login { color: var(--fg-muted); }
.nav-drawer a.btn { border-bottom: 0; justify-content: center; margin-top: 12px; padding: 14px; font-size: var(--text-base); }
.nav-drawer a.btn:hover { color: #fff; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: 84px 0 16px; }
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-bg .grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at center, var(--border-strong) 1px, transparent 1px);
  background-size: 30px 30px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 0%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 0%, transparent 75%);
  opacity: .5;
}
.hero-bg .wash {
  position: absolute; top: -180px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 560px;
  background: radial-gradient(ellipse at center, rgba(249,140,83,.16), rgba(244,114,182,.08) 45%, transparent 70%);
  filter: blur(8px);
}
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.02fr .98fr; gap: 52px; align-items: center; padding: 16px 0 8px; }
.hero-copy { display: flex; flex-direction: column; gap: 26px; align-items: flex-start; text-align: left; max-width: 600px; }
.hero h1 { font-size: clamp(3rem, 5.4vw, 5rem); }
.hero .lead { max-width: 34rem; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-video { position: relative; }
.hero-video-frame { display: block; width: 100%; height: 540px; border: 0; border-radius: var(--radius-xl); background: transparent; }
.hero-trust { display: flex; align-items: center; gap: 18px; font-size: var(--text-sm); color: var(--fg-subtle); flex-wrap: wrap; }
.hero-trust .item { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust i { width: 15px; height: 15px; color: var(--coral-500); }
.hero-trust .sep { width: 1px; height: 14px; background: var(--border-strong); }

.pill-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 6px 14px 6px 8px; border-radius: var(--radius-pill);
  background: var(--bg-muted); border: 1px solid var(--border);
  font-size: var(--text-xs); font-weight: 500; color: var(--fg-muted);
}
.pill-badge .tag { background: var(--coral-500); color: #fff; font-weight: 600; font-size: 11px; padding: 2px 8px; border-radius: var(--radius-pill); letter-spacing: .02em; }

/* ---------- Chat demo widget ---------- */
.chat-demo-shell { position: relative; }
.chat-demo-shell::before {
  content: ""; position: absolute; inset: -18px; border-radius: 34px;
  background: radial-gradient(ellipse 70% 60% at 50% 35%, rgba(217,81,53,.18), transparent 72%); filter: blur(30px); z-index: 0;
}
.chat-demo {
  position: relative; z-index: 1;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-xl); box-shadow: var(--shadow-xl);
  overflow: hidden; display: flex; flex-direction: column; min-height: 430px;
}
.chat-head { display: flex; align-items: center; gap: 11px; padding: 16px 18px; border-bottom: 1px solid var(--border); }
.chat-head .avatar { width: 30px; height: 30px; border-radius: 9px; }
.chat-head .who { font-weight: 600; font-size: var(--text-sm); }
.chat-head .status { font-size: 12px; color: var(--success); display: inline-flex; align-items: center; gap: 5px; }
.chat-head .status .live { width: 6px; height: 6px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 3px rgba(31,138,91,.15); }
.chat-head .listen { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--fg-subtle); border: 1px solid var(--border); padding: 5px 10px; border-radius: var(--radius-pill); }
.chat-head .listen i { width: 13px; height: 13px; }

.chat-body { flex: 1; padding: 20px 18px; display: flex; flex-direction: column; gap: 14px; overflow: hidden; }
.msg { max-width: 86%; font-size: var(--text-sm); line-height: 1.5; opacity: 0; transform: translateY(8px); transition: opacity .35s ease, transform .35s ease; }
.msg.in { opacity: 1; transform: none; }
.msg-user { align-self: flex-end; background: var(--coral-500); color: #fff; padding: 10px 14px; border-radius: 16px 16px 5px 16px; }
.msg-bot { align-self: flex-start; }
.msg-bot .bubble { background: var(--bg-muted); color: var(--fg); padding: 12px 15px; border-radius: 16px 16px 16px 5px; }
.msg-bot .bubble strong { font-weight: 600; }
.typing { display: inline-flex; gap: 4px; padding: 14px 16px; background: var(--bg-muted); border-radius: 16px 16px 16px 5px; }
.typing span { width: 7px; height: 7px; border-radius: 50%; background: var(--fg-subtle); animation: blink 1.2s infinite ease-in-out; }
.typing span:nth-child(2){ animation-delay: .2s; } .typing span:nth-child(3){ animation-delay: .4s; }
@keyframes blink { 0%,80%,100%{ opacity:.25; transform: translateY(0);} 40%{ opacity:1; transform: translateY(-3px);} }
.cites { display: flex; gap: 7px; margin-top: 9px; flex-wrap: wrap; }
.cite { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 500; color: var(--coral-700); background: var(--coral-50); border: 1px solid var(--coral-100); padding: 3px 9px; border-radius: var(--radius-pill); }
.cite i { width: 11px; height: 11px; }

.chat-suggest { display: flex; flex-direction: column; gap: 7px; padding: 0 18px 14px; }
.suggest-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; font-size: var(--text-sm); color: var(--fg-muted); background: var(--bg-subtle); border: 1px solid var(--border); padding: 9px 13px; border-radius: var(--radius-md); transition: all .15s; cursor: pointer; }
.suggest-row:hover { border-color: var(--coral-300); color: var(--fg); }
.suggest-row i { width: 14px; height: 14px; color: var(--coral-500); }

.chat-input { display: flex; align-items: center; gap: 10px; margin: 0 14px 14px; padding: 5px 5px 5px 16px; border-radius: var(--radius-xl); background: var(--surface); border: 1.5px solid var(--coral-200); box-shadow: var(--shadow-glow); position: relative; }
.chat-input .ph { flex: 1; font-size: var(--text-sm); color: var(--fg-subtle); }
.chat-input .ph .caret { display:inline-block; width:1.5px; height:15px; background: var(--fg); margin-left:1px; vertical-align:-2px; animation: caret 1s step-end infinite; }
@keyframes caret { 50% { opacity: 0; } }
.chat-send { width: 36px; height: 36px; border-radius: 50%; background: var(--zinc-950); color: #fff; display: grid; place-items: center; flex: none; }
.chat-send i { width: 17px; height: 17px; }
.chat-foot { text-align: center; font-size: 10.5px; letter-spacing: .04em; color: var(--fg-subtle); padding-bottom: 12px; text-transform: uppercase; }
.chat-foot b { color: var(--fg-muted); font-weight: 600; }

/* ---------- Logo wall + metrics ---------- */
.trusted { text-align: center; }
.trusted .cap { font-size: var(--text-sm); color: var(--fg-subtle); }
.logo-marquee { margin-top: 32px; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent); mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent); }
.logo-track { display: flex; width: max-content; animation: logo-scroll 36s linear infinite; }
.logo-marquee:hover .logo-track { animation-play-state: paused; }
.logo-set { display: flex; align-items: center; flex: none; }
.logo-set img { height: 42px; width: auto; max-width: 170px; object-fit: contain; margin: 0 38px; filter: grayscale(1) opacity(.55); transition: filter .2s; }
.logo-set img:hover { filter: grayscale(1) opacity(.95); }
.logo-set img.lg-ynet { height: 80px; }
.logo-set img.lg-liga { height: 62px; }
@keyframes logo-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .logo-track { animation: none; } }
.metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 56px; }
.metric { text-align: center; padding: 0 8px; }
.metric .n { font-size: var(--text-4xl); font-weight: 700; letter-spacing: -0.03em; color: var(--fg); }
.metric .n .grad-text { font-weight: 700; }
.metric .l { font-size: var(--text-sm); color: var(--fg-muted); margin-top: 6px; line-height: 1.4; }
.metric + .metric { border-left: 1px solid var(--border); }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 56px; }
.step { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-xs); transition: box-shadow .2s, transform .2s; }
.step:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.step .num { font-family: var(--font-mono); font-size: 13px; font-weight: 500; color: var(--coral-500); }
.step .ic { width: 42px; height: 42px; border-radius: 11px; background: var(--coral-50); color: var(--coral-600); display: grid; place-items: center; margin: 14px 0 16px; }
.step .ic i { width: 21px; height: 21px; }
.step h4 { font-size: var(--text-lg); font-weight: 600; margin: 0 0 7px; letter-spacing: -0.01em; }
.step p { font-size: var(--text-sm); color: var(--fg-muted); margin: 0; line-height: 1.55; }

.snippet { margin-top: 32px; background: var(--zinc-950); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); max-width: 720px; }
.snippet-bar { display: flex; align-items: center; gap: 7px; padding: 12px 16px; border-bottom: 1px solid var(--zinc-800); }
.snippet-bar .dotc { width: 11px; height: 11px; border-radius: 50%; }
.snippet-bar .label { margin-left: auto; font-family: var(--font-mono); font-size: 12px; color: var(--zinc-500); }
.snippet pre { margin: 0; padding: 20px 22px; font-family: var(--font-mono); font-size: 13.5px; line-height: 1.7; color: var(--zinc-200); overflow-x: auto; }
.snippet .tk-tag { color: #f0a; } .snippet .c-tag { color: #7dd3fc; } .snippet .c-attr { color: #fca5a5; } .snippet .c-str { color: #fde68a; } .snippet .c-com { color: var(--zinc-500); }

/* ---------- Surfaces ---------- */
.surfaces { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 56px; }
.surface-card { border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .2s, transform .2s; }
.surface-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.surface-vis { height: 168px; position: relative; display: grid; place-items: center; overflow: hidden; border-bottom: 1px solid var(--border); }
.surface-vis.web { background: linear-gradient(180deg, #fff, var(--bg-subtle)); }
.surface-vis.wa { background: linear-gradient(160deg, #e7f7ec, #d8f0e0); }
.surface-vis.con { background: linear-gradient(180deg, var(--zinc-950), var(--zinc-900)); }
.surface-body { padding: 22px 24px 26px; }
.surface-body .tag { font-family: var(--font-mono); font-size: 12px; color: var(--fg-subtle); }
.surface-body h4 { font-size: var(--text-xl); font-weight: 600; margin: 8px 0 8px; letter-spacing: -0.01em; }
.surface-body p { font-size: var(--text-sm); color: var(--fg-muted); margin: 0; line-height: 1.55; }
/* mini mocks */
.mini-widget { width: 132px; background: #fff; border: 1px solid var(--border); border-radius: 14px; box-shadow: var(--shadow-md); padding: 11px; }
.mini-widget .bar { height: 7px; border-radius: 4px; background: var(--zinc-200); margin-bottom: 7px; }
.mini-widget .bar.s { width: 60%; }
.mini-widget .ask { margin-top: 10px; display: flex; align-items: center; gap: 6px; border: 1px solid var(--border); border-radius: 10px; padding: 6px 8px; font-size: 10px; color: var(--fg-subtle); }
.mini-widget .ask .b { margin-left: auto; width: 16px; height: 16px; border-radius: 50%; background: var(--zinc-950); }
.wa-bubble { max-width: 150px; }
.wa-bubble .b { background: #fff; border-radius: 9px 9px 9px 2px; padding: 8px 11px; font-size: 11px; color: var(--fg); box-shadow: var(--shadow-sm); margin-bottom: 7px; }
.wa-bubble .b.me { background: #d9fdd3; border-radius: 9px 9px 2px 9px; margin-left: auto; }
.con-screen { width: 150px; height: 108px; background: #fff; border-radius: 10px; box-shadow: var(--shadow-lg); padding: 11px; display: flex; flex-direction: column; gap: 6px; }
.con-screen .h { height: 8px; width: 45%; border-radius: 4px; background: var(--coral-400); }
.con-screen .l { height: 6px; border-radius: 4px; background: var(--zinc-200); }
.con-screen .l.s { width: 70%; }
.surface-icon { position: absolute; top: 14px; right: 14px; width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center; background: rgba(255,255,255,.85); box-shadow: var(--shadow-sm); }
.surface-icon i { width: 17px; height: 17px; color: var(--fg); }
.surface-icon.con-i { background: rgba(255,255,255,.12); } .surface-icon.con-i i { color: #fff; }

/* ---------- Enterprise (dark) ---------- */
.enterprise { background: var(--zinc-950); color: var(--fg-ondark); }
.enterprise .h2, .enterprise .h3 { color: #fff; }
.enterprise .lead { color: var(--zinc-400); }
.guardrails { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 52px; }
.guard { background: var(--zinc-900); border: 1px solid var(--zinc-800); border-radius: var(--radius-lg); padding: 22px; }
.guard .num { font-family: var(--font-mono); font-size: 12px; color: var(--coral-400); }
.guard .ic { width: 38px; height: 38px; border-radius: 10px; background: rgba(217,81,53,.16); color: var(--coral-300); display: grid; place-items: center; margin: 14px 0 14px; }
.guard .ic i { width: 19px; height: 19px; }
.guard h4 { font-size: var(--text-base); font-weight: 600; color: #fff; margin: 0 0 6px; }
.guard p { font-size: var(--text-xs); color: var(--zinc-400); margin: 0; line-height: 1.55; }
.caps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px 34px; margin-top: 48px; padding-top: 40px; border-top: 1px solid var(--zinc-800); }
.cap { display: flex; align-items: flex-start; gap: 11px; padding: 11px 0; }
.cap i { width: 17px; height: 17px; color: var(--coral-400); flex: none; margin-top: 2px; }
.cap span { font-size: var(--text-sm); color: var(--zinc-300); line-height: 1.45; }
.cap b { color: #fff; font-weight: 600; }

/* ---------- Pricing ---------- */
.pricing { background: var(--bg-subtle); }
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 56px; align-items: start; }
.tier { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 30px 28px; box-shadow: var(--shadow-xs); display: flex; flex-direction: column; gap: 20px; }
.tier.featured { border-color: var(--coral-300); box-shadow: var(--shadow-lg); position: relative; }
.tier.featured::before { content: "Most popular"; position: absolute; top: -11px; left: 28px; background: var(--coral-500); color: #fff; font-size: 11px; font-weight: 600; letter-spacing: .03em; padding: 4px 12px; border-radius: var(--radius-pill); }
.tier .name { font-size: var(--text-xl); font-weight: 600; letter-spacing: -0.01em; }
.tier .model { font-family: var(--font-mono); font-size: 12px; color: var(--coral-600); margin-top: 4px; }
.tier .price { font-size: var(--text-3xl); font-weight: 700; letter-spacing: -0.03em; }
.tier .price small { font-size: var(--text-sm); font-weight: 500; color: var(--fg-subtle); letter-spacing: 0; }
.tier .desc { font-size: var(--text-sm); color: var(--fg-muted); margin: 0; }
.tier .feats { display: flex; flex-direction: column; gap: 11px; margin: 0; padding: 0; list-style: none; }
.tier .feats li { display: flex; align-items: flex-start; gap: 10px; font-size: var(--text-sm); color: var(--fg); line-height: 1.45; }
.tier .feats i { width: 16px; height: 16px; color: var(--coral-500); flex: none; margin-top: 2px; }
.tier .btn { width: 100%; justify-content: center; }
.tier-divider { height: 1px; background: var(--border); }

/* ---------- Final CTA ---------- */
.cta-band { background: var(--coral-500); color: #fff; position: relative; overflow: hidden; }
.cta-band::before { content:""; position:absolute; inset:0; background: radial-gradient(ellipse 60% 100% at 80% 0%, rgba(234,119,236,.45), transparent 60%); }
.cta-inner { position: relative; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 22px; }
.cta-inner .h2 { color: #fff; }
.cta-inner p { font-size: var(--text-xl); color: rgba(255,255,255,.9); margin: 0; max-width: 38rem; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 6px; }

/* ---------- Footer ---------- */
.footer { background: var(--zinc-950); color: var(--zinc-400); padding: 64px 0 36px; }
.footer-top { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 36px; padding-bottom: 44px; border-bottom: 1px solid var(--zinc-800); }
.footer .brand { color: #fff; margin-bottom: 14px; }
.footer .brand .ai { color: var(--zinc-500); }
.footer .blurb { font-size: var(--text-sm); color: var(--zinc-500); max-width: 18rem; line-height: 1.6; }
.footer h5 { font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--zinc-500); margin: 0 0 16px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer ul a { font-size: var(--text-sm); color: var(--zinc-400); transition: color .15s; }
.footer ul a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 26px; font-size: var(--text-xs); color: var(--zinc-600); flex-wrap: wrap; gap: 12px; }
.footer-bottom .socials { display: flex; gap: 14px; }
.footer-bottom .socials a { color: var(--zinc-500); }
.footer-bottom .socials a:hover { color: #fff; }
.footer-bottom i { width: 17px; height: 17px; }

/* ---------- Reveal on scroll (transform-only so content is NEVER invisible,
   even if the transition is paused in a non-painting/throttled context) ---------- */
.js .reveal { transform: translateY(22px); transition: transform .6s cubic-bezier(.22,1,.36,1); will-change: transform; }
.js .reveal.in, .reveal.in { transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { transform: none; transition: none; } }

/* ---------- Hero feature chips ---------- */
.hero-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.chip { display: inline-flex; align-items: center; gap: 7px; font-size: var(--text-sm); font-weight: 500; color: var(--fg); background: var(--bg-muted); border: 1px solid var(--border); padding: 7px 13px; border-radius: var(--radius-pill); }
.chip svg { width: 14px; height: 14px; color: var(--coral-500); }

/* ---------- Video band ---------- */
.video-band { background: var(--bg-subtle); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.video-frame { max-width: 560px; margin: 40px auto 0; border-radius: var(--radius-xl); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-xl); background: #fff; }
.video-frame .winbar { display: flex; align-items: center; gap: 7px; padding: 12px 16px; border-bottom: 1px solid var(--border); background: var(--bg-subtle); }
.video-frame .winbar .dotc { width: 11px; height: 11px; border-radius: 50%; }
.video-frame .winbar .addr { margin-left: 14px; flex: 1; max-width: 280px; font-family: var(--font-mono); font-size: 12px; color: var(--fg-subtle); background: #fff; border: 1px solid var(--border); border-radius: var(--radius-pill); padding: 5px 14px; text-align: center; }
.vid-wrap { position: relative; }
.video-frame video { display: block; width: 100%; height: auto; background: #0c0c0e; }
.promo-embed { display: block; width: 100%; height: 600px; border: 0; background: #fff; }
.vid-ctrl { position: absolute; left: 16px; bottom: 16px; width: 52px; height: 52px; border-radius: 50%; border: none; padding: 0; background: rgba(217,81,53,.94); display: grid; place-items: center; cursor: pointer; box-shadow: var(--shadow-md); }
.vid-ctrl .ring { position: absolute; inset: 0; transform: rotate(-90deg); }
.vid-ctrl .ring .track { fill: none; stroke: rgba(255,255,255,.3); stroke-width: 2.5; }
.vid-ctrl .ring .prog { fill: none; stroke: #fff; stroke-width: 2.5; stroke-linecap: round; transition: stroke-dashoffset .2s linear; }
.vid-ctrl .ic { color: #fff; display: grid; place-items: center; }
.vid-ctrl .ic svg { width: 19px; height: 19px; }

/* ---------- Platform cards (3) ---------- */
.platform-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 56px; }
.pcard { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px 28px; box-shadow: var(--shadow-xs); transition: box-shadow .2s, transform .2s; }
.pcard:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.pcard .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--coral-50); color: var(--coral-600); display: grid; place-items: center; margin-bottom: 20px; }
.pcard .ic svg { width: 23px; height: 23px; }
.pcard h4 { font-size: var(--text-lg); font-weight: 600; letter-spacing: -0.01em; margin: 0 0 9px; }
.pcard p { font-size: var(--text-sm); color: var(--fg-muted); margin: 0; line-height: 1.55; }

/* ---------- Feature grid (6) ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 56px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.fcell { background: var(--surface); padding: 30px 28px; transition: background .18s; }
.fcell:hover { background: var(--bg-subtle); }
.fcell .ic { width: 40px; height: 40px; border-radius: 10px; background: var(--bg-muted); color: var(--coral-600); display: grid; place-items: center; margin-bottom: 16px; }
.fcell .ic svg { width: 20px; height: 20px; }
.fcell h4 { font-size: var(--text-base); font-weight: 600; margin: 0 0 8px; letter-spacing: -0.005em; }
.fcell p { font-size: var(--text-sm); color: var(--fg-muted); margin: 0; line-height: 1.55; }

/* ---------- Flow (5 steps) ---------- */
.flow { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin-top: 56px; }
.flow-step { position: relative; padding: 0 22px 0 0; }
.flow-step:not(:last-child)::after { content: ""; position: absolute; top: 13px; left: 26px; right: 8px; height: 1px; background: var(--border-strong); }
.flow-step .dot { width: 28px; height: 28px; border-radius: 50%; background: var(--surface); border: 1px solid var(--border-strong); display: grid; place-items: center; font-family: var(--font-mono); font-size: 12px; font-weight: 500; color: var(--coral-600); position: relative; z-index: 1; }
.flow-step h4 { font-size: var(--text-base); font-weight: 600; margin: 20px 0 7px; letter-spacing: -0.005em; }
.flow-step p { font-size: var(--text-sm); color: var(--fg-muted); margin: 0; line-height: 1.5; padding-right: 14px; }

/* ---------- Use cases (8) ---------- */
.usecases { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 52px; }
.ucase { display: flex; align-items: center; gap: 13px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 17px 18px; box-shadow: var(--shadow-xs); transition: border-color .18s, transform .18s; }
.ucase:hover { border-color: var(--coral-300); transform: translateY(-2px); }
.ucase .ic { width: 36px; height: 36px; border-radius: 9px; background: var(--coral-50); color: var(--coral-600); display: grid; place-items: center; flex: none; }
.ucase .ic svg { width: 18px; height: 18px; }
.ucase span { font-size: var(--text-sm); font-weight: 600; line-height: 1.3; letter-spacing: -0.005em; }

/* ---------- Integrations + dashboard ---------- */
.integ-wrap { display: grid; grid-template-columns: 1fr 1.15fr; gap: 48px; align-items: center; margin-top: 56px; }
.integ-chips { display: flex; flex-wrap: wrap; gap: 11px; }
.integ-chips .ig { display: inline-flex; align-items: center; gap: 9px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-pill); padding: 10px 16px; font-size: var(--text-sm); font-weight: 500; box-shadow: var(--shadow-xs); }
.integ-chips .ig svg { width: 16px; height: 16px; color: var(--coral-500); }
.dashboard { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); overflow: hidden; }
.dashboard .dhead { display: flex; align-items: center; gap: 10px; padding: 16px 20px; border-bottom: 1px solid var(--border); }
.dashboard .dhead .dt { font-weight: 600; font-size: var(--text-sm); }
.dashboard .dhead .live { margin-left: auto; font-size: 11px; color: var(--success); display: inline-flex; align-items: center; gap: 6px; }
.dashboard .dhead .live i { width: 6px; height: 6px; border-radius: 50%; background: var(--success); display: inline-block; }
.dash-top { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); }
.dash-kpi { background: var(--surface); padding: 18px 20px; }
.dash-kpi .k { font-size: 12px; color: var(--fg-subtle); }
.dash-kpi .v { font-size: var(--text-2xl); font-weight: 700; letter-spacing: -0.02em; margin-top: 3px; }
.dash-rows { padding: 8px 20px 18px; }
.dash-row { display: flex; align-items: center; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--border); }
.dash-row:last-child { border-bottom: 0; }
.dash-row .label { font-size: var(--text-sm); color: var(--fg); flex: none; width: 140px; }
.dash-row .track { flex: 1; height: 7px; border-radius: 4px; background: var(--bg-muted); overflow: hidden; }
.dash-row .fill { height: 100%; border-radius: 4px; background: var(--gradient-sunset); }
.dash-row .n { font-family: var(--font-mono); font-size: 12px; color: var(--fg-muted); width: 88px; text-align: right; flex: none; }
.dash-row .n b { color: var(--success); font-weight: 600; }

/* ---------- Lucide icon sizing (svg replaces <i>) ---------- */
.btn svg { width: 16px; height: 16px; }
.hero-trust svg { width: 15px; height: 15px; color: var(--coral-500); }
.eyebrow svg, .link-arrow svg { width: 14px; height: 14px; }
.chat-head .listen svg { width: 13px; height: 13px; }
.chat-send svg { width: 17px; height: 17px; }
.cite svg { width: 11px; height: 11px; }
.suggest-row svg { width: 14px; height: 14px; color: var(--coral-500); }
.step .ic svg { width: 21px; height: 21px; }
.surface-icon svg { width: 17px; height: 17px; }
.guard .ic svg { width: 19px; height: 19px; }
.cap svg { width: 17px; height: 17px; color: var(--coral-400); flex: none; margin-top: 2px; }
.tier .feats svg { width: 16px; height: 16px; color: var(--coral-500); flex: none; margin-top: 2px; }
.footer-bottom svg { width: 17px; height: 17px; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-copy { max-width: none; }
  .hero-video-frame { height: 470px; }
  .nav-links { display: none; }
  .nav-signin { display: none; }
  .nav-toggle { display: flex; }
  .metrics { grid-template-columns: repeat(2, 1fr); gap: 36px 0; }
  .metric:nth-child(3) { border-left: none; }
  .steps, .surfaces, .tiers, .guardrails { grid-template-columns: 1fr; }
  .caps { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .guardrails { grid-template-columns: 1fr 1fr; }
  .platform-cards { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .flow { grid-template-columns: 1fr 1fr; gap: 28px 18px; }
  .flow-step:not(:last-child)::after { display: none; }
  .usecases { grid-template-columns: 1fr 1fr; }
  .integ-wrap { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 20px; }
  .section { padding: 60px 0; }
  .section--tight { padding: 44px 0; }
  .hero { padding: 56px 0 28px; }
  .hero-inner { gap: 30px; }
  .h1 { font-size: 2.75rem; } .h2 { font-size: 2.1rem; }
  .lead { font-size: var(--text-lg); }
  .hero-video-frame { height: 420px; }
  .nav-build { padding: 9px 13px; font-size: var(--text-xs); }
  .nav-build .arrow { display: none; }
  .metrics { grid-template-columns: 1fr 1fr; gap: 30px 0; }
  .metric .n { font-size: var(--text-3xl); }
  .caps { grid-template-columns: 1fr; }
  .logo-set img { height: 34px; margin: 0 26px; }
  .logo-set img.lg-ynet { height: 60px; }
  .logo-set img.lg-liga { height: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .feature-grid { grid-template-columns: 1fr; }
  .usecases { grid-template-columns: 1fr; }
  .deploy-chips { gap: 9px; }
  .dchip { font-size: var(--text-xs); padding: 9px 13px; }
  .dash-top { grid-template-columns: 1fr 1fr 1fr; }
  .dash-row .label { width: 96px; }
  .step, .pcard, .fcell, .guard { padding: 22px 20px; }
  .section-head { gap: 14px; }
  .pt-price, .cta-inner .h2 { word-break: normal; }
  .hero-cta .btn, .cta-actions .btn { flex: 1 1 auto; justify-content: center; }
}
@media (max-width: 400px) {
  .h1 { font-size: 2.4rem; }
  .hero h1 { font-size: 2.5rem; }
  .logo-set img.lg-ynet { height: 60px !important; }
  .footer-top { grid-template-columns: 1fr; }
  .guardrails { grid-template-columns: 1fr; }
  .flow { grid-template-columns: 1fr; }
  .metrics { grid-template-columns: 1fr; gap: 24px; }
  .metric { border-left: none !important; }
}

/* ============================================================
   Pricing teaser (landing) + Pricing page + Login page
   ============================================================ */
.price-teaser { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.pt-copy { display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }
.pt-list { list-style: none; margin: 4px 0 6px; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.pt-list li { display: flex; align-items: center; gap: 10px; font-size: var(--text-base); color: var(--fg); }
.pt-list svg { width: 17px; height: 17px; color: var(--coral-500); flex: none; }
.pt-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 30px 30px; box-shadow: var(--shadow-lg); position: relative; }
.pt-badge { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--coral-700); background: var(--coral-50); border: 1px solid var(--coral-100); padding: 4px 11px; border-radius: var(--radius-pill); }
.pt-price { font-size: var(--text-4xl); font-weight: 700; letter-spacing: -0.03em; margin: 16px 0 0; }
.pt-price small { font-size: var(--text-base); font-weight: 500; color: var(--fg-subtle); letter-spacing: 0; }
.pt-sub { font-size: var(--text-sm); color: var(--fg-muted); margin: 8px 0 18px; line-height: 1.5; }

/* ---------- Pricing page ---------- */
.page-hero { padding: 80px 0 12px; text-align: center; }
.page-hero .section-head { margin: 0 auto; align-items: center; text-align: center; }
.pricing-page .tiers { margin-top: 48px; }
.faq { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); padding: 22px 0; }
.faq-item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: var(--text-lg); font-weight: 600; letter-spacing: -0.01em; color: var(--fg); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .pm { width: 22px; height: 22px; flex: none; color: var(--coral-500); transition: transform .2s; }
.faq-item[open] summary .pm { transform: rotate(45deg); }
.faq-item p { font-size: var(--text-base); color: var(--fg-muted); line-height: 1.6; margin: 14px 0 0; }

/* ---------- Login / auth page ---------- */
.auth-page { min-height: 100vh; display: grid; grid-template-columns: 1fr; place-items: center; background: var(--bg-subtle); position: relative; padding: 32px; }
.auth-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.auth-bg .grid { position: absolute; inset: 0; background-image: radial-gradient(circle at center, var(--border-strong) 1px, transparent 1px); background-size: 30px 30px; -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 0%, #000, transparent 70%); mask-image: radial-gradient(ellipse 60% 50% at 50% 0%, #000, transparent 70%); opacity: .5; }
.auth-bg .wash { position: absolute; top: -160px; left: 50%; transform: translateX(-50%); width: 700px; height: 420px; background: radial-gradient(ellipse at center, rgba(217,81,53,.14), transparent 70%); filter: blur(10px); }
.auth-card { position: relative; z-index: 1; width: 100%; max-width: 408px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-xl); box-shadow: var(--shadow-xl); padding: 40px 38px 32px; }
.auth-brand { display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; margin-bottom: 28px; }
.auth-brand img { width: 46px; height: 46px; }
.auth-brand h1 { font-size: var(--text-2xl); font-weight: 700; letter-spacing: -0.02em; margin: 0; }
.auth-brand p { font-size: var(--text-sm); color: var(--fg-muted); margin: 0; }
.auth-social { display: flex; flex-direction: column; gap: 11px; }
.btn-social { display: flex; align-items: center; justify-content: center; gap: 11px; width: 100%; padding: 12px 16px; border-radius: var(--radius-md); border: 1px solid var(--border-strong); background: var(--surface); font-family: var(--font-sans); font-size: var(--text-sm); font-weight: 600; color: var(--fg); cursor: pointer; transition: background .15s, border-color .15s; }
.btn-social:hover { background: var(--bg-muted); border-color: var(--zinc-400); }
.btn-social svg, .btn-social img { width: 18px; height: 18px; flex: none; }
.auth-divider { display: flex; align-items: center; gap: 14px; margin: 22px 0; color: var(--fg-subtle); font-size: var(--text-xs); }
.auth-divider::before, .auth-divider::after { content: ""; height: 1px; flex: 1; background: var(--border); }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.field label { font-size: var(--text-sm); font-weight: 500; color: var(--fg); }
.field input { font-family: var(--font-sans); font-size: var(--text-base); padding: 12px 14px; border-radius: var(--radius-md); border: 1px solid var(--border-strong); background: var(--surface); color: var(--fg); transition: border-color .15s, box-shadow .15s; }
.field input::placeholder { color: var(--fg-subtle); }
.field input:focus { outline: none; border-color: var(--coral-400); box-shadow: 0 0 0 3px var(--ring); }
.auth-card .btn-primary { width: 100%; justify-content: center; padding: 13px; font-size: var(--text-sm); }
.auth-foot { text-align: center; font-size: var(--text-sm); color: var(--fg-muted); margin-top: 22px; }
.auth-foot a { color: var(--coral-600); font-weight: 600; }
.auth-foot a:hover { color: var(--coral-700); }
.auth-legal { text-align: center; font-size: var(--text-xs); color: var(--fg-subtle); margin: 26px auto 0; line-height: 1.5; max-width: 320px; }
.auth-legal a { color: var(--fg-muted); text-decoration: underline; text-underline-offset: 2px; }
.auth-back { position: absolute; top: 26px; left: 28px; z-index: 2; display: inline-flex; align-items: center; gap: 7px; font-size: var(--text-sm); font-weight: 600; color: var(--fg-muted); }
.auth-back:hover { color: var(--fg); }
.auth-back svg { width: 16px; height: 16px; flex: none; }

/* Login aside: embedded explainer video */
.promo-frame { width: 100%; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-xl); border: 1px solid var(--border); background: #fff; }
.promo-embed-login { display: block; width: 100%; height: 520px; border: 0; background: #fff; }

/* ---------- Login split layout + chat-demo aside (white canvas) ---------- */
.auth-split { grid-template-columns: 1fr; padding: 0; align-items: stretch; }
.auth-left { display: grid; place-items: center; padding: 56px 32px; position: relative; z-index: 1; }
.auth-aside { display: none; position: relative; overflow: hidden; background: #fff; border-left: 1px solid var(--border); }
.auth-aside .canvas-grid { position: absolute; inset: 0; background-image: radial-gradient(circle at center, var(--border-strong) 1px, transparent 1px); background-size: 28px 28px; -webkit-mask-image: radial-gradient(ellipse 80% 70% at 55% 45%, #000, transparent 78%); mask-image: radial-gradient(ellipse 80% 70% at 55% 45%, #000, transparent 78%); opacity: .4; }
.aside-inner { position: relative; z-index: 1; width: 100%; max-width: 620px; margin: 0 auto; padding: 32px; display: flex; flex-direction: column; gap: 14px; }
.auth-aside .chat-demo-shell::before { background: radial-gradient(ellipse 72% 60% at 50% 38%, rgba(217,81,53,.13), transparent 72%); }
.widget-launcher { align-self: flex-end; width: 56px; height: 56px; border-radius: 50%; background: var(--coral-500); display: grid; place-items: center; box-shadow: 0 8px 22px rgba(217,81,53,.34); margin-top: 6px; cursor: pointer; }
.widget-launcher img { width: 30px; height: 30px; }
@media (min-width: 940px) {
  .auth-split { grid-template-columns: 1fr 560px; min-height: 100vh; }
  .auth-aside { display: grid; align-items: center; }
}

/* ---------- Forgot-password row ---------- */
.label-row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.label-row a { font-size: var(--text-xs); font-weight: 600; color: var(--coral-600); white-space: nowrap; }

/* ---------- whtvr.ai inline chat widget (login canvas) ---------- */
.ww { width: 460px; max-width: 100%; align-self: center; }
.ww-pill { display: flex; align-items: center; gap: 9px; background: #fff; border: 2px solid #CBBEF6; border-radius: 999px; padding: 13px 12px 13px 15px; box-shadow: 0 14px 36px rgba(124,92,246,.15), 0 2px 6px rgba(124,92,246,.08); }
.ww-logo { width: 28px; height: 28px; flex: none; border-radius: 50%; overflow: hidden; }
.ww-logo img { width: 100%; height: 100%; display: block; }
.ww-spark { color: #8B5CF6; display: flex; flex: none; }
.ww-spark svg { width: 16px; height: 16px; }
.ww-text { flex: 1; font-size: 13px; color: #3F3F46; white-space: nowrap; overflow: hidden; min-width: 0; }
.ww-text .cur { display: inline-block; width: 1.5px; height: 16px; background: #8B5CF6; margin-left: 1px; vertical-align: -3px; animation: caret 1s step-end infinite; }
.ww-send { width: 34px; height: 34px; border-radius: 50%; background: var(--bg-muted); border: 1px solid var(--border); display: grid; place-items: center; flex: none; color: var(--fg-subtle); cursor: pointer; }
.ww-send svg { width: 17px; height: 17px; }
.ww-powered { font-size: 11px; color: var(--fg-subtle); margin-top: 13px; padding-left: 8px; }
.ww-powered .lbl { text-transform: uppercase; letter-spacing: .06em; }
.ww-powered b { color: var(--fg); font-weight: 700; }
.label-row a:hover { color: var(--coral-700); }

@media (max-width: 760px) {
  .price-teaser { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- Deploy-anywhere channel picker ---------- */
.deploy-wrap { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 30px; margin-top: 48px; align-items: stretch; }
.deploy-chips { display: flex; flex-wrap: wrap; gap: 12px; align-content: flex-start; }
.dchip { display: inline-flex; align-items: center; gap: 9px; background: #fff; border: 1px solid var(--border-strong); border-radius: var(--radius-pill); padding: 10px 16px; font-family: var(--font-sans); font-size: var(--text-sm); font-weight: 600; color: var(--fg); cursor: pointer; transition: border-color .16s, box-shadow .16s, transform .16s; box-shadow: var(--shadow-xs); }
.dchip:hover { border-color: var(--coral-300); transform: translateY(-1px); }
.dchip.active { border-color: var(--coral-500); box-shadow: 0 0 0 1px var(--coral-500); }
.dchip .gi { width: 20px; height: 20px; flex: none; display: grid; place-items: center; }
.dchip .gi svg { width: 20px; height: 20px; }
.dchip .gi-fg { color: var(--fg); }
.dchip .gi-mail { color: #EA4335; }

.deploy-stage { position: relative; min-height: 440px; background: #EEEEF1; border: 1px solid var(--border); border-radius: var(--radius-xl); overflow: hidden; }
.deploy-stage .dgrid { position: absolute; inset: 0; background-image: radial-gradient(circle at center, rgba(9,9,11,.05) 1px, transparent 1px); background-size: 26px 26px; }
.dpreview { position: absolute; inset: 0; display: grid; place-items: center; padding: 30px; opacity: 0; transform: scale(.97); transition: opacity .35s ease, transform .35s ease; pointer-events: none; }
.dpreview.show { opacity: 1; transform: none; }

/* chat card mock */
.pchat { width: 300px; background: #fff; border-radius: 18px; box-shadow: var(--shadow-xl); overflow: hidden; display: flex; flex-direction: column; }
.pchat .ph { display: flex; align-items: center; gap: 9px; padding: 13px 15px; color: #fff; font-weight: 600; font-size: var(--text-sm); }
.pchat .pavi { width: 22px; height: 22px; border-radius: 50%; background: rgba(255,255,255,.25); display: grid; place-items: center; font-size: 11px; font-weight: 700; }
.pchat .pb { padding: 16px 15px; display: flex; flex-direction: column; gap: 10px; min-height: 196px; background: #fff; }
.pchat .pb-wa { background-color: #ECE5DD; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='64'%3E%3Cg fill='none' stroke='%23000' stroke-opacity='0.035' stroke-width='2'%3E%3Ccircle cx='14' cy='16' r='6'/%3E%3Cpath d='M42 8 q7 7 0 14'/%3E%3Crect x='38' y='36' width='13' height='11' rx='2'/%3E%3Cpath d='M8 46 h15'/%3E%3Cpath d='M50 54 l5 5'/%3E%3C/g%3E%3C/svg%3E"); }
.pmsg { max-width: 84%; font-size: 12.5px; line-height: 1.45; padding: 9px 12px; border-radius: 13px; }
.pin { align-self: flex-end; color: #fff; border-radius: 13px 13px 4px 13px; }
.pout { align-self: flex-start; background: var(--bg-muted); color: var(--fg); border-radius: 13px 13px 13px 4px; }
.t-widget .ph { background: var(--zinc-950); } .t-widget .pin { background: var(--coral-500); }
.t-wa .ph { background: #075E54; } .t-wa .pin { background: #DCF8C6; color: #0b3d2e; } .t-wa .pout { background: #fff; }
.t-msgr .ph { background: #0084FF; } .t-msgr .pin { background: #0084FF; }
.t-ig .ph { background: linear-gradient(90deg,#FA7E1E,#D62976 55%,#962FBF); } .t-ig .pin { background: linear-gradient(90deg,#D62976,#962FBF); }
.pin.t-coral { background: var(--coral-500); color:#fff; }
.dpreview.show .anim { animation: dropin .55s .25s both; }
@keyframes dropin { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* concierge page mock */
.pagewin { width: 380px; background: #fff; border-radius: 14px; box-shadow: var(--shadow-xl); overflow: hidden; }
.pw-bar { display: flex; align-items: center; gap: 6px; padding: 10px 13px; background: var(--bg-subtle); border-bottom: 1px solid var(--border); }
.pw-bar .pwd { width: 9px; height: 9px; border-radius: 50%; background: var(--border-strong); }
.pw-addr { margin-left: 10px; font-family: var(--font-mono); font-size: 11px; color: var(--fg-subtle); background: #fff; border: 1px solid var(--border); border-radius: 999px; padding: 3px 12px; }
.pw-body { padding: 22px 20px; display: grid; place-items: center; }
.pw-chat { width: 100%; max-width: 300px; display: flex; flex-direction: column; gap: 9px; }

/* email mock — macOS window (skeleton draft) */
.pmail { width: 420px; max-width: 100%; background: #fff; border-radius: 12px; box-shadow: var(--shadow-xl); overflow: hidden; }
.pm-bar { display: flex; align-items: center; gap: 7px; padding: 11px 14px; border-bottom: 1px solid var(--border); }
.pm-bar .pwd { width: 11px; height: 11px; border-radius: 50%; }
.pm-inner { padding: 22px 24px 24px; }
.pm-head { display: flex; align-items: center; gap: 13px; margin-bottom: 22px; }
.pm-ava { width: 44px; height: 44px; border-radius: 50%; flex: none; }
.pm-from { font-weight: 700; font-size: var(--text-sm); }
.pm-to { font-size: 13px; color: var(--fg-subtle); margin-top: 2px; }
.pm-lines { display: flex; flex-direction: column; gap: 9px; margin-bottom: 26px; }
.pm-lines .ln { height: 9px; border-radius: 5px; background: linear-gradient(90deg,#ececef 25%,#f6f6f8 37%,#ececef 63%); background-size: 400% 100%; animation: shimmer 1.6s linear infinite; }
.pm-lines .ln.gap { margin-top: 14px; }
.pm-powered { font-weight: 600; font-size: var(--text-sm); color: var(--fg); }
.pm-sign { font-size: var(--text-sm); color: var(--fg); margin-top: 22px; line-height: 1.5; }
@keyframes shimmer { 0% { background-position: 100% 0; } 100% { background-position: 0 0; } }

/* pop-in + typing for previews */
@keyframes popin { 0% { opacity: 0; transform: scale(.9) translateY(10px); } 100% { opacity: 1; transform: none; } }
.dpreview.show .pchat, .dpreview.show .pagewin, .dpreview.show .pmail { animation: popin .5s cubic-bezier(.22,1.05,.36,1) both; }
.dpreview.show .pmsg.pin { animation: dropin .4s both; }
.ptype .caret { display: inline-block; width: 1.5px; height: 14px; background: currentColor; margin-left: 1px; vertical-align: -2px; opacity: .8; animation: caret 1s step-end infinite; }

@media (max-width: 860px) {
  .deploy-wrap { grid-template-columns: 1fr; gap: 22px; }
  .deploy-stage { min-height: 380px; }
}

/* ---------- Pricing page: 5-tier compact grid ---------- */
.tiers-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 48px; align-items: stretch; }
.tiers-5 .tier { padding: 24px 20px; gap: 16px; border-radius: var(--radius-lg); }
.tiers-5 .tier .name { font-size: var(--text-lg); }
.tiers-5 .tier .price { font-size: var(--text-2xl); }
.tiers-5 .tier .price small { font-size: var(--text-xs); }
.tiers-5 .tier .desc { font-size: var(--text-xs); min-height: 48px; }
.tiers-5 .tier .feats { gap: 9px; }
.tiers-5 .tier .feats li { font-size: var(--text-xs); gap: 8px; }
.tiers-5 .tier .feats svg { width: 14px; height: 14px; }
.tiers-5 .tier .btn { padding: 9px 12px; font-size: var(--text-xs); margin-top: auto; }
.tiers-5 .tier.featured::before { left: 50%; transform: translateX(-50%); }
.tiers-5 .feats .inc { font-weight: 600; color: var(--fg); font-size: var(--text-xs); }
@media (max-width: 1080px) { .tiers-5 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .tiers-5 { grid-template-columns: 1fr; } }
