/* MRKT Manager landing — palette mirrors the app (frontend/src/styles/tokens.css, html.dark). */
@font-face {
  font-family: "Inter var";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/fonts/InterVariable.woff2") format("woff2");
}

:root {
  --bg: #0b0f14;
  --bg-card: #11161d;
  --bg-elevated: #151b23;
  --bg-inset: #0d1218;
  --border: #1f2630;
  --border-strong: #2a3442;
  --text: #e6edf3;
  --text-2: #9aa4af;
  --text-muted: #6b7280;
  --accent: #3d9b7a;
  --accent-hover: #347f63;
  --accent-soft: rgba(61, 155, 122, 0.12);
  --mint: #8bc5b1;
  --amber: #fbbf24;
  --rose: #f87171;
  --maxw: 68rem;
  --radius: 14px;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(1100px 520px at 78% -8%, rgba(61, 155, 122, 0.07), transparent 60%),
    var(--bg);
  color: var(--text);
  font-family: "Inter var", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  font-feature-settings: "cv05" 1, "ss01" 1;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--text); text-decoration: none; }
a:hover { color: #fff; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: 1.5rem;
}
.accent-text {
  background: linear-gradient(96deg, #a6d6c5 0%, #8bc5b1 45%, #4fae8c 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.in { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: 0.05s; }
.reveal:nth-child(3) { transition-delay: 0.1s; }
.reveal:nth-child(4) { transition-delay: 0.15s; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .appwin, .appwin *, .appwin::after, .pill.live::before, .appwin-badge, .badge-dot { animation: none !important; }
  .appwin::after { display: none; }
}

/* ---------- top bar ---------- */
.topbar {
  position: sticky; top: 0; z-index: 20;
  border-bottom: 1px solid transparent;
  background: rgba(11, 15, 20, 0.72);
  backdrop-filter: saturate(140%) blur(12px);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.topbar.scrolled { border-bottom-color: var(--border); background: rgba(11, 15, 20, 0.88); }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; height: 3.65rem; gap: 1rem; }
.brand { display: inline-flex; align-items: center; }
.logo { height: 1.3rem; width: auto; display: block; }
.topnav { display: flex; align-items: center; gap: 1.4rem; font-size: 0.9rem; }
.topnav a { color: var(--text-2); }
.topnav a:hover { color: var(--text); }
.topnav .nav-cta { margin-left: 0.3rem; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: inherit; font-size: 0.95rem; font-weight: 600;
  border-radius: 10px; padding: 0.72rem 1.2rem; border: 1px solid transparent;
  cursor: pointer; white-space: nowrap;
  transition: background-color 0.16s ease, border-color 0.16s ease, color 0.16s ease, transform 0.16s ease, box-shadow 0.16s ease;
}
.btn svg { width: 1.05rem; height: 1.05rem; flex: none; }
.btn-primary { background: linear-gradient(180deg, #46a988, var(--accent)); color: #f0fdf8; box-shadow: 0 1px 0 rgba(255,255,255,0.08) inset, 0 8px 24px -10px rgba(61,155,122,0.6); }
.btn-primary:hover { background: linear-gradient(180deg, #4cb491, var(--accent-hover)); color: #fff; transform: translateY(-1px); box-shadow: 0 1px 0 rgba(255,255,255,0.1) inset, 0 12px 30px -10px rgba(61,155,122,0.75); }
.btn-sm { padding: 0.48rem 0.85rem; font-size: 0.875rem; border-radius: 9px; }
.btn-ghost { background: var(--bg-card); border-color: var(--border-strong); color: var(--text-2); }
.btn-ghost:hover { color: var(--text); border-color: #38445400; border-color: var(--border-strong); }
.btn-ghost[aria-disabled="true"] { cursor: not-allowed; }
.btn-ghost .soon { font-size: 0.66rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); border: 1px solid var(--border-strong); border-radius: 999px; padding: 0.05rem 0.45rem; }

/* ---------- hero ---------- */
.hero { position: relative; padding: clamp(3rem, 7vw, 6rem) 0 clamp(2.5rem, 5vw, 4rem); }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1.4px);
  background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(125% 80% at 28% -5%, #000 28%, transparent 72%);
  mask-image: radial-gradient(125% 80% at 28% -5%, #000 28%, transparent 72%);
  opacity: 0.7;
}
.hero > .wrap { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.eyebrow {
  display: inline-block; font-size: 0.74rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--mint); border: 1px solid var(--border-strong); background: var(--accent-soft);
  border-radius: 999px; padding: 0.28rem 0.75rem; margin-bottom: 1.4rem;
}
.hero h1 { font-size: clamp(2.2rem, 5.2vw, 3.55rem); line-height: 1.05; letter-spacing: -0.035em; font-weight: 800; margin: 0 0 1.15rem; }
.hero .lede { font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: var(--text-2); max-width: 34ch; margin: 0 0 2rem; }
.cta { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }
.cta-meta { margin-top: 0.95rem; font-size: 0.85rem; color: var(--text-muted); }
.cta-meta a { color: var(--text-2); text-decoration: underline; text-underline-offset: 2px; }
.cta-meta a:hover { color: var(--text); }

/* ---------- product window visual ---------- */
.hero-visual { perspective: 1400px; position: relative; isolation: isolate; }
.hero-visual::before {
  content: ""; position: absolute; inset: 6% -4% -8% 6%; z-index: 0; pointer-events: none;
  background: radial-gradient(55% 55% at 62% 38%, rgba(61, 155, 122, 0.20), transparent 72%);
  filter: blur(38px);
}
.appwin {
  position: relative; z-index: 1;
  border: 1px solid var(--border-strong); border-radius: 14px; overflow: hidden;
  background: var(--bg-inset);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,255,255,0.02) inset;
  transform: rotateY(-9deg) rotateX(3deg) translateZ(0); transform-origin: center;
  animation: floaty 7s ease-in-out infinite;
}
.appwin::after {
  content: ""; position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background: linear-gradient(110deg, transparent 36%, rgba(255, 255, 255, 0.07) 48%, transparent 60%);
  transform: translateX(-130%);
  animation: sweep 7.5s ease-in-out 1.6s infinite;
}
@keyframes floaty { 0%,100% { transform: rotateY(-9deg) rotateX(3deg) translateY(0); } 50% { transform: rotateY(-7deg) rotateX(2deg) translateY(-8px); } }
@keyframes sweep { 0% { transform: translateX(-130%); } 16%, 100% { transform: translateX(130%); } }
@keyframes livepulse { 0% { box-shadow: 0 0 0 0 rgba(139,197,177,0.55); } 70% { box-shadow: 0 0 0 5px rgba(139,197,177,0); } 100% { box-shadow: 0 0 0 0 rgba(139,197,177,0); } }
.appwin-bar { display: flex; align-items: center; gap: 0.4rem; padding: 0.6rem 0.85rem; background: var(--bg-card); border-bottom: 1px solid var(--border); }
.appwin-bar .tl { width: 0.62rem; height: 0.62rem; border-radius: 50%; background: var(--border-strong); }
.appwin-title { margin-left: 0.6rem; font-size: 0.75rem; color: var(--text-muted); font-weight: 600; }
.appwin-body { display: grid; grid-template-columns: 2.6rem 1fr; min-height: 19rem; }
.appwin-side { background: var(--bg-card); border-right: 1px solid var(--border); display: flex; flex-direction: column; align-items: center; gap: 0.8rem; padding: 0.9rem 0; }
.nav-dot { width: 1.1rem; height: 1.1rem; border-radius: 6px; background: var(--border-strong); }
.nav-dot.on { background: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.nav-dot.foot { margin-top: auto; }
.appwin-main { padding: 0.95rem 1.05rem; }
.appwin-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.85rem; }
.appwin-h-title { font-size: 0.85rem; color: var(--text-2); } .appwin-h-title b { color: var(--text); }
.appwin-search { width: 7rem; height: 1.5rem; border-radius: 7px; background: var(--bg-card); border: 1px solid var(--border); }
.rows { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.row { display: grid; grid-template-columns: 2rem 1fr auto; grid-template-areas: "thumb a pill" "thumb b pill"; align-items: center; column-gap: 0.7rem; row-gap: 0.28rem; padding: 0.5rem 0.6rem; border: 1px solid var(--border); border-radius: 9px; background: var(--bg-card); }
.row .thumb { grid-area: thumb; width: 2rem; height: 2rem; border-radius: 6px; background: linear-gradient(135deg, var(--border-strong), var(--bg-elevated)); }
.row .ln { height: 0.5rem; border-radius: 4px; background: var(--border-strong); }
.row .ln.a { grid-area: a; width: 62%; } .row .ln.b { grid-area: b; width: 38%; background: var(--border); }
.pill { grid-area: pill; font-size: 0.68rem; font-weight: 600; padding: 0.12rem 0.5rem; border-radius: 999px; border: 1px solid var(--border-strong); }
.pill.live { display: inline-flex; align-items: center; gap: 0.32rem; color: var(--mint); background: var(--accent-soft); border-color: rgba(61,155,122,0.4); }
.pill.live::before { content: ""; width: 0.4rem; height: 0.4rem; border-radius: 50%; background: var(--mint); animation: livepulse 2.4s ease-out infinite; }
.pill.ready { color: var(--amber); background: rgba(251,191,36,0.1); border-color: rgba(251,191,36,0.35); }
.pill.sold { color: var(--rose); background: rgba(248,113,113,0.08); border-color: rgba(248,113,113,0.3); }

/* floating "synced" status chip — a small living-UI touch over the window */
.appwin-badge {
  position: absolute; z-index: 2; left: -0.65rem; bottom: 1.6rem;
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 0.78rem; font-weight: 600; color: var(--text);
  background: var(--bg-elevated); border: 1px solid var(--border-strong);
  border-radius: 999px; padding: 0.42rem 0.78rem;
  box-shadow: 0 16px 34px -18px rgba(0,0,0,0.85), 0 0 0 1px rgba(255,255,255,0.02) inset;
  animation: floaty-badge 7s ease-in-out 0.5s infinite;
}
.badge-dot { width: 0.46rem; height: 0.46rem; border-radius: 50%; background: var(--mint); animation: livepulse 2.4s ease-out infinite; }
@keyframes floaty-badge { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* ---------- sections ---------- */
.section { padding: clamp(3rem, 6vw, 5rem) 0; border-top: 1px solid var(--border); scroll-margin-top: 4.5rem; }
.section h2 { font-size: clamp(1.5rem, 2.4vw, 2rem); letter-spacing: -0.025em; font-weight: 800; margin: 0 0 0.55rem; }
.section .sub { color: var(--text-2); margin: 0 0 2.25rem; font-size: 1.05rem; }

.grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.card { position: relative; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem 1.55rem; transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease; }
.card:hover { transform: translateY(-3px); border-color: var(--border-strong); background: var(--bg-elevated); box-shadow: 0 16px 40px -24px rgba(0, 0, 0, 0.75); }
.card-ico { display: inline-grid; place-items: center; width: 2.5rem; height: 2.5rem; border-radius: 11px; margin-bottom: 1.05rem; color: var(--mint); background: var(--accent-soft); border: 1px solid rgba(61, 155, 122, 0.28); transition: transform 0.18s ease, background 0.18s ease; }
.card-ico svg { width: 1.3rem; height: 1.3rem; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.card:hover .card-ico { transform: translateY(-1px) scale(1.04); background: rgba(61, 155, 122, 0.2); }
.card h3 { margin: 0 0 0.45rem; font-size: 1.1rem; font-weight: 700; letter-spacing: -0.01em; }
.card p { margin: 0; color: var(--text-2); font-size: 0.96rem; }

/* ---------- how it works ---------- */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; counter-reset: s; }
.step { display: flex; gap: 0.95rem; align-items: flex-start; }
.step-n { flex: none; width: 2rem; height: 2rem; display: grid; place-items: center; border-radius: 50%; font-weight: 700; font-size: 0.9rem; color: var(--mint); background: var(--accent-soft); border: 1px solid rgba(61,155,122,0.35); }
.step h3 { margin: 0.15rem 0 0.3rem; font-size: 1.02rem; font-weight: 700; }
.step p { margin: 0; color: var(--text-2); font-size: 0.93rem; }

/* ---------- listing showcase ---------- */
.showcase-section { position: relative; overflow: hidden; }
.showcase-section::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(60% 60% at 82% 0%, rgba(61, 155, 122, 0.08), transparent 70%);
}
.showcase-section > .wrap { position: relative; z-index: 1; }
.shots { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.shot {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.shot:hover { transform: translateY(-3px); border-color: var(--border-strong); box-shadow: 0 16px 40px -24px rgba(0, 0, 0, 0.75); }
.shot-photo {
  position: relative; aspect-ratio: 16 / 10; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--bg-elevated), var(--bg-inset));
  border-bottom: 1px solid var(--border);
}
.shot-car { width: 44%; height: auto; color: var(--text-muted); opacity: 0.55; }
.shot-pill { position: absolute; top: 0.65rem; left: 0.65rem; }
.shot-body { padding: 0.95rem 1.05rem 1.05rem; }
.shot-title { font-size: 0.98rem; font-weight: 700; letter-spacing: -0.01em; }
.shot-price { margin-top: 0.2rem; font-size: 1.02rem; font-weight: 700; color: var(--mint); }
.shot-meta { margin-top: 0.3rem; font-size: 0.82rem; color: var(--text-muted); }

/* ---------- beta band ---------- */
.beta-section .wrap { }
.beta { display: flex; flex-wrap: wrap; gap: 1.5rem 2.5rem; align-items: center; justify-content: space-between; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2.25rem); }
.beta h2 { margin: 0 0 0.4rem; }
.beta p { margin: 0; color: var(--text-2); max-width: 42ch; }
.beta-cta { display: flex; flex-direction: column; gap: 0.6rem; align-items: flex-start; }
.fineprint { font-size: 0.8rem; color: var(--text-muted); margin: 0; }
.fineprint a { color: var(--text-2); text-decoration: underline; text-underline-offset: 2px; }
.fineprint a:hover { color: var(--text); }

/* ---------- footer ---------- */
.footer { padding: 2.75rem 0 3.25rem; border-top: 1px solid var(--border); }
.footer-inner { display: flex; flex-direction: column; gap: 0.85rem; }
.footer-legal { margin: 0; color: var(--text-2); font-size: 0.875rem; }
.footer-legal a { color: var(--text-2); text-decoration: underline; text-underline-offset: 2px; }
.footer-nav { display: flex; gap: 1.3rem; font-size: 0.875rem; }
.footer-nav a { color: var(--text-2); } .footer-nav a:hover { color: var(--text); }
.footer-disclaimer { margin: 0; color: var(--text-muted); font-size: 0.8rem; max-width: 72ch; }

/* ---------- legal pages ---------- */
.legal { padding: 2.5rem 0 1rem; }
.back { display: inline-block; color: var(--text-2); font-size: 0.875rem; margin-bottom: 1.5rem; }
.back:hover { color: var(--text); }
.prose { max-width: 46rem; }
.prose h1 { font-size: clamp(1.6rem, 3vw, 2rem); letter-spacing: -0.02em; margin: 0 0 1.25rem; }
.prose h2 { font-size: 1.2rem; margin: 2rem 0 0.5rem; }
.prose p, .prose li { color: var(--text-2); }
.prose strong { color: var(--text); }
.prose a { color: var(--mint); text-decoration: underline; text-underline-offset: 2px; }
.prose ul { padding-left: 1.25rem; }
.prose li { margin: 0.3rem 0; }
.prose blockquote { margin: 1rem 0; padding: 0.6rem 1rem; border-left: 3px solid var(--border-strong); background: var(--bg-card); border-radius: 0 8px 8px 0; color: var(--text-muted); }
.prose hr { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }
.prose code { background: var(--bg-elevated); border: 1px solid var(--border); border-radius: 4px; padding: 0.1rem 0.35rem; font-size: 0.9em; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .hero { padding-top: clamp(2rem, 6vw, 3rem); }
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-copy { order: 1; }                 /* lead with the message, not the mockup */
  .hero-visual { order: 2; width: 100%; max-width: 25rem; margin: 0 auto; }
  .hero-visual::before { inset: 4% 0 -6% 0; }
  .hero .lede { max-width: 48ch; }
  .appwin { transform: none; animation: none; box-shadow: 0 24px 50px -28px rgba(0, 0, 0, 0.8); }
  .steps { grid-template-columns: 1fr; gap: 1.4rem; }
}
@media (max-width: 620px) {
  .grid { grid-template-columns: 1fr; }
  .shots { grid-template-columns: 1fr; }
  .wrap { padding-inline: 1.15rem; }
  .topnav { gap: 0.8rem; }
  .topnav .hide-sm { display: none; }
  .beta { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .hero h1 { font-size: clamp(2rem, 8.5vw, 2.7rem); }
  .hero .lede { font-size: 1.05rem; max-width: none; }
  .hero-visual { max-width: 21rem; }
  .appwin-badge { left: 0.4rem; bottom: 0.9rem; font-size: 0.72rem; padding: 0.36rem 0.66rem; }
  .appwin-body { min-height: 15.5rem; }
  .section h2 { font-size: clamp(1.45rem, 6vw, 1.8rem); }
  .section .sub { font-size: 1rem; }
  .btn { padding: 0.82rem 1.3rem; }        /* comfortable tap target */
}

/* ---------- pricing ---------- */
.page-hero { padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(1.5rem, 3vw, 2.5rem); text-align: center; }
.page-hero .eyebrow { margin-bottom: 1rem; }
.page-hero h1 { font-size: clamp(2rem, 4.6vw, 3.1rem); line-height: 1.06; letter-spacing: -0.035em; font-weight: 800; margin: 0 0 1rem; }
.page-hero .lede { font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: var(--text-2); max-width: 48ch; margin-left: auto; margin-right: auto; }

.pricing-section { border-top: none; padding-top: clamp(1rem, 2vw, 2rem); }

.plans { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.1rem; max-width: 46rem; margin: 0 auto; }
.plan { position: relative; display: flex; flex-direction: column; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem 1.6rem; transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease; }
.plan:hover { transform: translateY(-3px); border-color: var(--border-strong); background: var(--bg-elevated); box-shadow: 0 16px 40px -24px rgba(0, 0, 0, 0.75); }
.plan-featured { border-color: rgba(61, 155, 122, 0.5); box-shadow: 0 0 0 1px rgba(61, 155, 122, 0.22), 0 18px 44px -26px rgba(61, 155, 122, 0.45); }
.plan-featured:hover { border-color: var(--accent); }
.plan-badge { position: absolute; top: -0.72rem; right: 1.25rem; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: #07120d; background: linear-gradient(180deg, #a6d6c5, var(--mint)); border-radius: 999px; padding: 0.24rem 0.62rem; box-shadow: 0 6px 16px -8px rgba(139, 197, 177, 0.7); }
.plan-name { font-size: 1.15rem; font-weight: 700; letter-spacing: -0.01em; margin: 0; }
.plan-tagline { margin: 0.18rem 0 0; color: var(--text-2); font-size: 0.92rem; }
.plan-price { display: flex; align-items: baseline; gap: 0.45rem; margin: 1.05rem 0 0.15rem; }
.plan-amount { font-size: clamp(2.2rem, 4vw, 2.7rem); font-weight: 800; letter-spacing: -0.03em; color: var(--text); }
.plan-period { font-size: 0.92rem; color: var(--text-2); font-weight: 500; }
.plan-tax { margin: 0 0 1.3rem; font-size: 0.85rem; color: var(--text-muted); }
.plan-cta { justify-content: center; width: 100%; margin-top: auto; }
.plan-fine { margin: 0.7rem 0 0; font-size: 0.8rem; color: var(--text-muted); text-align: center; }

.includes-block { max-width: 46rem; margin: 2.5rem auto 0; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.6rem 1.6rem 1.45rem; }
.includes-title { margin: 0 0 1.15rem; font-size: 1.05rem; font-weight: 700; letter-spacing: -0.01em; }
.includes { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.7rem 1.5rem; }
.includes li { display: flex; align-items: flex-start; gap: 0.6rem; color: var(--text-2); font-size: 0.94rem; line-height: 1.45; }
.includes svg { flex: none; width: 1.05rem; height: 1.05rem; margin-top: 0.16rem; color: var(--mint); fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }

.faq { max-width: 46rem; display: flex; flex-direction: column; gap: 0.7rem; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: 11px; padding: 0 1.1rem; transition: border-color 0.18s ease; }
.faq-item[open] { border-color: var(--border-strong); }
.faq-item summary { cursor: pointer; list-style: none; padding: 1rem 0; font-weight: 600; font-size: 0.98rem; color: var(--text); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--mint); font-weight: 700; font-size: 1.25rem; line-height: 1; transition: transform 0.18s ease; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin: 0 0 1rem; color: var(--text-2); font-size: 0.94rem; }

/* On the pricing page the whole layout is centered, so center the FAQ block + heading too. */
.pricing-faq-section h2 { text-align: center; }
.pricing-faq-section .faq { margin-left: auto; margin-right: auto; }

@media (max-width: 620px) {
  .plans { grid-template-columns: 1fr; }
  .includes { grid-template-columns: 1fr; }
}

/* ---------- feature spotlights ---------- */
.spotlights { display: flex; flex-direction: column; gap: clamp(2.75rem, 6vw, 5rem); margin-top: 0.5rem; }
.spotlight { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.75rem, 5vw, 4rem); align-items: center; }
.spotlight.flip .spotlight-visual { order: -1; }
.spotlight-eyebrow { display: inline-block; font-size: 0.74rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--mint); margin-bottom: 0.7rem; }
.spotlight-copy h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); letter-spacing: -0.025em; font-weight: 800; margin: 0 0 0.7rem; }
.spotlight-copy > p { color: var(--text-2); margin: 0 0 1.25rem; font-size: 1.02rem; max-width: 42ch; }
.spotlight-points { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.55rem; }
.spotlight-points li { display: flex; align-items: flex-start; gap: 0.6rem; color: var(--text-2); font-size: 0.95rem; }
.spotlight-points svg { flex: none; width: 1.05rem; height: 1.05rem; margin-top: 0.16rem; color: var(--mint); fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }

.spotlight-visual { position: relative; isolation: isolate; }
.spotlight-visual::before { content: ""; position: absolute; inset: 8% 2% -6% 2%; z-index: 0; pointer-events: none; background: radial-gradient(55% 55% at 60% 40%, rgba(61, 155, 122, 0.16), transparent 72%); filter: blur(34px); }
.viz { position: relative; z-index: 1; border: 1px solid var(--border-strong); border-radius: var(--radius); background: var(--bg-inset); padding: 1.15rem; box-shadow: 0 30px 60px -34px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.02) inset; }

.viz-sync { display: flex; flex-direction: column; gap: 0.55rem; }
.viz-panel { background: var(--bg-card); border: 1px solid var(--border); border-radius: 11px; padding: 0.8rem 0.9rem; }
.viz-panel-head { display: flex; align-items: center; gap: 0.45rem; font-size: 0.78rem; color: var(--text-2); font-weight: 600; margin-bottom: 0.6rem; }
.viz-dot { width: 0.5rem; height: 0.5rem; border-radius: 50%; background: var(--text-muted); }
.viz-dot.mint { background: var(--mint); }
.viz-rows { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.45rem; }
.viz-rows li { display: flex; align-items: center; gap: 0.6rem; }
.viz-ln { height: 0.5rem; border-radius: 4px; background: var(--border-strong); }
.viz-ln.a { flex: 1; }
.viz-ln.b { width: 22%; background: var(--border); }
.viz-rows .pill { margin-left: auto; }
.viz-sync-flow { display: grid; place-items: center; color: var(--mint); }
.viz-sync-flow svg { width: 1.5rem; height: 1.5rem; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; animation: spin 6s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.viz-listing { display: flex; flex-direction: column; gap: 0.8rem; }
.viz-chips { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.viz-chip { font-size: 0.76rem; color: var(--text-2); background: var(--bg-card); border: 1px solid var(--border); border-radius: 999px; padding: 0.22rem 0.6rem; }
.viz-gen-tag { display: inline-flex; align-items: center; gap: 0.35rem; align-self: flex-start; font-size: 0.7rem; font-weight: 600; color: var(--mint); background: var(--accent-soft); border: 1px solid rgba(61, 155, 122, 0.3); border-radius: 999px; padding: 0.2rem 0.55rem; }
.viz-gen-tag svg { width: 0.85rem; height: 0.85rem; fill: currentColor; }
.viz-gen { background: var(--bg-card); border: 1px solid var(--border); border-radius: 11px; padding: 0.9rem; display: flex; flex-direction: column; gap: 0.5rem; }
.viz-gen-title { font-size: 0.92rem; font-weight: 700; color: var(--text); letter-spacing: -0.01em; line-height: 1.35; }
.viz-gl { height: 0.55rem; border-radius: 4px; background: var(--border-strong); }
.viz-gl.short { width: 55%; }

.viz-chat { display: flex; flex-direction: column; gap: 0.7rem; }
.chat-msg { display: flex; gap: 0.55rem; max-width: 90%; }
.chat-msg.in { align-self: flex-start; }
.chat-msg.out { align-self: flex-end; }
.chat-av { flex: none; width: 1.6rem; height: 1.6rem; border-radius: 50%; background: linear-gradient(135deg, var(--border-strong), var(--bg-elevated)); }
.chat-msg.in p { margin: 0; background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px 12px 12px 4px; padding: 0.55rem 0.75rem; font-size: 0.86rem; color: var(--text-2); }
.chat-suggest { background: var(--accent-soft); border: 1px solid rgba(61, 155, 122, 0.3); border-radius: 12px 12px 4px 12px; padding: 0.55rem 0.75rem; }
.chat-tag { display: inline-flex; align-items: center; gap: 0.3rem; font-size: 0.68rem; font-weight: 700; color: var(--mint); margin-bottom: 0.3rem; }
.chat-tag svg { width: 0.8rem; height: 0.8rem; fill: currentColor; }
.chat-suggest p { margin: 0; font-size: 0.86rem; color: var(--text); }

@media (max-width: 760px) {
  .spotlight { grid-template-columns: 1fr; gap: 1.5rem; }
  .spotlight.flip .spotlight-visual { order: 0; }
  .spotlight-visual { max-width: 26rem; }
}

/* ---------- features page: capabilities grid ---------- */
.cap-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
@media (max-width: 860px) { .cap-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .cap-grid { grid-template-columns: 1fr; } }

/* inline "see all" link inside a section sub-heading */
.more-link { color: var(--mint); font-weight: 600; white-space: nowrap; }
.more-link:hover { color: var(--text); }

/* "Coming soon" badge for features that are not generally available yet */
.tag-soon { display: inline-block; margin-left: 0.5rem; font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--amber); background: rgba(251, 191, 36, 0.12); border: 1px solid rgba(251, 191, 36, 0.35); border-radius: 999px; padding: 0.12rem 0.45rem; vertical-align: middle; }
