:root {
  --bg: #0a0a0b;
  --bg-soft: #121214;
  --bg-soft-2: #17171a;
  --ink: #f3f3ef;
  --ink-2: #d6d6d2;
  --muted: #8a8a85;
  --line: #232326;
  --line-2: #1c1c1f;
  --accent: #ffffff;
  --brand: #ff6a30;
  --brand-2: #ffd166;
  --brand-soft: rgba(255, 106, 48, 0.14);
  --green: #4ad295;
  --blue: #6e8bff;
  --purple: #a98cff;
  --pink: #ff8ec0;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.4), 0 2px 8px rgba(0,0,0,.3);
  --shadow-md: 0 8px 24px rgba(0,0,0,.45), 0 24px 48px -16px rgba(0,0,0,.55);
  --shadow-lg: 0 24px 48px rgba(0,0,0,.55), 0 60px 120px -40px rgba(0,0,0,.7);
  --radius: 14px;
  --radius-lg: 22px;
  --max: 1200px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-feature-settings: "ss01", "ss02";
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--brand); color: #fff; }

/* ===== Logo ===== */
.logo { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 20px; letter-spacing: -0.02em; }
.logo-img {
  height: 26px;
  width: auto;
  display: block;
}
.logo-mark {
  width: 26px; height: 26px; border-radius: 8px;
  background:
    radial-gradient(circle at 30% 30%, #ffb37a 0%, var(--brand) 55%, #c33a00 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.35), 0 4px 10px rgba(255,91,31,.35);
  position: relative;
}
.logo-mark::after {
  content: ""; position: absolute; inset: 6px;
  border-radius: 4px;
  background: radial-gradient(circle at 70% 70%, rgba(255,255,255,.55), transparent 60%);
}
.logo-mark.sm { width: 18px; height: 18px; border-radius: 6px; }
.logo-text { color: var(--ink); }

/* ===== Buttons ===== */
.btn-primary, .btn-secondary, .btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  font-weight: 500; font-size: 14.5px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: #fff;
  color: #0a0a0b;
  box-shadow: 0 1px 0 rgba(0,0,0,.08) inset, 0 8px 18px -8px rgba(255,255,255,.18);
}
.btn-primary:hover { transform: translateY(-1px); background: #ebebe7; }
.btn-secondary {
  background: rgba(255,255,255,0.04);
  color: var(--ink);
  border-color: var(--line);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover { border-color: #34343a; background: rgba(255,255,255,0.07); }
.btn-ghost {
  background: transparent;
  color: var(--ink-2);
  padding: 10px 12px;
}
.btn-ghost:hover { color: var(--ink); }
.btn-lg {
  padding: 14px 22px;
  font-size: 15.5px;
  border-radius: 999px;
}
.btn-arrow { display: inline-block; transition: transform .2s ease; }
.btn-primary:hover .btn-arrow,
.btn-secondary:hover .btn-arrow { transform: translateX(3px); }

/* ===== Nav ===== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,10,11,.65);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 28px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.nav-links {
  display: flex; gap: 6px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  padding: 6px;
  border-radius: 999px;
}
.nav-links a {
  padding: 8px 14px;
  font-size: 14px;
  color: var(--ink-2);
  border-radius: 8px;
  transition: background .2s, color .2s;
}
.nav-links a:hover { background: rgba(255,255,255,0.06); color: var(--ink); }
.nav-cta { display: flex; justify-content: flex-end; align-items: center; gap: 6px; }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 72px 28px 90px;
  overflow: hidden;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .55;
}
.orb-a {
  width: 520px; height: 520px;
  left: -120px; top: -80px;
  background: radial-gradient(circle, rgba(255,140,80,.55) 0%, rgba(255,90,30,.35) 35%, transparent 70%);
}
.orb-b {
  width: 460px; height: 460px;
  right: -120px; top: 60px;
  background: radial-gradient(circle, rgba(120,140,255,.45) 0%, rgba(80,100,255,.25) 35%, transparent 70%);
  opacity: .6;
}
.grid-fade {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 50% 30%, #000 35%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 35%, transparent 75%);
}

/* ===== Hero (cinematic full-bleed image) ===== */
.hero-cinematic {
  position: relative;
  min-height: 760px;
  padding: 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  overflow: hidden;
}
.hero-cinematic .hero-inner {
  padding: 120px 28px 160px;
}
.hero-cinematic .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-img,
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(10,10,11,0.55) 0%, rgba(10,10,11,0.25) 40%, transparent 70%),
    linear-gradient(to bottom, rgba(10,10,11,0.55) 0%, rgba(10,10,11,0.15) 38%, rgba(10,10,11,0.05) 60%, rgba(10,10,11,0.6) 100%);
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  padding: 6px 14px 6px 10px;
  border-radius: 999px;
  font-size: 13.5px;
  color: var(--ink-2);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
}
.eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 3px rgba(255,106,48,.22);
}
.eyebrow-arrow { color: var(--muted); }

.hero-title {
  font-size: clamp(40px, 6.4vw, 78px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 22px auto 18px;
  max-width: 14ch;
  color: var(--ink);
}
.title-accent {
  background: linear-gradient(95deg, var(--brand) 0%, #ff9c66 50%, #ffd2b8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}
.hero-sub {
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--muted);
  max-width: 56ch;
  margin: 0 auto 30px;
}

.hero-ctas {
  display: flex; gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 28px;
}

.hero-meta {
  display: flex; align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 13.5px;
  color: var(--muted);
}
.rating { display: inline-flex; align-items: center; gap: 8px; }
.stars { display: inline-flex; gap: 1px; }
.stars svg { width: 15px; height: 15px; fill: var(--brand-2); }
.rating-text strong { color: var(--ink); font-weight: 600; }
.meta-divider { width: 4px; height: 4px; border-radius: 50%; background: var(--line); }

/* ===== Hero scene ===== */
.hero-scene {
  position: relative;
  margin: 64px auto 0;
  max-width: 1100px;
}
.scene-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  background: #0a0a0b;
  aspect-ratio: 1376 / 768;
}
.scene-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
}
.scene-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 95%, rgba(255,106,48,0.20) 0%, transparent 55%),
    linear-gradient(to bottom, rgba(10,10,11,0) 60%, rgba(10,10,11,0.55) 100%);
}

/* Floating cards */
.float-card {
  position: absolute;
  background: var(--bg-soft-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 14px;
  width: 220px;
  backdrop-filter: blur(8px);
}
.card-ai {
  left: -28px;
  bottom: 60px;
  transform: rotate(-2deg);
}
.card-stat {
  right: -32px;
  top: 80px;
  width: 200px;
  transform: rotate(2deg);
  text-align: left;
}
.card-head {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 10px;
}
.ai-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  background: #fff;
  color: #0a0a0b;
  padding: 3px 6px;
  border-radius: 4px;
}
.card-title { font-size: 13px; font-weight: 500; color: var(--ink); }
.card-line { margin: 6px 0; }
.bar {
  display: block;
  height: 7px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--brand) 0%, #ffb38a 100%);
}
.w-90 { width: 90%; }
.w-70 { width: 70%; }
.w-55 { width: 55%; opacity: .5; }
.card-foot {
  display: flex; gap: 6px; margin-top: 10px;
}
.card-tag {
  font-size: 10.5px;
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  color: var(--ink-2);
}
.stat-num {
  font-size: 38px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
}
.stat-num span {
  font-size: 16px;
  color: var(--muted);
  margin-left: 4px;
  letter-spacing: 0;
}
.stat-label {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 6px;
}
.stat-trend {
  margin-top: 10px;
  height: 24px;
}
.stat-trend svg {
  width: 100%; height: 100%;
}
.stat-trend path {
  fill: none;
  stroke: var(--brand);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ===== Products page ===== */
.products-section { padding: 56px 28px 80px; }
.products-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.product-card {
  position: relative;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 38px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
  align-items: center;
  overflow: hidden;
}
.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 100% 0%, rgba(255,255,255,0.04), transparent 60%);
}
.product-prompts {
  background: linear-gradient(155deg, rgba(255,106,48,0.10) 0%, var(--bg-soft) 50%);
}
.product-assistant {
  background: linear-gradient(205deg, rgba(110,139,255,0.10) 0%, var(--bg-soft) 50%);
}
.product-assistant {
  grid-template-columns: 1fr 1.1fr;
}
.product-assistant .product-side { order: 2; }
.product-assistant .product-visual { order: 1; }

.product-side { position: relative; z-index: 1; }
.product-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.product-icon svg { width: 24px; height: 24px; }

.product-tag {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 8px;
}
.product-name {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 10px;
  color: var(--ink);
}
.product-tagline {
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 14px;
}
.product-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 20px;
}

.product-features {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ink-2);
}
.check {
  width: 18px; height: 18px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255,106,48,0.14);
  border: 1px solid rgba(255,106,48,0.38);
  position: relative;
  margin-top: 2px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%23ff6a30' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><path d='M3 6.4 L5.2 8.4 L9 4.2'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
}

.product-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.product-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.pstat { display: flex; flex-direction: column; gap: 2px; }
.pstat strong {
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.pstat strong span {
  font-size: 13px;
  color: var(--muted);
  margin-left: 2px;
  font-weight: 400;
}
.pstat span {
  font-size: 12px;
  color: var(--muted);
}

/* Visual side - prompts */
.product-visual {
  position: relative;
  min-height: 380px;
}
.product-visual-prompts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  align-content: center;
}
.pv-card {
  background: var(--bg-soft-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform .25s ease, border-color .25s ease;
}
.pv-card:hover { transform: translateY(-2px); border-color: #34343a; }
.pv-card-1 { transform: rotate(-1.5deg); }
.pv-card-2 { transform: rotate(1.5deg) translateY(8px); }
.pv-card-3 { transform: rotate(1deg); }
.pv-card-4 { transform: rotate(-1deg) translateY(8px); }
.pv-tag {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--muted);
  font-weight: 600;
}
.pv-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.pv-meta {
  font-size: 12px;
  color: var(--muted);
}

/* Visual side - assistant chat */
.chat-window {
  background: var(--bg-soft-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.chat-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line-2);
  background: linear-gradient(to bottom, #19191c, var(--bg-soft-2));
}
.chat-head .dot { width: 11px; height: 11px; border-radius: 50%; }
.chat-head .dot-r { background: #ff5f56; }
.chat-head .dot-y { background: #ffbd2e; }
.chat-head .dot-g { background: #27c93f; }
.chat-title {
  margin-left: 14px;
  font-size: 12.5px;
  color: var(--muted);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 12px;
}
.chat-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bubble {
  max-width: 85%;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 13.5px;
  line-height: 1.5;
}
.bubble-user {
  align-self: flex-end;
  background: rgba(110,139,255,0.18);
  color: #d0d8ff;
  border: 1px solid rgba(110,139,255,0.28);
  border-bottom-right-radius: 4px;
}
.bubble-ai {
  align-self: flex-start;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  color: var(--ink);
  border-bottom-left-radius: 4px;
  width: 85%;
}
.bubble-head {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; margin-bottom: 8px;
}
.ai-pip {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 3px rgba(255,106,48,.22);
  animation: pulse 1.6s ease-in-out infinite;
}
.bubble-line { margin: 4px 0; }
.bubble-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}
.bubble-result { display: flex; flex-direction: column; gap: 6px; padding: 14px; }
.result-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-2);
}
.result-ico {
  display: inline-flex;
  width: 18px; height: 18px;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

/* Combo CTA */
.combo-cta {
  margin-top: 24px;
  padding: 56px 32px;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255,106,48,0.10), transparent 60%),
    var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.combo-eyebrow {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--muted);
  margin-bottom: 12px;
}
.combo-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0 auto 12px;
  max-width: 28ch;
  color: var(--ink);
}
.combo-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 60ch;
  margin: 0 auto 24px;
}
.combo-buttons {
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

@media (max-width: 980px) {
  .product-card { grid-template-columns: 1fr; padding: 28px; }
  .product-assistant .product-side { order: unset; }
  .product-assistant .product-visual { order: unset; }
  .product-assistant { grid-template-columns: 1fr; }
  .product-visual { min-height: auto; }
  .product-visual-prompts { gap: 10px; }
  .pv-card { transform: none !important; }
}
@media (max-width: 640px) {
  .products-section { padding: 40px 20px 60px; }
  .product-card { padding: 22px; }
  .product-stats { gap: 18px; }
}

/* ===== Product tabs ===== */
.product-tabs {
  position: relative;
  padding: 80px 28px 64px;
}
.pt-inner {
  max-width: 1180px;
  margin: 0 auto;
}
.pt-head {
  text-align: center;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.pt-title {
  font-size: clamp(28px, 4.4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0;
  color: var(--ink);
}
.pt-sub {
  font-size: clamp(14px, 1.3vw, 17px);
  color: var(--muted);
  margin: 0;
}

.pt-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  padding: 6px;
  border-radius: 14px;
  width: fit-content;
  margin: 0 auto 28px;
}
.pt-tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 10px;
  color: var(--ink-2);
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.pt-tab:hover {
  background: rgba(255,255,255,0.05);
  color: var(--ink);
}
.pt-tab.is-active {
  background: rgba(255,106,48,0.12);
  border-color: rgba(255,106,48,0.4);
  color: var(--ink);
}
.pt-tab-icon {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  flex-shrink: 0;
}
.pt-tab-label { white-space: nowrap; }

.pt-stage { position: relative; }
.pt-panel {
  display: none;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.1fr);
  gap: 36px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  align-items: center;
  animation: ptFade .35s ease both;
  overflow: hidden;
}
.pt-panel.is-active { display: grid; }
@keyframes ptFade {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
.pt-info { display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.pt-pill {
  align-self: flex-start;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--brand);
  background: rgba(255,106,48,0.10);
  border: 1px solid rgba(255,106,48,0.32);
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: 600;
}
.pt-info h3 {
  margin: 0;
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.pt-info p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}
.pt-features {
  list-style: none;
  margin: 4px 0 8px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pt-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ink-2);
}
.pt-info .btn-primary { align-self: flex-start; }

.pt-visual {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  min-width: 0;
}

/* prompts grid */
.pt-visual-prompts {
  background: linear-gradient(165deg, rgba(255,106,48,0.08) 0%, var(--bg-soft) 60%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px;
  width: 100%;
}
.pt-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
}
.pt-mini {
  background: var(--bg-soft-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform .2s ease, border-color .2s;
}
.pt-mini:hover { transform: translateY(-2px); border-color: #34343a; }
.pt-mini-tag {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--muted);
  font-weight: 600;
}
.pt-mini-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.pt-mini-meta { font-size: 12px; color: var(--muted); }

/* assistant chat */
.pt-visual-assistant {
  align-items: stretch;
  width: 100%;
}
.pt-chat {
  background: var(--bg-soft-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 100%;
  box-shadow: var(--shadow-md);
}
.pt-chat-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line-2);
  background: linear-gradient(to bottom, #19191c, var(--bg-soft-2));
}
.pt-chat-title {
  margin-left: 14px;
  font-size: 12.5px;
  color: var(--muted);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 12px;
}
.pt-chat-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 880px) {
  .pt-panel { grid-template-columns: 1fr; padding: 28px; }
  .pt-visual { min-height: auto; }
  .pt-tabs { width: 100%; overflow-x: auto; flex-wrap: nowrap; justify-content: flex-start; }
  .pt-tab-label { font-size: 13px; }
}
@media (max-width: 600px) {
  .product-tabs { padding: 56px 18px 40px; }
  .pt-grid { grid-template-columns: 1fr; }
}

/* ===== Features grid ===== */
.features-grid {
  position: relative;
  padding: 72px 28px 56px;
}
.fg-head {
  text-align: center;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.fg-title {
  font-size: clamp(28px, 4.4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0;
  color: var(--ink);
}
.fg-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}
.fg-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  transition: border-color .25s, transform .25s;
  width: 100%;
  min-width: 0;
}
.fg-card:hover {
  border-color: #34343a;
  transform: translateY(-3px);
}
.fg-card-title {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 10px;
}
.fg-card-desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 20px;
}
.fg-visual {
  background: var(--bg-soft-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  width: 100%;
  min-width: 0;
  overflow: hidden;
}

/* Strategy */
.fg-strategy {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: stretch;
  min-width: 0;
}
.fg-skel-main {
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  border: 1px solid var(--line);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.fg-skel-side {
  background: rgba(74,210,149,0.10);
  border: 1px solid rgba(74,210,149,0.32);
  border-radius: 8px;
  padding: 12px;
  width: 80px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.fg-bar { height: 8px; border-radius: 4px; background: rgba(255,255,255,0.18); }
.fg-bar.sm { height: 6px; background: rgba(255,255,255,0.10); }
.fg-bar.g { background: #4ad295; }
.fg-bar.gd { background: rgba(74,210,149,0.55); }

/* Copy */
.fg-copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}
.fg-copy-top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: stretch;
  min-width: 0;
}
.fg-skel-sm {
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  border: 1px solid var(--line);
  padding: 12px;
  width: 64px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fg-chart-box {
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  border: 1px solid var(--line);
  padding: 12px 16px;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 100px;
  min-width: 0;
}
.fg-chart-bar {
  flex: 1;
  min-width: 0;
  border-radius: 3px 3px 0 0;
}
.fg-chart-bar:nth-child(1) { height: 40%; background: #6e8bff; }
.fg-chart-bar:nth-child(2) { height: 70%; background: #a98cff; }
.fg-chart-bar:nth-child(3) { height: 55%; background: #6e8bff; }
.fg-chart-bar:nth-child(4) { height: 85%; background: #4ad295; }
.fg-chart-bar:nth-child(5) { height: 60%; background: #a98cff; }
.fg-chart-bar:nth-child(6) { height: 75%; background: #4ad295; }
.fg-chart-bar:nth-child(7) { height: 45%; background: #6e8bff; }

/* Calendar */
.fg-cal { width: 100%; min-width: 0; }
.fg-cal-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.fg-cal-month {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.fg-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.fg-cal-dn {
  font-size: 9px;
  color: rgba(136,136,128,0.5);
  text-align: center;
  padding-bottom: 4px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.fg-cal-d {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--muted);
  border-radius: 4px;
}
.fg-cal-d.om { color: #2a2a2a; }
.fg-cal-d.today { background: var(--brand); color: #fff; font-weight: 700; }
.fg-cal-d.he { background: rgba(255,255,255,0.05); color: #aeaeaa; }
.fg-cal-d.gr { background: rgba(74,210,149,0.14); color: #4ad295; }
.fg-cal-d.pu { background: rgba(167,139,250,0.14); color: #a78bfa; }
.fg-cal-d.or { background: rgba(255,140,80,0.14); color: #ffae87; }

/* Next Steps */
.fg-steps { display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.fg-steps-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  min-width: 0;
}
.fg-qr {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  background: #e8e8e8;
  border-radius: 6px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  padding: 7px;
}
.fg-qr-c { background: #1a1a2e; border-radius: 1px; }
.fg-qr-c.w { background: #e8e8e8; }
.fg-steps-meta { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 6px; }
.fg-dots { display: flex; gap: 6px; margin-top: 4px; flex-wrap: wrap; }
.fg-dot {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 2px solid transparent;
  flex-shrink: 0;
}
.fg-dot.active { border-color: var(--ink); }
.fg-input {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 12px;
  color: var(--muted);
  font-size: 12px;
  font-family: inherit;
  width: 100%;
}

@media (max-width: 680px) {
  .features-grid { padding: 56px 20px 40px; }
  .fg-grid { grid-template-columns: 1fr; }
}

/* ===== How it works (3-step) ===== */
.mvp30-section {
  position: relative;
  padding: clamp(48px, 6vw, 80px) 28px;
}
.mvp30-wrap {
  max-width: 1180px;
  margin: 0 auto;
}
.mvp30-head {
  text-align: center;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.mvp30-title {
  font-size: clamp(28px, 4.4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0;
  color: var(--ink);
}
.mvp30-sub {
  font-size: clamp(14px, 1.3vw, 17px);
  color: var(--muted);
  margin: 0;
}
.mvp30-timeline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 8px auto 28px;
  max-width: 980px;
}
.mvp30-pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 22px;
  background: rgba(255,255,255,0.03);
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1;
  white-space: nowrap;
  font-weight: 500;
}
.mvp30-line {
  height: 1px;
  background: var(--line);
  flex: 1 1 auto;
  min-width: 60px;
}

.mvp30-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 8px;
}
.mvp30-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: border-color .25s ease, transform .25s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mvp30-card:hover {
  border-color: rgba(255,106,48,0.45);
  transform: translateY(-3px);
}
.mvp30-card.featured {
  border-color: rgba(255,106,48,0.55);
  box-shadow:
    inset 0 0 0 1px rgba(255,106,48,0.25),
    0 16px 34px rgba(0,0,0,0.45);
  background: linear-gradient(165deg, rgba(255,106,48,0.10) 0%, var(--bg-soft) 50%);
}
.mvp30-icon {
  width: 28px;
  height: 28px;
  margin-bottom: 4px;
  color: var(--brand);
}
.mvp30-card h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
}
.mvp30-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
}
.mvp30-list li { margin: 6px 0; }

/* Slider nav (mobile only) */
.mvp30-nav {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
}
.mvp30-btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .15s ease, border-color .2s ease, background .2s ease;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}
.mvp30-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255,106,48,0.55);
  background: var(--bg-soft-2);
}
.mvp30-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}
.mvp30-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.mvp30-dots {
  display: inline-flex;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
}
.mvp30-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #404040;
  cursor: pointer;
  border: 0;
  padding: 0;
  transition: background .25s ease, transform .2s ease, width .25s ease;
}
.mvp30-dot.is-active {
  background: var(--brand);
  width: 26px;
}

@media (max-width: 980px) {
  .mvp30-timeline { display: none; }
  .mvp30-cards {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 2px 8px 10px;
    margin: 0 -8px;
    scrollbar-width: none;
  }
  .mvp30-cards::-webkit-scrollbar { display: none; }
  .mvp30-card {
    flex: 0 0 88%;
    scroll-snap-align: center;
  }
  .mvp30-nav { display: flex; }
}

/* ===== Audience (who is Syla for) ===== */
.audience {
  position: relative;
  padding: 72px 28px 56px;
}
.audience-inner {
  max-width: 1180px;
  margin: 0 auto;
}
.audience-head {
  text-align: center;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.audience-title {
  font-size: clamp(28px, 4.4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0;
  color: var(--ink);
}
.audience-sub {
  font-size: clamp(14px, 1.3vw, 17px);
  color: var(--muted);
  margin: 0;
  max-width: 64ch;
}
.audience-slider {
  max-width: 1080px;
  margin: 0 auto;
}
.audience-track {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, 1fr);
}
.audience-card {
  background: linear-gradient(180deg, var(--bg-soft-2) 0%, var(--bg-soft) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 26px 32px;
  transition: border-color .25s ease, transform .25s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.audience-card:hover {
  border-color: rgba(255,106,48,0.45);
  transform: translateY(-3px);
}
.audience-badge {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  margin: 0 auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 20%, #ffd0bb 0%, var(--brand) 45%, #b43f12 100%);
  box-shadow:
    0 12px 26px rgba(255, 106, 48, 0.45),
    0 0 0 1px rgba(255,255,255,0.08);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.audience-badge svg {
  width: 26px;
  height: 26px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  overflow: visible;
}
.audience-card:hover .audience-badge {
  transform: translateY(-1px);
  box-shadow:
    0 16px 34px rgba(255, 106, 48, 0.6),
    0 0 0 1px rgba(255,255,255,0.10);
  filter: brightness(1.05);
}
.audience-card-title {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}
.audience-card-text {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

.audience-nav {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
}
.audience-btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .15s ease, border-color .2s ease, background .2s ease;
}
.audience-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255,106,48,0.55);
  background: var(--bg-soft-2);
}
.audience-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}
.audience-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.audience-dots {
  display: inline-flex;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
}
.audience-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #404040;
  cursor: pointer;
  border: 0;
  padding: 0;
  transition: background .25s ease, width .25s ease;
}
.audience-dot.is-active {
  background: var(--brand);
  width: 26px;
}

@media (max-width: 768px) {
  .audience { padding: 48px 16px 40px; }
  .audience-track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 2px 8px 10px;
    margin: 0 -8px;
    scrollbar-width: none;
  }
  .audience-track::-webkit-scrollbar { display: none; }
  .audience-card {
    flex: 0 0 88%;
    scroll-snap-align: center;
  }
  .audience-nav { display: flex; }
}

/* ===== Comparison table ===== */
.comparison-section {
  padding: 72px 28px 56px;
}
.comparison-head-wrap {
  text-align: center;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.comparison-title {
  font-size: clamp(28px, 4.4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0;
  color: var(--ink);
}
.comparison-sub {
  font-size: clamp(14px, 1.3vw, 17px);
  color: var(--muted);
  margin: 0;
}
.comparison-wrap {
  max-width: 1160px;
  margin: 0 auto;
}
.comparison-table {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.comparison-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  border-top: 1px solid var(--line-2);
  transition: background .18s ease;
}
.comparison-row:first-child { border-top: none; }
.comparison-row:not(.comparison-head):hover { background: rgba(255,255,255,0.02); }
.comparison-cell {
  padding: 16px 18px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.comparison-cell + .comparison-cell {
  border-left: 1px solid var(--line-2);
}
.comparison-row .comparison-cell:nth-child(3) {
  background: linear-gradient(180deg, rgba(255,106,48,0.10) 0%, rgba(255,106,48,0.06) 100%);
  position: relative;
}
.comparison-row .comparison-cell:nth-child(3)::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,106,48,0.14);
}
.comparison-row.comparison-head {
  background: linear-gradient(180deg, var(--bg-soft-2) 0%, var(--bg-soft) 100%);
}
.comparison-row.comparison-head .comparison-cell:nth-child(3) {
  background: linear-gradient(180deg, rgba(255,106,48,0.18) 0%, rgba(255,106,48,0.10) 100%);
}
.coltitle { display: flex; flex-direction: column; gap: 4px; }
.coltitle strong {
  color: var(--ink);
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.coltitle span {
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.4;
}
.comparison-label {
  color: var(--ink-2);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.comparison-head .comparison-label {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}
.comparison-text {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.6;
}
.comparison-row .comparison-cell:nth-child(3) .comparison-text {
  color: var(--ink-2);
}

@media (max-width: 639px) {
  .comparison-section { padding: 48px 16px 40px; }
  .comparison-table {
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .comparison-row.comparison-head {
    position: sticky;
    top: 64px;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 4px;
  }
  .comparison-row.comparison-head .comparison-cell:first-child { display: none; }
  .comparison-row.comparison-head .comparison-cell {
    border-left: 1px solid var(--line-2);
    padding: 12px 14px;
  }
  .comparison-row.comparison-head .comparison-cell:nth-child(2) { border-left: none; }
  .comparison-row.comparison-head .comparison-cell:nth-child(3) {
    background: rgba(255,106,48,0.16);
  }

  .comparison-row:not(.comparison-head) {
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    display: grid;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "label label"
      "others syla";
    border-top: 1px solid var(--line);
  }
  .comparison-row:not(.comparison-head) .comparison-cell:first-child {
    grid-area: label;
    border-left: none;
    border-bottom: 1px solid var(--line-2);
    padding: 11px 16px;
    background: var(--bg-soft-2);
  }
  .comparison-row:not(.comparison-head) .comparison-cell:first-child .comparison-label {
    font-size: 10.5px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
    white-space: normal;
  }
  .comparison-row:not(.comparison-head) .comparison-cell:nth-child(2) {
    grid-area: others;
    border-left: none;
    border-right: 1px solid var(--line-2);
    padding: 12px 14px;
  }
  .comparison-row:not(.comparison-head) .comparison-cell:nth-child(3) {
    grid-area: syla;
    border-left: 1px solid rgba(255,106,48,0.24);
    padding: 12px 14px;
    background: linear-gradient(135deg, rgba(255,106,48,0.13) 0%, rgba(255,106,48,0.07) 100%);
  }
  .comparison-row:not(.comparison-head) .comparison-cell:nth-child(3)::before { display: none; }

  .comparison-text { font-size: 12.5px; line-height: 1.55; }
}

@media (max-width: 379px) {
  .comparison-row:not(.comparison-head) {
    grid-template-columns: 1fr;
    grid-template-areas:
      "label"
      "others"
      "syla";
  }
  .comparison-row:not(.comparison-head) .comparison-cell:nth-child(2) {
    border-right: none;
    border-bottom: 1px solid var(--line-2);
  }
  .comparison-row:not(.comparison-head) .comparison-cell:nth-child(3) { border-left: none; }
  .comparison-cell:nth-child(2)::before {
    display: block;
    content: "Others";
    font-size: 9px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #555;
    font-weight: 700;
    margin-bottom: 4px;
  }
  .comparison-cell:nth-child(3)::before {
    display: block;
    content: "Syla";
    font-size: 9px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,106,48,0.85);
    font-weight: 700;
    margin-bottom: 4px;
  }
  .comparison-row.comparison-head { display: none; }
}

/* ===== Pricing ===== */
.pricing {
  position: relative;
  padding: 84px 28px 88px;
}
.pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.pricing-head {
  text-align: center;
  margin-bottom: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.pricing-title {
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0;
  color: var(--ink);
}
.pricing-sub {
  font-size: clamp(15px, 1.4vw, 17.5px);
  color: var(--muted);
  margin: 0;
  max-width: 60ch;
}
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}
.pricing-card {
  position: relative;
  background: linear-gradient(165deg, var(--bg-soft-2) 0%, var(--bg-soft) 40%, var(--bg-soft) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, border-color .25s ease;
  box-shadow: 0 20px 50px -12px rgba(0,0,0,0.4);
}
.pricing-card:hover {
  transform: translateY(-4px);
  border-color: #34343a;
}
.pricing-card.popular {
  background: linear-gradient(165deg, rgba(255,106,48,0.16) 0%, var(--bg-soft) 40%, var(--bg-soft) 100%);
  border-color: rgba(255,106,48,0.45);
  transform: translateY(-8px);
  box-shadow: 0 24px 60px -12px rgba(255,106,48,0.20), 0 20px 50px -12px rgba(0,0,0,0.5);
}
.pricing-card.popular:hover { transform: translateY(-12px); }

.pricing-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink);
  margin-bottom: 18px;
  align-self: flex-start;
}
.pricing-pill-badge {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255,106,48,0.18);
  border: 1px solid rgba(255,106,48,0.4);
  color: var(--ink);
}

.pricing-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.pricing-price {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(180deg, var(--ink) 30%, rgba(243,243,239,0.55) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pricing-per {
  font-size: 18px;
  font-weight: 600;
  color: var(--muted);
}

.pricing-subline {
  margin-top: 14px;
  font-size: 13.5px;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  font-weight: 500;
}
.pricing-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--ink);
  background: rgba(255,106,48,0.14);
  border: 1px solid rgba(255,106,48,0.28);
}
.pricing-renewal {
  margin-top: 8px;
  font-size: 13px;
  color: var(--muted);
}
.pricing-hr {
  border: 0;
  height: 1px;
  background: var(--line);
  margin: 18px 0 14px;
}
.pricing-select {
  display: flex;
  gap: 12px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  cursor: pointer;
  align-items: flex-start;
}
.pricing-select input[type="radio"] {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--brand);
}
.pricing-explain-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  display: block;
}
.pricing-explain-text {
  margin-top: 4px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  display: block;
}
.pricing-card .btn-primary,
.pricing-card .btn-secondary {
  margin-top: 16px;
  width: 100%;
  justify-content: center;
}
.pricing-card.popular .btn-primary {
  background: linear-gradient(180deg, #ff7a45 0%, #d95a28 100%);
  color: #fff;
  box-shadow: 0 16px 32px -8px rgba(255,106,48,0.45), inset 0 1px 0 rgba(255,255,255,0.18);
  border-color: transparent;
}
.pricing-card.popular .btn-primary:hover {
  background: linear-gradient(180deg, #ff8a55 0%, #e96a38 100%);
  transform: translateY(-1px);
}
.spark-svg {
  width: 16px; height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pricing-note {
  margin-top: 12px;
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.5;
  opacity: 0.85;
}

@media (max-width: 980px) {
  .pricing-cards { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .pricing-card.popular { transform: translateY(0); }
  .pricing-card.popular:hover { transform: translateY(-4px); }
}
@media (max-width: 640px) {
  .pricing { padding: 56px 20px 60px; }
  .pricing-card { padding: 22px; }
  .pricing-price { font-size: 44px; }
}

/* ===== Testimonials (quote cards) ===== */
.testimonials {
  position: relative;
  padding: 72px 28px 56px;
}
.testi-wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.testi-head {
  text-align: center;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.testi-title {
  font-size: clamp(28px, 4.4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0;
  color: var(--ink);
}
.testi-sub {
  font-size: clamp(14px, 1.3vw, 17px);
  color: var(--muted);
  margin: 0;
}
.testi-slider { position: relative; margin-top: 16px; }
.testi-viewport {
  overflow: hidden;
  border-radius: 22px;
  padding: 2px;
}
.testi-track {
  display: flex;
  gap: 18px;
  transition: transform .45s ease;
  will-change: transform;
}
.testi-card {
  flex: 0 0 calc((100% - 36px) / 3);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 26px 22px;
  position: relative;
  overflow: hidden;
  min-height: 240px;
  display: flex;
  flex-direction: column;
}
.testi-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(800px 200px at 10% 0%, rgba(255,255,255,0.045), transparent 55%),
    radial-gradient(700px 240px at 80% 100%, rgba(255,106,48,0.05), transparent 55%);
}
.testi-quote {
  position: relative;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: -0.015em;
  font-weight: 600;
  margin: 0;
  flex: 1;
}
.testi-quote::before { content: "\201C"; opacity: .85; margin-right: 2px; }
.testi-quote::after { content: "\201D"; opacity: .85; margin-left: 2px; }
.testi-divider {
  position: relative;
  height: 1px;
  background: var(--line);
  margin: 22px 0 18px;
}
.testi-footer {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}
.testi-person {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid var(--line);
  background: var(--bg-soft-2);
  flex-shrink: 0;
}
.testi-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.testi-name {
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 17px;
  line-height: 1.1;
  margin: 0;
}
.testi-role {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  margin: 0;
}
.testi-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 16px;
  gap: 16px;
}
.testi-arrows { display: flex; gap: 10px; align-items: center; }
.testi-btn {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s ease, background .2s ease;
}
.testi-btn:hover:not(:disabled) {
  border-color: rgba(255,106,48,0.55);
  background: var(--bg-soft-2);
}
.testi-btn:disabled { opacity: .35; cursor: not-allowed; }
.testi-btn svg { width: 18px; height: 18px; }

@media (max-width: 980px) {
  .testi-card { flex-basis: calc((100% - 18px) / 2); }
}
@media (max-width: 640px) {
  .testimonials { padding: 56px 20px 40px; }
  .testi-card { flex-basis: 100%; }
}

/* ===== Reviews carousel ===== */
.reviews {
  position: relative;
  padding: 72px 28px 56px;
}
.reviews-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.reviews-head {
  text-align: center;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.reviews-title {
  font-size: clamp(28px, 4.2vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0;
  max-width: 22ch;
  color: var(--ink);
}
.reviews-sub {
  font-size: clamp(14px, 1.3vw, 17px);
  color: var(--muted);
  margin: 0;
  max-width: 56ch;
}
.reviews-carousel {
  position: relative;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  padding: 2px;
}
.reviews-viewport {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: 16px;
  --card-h: 380px;
}
.reviews-track {
  display: flex;
  gap: 18px;
  align-items: stretch;
  transition: transform .45s ease;
  will-change: transform;
}
.review-card {
  flex: 0 0 calc((100% - 36px) / 3);
  height: var(--card-h);
  background: var(--bg-soft-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.review-card::after {
  content: "";
  position: absolute;
  inset: -20px;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  filter: blur(22px);
  opacity: 0.35;
  transform: scale(1.08);
  z-index: 0;
}
.review-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  padding: 10px;
  background: transparent;
}
.reviews-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
  padding: 0 12px;
  z-index: 3;
}
.reviews-btn {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  transition: border-color .2s ease, background .2s ease;
}
.reviews-btn:disabled { opacity: .35; cursor: not-allowed; }
.reviews-btn:hover:not(:disabled) {
  border-color: rgba(255,106,48,0.55);
  background: var(--bg-soft-2);
}
.reviews-btn svg { width: 18px; height: 18px; }
.reviews-pager-wrap {
  margin-top: 16px;
  display: flex;
  justify-content: center;
}
.reviews-pager {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(10,10,11,0.55);
  backdrop-filter: blur(8px);
}
.review-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #3a3a3a;
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: width .25s ease, background .25s ease, transform .2s ease;
}
.review-dot:hover { background: rgba(255,106,48,0.55); transform: scale(1.05); }
.review-dot[aria-current="true"] {
  width: 32px;
  background: var(--brand);
}

@media (max-width: 980px) {
  .review-card { flex-basis: calc((100% - 18px) / 2); }
  .reviews-viewport { --card-h: 340px; }
}
@media (max-width: 640px) {
  .reviews { padding: 56px 20px 40px; }
  .review-card { flex-basis: 100%; }
  .reviews-viewport { --card-h: 280px; padding: 14px; }
  .reviews-track { gap: 14px; }
}

/* ===== FAQ ===== */
.faq {
  padding: 56px 28px 96px;
}
.faq-inner {
  max-width: 920px;
  margin: 0 auto;
}
.faq-head {
  text-align: center;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.faq-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0;
  color: var(--ink);
}
.faq-grid {
  display: grid;
  gap: 12px;
}
.faq-item {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .2s ease, background .2s ease;
}
.faq-item:hover { border-color: #34343a; }
.faq-item details { padding: 0; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 22px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--ink);
}
.faq-chev {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  color: var(--ink-2);
  transition: transform .2s ease, background .2s, border-color .2s, color .2s;
}
.faq-chev svg { width: 16px; height: 16px; }
.faq-item details[open] .faq-chev {
  transform: rotate(180deg);
  background: rgba(255,106,48,0.14);
  border-color: rgba(255,106,48,0.4);
  color: var(--ink);
}
.faq-a {
  padding: 0 22px 22px;
  margin-top: -6px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
}
.faq-a::before {
  content: "";
  display: block;
  height: 1px;
  background: var(--line);
  margin: 0 0 16px;
}
@media (max-width: 720px) {
  .faq { padding: 40px 20px 64px; }
  .faq-item summary { padding: 16px 18px; }
  .faq-a { padding: 0 18px 18px; }
}

/* ===== Roadmap (What's next for Syla) ===== */
.syla-future {
  position: relative;
  padding: 56px 28px 96px;
}
.syla-future-inner {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  border: 1px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
  background: var(--bg-soft);
}
.syla-future-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,106,48,0.16), transparent 40%, rgba(255,106,48,0.10));
  opacity: .5;
  pointer-events: none;
  z-index: 0;
}
.syla-future-glow-tl {
  position: absolute;
  left: -120px; top: -120px;
  width: 600px; height: 400px;
  background: radial-gradient(circle, rgba(255,106,48,0.16), transparent 60%);
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}
.syla-future-glow-br {
  position: absolute;
  right: -160px; bottom: -160px;
  width: 600px; height: 400px;
  background: radial-gradient(circle, rgba(255,106,48,0.10), transparent 60%);
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}
.syla-future-noise {
  position: absolute;
  inset: 0;
  border-radius: 26px;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.syla-future-content {
  position: relative;
  z-index: 1;
  padding: clamp(32px, 4.5vw, 72px) clamp(24px, 4vw, 56px);
  max-width: 1100px;
  margin: 0 auto;
}

.syla-future-header {
  margin-bottom: 48px;
  max-width: 660px;
}
.syla-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,106,48,0.28);
  background: rgba(255,106,48,0.08);
  color: var(--brand);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.syla-badge svg {
  width: 14px; height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.syla-title {
  margin: 24px 0 0;
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.syla-sub {
  margin: 18px 0 0;
  font-size: clamp(15px, 1.4vw, 17.5px);
  line-height: 1.6;
  color: var(--muted);
}
.syla-sub strong {
  color: var(--ink);
  font-weight: 600;
}

.syla-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.syla-card {
  position: relative;
  border-radius: 16px;
  transition: transform .3s ease;
}
.syla-card:hover { transform: translateY(-3px); }
.syla-card:hover .syla-card-glow { opacity: 1; }
.syla-card:hover .syla-card-body {
  border-color: rgba(255,106,48,0.32);
  box-shadow: 0 8px 40px -12px rgba(255,106,48,0.22);
}
.syla-card:hover .syla-card-line { opacity: 1; }

.syla-card-glow {
  position: absolute;
  inset: -1px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,106,48,0.18), transparent);
  filter: blur(1px);
  opacity: 0;
  transition: opacity .5s;
  pointer-events: none;
}

.syla-card-body {
  position: relative;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(20,20,22,0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 24px;
  transition: border-color .3s, box-shadow .3s;
}

.syla-card-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,106,48,0.45), transparent);
  opacity: 0;
  transition: opacity .5s;
}

.syla-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.syla-card-icon {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
}
.syla-card-icon svg {
  width: 18px; height: 18px;
  stroke: var(--brand);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.syla-tag {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--brand);
  border: 1px solid rgba(255,106,48,0.22);
  background: rgba(255,106,48,0.08);
  padding: 4px 12px;
  border-radius: 999px;
  margin-top: 2px;
  white-space: nowrap;
}

.syla-card h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.syla-card p {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

@media (max-width: 900px) {
  .syla-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .syla-future { padding: 40px 16px 64px; }
  .syla-grid { grid-template-columns: 1fr; }
  .syla-future-content { padding: 32px 22px; }
}

/* Legacy roadmap classes (no longer used after redesign) */
.roadmap {
  position: relative;
  padding: 64px 28px 96px;
}
.roadmap.roadmap-page {
  padding-top: 48px;
}
.page-head .roadmap-legend {
  margin-top: 18px;
}
.roadmap-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.roadmap-head {
  text-align: center;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.roadmap-title {
  font-size: clamp(28px, 4.4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0;
  color: var(--ink);
}
.roadmap-sub {
  font-size: clamp(14px, 1.3vw, 17px);
  color: var(--muted);
  margin: 0;
}
.roadmap-legend {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--ink-2);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 999px;
}
.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}
.status-shipped {
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(74,210,149,0.18);
}
.status-progress {
  background: var(--brand);
  box-shadow: 0 0 0 3px rgba(255,106,48,0.22);
  animation: pulse 1.6s ease-in-out infinite;
}
.status-planned {
  background: #6e8bff;
  box-shadow: 0 0 0 3px rgba(110,139,255,0.18);
}

.roadmap-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 36px;
}
.roadmap-col {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color .25s ease;
}
.roadmap-col:hover { border-color: #34343a; }
.roadmap-col.col-current {
  background: linear-gradient(165deg, rgba(255,106,48,0.10) 0%, var(--bg-soft) 50%);
  border-color: rgba(255,106,48,0.35);
  box-shadow:
    inset 0 0 0 1px rgba(255,106,48,0.15),
    0 16px 34px rgba(0,0,0,0.35);
}

.col-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-2);
}
.col-head .status-dot { width: 10px; height: 10px; }
.col-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.col-meta {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.rd-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.rd-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.rd-icon {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  flex-shrink: 0;
  margin-top: 2px;
}
.rd-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
  flex: 1;
}
.rd-title {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.rd-text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
.rd-pill {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(255,106,48,0.18);
  border: 1px solid rgba(255,106,48,0.38);
  color: var(--ink);
}

.roadmap-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-top: 24px;
}
.roadmap-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

@media (max-width: 980px) {
  .roadmap-timeline { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .roadmap { padding: 48px 20px 72px; }
  .roadmap-col { padding: 22px 20px; }
}

/* ===== Trust badges ===== */
.trust-badges {
  position: relative;
  padding: 8px 28px 56px;
  z-index: 2;
}
.trust-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}
.trust-card {
  position: relative;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1 1 240px;
  min-width: 240px;
  max-width: 340px;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.trust-card:hover {
  transform: translateY(-3px);
  border-color: #34343a;
  background: var(--bg-soft-2);
}
.trust-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
}
.trust-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.trust-icon-green {
  background: rgba(74, 210, 149, 0.08);
  border: 1px solid rgba(74, 210, 149, 0.22);
}
.trust-icon-green::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: radial-gradient(circle at 40% 40%, rgba(74, 210, 149, 0.20), transparent 70%);
}
.trust-icon-blue {
  background: rgba(110, 139, 255, 0.08);
  border: 1px solid rgba(110, 139, 255, 0.22);
}
.trust-icon-blue::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: radial-gradient(circle at 40% 40%, rgba(110, 139, 255, 0.20), transparent 70%);
}
.trust-icon svg {
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 1;
}
.trust-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.trust-title {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.trust-sub {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.3;
}
@media (max-width: 540px) {
  .trust-card { min-width: 100%; max-width: 100%; }
}

/* Hero variant: trust badges placed inside the cinematic hero */
.hero-trust {
  margin-top: 28px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.hero-trust .trust-card {
  background: rgba(18, 18, 20, 0.55);
  border-color: rgba(255,255,255,0.10);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
}
.hero-trust .trust-card:hover {
  background: rgba(23, 23, 26, 0.7);
  border-color: rgba(255,255,255,0.16);
}

/* ===== Nav active state ===== */
.nav-links a.active,
.nav-trigger.active {
  background: rgba(255,255,255,0.07);
  color: var(--ink);
}

/* ===== Nav dropdown ===== */
.nav-item.has-dropdown {
  position: relative;
}
.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  padding: 8px 14px;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink-2);
  border-radius: 8px;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.nav-trigger:hover { background: rgba(255,255,255,0.06); color: var(--ink); }
.chev {
  width: 11px; height: 11px;
  transition: transform .2s ease;
  opacity: .8;
}
.nav-item.has-dropdown:hover .chev,
.nav-item.has-dropdown:focus-within .chev { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  min-width: 340px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 8px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index: 60;
}
.nav-item.has-dropdown:hover .dropdown,
.nav-item.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.dropdown::before {
  content: "";
  position: absolute;
  top: -8px; left: 0; right: 0;
  height: 8px;
}

.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--ink);
  text-decoration: none;
  transition: background .15s ease;
}
.dropdown-item:hover { background: rgba(255,255,255,0.05); }
.dropdown-item.active { background: rgba(255,255,255,0.06); }

.dd-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.dd-icon svg { width: 18px; height: 18px; }
.dd-icon-prompts {
  background: rgba(255, 106, 48, 0.14);
  color: #ffae87;
  border: 1px solid rgba(255, 106, 48, 0.22);
}
.dd-icon-assistant {
  background: rgba(110, 139, 255, 0.14);
  color: #a8b8ff;
  border: 1px solid rgba(110, 139, 255, 0.22);
}
.dd-text { display: flex; flex-direction: column; gap: 2px; }
.dd-title { font-size: 14px; font-weight: 600; color: var(--ink); }
.dd-sub { font-size: 12.5px; color: var(--muted); line-height: 1.35; }

/* ===== Page header (shared by collection / prompt) ===== */
.page-head {
  position: relative;
  padding: 64px 28px 36px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.page-head-inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}
.page-head-bg {
  position: absolute; inset: -10% -5% 0 -5%;
  z-index: 0;
  pointer-events: none;
}
.page-title {
  font-size: clamp(36px, 5.4vw, 64px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.035em;
  margin: 18px auto 14px;
  max-width: 16ch;
}
.page-sub {
  font-size: clamp(15px, 1.4vw, 17.5px);
  color: var(--muted);
  max-width: 60ch;
  margin: 0 auto 30px;
}

/* ===== Search row ===== */
.search-row {
  display: flex;
  justify-content: center;
  margin: 0 auto 24px;
}
.search-input {
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(560px, 100%);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  transition: border-color .2s, background .2s;
}
.search-input:focus-within {
  border-color: #34343a;
  background: rgba(255,255,255,0.07);
}
.search-input input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--ink);
  font-family: inherit;
  font-size: 14.5px;
}
.search-input input::placeholder { color: var(--muted); }
.search-ico { width: 16px; height: 16px; fill: var(--muted); }
.search-input kbd {
  font-family: inherit;
  font-size: 11.5px;
  color: var(--muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 2px 7px;
}

/* ===== Filter bar ===== */
.filter-bar {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}
.filter-chip {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  color: var(--ink-2);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  transition: background .2s, color .2s, border-color .2s;
}
.filter-chip:hover { background: rgba(255,255,255,0.06); color: var(--ink); }
.filter-chip.active {
  background: #fff;
  color: #0a0a0b;
  border-color: #fff;
}

/* ===== Collections grid section ===== */
.collections-section {
  padding: 56px 28px 80px;
}
.collections-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.section-eyebrow {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--muted);
  margin-bottom: 6px;
}
.section-title {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 600;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--ink);
}
.link-arrow {
  color: var(--ink-2);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.link-arrow:hover { color: var(--ink); }
.link-arrow span { transition: transform .2s; }
.link-arrow:hover span { transform: translateX(3px); }

.sort-bar {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
}
.sort-chip {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink-2);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12.5px;
}
.sort-chip.active { background: rgba(255,255,255,0.06); color: var(--ink); }

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.collection-grid.featured { gap: 14px; }
.collection-grid.featured .collection-card.large {
  grid-column: span 1;
}

.collection-card {
  position: relative;
  background: linear-gradient(160deg, #131316 0%, #0f0f11 100%);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 220px;
  overflow: hidden;
  isolation: isolate;
  transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
}

/* Top accent line — colour per category */
.collection-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--card-accent, var(--brand));
  opacity: .55;
  transition: opacity .25s ease, height .25s ease;
}

/* Soft corner glow */
.collection-card::after {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, color-mix(in srgb, var(--card-accent, var(--brand)) 18%, transparent) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
  opacity: .55;
  transition: opacity .25s ease;
}

.collection-card:hover {
  transform: translateY(-3px);
  border-color: #34343a;
  background: linear-gradient(160deg, #16161a 0%, #111114 100%);
  box-shadow: 0 14px 32px -18px rgba(0,0,0,.6);
}
.collection-card:hover::before { opacity: 1; height: 3px; }
.collection-card:hover::after  { opacity: .9; }

/* Per-category accent colour */
.collection-card[data-category="email"]     { --card-accent: #ff6a30; }
.collection-card[data-category="website"]   { --card-accent: #6e8bff; }
.collection-card[data-category="social"]    { --card-accent: #a98cff; }
.collection-card[data-category="ugc"]       { --card-accent: #ff8ec0; }
.collection-card[data-category="static-ad"] { --card-accent: #4ad295; }
.collection-card[data-category="strategy"]  { --card-accent: #ffd166; }

/* Old empty icon placeholder — hide */
.collection-card .card-icon { display: none; }

/* Old gradient variants — kept as no-ops in case markup still has them */
.collection-card.card-grad-orange,
.collection-card.card-grad-blue,
.collection-card.card-grad-pink { background: inherit; }

.collection-card .card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.collection-card .card-tag {
  align-self: flex-start;
  padding: 4px 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  color: var(--ink-2);
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.collection-card h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 2px 0 0;
  color: var(--ink);
}
.collection-card p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.card-meta {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line-2);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--muted);
}
.meta-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--muted); }

/* Bottom-right chevron — shows on hover */
.collection-card .card-arrow {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 30px; height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  color: var(--ink-2);
  opacity: 0;
  transform: translate(-6px, 0);
  transition: opacity .25s ease, transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  pointer-events: none;
}
.collection-card:hover .card-arrow {
  opacity: 1;
  transform: translate(0, 0);
  background: var(--card-accent, var(--brand));
  color: #0a0a0b;
  border-color: transparent;
}
@media (hover: none) {
  .collection-card .card-arrow { opacity: 1; transform: none; }
}

/* ===== Prompt page ===== */
.prompt-page {
  position: relative;
  padding: 36px 28px 80px;
  overflow: hidden;
}
.prompt-bg {
  position: absolute; inset: -20% -10% auto -10%;
  height: 60%;
  z-index: 0;
  pointer-events: none;
}
.prompt-inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
}
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 18px;
}
.breadcrumbs a { color: var(--ink-2); }
.breadcrumbs a:hover { color: var(--ink); }
.crumb-current { color: var(--ink); }

.prompt-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 36px;
}
.prompt-header-side {
  display: flex;
  gap: 6px;
}
.icon-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.icon-btn:hover { background: rgba(255,255,255,0.06); }
.icon-btn svg { width: 16px; height: 16px; fill: var(--ink-2); }

.prompt-tags {
  display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px;
}
.tag {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .04em;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  color: var(--ink-2);
}
.tag-email { background: rgba(110,139,255,0.16); color: #a8b8ff; border-color: transparent; }

.prompt-title {
  font-size: clamp(34px, 4.4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.04;
  margin: 0 0 12px;
  max-width: 16ch;
}
.prompt-desc {
  font-size: clamp(15px, 1.3vw, 17px);
  color: var(--muted);
  max-width: 60ch;
  margin: 0;
}

.prompt-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 28px;
  align-items: start;
}

/* Category sections on collection page */
.collection-category {
  padding: 8px 0 16px;
  margin-bottom: 32px;
  scroll-margin-top: 96px;
}
.collection-category + .collection-category {
  border-top: 1px solid var(--line);
  padding-top: 56px;
  margin-top: 24px;
}
.category-count {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.category-count strong {
  color: var(--ink);
  font-weight: 600;
  font-size: 18px;
  margin-right: 4px;
  letter-spacing: -0.02em;
}

/* Sub-row header inside a category (e.g. Campaigns / Welcome flows / Abandoned carts inside Email) */
.collection-subhead {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin: 24px 0 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.collection-subhead:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 4px;
}
.collection-subhead .subhead-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand);
}
.collection-subhead .subhead-count {
  font-size: 12px;
  color: var(--muted);
}
.collection-category .collection-grid + .collection-grid { margin-top: 0; }

/* Single-prompt detail body (no left inputs aside) */
.prompt-detail-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 24px 0 64px;
}

.prompt-section {
  position: relative;
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(255,106,48,0.06) 0%, transparent 45%),
    linear-gradient(180deg, rgba(255,255,255,0.02) 0%, transparent 60%),
    var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.04) inset,
    0 16px 40px -16px rgba(0,0,0,0.55);
}
.prompt-section::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 28px;
  right: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,106,48,0.45) 50%, transparent);
  pointer-events: none;
}

.prompt-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.prompt-section-head > div:first-child { min-width: 0; }
.prompt-section-head .section-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--brand);
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}
.prompt-section-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.4;
}

.prompt-section-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.prompt-section-actions .ghost-btn {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  color: var(--ink-2);
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: background .15s, border-color .15s, color .15s, transform .15s;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}
.prompt-section-actions .ghost-btn:hover {
  background: rgba(255,255,255,0.08);
  border-color: #34343a;
  color: var(--ink);
}
.prompt-section-actions .ghost-btn svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}
.prompt-section-actions .btn-primary {
  height: auto;
}

.prompt-block {
  margin: 0;
  white-space: pre-wrap;
  word-wrap: break-word;
  font-family: ui-monospace, "SF Mono", "JetBrains Mono", Menlo, Consolas, monospace;
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--ink-2);
  background: #0a0a0b;
  border: 1px solid var(--line-2);
  border-radius: 14px;
  padding: 24px 26px;
  max-height: 640px;
  overflow: auto;
  tab-size: 2;
}
.prompt-block::-webkit-scrollbar { width: 8px; height: 8px; }
.prompt-block::-webkit-scrollbar-track { background: transparent; }
.prompt-block::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.08); border-radius: 4px; }
.prompt-block::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.16); }

/* Collapsible system block — quieter visual treatment */
.prompt-section.prompt-section-collapsed {
  padding: 0;
  background: var(--bg-soft);
  box-shadow: 0 1px 0 rgba(255,255,255,0.03) inset;
}
.prompt-section.prompt-section-collapsed::before { display: none; }
.prompt-section.prompt-section-collapsed > summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  border-radius: var(--radius-lg);
  transition: background .15s ease;
}
.prompt-section.prompt-section-collapsed > summary:hover { background: rgba(255,255,255,0.02); }
.prompt-section.prompt-section-collapsed > summary::-webkit-details-marker { display: none; }
.prompt-section.prompt-section-collapsed[open] > summary {
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  border-bottom: 1px solid var(--line);
}
.prompt-section.prompt-section-collapsed[open] > summary:hover { background: transparent; }
.prompt-section.prompt-section-collapsed > summary .section-eyebrow {
  color: var(--muted);
}
.prompt-section.prompt-section-collapsed pre {
  margin: 22px 28px 28px;
}
.prompt-toggle-chev {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 11px;
  color: var(--muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: transform .25s ease, background .15s;
  margin-left: 6px;
}
.prompt-section.prompt-section-collapsed[open] .prompt-toggle-chev { transform: rotate(180deg); }

.btn-primary.btn-sm {
  padding: 9px 16px;
  font-size: 13.5px;
  font-weight: 500;
}

@media (max-width: 600px) {
  .prompt-section { padding: 22px 20px; }
  .prompt-section.prompt-section-collapsed > summary { padding: 20px; }
  .prompt-section.prompt-section-collapsed pre { margin: 20px; }
  .prompt-block { padding: 20px; font-size: 13px; }
  .prompt-section-actions { width: 100%; }
  .prompt-section-actions .ghost-btn,
  .prompt-section-actions .btn-primary { flex: 1; justify-content: center; }
}

/* Form */
.form-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  position: sticky;
  top: 84px;
}
.form-card-head { margin-bottom: 16px; }
.form-card-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--muted);
}
.form-card-title {
  font-size: 16px;
  font-weight: 600;
  margin-top: 4px;
  color: var(--ink);
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}
.field label {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-2);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.field .hint {
  font-size: 11px;
  color: var(--muted);
  font-weight: 400;
}
.field input[type="text"],
.field textarea {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 13.5px;
  color: var(--ink);
  resize: vertical;
  outline: none;
  transition: border-color .2s, background .2s;
}
.field input[type="text"]:focus,
.field textarea:focus {
  border-color: #34343a;
  background: rgba(255,255,255,0.06);
}
.select-row {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
}
.seg {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  color: var(--ink-2);
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12.5px;
}
.seg.active { background: #fff; color: #0a0a0b; border-color: #fff; }
.seg:hover:not(.active) { background: rgba(255,255,255,0.06); }

.slider {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px 0;
}
.slider-label {
  font-size: 11px;
  color: var(--muted);
}
.slider-track {
  flex: 1;
  height: 4px;
  border-radius: 999px;
  background: var(--line);
  position: relative;
}
.slider-fill {
  position: absolute;
  inset: 0 auto 0 0;
  background: linear-gradient(90deg, var(--brand), #ffb38a);
  border-radius: 999px;
}
.slider-thumb {
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 10px rgba(0,0,0,.4);
}

.form-actions {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}
.btn-primary.full { flex: 1; justify-content: center; }
.spark { font-size: 14px; margin-right: 2px; color: var(--brand-2); }

.form-foot {
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.dot-live {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(74,210,149,0.18);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(74,210,149,0.18); }
  50% { box-shadow: 0 0 0 6px rgba(74,210,149,0.05); }
}

.prompt-meta-card {
  margin-top: 16px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 18px;
}
.meta-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--muted);
  padding: 6px 0;
}
.meta-row strong { color: var(--ink); font-weight: 500; }
.rating-mini {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--ink);
}
.rating-mini svg { width: 12px; height: 12px; fill: var(--brand-2); }

/* Output */
.prompt-output {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.output-tabs {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px;
  width: fit-content;
}
.output-tabs .tab {
  background: transparent;
  border: none;
  color: var(--ink-2);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-family: inherit;
}
.output-tabs .tab.active {
  background: rgba(255,255,255,0.08);
  color: var(--ink);
}
.output-tabs-end {
  display: inline-flex;
  gap: 4px;
  padding-left: 10px;
  margin-left: 6px;
  border-left: 1px solid var(--line);
}
.ghost-btn {
  background: transparent;
  border: none;
  color: var(--ink-2);
  font-family: inherit;
  font-size: 13px;
  padding: 7px 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.ghost-btn:hover { color: var(--ink); background: rgba(255,255,255,0.05); }
.ghost-btn svg { width: 14px; height: 14px; fill: currentColor; }

.email-preview {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.email-meta {
  background: rgba(255,255,255,0.02);
  padding: 16px 22px;
  border-bottom: 1px solid var(--line-2);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.email-row {
  display: flex;
  gap: 12px;
  font-size: 13px;
  color: var(--ink-2);
}
.email-row .lbl {
  width: 60px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 11px;
  padding-top: 2px;
}
.email-row strong { color: var(--ink); font-weight: 500; }

.email-body {
  padding: 26px 28px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-2);
}
.email-body p { margin: 0 0 14px; }
.email-body .muted { color: var(--muted); font-size: 13px; }
.email-cta { padding: 8px 0; }
.email-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.01em;
}
.email-btn:hover { background: #ff7c47; }

.email-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 22px;
  border-top: 1px solid var(--line-2);
  font-size: 12.5px;
  color: var(--muted);
}
.email-foot a { color: var(--ink-2); }
.email-foot a:hover { color: var(--ink); }

/* Output variants */
.output-variants { margin-top: 8px; }
.variants-head { margin-bottom: 14px; }
.variants-head h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 4px 0 0;
  color: var(--ink);
}
.variant-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.variant-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.variant-tag {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--muted);
}
.variant-card p {
  font-size: 14px;
  margin: 0;
  color: var(--ink);
  line-height: 1.4;
}
.micro-btn {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink-2);
  font-family: inherit;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  align-self: flex-start;
}
.micro-btn:hover { background: rgba(255,255,255,0.06); color: var(--ink); }

/* Related section spacing */
.related { margin-top: 64px; }

/* Responsive overrides for new pages */
@media (max-width: 980px) {
  .prompt-grid { grid-template-columns: 1fr; }
  .form-card { position: static; }
  .collection-grid { grid-template-columns: repeat(2, 1fr); }
  .variant-row { grid-template-columns: 1fr; }
  .prompt-header { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .collection-grid { grid-template-columns: 1fr; }
  .page-head { padding: 48px 20px 28px; }
  .prompt-page { padding: 28px 20px 60px; }
  .collections-section { padding: 40px 20px 60px; }
  .filter-bar { gap: 4px; }
  .filter-chip { padding: 6px 11px; font-size: 12px; }
}

/* ===== Footer ===== */
.footer {
  background: linear-gradient(180deg, var(--bg) 0%, #060607 100%);
  border-top: 1px solid var(--line);
  padding: 80px 28px 28px;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(255,106,48,0.12) 0%, transparent 60%);
  pointer-events: none;
  filter: blur(40px);
}
.footer-cta {
  position: relative;
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}
.footer-cta h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 14px;
  color: var(--ink);
}
.footer-cta p {
  font-size: 17px;
  color: var(--muted);
  margin: 0 0 28px;
}
.footer-cta-buttons {
  display: inline-flex; gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 60px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.footer-brand .logo { margin-bottom: 14px; }
.footer-tag {
  color: var(--muted);
  font-size: 14.5px;
  margin: 0;
  max-width: 30ch;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-heading {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--muted);
  margin-bottom: 6px;
}
.footer-col a {
  color: var(--ink-2);
  font-size: 14.5px;
}
.footer-col a:hover { color: var(--ink); }

.footer-bottom {
  position: relative;
  max-width: var(--max);
  margin: 28px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
}
.socials { display: flex; gap: 8px; }
.social {
  width: 32px; height: 32px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.03);
  transition: background .2s, color .2s, border-color .2s;
}
.social svg { width: 14px; height: 14px; fill: var(--ink-2); }
.social:hover { background: #fff; border-color: #fff; }
.social:hover svg { fill: #0a0a0b; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-inner { grid-template-columns: 1fr auto; }
  .scene-body { grid-template-columns: 1fr; }
  .scene-sidebar { display: none; }
  .float-card { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .hero { padding: 48px 20px 60px; }
  .nav-inner { padding: 12px 18px; }
  .footer { padding: 56px 20px 20px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 14px; }
  .cal { gap: 4px; }
  .cell { min-height: 56px; padding: 6px; }
  .pill { font-size: 9.5px; padding: 2px 5px; }
}

/* ===== Quiz funnel ===== */
.quiz-page { padding: 56px 20px 96px; min-height: calc(100vh - 80px); }
.quiz-shell {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.quiz-back {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  color: var(--muted);
  font-family: inherit;
  font-size: 14px;
  padding: 6px 0;
  cursor: pointer;
  transition: color .15s, transform .15s;
}
.quiz-back:hover { color: var(--ink); }
.quiz-back svg { width: 16px; height: 16px; transition: transform .15s; }
.quiz-back:hover svg { transform: translateX(-3px); }
.quiz-back[hidden] { display: none; }

.quiz-proghead {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.quiz-track {
  height: 4px;
  background: var(--line-2);
  border-radius: 999px;
  overflow: hidden;
}
.quiz-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--brand), #ff9c66);
  border-radius: 999px;
  transition: width .35s ease;
}

.quiz-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-top: 8px;
  animation: quizFade .3s ease both;
}
@media (min-width: 640px) { .quiz-card { padding: 36px; } }
@keyframes quizFade {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.quiz-card h2 {
  margin: 0 0 6px;
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.quiz-sub {
  margin: 0 0 18px;
  font-size: 14px;
  color: var(--muted);
}

.quiz-group-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 18px 0 8px;
}
.quiz-group-label:first-child { margin-top: 0; }

.quiz-options { display: flex; flex-direction: column; gap: 8px; }
.quiz-opt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  width: 100%;
  text-align: left;
  background: var(--bg-soft-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--ink);
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color .15s, background .15s, transform .1s;
}
.quiz-opt:hover { border-color: #34343a; background: #1c1c20; }
.quiz-opt.is-selected {
  border-color: rgba(255,106,48,0.5);
  background: rgba(255,106,48,0.08);
}
.quiz-opt-label { flex: 1; line-height: 1.35; }
.quiz-opt-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.03);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0a0a0b;
  transition: background .15s, border-color .15s;
}
.quiz-opt:hover .quiz-opt-check { border-color: rgba(255,255,255,0.32); }
.quiz-opt.is-selected .quiz-opt-check {
  background: #fff;
  border-color: #fff;
}
.quiz-opt-check svg { width: 12px; height: 12px; }

.quiz-actions {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
.quiz-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: #fff;
  color: #0a0a0b;
  font-family: inherit;
  font-weight: 500;
  font-size: 15.5px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 1px 0 rgba(0,0,0,.08) inset, 0 8px 18px -8px rgba(255,255,255,.18);
  transition: background .15s, transform .15s, opacity .15s;
}
.quiz-btn:hover { background: #ebebe7; transform: translateY(-1px); }
.quiz-btn:disabled { opacity: .35; cursor: not-allowed; transform: none; }
.quiz-btn svg { width: 14px; height: 14px; }

.quiz-trust-tag {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 16px;
}
.quiz-reviews { display: flex; flex-direction: column; gap: 10px; }
.quiz-review {
  background: var(--bg-soft-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
}
.quiz-review-text {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
  font-style: italic;
}
.quiz-review-meta { display: flex; align-items: center; gap: 10px; }
.quiz-review-avatar {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255,106,48,0.18);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.quiz-review-name { font-size: 12px; font-weight: 600; color: var(--muted); }
.quiz-review-stars { font-size: 11px; color: var(--brand-2); letter-spacing: 1px; }
.quiz-trust-cta {
  margin-top: 18px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  padding: 14px;
  background: rgba(255,106,48,0.06);
  border: 1px solid rgba(255,106,48,0.22);
  border-radius: 12px;
}

.quiz-lead-benefits {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.quiz-lead-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ink-2);
}
.quiz-input {
  width: 100%;
  height: 50px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 16px;
  font-size: 15px;
  font-family: inherit;
  background: var(--bg-soft-2);
  color: var(--ink);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.quiz-input::placeholder { color: var(--muted); }
.quiz-input:focus {
  border-color: rgba(255,106,48,0.5);
  box-shadow: 0 0 0 3px rgba(255,106,48,0.1);
}
.quiz-form { display: flex; flex-direction: column; gap: 12px; margin-top: 4px; }
.quiz-form .quiz-btn { width: 100%; }
.quiz-form-err {
  font-size: 12px;
  color: #f87171;
  min-height: 16px;
}
.quiz-form-trust {
  margin-top: 4px;
  text-align: center;
  font-size: 12px;
  color: var(--muted);
}

.quiz-loading {
  background: var(--bg-soft-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
}
.quiz-loading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 600;
}
.quiz-loading-pill {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,106,48,0.12);
  border: 1px solid rgba(255,106,48,0.32);
  color: var(--brand);
}
.quiz-loading-list { margin: 0; padding-left: 18px; }
.quiz-loading-list li {
  margin: 7px 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-2);
  opacity: .25;
  transform: translateY(3px);
  transition: opacity .4s, transform .4s;
}
.quiz-loading-list li.is-on { opacity: 1; transform: translateY(0); }
.quiz-loading-anim {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.quiz-spinner {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 3px solid var(--line);
  border-top-color: var(--brand);
  animation: quizSpin .85s linear infinite;
}
@keyframes quizSpin { to { transform: rotate(360deg); } }
.quiz-loading-bartrack {
  height: 5px;
  width: 100%;
  background: var(--line-2);
  border-radius: 999px;
  overflow: hidden;
}
.quiz-loading-barfill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--brand), #ffb38a);
  border-radius: 999px;
  animation: quizFill 7s ease forwards;
}
@keyframes quizFill { to { width: 100%; } }
.quiz-loading-pulse {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}

.quiz-success {
  text-align: center;
  padding: 8px 0;
}
.quiz-success-icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: rgba(255,106,48,0.12);
  border: 1px solid rgba(255,106,48,0.4);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.quiz-success-icon svg { width: 28px; height: 28px; }
.quiz-success p { color: var(--muted); font-size: 15px; margin: 6px 0 22px; }

@media (max-width: 600px) {
  .quiz-page { padding: 32px 16px 64px; }
  .quiz-card { padding: 22px; }
  .quiz-card h2 { font-size: 18px; }
}

/* ══════════════════════════════════════════
   Marketing assistant product page (/assistant)
   ══════════════════════════════════════════ */

.asst-page { padding-bottom: 80px; }

.asst-feature-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 6px 0 4px;
}
.asst-feature-pill {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  transition: border-color .15s, background .15s;
}
.asst-feature-pill:hover {
  border-color: rgba(255,106,48,0.32);
  background: var(--bg-soft-2);
}
.asst-feature-pill .asst-pill-icon {
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 1px;
}
.asst-feature-pill > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.asst-feature-pill strong {
  color: var(--ink);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: -0.005em;
}
.asst-feature-pill span {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.45;
}
.asst-trust {
  margin: 6px 0 0;
  font-size: 12.5px;
  color: var(--muted);
}

.asst-hero {
  position: relative;
  padding: 80px 28px 64px;
  overflow: hidden;
}
.asst-hero::before {
  content: "";
  position: absolute;
  inset: -40% -10% auto -10%;
  height: 600px;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,106,48,0.10) 0%, transparent 60%);
  pointer-events: none;
  filter: blur(40px);
}
.asst-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
  position: relative;
}
.asst-hero-copy { display: flex; flex-direction: column; gap: 18px; }
.asst-hero-copy > .eyebrow { align-self: flex-start; }
.asst-hero-copy > .asst-ctas { align-self: flex-start; }
.asst-h1 {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 0;
  color: var(--ink);
}
.asst-sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
  max-width: 580px;
}
.asst-ctas { display: flex; gap: 10px; flex-wrap: wrap; }
.asst-hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: var(--muted);
  flex-wrap: wrap;
  margin-top: 6px;
}
.asst-hero-trust strong { color: var(--ink); font-weight: 600; }
.asst-hero-trust .trust-dot {
  width: 4px; height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,0.2);
}
.asst-hero-visual { display: flex; justify-content: center; }
.asst-hero-visual .pt-chat { max-width: 460px; width: 100%; }

/* ── Sections ── */
.asst-section { position: relative; padding: 80px 28px; }
.asst-section-alt {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.015) 0%, transparent 100%),
    var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.asst-section-inner { max-width: var(--max); margin: 0 auto; }
.asst-section-inner .section-head { margin-bottom: 40px; align-items: flex-end; }
.asst-h2 {
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 1.1;
  color: var(--ink);
  margin: 8px 0 4px;
}
.asst-section-sub {
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  margin: 12px 0 0;
  max-width: 640px;
}

/* ── What it does (3-up) ── */
.asst-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.asst-feature {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.asst-feature-mid {
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(255,106,48,0.06) 0%, transparent 50%),
    var(--bg-soft);
  border-color: rgba(255,106,48,0.22);
}
.asst-feature-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--bg-soft-2);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
}
.asst-feature h3 {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink);
}
.asst-feature p { margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.6; }
.asst-list {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13.5px;
  color: var(--ink-2);
}
.asst-list li {
  position: relative;
  padding-left: 18px;
}
.asst-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--brand);
  opacity: 0.6;
}
.asst-features {
  list-style: none;
  margin: 4px 0 8px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.asst-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ink-2);
}

/* ── Before / After compare ── */
.asst-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.asst-compare-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.asst-compare-bad {
  border-color: rgba(248,113,113,0.22);
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(248,113,113,0.05) 0%, transparent 50%),
    var(--bg-soft);
}
.asst-compare-good {
  border-color: rgba(74,210,149,0.28);
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(74,210,149,0.05) 0%, transparent 50%),
    var(--bg-soft);
}
.compare-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 999px;
}
.asst-compare-bad  .compare-tag { background: rgba(248,113,113,0.10); color: #f87171; border: 1px solid rgba(248,113,113,0.32); }
.asst-compare-good .compare-tag { background: rgba(74,210,149,0.10); color: var(--green); border: 1px solid rgba(74,210,149,0.32); }
.compare-prompt {
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: 12px;
  padding: 14px 16px;
}
.compare-prompt-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
  margin-bottom: 8px;
}
.compare-prompt code {
  display: block;
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.55;
}
.compare-output {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: 12px;
  padding: 18px 20px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-2);
}
.compare-output p { margin: 0 0 10px; }
.compare-output p:last-child { margin-bottom: 0; }
.compare-output em { color: var(--ink); font-style: normal; font-weight: 600; }
.compare-output-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
  margin-bottom: 10px;
}
.compare-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.warn-tag, .ok-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 999px;
}
.warn-tag { background: rgba(248,113,113,0.10); color: #f87171; border: 1px solid rgba(248,113,113,0.28); }
.ok-tag   { background: rgba(74,210,149,0.10); color: var(--green); border: 1px solid rgba(74,210,149,0.28); }

/* ── Brand-aware block ── */
.asst-brand-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}
.asst-brand-copy { display: flex; flex-direction: column; gap: 16px; }
.asst-brand-copy p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.65; max-width: 540px; }
.asst-brand-copy .btn-primary { align-self: flex-start; margin-top: 4px; }
.asst-brand-visual {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.b-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.78);
  background: var(--bg-soft-2);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 9px 16px;
}
.b-tag-dot {
  width: 7px; height: 7px;
  border-radius: 999px;
  background: var(--brand);
}

/* ── How it works (3 steps) ── */
.asst-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.asst-step {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  position: relative;
}
.asst-step-num {
  width: 36px; height: 36px;
  border-radius: 999px;
  background: rgba(255,106,48,0.12);
  border: 1px solid rgba(255,106,48,0.38);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 14px;
}
.asst-step h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
  color: var(--ink);
}
.asst-step p { margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.6; }

/* ── What you can build ── */
.asst-builds {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.asst-build {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 24px 22px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color .15s, transform .15s, background .15s;
}
.asst-build:hover {
  border-color: rgba(255,106,48,0.4);
  background: var(--bg-soft-2);
  transform: translateY(-2px);
}
.asst-build-icon {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: var(--bg-soft-2);
  border: 1px solid var(--line);
  margin-bottom: 6px;
}
.asst-build h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  color: var(--ink);
}
.asst-build p { margin: 0; color: var(--muted); font-size: 13.5px; line-height: 1.55; }

/* ── Final CTA ── */
.asst-finalcta {
  position: relative;
  padding: 96px 28px;
  text-align: center;
  overflow: hidden;
}
.asst-finalcta::before {
  content: "";
  position: absolute;
  inset: -30% -10% auto -10%;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(255,106,48,0.12) 0%, transparent 60%);
  pointer-events: none;
  filter: blur(50px);
}
.asst-finalcta-inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}
.asst-finalcta-title {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 14px;
  color: var(--ink);
}
.asst-finalcta-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 28px;
}
.asst-finalcta .asst-ctas { justify-content: center; }
.asst-finalcta-trust {
  margin-top: 18px;
  font-size: 13px;
  color: var(--muted);
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .asst-hero-inner,
  .asst-brand-block { grid-template-columns: 1fr; gap: 32px; }
  .asst-grid-3,
  .asst-steps,
  .asst-builds { grid-template-columns: 1fr 1fr; }
  .asst-compare { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .asst-hero        { padding: 64px 20px 56px; }
  .asst-section     { padding: 56px 20px; }
  .asst-finalcta    { padding: 64px 20px; }
  .asst-grid-3,
  .asst-steps,
  .asst-builds      { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Responsive layer (mobile-friendly overrides)
   Goes last so it wins the cascade. Don't move higher up.
   ========================================================================== */

/* ---- Mobile nav (hamburger + drawer) ---- */
.nav-burger {
  display: none;
  width: 40px; height: 40px;
  padding: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 10px;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 5px;
}
.nav-burger span {
  display: block;
  width: 18px; height: 1.6px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 6px 18px 18px;
  border-top: 1px solid var(--line);
  background: rgba(10,10,11,.92);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  max-height: calc(100vh - 64px);
  overflow-y: auto;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity .22s ease, transform .22s ease;
}
.mobile-nav.is-open { opacity: 1; transform: translateY(0); }
.mobile-nav-link {
  display: block;
  padding: 14px 4px;
  font-size: 16px;
  color: var(--ink-2);
  border-bottom: 1px solid var(--line-2);
}
.mobile-nav-link:last-of-type { border-bottom: none; }
.mobile-nav-link.active { color: var(--ink); }
.mobile-nav-cta {
  display: flex; gap: 8px; margin-top: 14px;
}
.mobile-nav-cta .btn-primary,
.mobile-nav-cta .btn-ghost { flex: 1; justify-content: center; }

/* ---- Tap-friendly dropdown (touch devices) ---- */
@media (hover: none) {
  .nav-item.has-dropdown:hover .dropdown { opacity: 0; pointer-events: none; transform: translate(-50%, 6px); }
  .nav-item.has-dropdown.is-open .dropdown { opacity: 1; pointer-events: auto; transform: translate(-50%, 0); }
}

/* ---- 980 → 901: tighter desktop, still desktop nav ---- */
@media (max-width: 1100px) {
  .nav-inner { padding: 14px 22px; }
}

/* ---- 900 and below: switch to mobile nav ---- */
@media (max-width: 900px) {
  .nav-links { display: none !important; }
  .nav-login { display: none; }
  .nav-burger { display: inline-flex; }
  /* :not([hidden]) so the [hidden] attribute on a closed drawer still wins */
  .mobile-nav:not([hidden]) { display: flex; }
  .nav-inner { grid-template-columns: 1fr auto; gap: 10px; padding: 12px 18px; }
}

/* ---- Cinematic hero: tablet + below.
   The desktop rule forces min-height:760px; without an override here the
   landscape image stretches with the section and shows a huge black void
   above the headline. ---- */
@media (max-width: 980px) {
  .hero-cinematic { min-height: auto; }
  .hero-cinematic .hero-inner { padding: 72px 22px 96px; }
  .hero-cinematic .hero-img,
  .hero-cinematic .hero-video { object-position: center 40%; }
}

/* ---- Universal small-screen baseline (<= 640px) ---- */
@media (max-width: 640px) {
  html, body { overflow-x: hidden; }
  img, video, svg { max-width: 100%; height: auto; }

  /* Hero general */
  .hero { padding: 32px 18px 48px; }

  /* Cinematic hero (homepage + products): tighten so the headline is above the fold.
     The image is landscape — without these overrides, object-fit:cover shows
     mostly black sky on mobile and pushes the h1 ~440px down the page. */
  .hero-cinematic { min-height: auto; }
  .hero-cinematic .hero-inner { padding: 40px 18px 56px; }
  .hero-cinematic .hero-img,
  .hero-cinematic .hero-video { object-position: center 30%; }
  .hero-cinematic .hero-overlay {
    background:
      radial-gradient(ellipse at 50% 25%, rgba(10,10,11,0.45) 0%, rgba(10,10,11,0.2) 35%, transparent 65%),
      linear-gradient(to bottom, rgba(10,10,11,0.55) 0%, rgba(10,10,11,0.25) 40%, rgba(10,10,11,0.65) 100%);
  }

  .hero-scene { margin-top: 28px; }
  .orb-a, .orb-b { width: 280px; height: 280px; filter: blur(60px); opacity: .4; }
  .grid-fade { background-size: 36px 36px; }

  /* Float cards already hidden <= 980; ensure on phones */
  .float-card { display: none !important; }

  /* Buttons sized comfortably for thumbs */
  .btn-primary, .btn-secondary, .btn-ghost { padding: 11px 16px; font-size: 14.5px; }
  .btn-lg { padding: 13px 20px; font-size: 15px; }

  /* Section padding sanity */
  section { padding-left: 18px; padding-right: 18px; }

  /* Footer */
  .footer { padding: 48px 18px 22px; }

  /* Forms / inputs full width on mobile */
  input, select, textarea { max-width: 100%; }
}

/* ---- Extra-small phones (<= 380px) ---- */
@media (max-width: 380px) {
  .hero { padding: 28px 14px 42px; }
  .hero-cinematic .hero-inner { padding: 32px 14px 48px; }
  .nav-inner { padding: 10px 14px; }
  .btn-primary, .btn-secondary, .btn-ghost { padding: 10px 14px; font-size: 14px; }
  .btn-lg { padding: 12px 18px; font-size: 14.5px; }
  .eyebrow { font-size: 12.5px; padding: 5px 12px 5px 8px; }
}

/* ---- Pricing (homepage) ---- */
@media (max-width: 640px) {
  .pricing { padding-left: 18px; padding-right: 18px; }
  .pricing-cards { gap: 16px; }
  .pricing-card { padding: 22px 20px; }
  .pricing-price { font-size: 44px !important; }
  .pricing-price-row { flex-wrap: wrap; }
  .pricing-title { font-size: clamp(28px, 8vw, 38px) !important; }
}

/* ---- Reviews carousel ---- */
@media (max-width: 640px) {
  .reviews-btn { width: 40px; height: 40px; }
  .review-card { padding: 14px; }
  .reviews-track { gap: 12px; }
  .reviews-viewport { padding: 12px; }
}

/* ---- Prompt detail: stack the sidebar at narrower viewports ---- */
@media (max-width: 1080px) {
  .prompt-grid { grid-template-columns: 1fr; gap: 22px; }
  .prompt-grid .form-card { position: static; }
}
@media (max-width: 640px) {
  .prompt-block { padding: 18px 16px; }
  .form-card { padding: 18px; }
}

/* ---- Collection grid: 2 columns on tablet, 1 on phone ---- */
@media (max-width: 980px) {
  .collection-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .collection-grid { grid-template-columns: 1fr !important; gap: 12px; }
  .collection-grid.featured .collection-card.large { grid-column: auto; }
  .collection-card { padding: 18px; }
  .filter-bar { gap: 6px; flex-wrap: wrap; }
  .search-row { flex-direction: column; align-items: stretch; gap: 10px; }
  .search-input { width: 100%; }
}

/* ---- Quiz funnel ---- */
@media (max-width: 640px) {
  .quiz-page { padding: 32px 16px 72px; min-height: calc(100vh - 60px); }
  .quiz-card { padding: 22px 18px; border-radius: 18px; }
  .quiz-card h2 { font-size: 22px; }
  .quiz-opt { padding: 13px 14px; }
  .quiz-actions { flex-direction: column-reverse; gap: 10px; }
  .quiz-actions .btn-primary, .quiz-actions .btn-secondary { width: 100%; justify-content: center; }
}

/* ---- Admin pages: usable tables on phones ---- */
@media (max-width: 720px) {
  .admin-page { padding: 28px 16px; }
  .admin-top { flex-direction: column; align-items: stretch; gap: 10px; }
  .admin-actions { justify-content: flex-start; flex-wrap: wrap; }
  .admin-filters { flex-direction: column; align-items: stretch; }
  .admin-filters input,
  .admin-filters select { min-width: 0; width: 100%; }
  .admin-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; white-space: nowrap; }
  .admin-block dl { grid-template-columns: 1fr; gap: 4px 0; }
  .admin-block dt { margin-top: 8px; }
  .admin-login { padding: 16px; }
}

/* ---- Sitewide guard: ensure CTAs always wrap nicely ---- */
@media (max-width: 480px) {
  .hero-ctas, .asst-ctas, .pricing-ctas, .upsell-ctas { width: 100%; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-secondary,
  .asst-ctas .btn-primary,
  .asst-ctas .btn-secondary { flex: 1 1 auto; justify-content: center; }
}

/* ---- Tables / pre / code shouldn't blow out width ---- */
pre, code { white-space: pre-wrap; word-break: break-word; }
@media (max-width: 640px) {
  pre[data-prompt-body] { font-size: 13px; line-height: 1.55; }
}

/* ---- Reduced motion respect ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}
