/* ===== Luminote design tokens (z repo: tailwind.config.mjs + index.css) ===== */
:root {
  --background: 0 0% 100%;
  --foreground: 220 15% 20%;
  --muted: 220 12% 95%;
  --muted-foreground: 220 8% 50%;
  --border: 220 10% 88%;

  --primary: 180 55% 35%;          /* Deep Teal */
  --primary-strong: 180 75% 30%;
  --primary-light: 180 60% 50%;
  --primary-bg: 180 50% 95%;

  --accent: 12 90% 65%;            /* Warm Coral */
  --accent-strong: 12 85% 55%;
  --accent-bg: 12 100% 95%;

  --ai-glow: 270 70% 60%;          /* Violet — AI layer */
  --ai-glow-2: 290 60% 55%;
  --aurora-pink: 330 80% 65%;
  --aurora-teal: 187 92% 53%;

  --shell: 222 47% 8%;             /* Deep navy */
  --shell-2: 222 47% 11%;
  --shell-3: 222 35% 14%;
  --shell-border: 222 25% 20%;

  --success: 145 65% 45%;
  --warning: 38 92% 50%;
  --danger: 0 72% 51%;

  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 28px;

  --shadow-sm: 0 2px 6px 0 hsl(220 15% 20% / 0.06);
  --shadow-md: 0 6px 16px 0 hsl(220 15% 20% / 0.08);
  --shadow-lg: 0 12px 32px 0 hsl(220 15% 20% / 0.12);
  --shadow-xl: 0 24px 60px 0 hsl(220 15% 20% / 0.16);

  --container: 1240px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: hsl(var(--foreground));
  background: hsl(var(--background));
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, .display {
  font-family: 'Sora', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
  color: hsl(var(--foreground));
}
.mono { font-family: 'JetBrains Mono', ui-monospace, monospace; font-variant-numeric: tabular-nums; }

a { color: inherit; text-decoration: none; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ===== Nav ===== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: hsl(0 0% 100% / 0.78);
  backdrop-filter: saturate(160%) blur(20px);
  -webkit-backdrop-filter: saturate(160%) blur(20px);
  border-bottom: 1px solid hsl(var(--border) / 0.6);
}
.nav__inner { display: flex; align-items: center; gap: 32px; height: 68px; }
.nav__logo { display: flex; align-items: center; gap: 10px; font-family: 'Sora', sans-serif; font-weight: 700; font-size: 18px; letter-spacing: -0.02em; }
.nav__beta {
  display: inline-flex; align-items: center; gap: 6px;
  margin-left: 8px;
  font-size: 10.5px; font-weight: 700;
  padding: 3px 9px; border-radius: 999px;
  background: hsl(var(--warning) / 0.14);
  color: hsl(38 92% 38%);
  border: 1px solid hsl(var(--warning) / 0.32);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.nav__beta::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: hsl(var(--warning)); animation: pulse-dot 1.8s infinite; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.3); } }

.nav__links { display: flex; gap: 26px; margin-left: 24px; }
.nav__links a { font-size: 14px; color: hsl(var(--foreground) / 0.72); font-weight: 500; transition: color .15s; }
.nav__links a:hover { color: hsl(var(--foreground)); }
.nav__cta { margin-left: auto; display: flex; gap: 10px; align-items: center; }
.nav__signin { font-size: 14px; color: hsl(var(--foreground) / 0.72); font-weight: 500; padding: 8px 12px; border-radius: 8px; }
.nav__signin:hover { background: hsl(var(--muted)); color: hsl(var(--foreground)); }

@media (max-width: 980px) {
  .nav__links { display: none; }
  .nav__inner { gap: 16px; height: 60px; }
}

/* Lumi orb */
.lumi-logo {
  width: 28px; height: 28px; flex: 0 0 28px;
  object-fit: contain;
  display: block;
}
.lumi-logo--sm { width: 22px; height: 22px; flex-basis: 22px; }
.lumi-logo--lg { width: 36px; height: 36px; flex-basis: 36px; }
.lumi-logo--xl { width: 56px; height: 56px; flex-basis: 56px; }

.lumi-orb {
  width: 24px; height: 24px; border-radius: 50%; flex: 0 0 24px;
  background:
    radial-gradient(circle at 35% 35%, #fff 0%, hsl(var(--aurora-pink) / 0.9) 32%, hsl(var(--ai-glow)) 70%);
  box-shadow: 0 0 14px hsl(var(--ai-glow) / 0.55);
}
.lumi-orb--lg { width: 40px; height: 40px; flex-basis: 40px; box-shadow: 0 0 24px hsl(var(--ai-glow) / 0.6); }
.lumi-orb--sm { width: 16px; height: 16px; flex-basis: 16px; box-shadow: 0 0 10px hsl(var(--ai-glow) / 0.5); }
@keyframes lumi-breathe { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.08); opacity: 0.85; } }
.lumi-breathe { animation: lumi-breathe 3.5s ease-in-out infinite; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 44px; padding: 0 18px; border-radius: 999px;
  font-size: 14.5px; font-weight: 600;
  transition: transform .12s, box-shadow .18s, background .18s, border-color .18s;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--primary-light)) 100%);
  color: #fff;
  box-shadow: 0 4px 14px hsl(var(--primary) / 0.32), inset 0 1px 0 hsl(0 0% 100% / 0.18);
}
.btn--primary:hover { box-shadow: 0 8px 22px hsl(var(--primary) / 0.4), inset 0 1px 0 hsl(0 0% 100% / 0.18); }

.btn--ai {
  background: linear-gradient(135deg, hsl(var(--ai-glow)) 0%, hsl(var(--ai-glow-2)) 100%);
  color: #fff;
  box-shadow: 0 4px 16px hsl(var(--ai-glow) / 0.4), inset 0 1px 0 hsl(0 0% 100% / 0.18);
}
.btn--ai:hover { box-shadow: 0 8px 22px hsl(var(--ai-glow) / 0.55); }

.btn--ghost {
  background: hsl(var(--muted));
  color: hsl(var(--foreground));
  border-color: hsl(var(--border));
}
.btn--ghost:hover { background: hsl(220 12% 92%); }

.btn--dark {
  background: hsl(var(--shell-2));
  color: #fff;
  border-color: hsl(var(--shell-border));
}
.btn--dark:hover { background: hsl(var(--shell-3)); }

.btn--light {
  background: #fff;
  color: hsl(var(--foreground));
}
.btn--light:hover { background: hsl(220 15% 96%); }

.btn--outline-dark {
  background: transparent;
  color: #fff;
  border-color: hsl(0 0% 100% / 0.25);
}
.btn--outline-dark:hover { background: hsl(0 0% 100% / 0.06); border-color: hsl(0 0% 100% / 0.4); }

.btn--sm { height: 36px; padding: 0 14px; font-size: 13.5px; }
.btn--lg { height: 52px; padding: 0 24px; font-size: 15.5px; }

/* ===== Section + headers ===== */
section { position: relative; }
.section { padding: 100px 0; }
.section--tight { padding: 64px 0; }
@media (max-width: 720px) { .section { padding: 64px 0; } .section--tight { padding: 40px 0; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: hsl(var(--primary));
  padding: 6px 12px;
  border-radius: 999px;
  background: hsl(var(--primary) / 0.08);
  border: 1px solid hsl(var(--primary) / 0.18);
}
.eyebrow--ai { color: hsl(var(--ai-glow)); background: hsl(var(--ai-glow) / 0.1); border-color: hsl(var(--ai-glow) / 0.22); }
.eyebrow--coral { color: hsl(var(--accent-strong)); background: hsl(var(--accent) / 0.12); border-color: hsl(var(--accent) / 0.22); }
.eyebrow--light { color: hsl(var(--aurora-teal)); background: hsl(var(--aurora-teal) / 0.12); border-color: hsl(var(--aurora-teal) / 0.2); }
.eyebrow--warning { color: hsl(38 92% 42%); background: hsl(var(--warning) / 0.12); border-color: hsl(var(--warning) / 0.25); }

.section__head { max-width: 760px; margin: 0 auto 64px; text-align: center; }
.section__head--left { margin-left: 0; text-align: left; }
.section__head h2 { font-size: clamp(32px, 4.4vw, 52px); margin-top: 18px; }
.section__head p { margin-top: 20px; font-size: 18px; color: hsl(var(--muted-foreground)); line-height: 1.6; }

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: hsl(var(--shell));
  padding: 100px 0 120px;
  isolation: isolate;
}
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(circle at 12% 15%, hsl(var(--primary) / 0.32), transparent 38%),
    radial-gradient(circle at 88% 10%, hsl(var(--ai-glow) / 0.28), transparent 36%),
    radial-gradient(circle at 70% 90%, hsl(var(--accent) / 0.18), transparent 42%),
    linear-gradient(180deg, hsl(var(--shell)) 0%, hsl(222 47% 6%) 100%);
}
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background-image:
    linear-gradient(hsl(0 0% 100% / 0.04) 1px, transparent 1px),
    linear-gradient(90deg, hsl(0 0% 100% / 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, black 10%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at center, black 10%, transparent 70%);
  opacity: 0.5;
}

.hero__grid {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 64px; align-items: center;
}
@media (max-width: 1040px) { .hero__grid { grid-template-columns: 1fr; gap: 48px; } }

.hero__copy { max-width: 600px; }
.hero h1 {
  color: #fff;
  font-size: clamp(40px, 5.4vw, 64px);
  line-height: 1.05;
  margin-top: 22px;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, hsl(var(--aurora-teal)), hsl(var(--ai-glow)));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__sub {
  margin-top: 22px; font-size: 19px; line-height: 1.55;
  color: hsl(0 0% 100% / 0.74); max-width: 560px;
}
.hero__cta { margin-top: 36px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero__meta {
  margin-top: 30px; display: flex; gap: 22px; flex-wrap: wrap;
  font-size: 13px; color: hsl(0 0% 100% / 0.55);
}
.hero__meta span { display: inline-flex; align-items: center; gap: 6px; }
.hero__meta svg { width: 14px; height: 14px; opacity: 0.85; }

/* ===== Generic product mockup window ===== */
.mockup {
  position: relative;
  border-radius: 18px;
  background: hsl(220 40% 13%);
  border: 1px solid hsl(var(--shell-border));
  box-shadow: 0 40px 80px hsl(0 0% 0% / 0.45), 0 0 0 1px hsl(0 0% 100% / 0.04);
  overflow: hidden;
}
.mockup--tilted { transform: perspective(1400px) rotateY(-3deg) rotateX(4deg); transition: transform .4s; }
.mockup--tilted:hover { transform: perspective(1400px) rotateY(-1deg) rotateX(2deg); }
.mockup--light { background: #fff; border-color: hsl(var(--border)); box-shadow: 0 30px 60px hsl(220 15% 20% / 0.18), 0 0 0 1px hsl(var(--border)); }

.mockup__chrome {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px;
  background: hsl(222 47% 7%);
  border-bottom: 1px solid hsl(var(--shell-border));
}
.mockup--light .mockup__chrome { background: hsl(220 15% 98%); border-bottom-color: hsl(var(--border)); }
.mockup__dot { width: 11px; height: 11px; border-radius: 50%; background: hsl(0 0% 100% / 0.18); }
.mockup__dot:nth-child(1) { background: hsl(0 72% 60%); }
.mockup__dot:nth-child(2) { background: hsl(38 92% 60%); }
.mockup__dot:nth-child(3) { background: hsl(145 65% 50%); }
.mockup__url {
  margin-left: 12px; flex: 1;
  font-family: 'JetBrains Mono', monospace; font-size: 11.5px;
  color: hsl(0 0% 100% / 0.55);
  padding: 4px 12px; border-radius: 999px;
  background: hsl(0 0% 100% / 0.06);
  border: 1px solid hsl(0 0% 100% / 0.06);
  max-width: 320px;
  text-align: center;
}
.mockup--light .mockup__url { background: hsl(220 12% 96%); color: hsl(var(--muted-foreground)); border-color: hsl(var(--border)); }
.mockup__url::before { content: '🔒 '; opacity: 0.6; }

/* Hero mockup specifics */
.mockup__body { display: grid; grid-template-columns: 220px 1fr; min-height: 460px; }
@media (max-width: 520px) { .mockup__body { grid-template-columns: 1fr; min-height: 0; } .mockup__sidebar { display: none; } }

.mockup__sidebar {
  background: hsl(222 47% 7%);
  border-right: 1px solid hsl(var(--shell-border));
  padding: 16px 12px;
  display: flex; flex-direction: column; gap: 4px;
}
.mockup__brand { display: flex; align-items: center; gap: 10px; padding: 6px 10px; margin-bottom: 10px; }
.mockup__brand strong { font-family: 'Sora', sans-serif; font-size: 15px; color: #fff; font-weight: 700; }
.mockup__navi {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px; border-radius: 8px;
  font-size: 13px; color: hsl(0 0% 100% / 0.65);
  border-left: 2px solid transparent;
}
.mockup__navi.is-active {
  background: hsl(var(--primary) / 0.18);
  color: #fff;
  border-left-color: hsl(var(--primary));
}
.mockup__navi svg { width: 16px; height: 16px; opacity: 0.85; }
.mockup__navi .count {
  margin-left: auto; font-size: 10.5px; font-weight: 600;
  padding: 1px 7px; border-radius: 999px;
  background: hsl(0 0% 100% / 0.08); color: hsl(0 0% 100% / 0.7);
}
.mockup__navi.is-active .count { background: hsl(var(--primary)); color: #fff; }
.mockup__section { font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: hsl(0 0% 100% / 0.35); padding: 12px 10px 4px; }

.mockup__main { padding: 22px 26px; color: #fff; }
.mockup__topbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; gap: 10px; }
.mockup__breadcrumb { font-size: 13px; color: hsl(0 0% 100% / 0.55); }
.mockup__breadcrumb strong { color: #fff; font-weight: 600; }

.rec-card {
  position: relative; border-radius: 16px; padding: 22px;
  background: linear-gradient(135deg, hsl(180 65% 12% / 0.6) 0%, hsl(270 30% 14% / 0.6) 100%);
  border: 1px solid hsl(0 0% 100% / 0.08);
  display: flex; gap: 18px; align-items: center;
  margin-bottom: 18px;
}
.rec-circle {
  position: relative; width: 70px; height: 70px; border-radius: 50%;
  background: linear-gradient(135deg, hsl(var(--accent-strong)) 0%, hsl(var(--accent)) 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 6px hsl(var(--accent) / 0.18), 0 0 30px hsl(var(--accent) / 0.4);
  flex: 0 0 70px;
}
.rec-circle::before {
  content: ''; position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid hsl(var(--accent) / 0.5);
  animation: ring 1.6s ease-out infinite;
}
@keyframes ring { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(1.4); opacity: 0; } }
.rec-circle svg { width: 28px; height: 28px; color: #fff; }

.rec-meta { flex: 1; min-width: 0; }
.rec-meta__title { font-size: 14.5px; font-weight: 600; color: #fff; }
.rec-meta__row { display: flex; gap: 10px; align-items: center; margin-top: 4px; font-size: 12px; color: hsl(0 0% 100% / 0.6); flex-wrap: wrap; }
.rec-meta__row .pill { padding: 2px 8px; border-radius: 999px; background: hsl(var(--success) / 0.15); color: hsl(145 70% 60%); border: 1px solid hsl(var(--success) / 0.3); font-weight: 600; font-family: 'JetBrains Mono', monospace; font-size: 10.5px; }
.rec-meta__row .pill--ephemeral { background: hsl(var(--ai-glow) / 0.16); color: hsl(var(--ai-glow)); border-color: hsl(var(--ai-glow) / 0.3); }
.rec-meta__row .pill--cloud { background: hsl(var(--primary) / 0.16); color: hsl(var(--primary-light)); border-color: hsl(var(--primary) / 0.3); }
.rec-meta__row .time { font-family: 'JetBrains Mono', monospace; font-weight: 600; color: hsl(0 0% 100% / 0.85); }

.waveform { display: flex; align-items: center; gap: 2px; height: 36px; }
.waveform span {
  width: 3px; border-radius: 2px; background: hsl(var(--aurora-teal));
  animation: wf 1s ease-in-out infinite;
}
@keyframes wf {
  0%, 100% { height: 6px; opacity: 0.5; }
  50% { height: var(--h, 28px); opacity: 1; }
}

.lumi-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px 6px 6px; border-radius: 999px;
  background: linear-gradient(135deg, hsl(var(--ai-glow) / 0.95), hsl(280 65% 55% / 0.95));
  color: #fff; font-size: 12px; font-weight: 600;
  box-shadow: 0 4px 14px hsl(var(--ai-glow) / 0.4);
}

.tasks {
  border-radius: 14px;
  background: hsl(0 0% 100% / 0.03);
  border: 1px solid hsl(0 0% 100% / 0.08);
  padding: 16px 18px;
}
.tasks__title { display: flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 600; color: hsl(0 0% 100% / 0.65); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.08em; }
.tasks__title .dot { width: 7px; height: 7px; border-radius: 50%; background: hsl(var(--ai-glow)); box-shadow: 0 0 8px hsl(var(--ai-glow) / 0.7); animation: lumi-breathe 1.4s ease-in-out infinite; }

.task {
  display: flex; gap: 12px; padding: 10px 0;
  border-bottom: 1px solid hsl(0 0% 100% / 0.06);
  border-left: 2px solid; border-image: linear-gradient(to bottom, hsl(var(--aurora-teal)), hsl(var(--ai-glow))) 1;
  padding-left: 12px;
}
.task:last-child { border-bottom: 0; }
.task__check {
  width: 16px; height: 16px; border-radius: 4px; border: 1.5px solid hsl(0 0% 100% / 0.3);
  flex: 0 0 16px; margin-top: 3px;
}
.task__body { flex: 1; min-width: 0; }
.task__title { font-size: 13.5px; color: #fff; line-height: 1.35; }
.task__meta { font-size: 11.5px; color: hsl(0 0% 100% / 0.5); margin-top: 4px; display: flex; gap: 10px; flex-wrap: wrap; }
.task__meta .who { color: hsl(var(--aurora-teal)); font-weight: 600; }
.task__meta .when { color: hsl(var(--accent)); font-weight: 600; }
.task__meta .signal { color: hsl(var(--ai-glow)); font-weight: 600; }

.privacy-strip {
  margin-top: 18px;
  display: flex; gap: 14px; flex-wrap: wrap;
  padding: 10px 14px;
  background: hsl(var(--success) / 0.1);
  border: 1px solid hsl(var(--success) / 0.25);
  border-radius: 12px;
  font-size: 11.5px; color: hsl(145 70% 65%); font-weight: 600;
}
.privacy-strip span { display: inline-flex; align-items: center; gap: 6px; font-family: 'JetBrains Mono', monospace; }

/* ===== Trust strip ===== */
.trust {
  padding: 40px 0;
  border-bottom: 1px solid hsl(var(--border));
}
.trust__label {
  text-align: center; font-size: 12px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: hsl(var(--muted-foreground)); margin-bottom: 22px;
}
.trust__logos { display: flex; justify-content: center; align-items: center; gap: 40px; flex-wrap: wrap; opacity: 0.85; }
.trust__logo {
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 20px;
  color: hsl(var(--foreground) / 0.55); letter-spacing: -0.02em;
  display: inline-flex; align-items: center; gap: 8px;
}
.trust__logo svg { width: 22px; height: 22px; opacity: 0.7; }

/* ===== Three modes (Ephemeral / Cloud / Bot) ===== */
.modes {
  background: linear-gradient(180deg, #fff 0%, hsl(220 15% 98%) 100%);
}
.modes__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 12px;
}
@media (max-width: 980px) { .modes__grid { grid-template-columns: 1fr; } }

.mode {
  position: relative;
  padding: 28px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid hsl(var(--border));
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.mode:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.mode--ephemeral { border-color: hsl(var(--ai-glow) / 0.3); }
.mode--ephemeral:hover { border-color: hsl(var(--ai-glow) / 0.5); }
.mode--cloud { border-color: hsl(var(--primary) / 0.3); }
.mode--cloud:hover { border-color: hsl(var(--primary) / 0.5); }
.mode--bot { border-color: hsl(var(--accent) / 0.3); }
.mode--bot:hover { border-color: hsl(var(--accent) / 0.5); }

.mode__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.mode__icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.mode--ephemeral .mode__icon { background: hsl(var(--ai-glow) / 0.12); color: hsl(var(--ai-glow)); }
.mode--cloud .mode__icon { background: hsl(var(--primary) / 0.1); color: hsl(var(--primary)); }
.mode--bot .mode__icon { background: hsl(var(--accent) / 0.12); color: hsl(var(--accent-strong)); }
.mode__icon svg { width: 24px; height: 24px; }
.mode__tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px; font-weight: 600;
  padding: 4px 10px; border-radius: 999px;
  background: hsl(var(--muted)); color: hsl(var(--muted-foreground));
}
.mode--ephemeral .mode__tag { background: hsl(var(--ai-glow) / 0.12); color: hsl(var(--ai-glow)); }
.mode--cloud .mode__tag { background: hsl(var(--primary) / 0.1); color: hsl(var(--primary)); }
.mode--bot .mode__tag { background: hsl(var(--accent) / 0.12); color: hsl(var(--accent-strong)); }

.mode h3 { font-size: 22px; }
.mode__sub { font-size: 14.5px; color: hsl(var(--muted-foreground)); line-height: 1.55; }
.mode__list { display: flex; flex-direction: column; gap: 8px; margin-top: 6px; }
.mode__list li { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: hsl(var(--foreground) / 0.8); }
.mode__list svg { width: 16px; height: 16px; color: hsl(var(--primary)); flex: 0 0 16px; margin-top: 3px; }
.mode--ephemeral .mode__list svg { color: hsl(var(--ai-glow)); }
.mode--bot .mode__list svg { color: hsl(var(--accent-strong)); }
.mode__retention {
  margin-top: auto; padding-top: 16px;
  display: flex; gap: 8px; align-items: center;
  font-family: 'JetBrains Mono', monospace; font-size: 11.5px; font-weight: 600;
}
.mode__retention strong { padding: 3px 8px; border-radius: 6px; background: hsl(var(--muted)); }
.mode--ephemeral .mode__retention strong { background: hsl(var(--ai-glow) / 0.14); color: hsl(var(--ai-glow)); }
.mode--cloud .mode__retention strong { background: hsl(var(--primary) / 0.1); color: hsl(var(--primary)); }
.mode--bot .mode__retention strong { background: hsl(var(--accent) / 0.12); color: hsl(var(--accent-strong)); }

/* ===== Privacy flow ===== */
.flow {
  background: hsl(220 15% 98%);
}
.flow__diagram {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: stretch;
  position: relative;
  margin-top: 12px;
}
@media (max-width: 880px) { .flow__diagram { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .flow__diagram { grid-template-columns: 1fr; } }

.flow__step {
  position: relative;
  padding: 28px 22px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid hsl(var(--border));
  box-shadow: var(--shadow-sm);
}
.flow__step--final {
  background: linear-gradient(135deg, hsl(var(--success) / 0.06), hsl(var(--success) / 0.01));
  border-color: hsl(var(--success) / 0.3);
}
.flow__num {
  font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 600;
  color: hsl(var(--primary)); letter-spacing: 0.1em;
}
.flow__icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: hsl(var(--primary) / 0.1);
  display: flex; align-items: center; justify-content: center;
  color: hsl(var(--primary));
  margin: 14px 0 16px;
}
.flow__step--final .flow__icon { background: hsl(var(--success) / 0.12); color: hsl(var(--success)); }
.flow__icon svg { width: 24px; height: 24px; }

.flow__step h3 { font-size: 19px; line-height: 1.25; }
.flow__step p { margin-top: 10px; font-size: 14px; color: hsl(var(--muted-foreground)); line-height: 1.55; }
.flow__retention {
  margin-top: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 999px;
  background: hsl(var(--muted)); color: hsl(var(--muted-foreground));
}
.flow__retention--zero { background: hsl(var(--ai-glow) / 0.12); color: hsl(var(--ai-glow)); }
.flow__retention--ok { background: hsl(var(--success) / 0.12); color: hsl(var(--success)); }
.flow__retention--keep { background: hsl(var(--primary) / 0.1); color: hsl(var(--primary)); }

.flow__arrow {
  position: absolute; right: -16px; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px; border-radius: 50%;
  background: #fff; border: 1px solid hsl(var(--border));
  display: flex; align-items: center; justify-content: center;
  color: hsl(var(--primary)); z-index: 2;
  box-shadow: var(--shadow-sm);
}
.flow__step:last-child .flow__arrow { display: none; }
@media (max-width: 880px) { .flow__arrow { display: none; } }

/* ===== Privacy guarantees ===== */
.guarantees {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-top: 40px;
}
@media (max-width: 880px) { .guarantees { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .guarantees { grid-template-columns: 1fr; } }
.guarantee {
  padding: 22px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid hsl(var(--border));
}
.guarantee__icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: hsl(var(--primary) / 0.08); color: hsl(var(--primary));
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.guarantee strong { font-family: 'Sora', sans-serif; font-size: 16px; display: block; margin-bottom: 6px; }
.guarantee span { font-size: 13.5px; color: hsl(var(--muted-foreground)); line-height: 1.5; }

/* ===== ROI ===== */
.roi {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-radius: 24px;
  border: 1px solid hsl(var(--border));
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
@media (max-width: 760px) { .roi { grid-template-columns: 1fr 1fr; } }
.roi__cell { padding: 28px; border-right: 1px solid hsl(var(--border)); }
.roi__cell:last-child { border-right: 0; }
@media (max-width: 760px) {
  .roi__cell:nth-child(2n) { border-right: 0; }
  .roi__cell:nth-child(-n+2) { border-bottom: 1px solid hsl(var(--border)); }
}
.roi__num {
  font-family: 'Sora', sans-serif; font-weight: 800;
  font-size: 40px; letter-spacing: -0.03em; line-height: 1;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--ai-glow)));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.roi__label { margin-top: 10px; font-size: 13.5px; color: hsl(var(--muted-foreground)); line-height: 1.45; }

/* ===== Module/Feature cards ===== */
.modules {
  background: hsl(220 15% 98%);
}
.modules__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 1000px) { .modules__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .modules__grid { grid-template-columns: 1fr; } }

.module {
  background: #fff;
  border: 1px solid hsl(var(--border));
  border-radius: 20px;
  padding: 26px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  display: flex; flex-direction: column; gap: 4px;
}
.module:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: hsl(var(--primary) / 0.25);
}
.module__icon {
  width: 46px; height: 46px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.module__icon svg { width: 22px; height: 22px; }
.module--teal .module__icon { background: hsl(var(--primary) / 0.1); color: hsl(var(--primary)); }
.module--coral .module__icon { background: hsl(var(--accent) / 0.12); color: hsl(var(--accent-strong)); }
.module--ai .module__icon { background: hsl(var(--ai-glow) / 0.12); color: hsl(var(--ai-glow)); }
.module--emerald .module__icon { background: hsl(var(--success) / 0.12); color: hsl(var(--success)); }
.module--amber .module__icon { background: hsl(var(--warning) / 0.14); color: hsl(38 92% 42%); }

.module h3 { font-size: 19px; line-height: 1.25; margin-bottom: 8px; }
.module p { font-size: 14px; color: hsl(var(--muted-foreground)); line-height: 1.55; }
a.module { text-decoration: none; color: inherit; cursor: pointer; }
.module__more {
  margin-top: 16px; padding-top: 14px;
  border-top: 1px solid hsl(var(--border) / 0.7);
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; font-weight: 600; color: hsl(var(--primary));
}
.module__more svg { width: 16px; height: 16px; transition: transform .2s; }
a.module:hover .module__more svg { transform: translateX(4px); }
.module__tag {
  font-size: 11px; font-weight: 600; letter-spacing: 0.05em;
  padding: 4px 10px; border-radius: 6px;
  background: hsl(var(--muted)); color: hsl(var(--muted-foreground));
  font-family: 'JetBrains Mono', monospace;
}

/* ===== Showcase (dark inset feature stories) ===== */
.showcase {
  background: hsl(var(--shell));
  color: #fff;
  position: relative;
  overflow: hidden;
}
.showcase--alt::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 20%, hsl(var(--primary) / 0.2), transparent 38%),
    radial-gradient(circle at 10% 80%, hsl(var(--ai-glow) / 0.2), transparent 36%);
}
.showcase::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 20%, hsl(var(--ai-glow) / 0.2), transparent 36%),
    radial-gradient(circle at 90% 80%, hsl(var(--primary) / 0.18), transparent 38%);
}
.showcase__inner { position: relative; z-index: 1; }
.showcase__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.showcase__grid--reverse { grid-template-columns: 1fr 1fr; direction: rtl; }
.showcase__grid--reverse > * { direction: ltr; }
@media (max-width: 1000px) { .showcase__grid, .showcase__grid--reverse { grid-template-columns: 1fr; gap: 40px; direction: ltr; } }
.showcase h2 { color: #fff; font-size: clamp(30px, 4vw, 44px); }
.showcase p { color: hsl(0 0% 100% / 0.74); font-size: 17px; margin-top: 18px; line-height: 1.6; }
.showcase__list { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.showcase__list li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 16px; border-radius: 12px;
  background: hsl(0 0% 100% / 0.04);
  border: 1px solid hsl(0 0% 100% / 0.08);
}
.showcase__list svg { width: 20px; height: 20px; color: hsl(var(--aurora-teal)); flex: 0 0 20px; margin-top: 2px; }
.showcase__list strong { font-family: 'Sora', sans-serif; font-size: 15px; color: #fff; display: block; }
.showcase__list span { font-size: 13.5px; color: hsl(0 0% 100% / 0.65); margin-top: 3px; display: block; line-height: 1.5; }

/* ===== Lumi chat ===== */
.lumi-chat {
  background: hsl(220 40% 13%);
  border: 1px solid hsl(var(--shell-border));
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 30px 70px hsl(0 0% 0% / 0.4);
  display: flex; flex-direction: column; gap: 14px;
}
.lumi-chat__head { display: flex; align-items: center; gap: 12px; padding-bottom: 14px; border-bottom: 1px solid hsl(0 0% 100% / 0.06); }
.lumi-chat__head strong { font-family: 'Sora', sans-serif; font-size: 15px; color: #fff; }
.lumi-chat__head span { font-size: 12px; color: hsl(0 0% 100% / 0.55); margin-left: auto; font-family: 'JetBrains Mono', monospace; }

.chat-msg { display: flex; gap: 10px; align-items: flex-start; }
.chat-msg--user { justify-content: flex-end; }
.chat-msg__bubble {
  max-width: 86%;
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 13.5px; line-height: 1.5;
  color: hsl(0 0% 100% / 0.92);
}
.chat-msg--user .chat-msg__bubble {
  background: hsl(var(--primary) / 0.4);
  border: 1px solid hsl(var(--primary) / 0.5);
  border-bottom-right-radius: 4px;
}
.chat-msg--ai .chat-msg__bubble {
  background: hsl(0 0% 100% / 0.06);
  border: 1px solid hsl(0 0% 100% / 0.08);
  border-bottom-left-radius: 4px;
  border-left: 2px solid hsl(var(--ai-glow));
}
.chat-msg__bubble b { color: #fff; }
.chat-msg__bubble .mono { font-size: 12.5px; background: hsl(0 0% 100% / 0.06); padding: 1px 6px; border-radius: 4px; color: hsl(var(--aurora-teal)); }

.chat-data {
  margin-top: 8px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
  padding: 10px;
  background: hsl(0 0% 100% / 0.04);
  border-radius: 10px;
}
.chat-data div { text-align: center; }
.chat-data dt { font-size: 10px; color: hsl(0 0% 100% / 0.5); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.chat-data dd { margin: 4px 0 0; font-family: 'Sora', sans-serif; font-weight: 700; font-size: 18px; color: #fff; letter-spacing: -0.02em; }

.chat-input {
  margin-top: 4px;
  display: flex; gap: 8px; align-items: center;
  padding: 10px 12px;
  background: hsl(0 0% 100% / 0.04);
  border: 1px solid hsl(0 0% 100% / 0.08);
  border-radius: 12px;
  font-size: 13px; color: hsl(0 0% 100% / 0.5);
}
.chat-input svg { width: 16px; height: 16px; color: hsl(var(--ai-glow)); }
.chat-input::after { content: '|'; color: hsl(var(--ai-glow)); animation: blink 1s steps(2) infinite; }
@keyframes blink { 50% { opacity: 0; } }

/* ===== Signals & Follow-ups card ===== */
.signals-mockup {
  background: #fff;
  border: 1px solid hsl(var(--border));
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow-lg);
}
.signals-mockup__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.signals-mockup__head strong { font-family: 'Sora', sans-serif; font-size: 17px; }
.signals-mockup__head span { font-size: 12px; color: hsl(var(--muted-foreground)); }

.signal {
  display: grid; grid-template-columns: 28px 1fr auto; gap: 12px;
  padding: 12px 14px; border-radius: 12px;
  border: 1px solid hsl(var(--border));
  margin-bottom: 10px;
  align-items: center;
  background: hsl(220 15% 98%);
}
.signal__icon {
  width: 28px; height: 28px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.signal__icon svg { width: 14px; height: 14px; }
.signal--hot .signal__icon { background: hsl(var(--accent) / 0.16); color: hsl(var(--accent-strong)); }
.signal--warm .signal__icon { background: hsl(var(--warning) / 0.14); color: hsl(38 92% 42%); }
.signal--risk .signal__icon { background: hsl(var(--danger) / 0.12); color: hsl(var(--danger)); }
.signal--positive .signal__icon { background: hsl(var(--success) / 0.12); color: hsl(var(--success)); }

.signal__label { font-size: 13.5px; font-weight: 600; line-height: 1.3; }
.signal__meta { font-size: 11.5px; color: hsl(var(--muted-foreground)); margin-top: 3px; }
.signal__score {
  font-family: 'JetBrains Mono', monospace; font-weight: 700;
  font-size: 13px; padding: 4px 10px; border-radius: 999px;
}
.signal--hot .signal__score { background: hsl(var(--accent) / 0.12); color: hsl(var(--accent-strong)); }
.signal--warm .signal__score { background: hsl(var(--warning) / 0.14); color: hsl(38 92% 42%); }
.signal--risk .signal__score { background: hsl(var(--danger) / 0.1); color: hsl(var(--danger)); }
.signal--positive .signal__score { background: hsl(var(--success) / 0.12); color: hsl(var(--success)); }

/* ===== Email mockup ===== */
.email-mockup {
  background: #fff;
  border-radius: 18px;
  border: 1px solid hsl(var(--border));
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}
.email-mockup__head {
  padding: 18px 22px;
  background: hsl(220 15% 98%);
  border-bottom: 1px solid hsl(var(--border));
  display: flex; gap: 12px; align-items: center;
}
.email-mockup__head .lumi-pill { box-shadow: 0 2px 8px hsl(var(--ai-glow) / 0.3); }
.email-mockup__title { font-family: 'Sora', sans-serif; font-size: 14.5px; font-weight: 600; }
.email-mockup__body { padding: 24px; }
.email-field { display: grid; grid-template-columns: 80px 1fr; gap: 12px; padding: 8px 0; border-bottom: 1px solid hsl(var(--border) / 0.5); align-items: center; }
.email-field dt { font-size: 12px; color: hsl(var(--muted-foreground)); font-weight: 600; }
.email-field dd { margin: 0; font-size: 13.5px; color: hsl(var(--foreground)); }
.email-field--subject dd { font-weight: 600; }
.email-mockup__copy { padding: 18px 0 0; font-size: 13.5px; line-height: 1.6; color: hsl(var(--foreground) / 0.85); }
.email-mockup__copy p { margin: 10px 0; }
.email-mockup__copy ul { padding-left: 18px; margin: 10px 0; }
.email-mockup__copy ul li { list-style: disc; padding: 3px 0; }
.email-mockup__copy strong { color: hsl(var(--foreground)); }
.email-mockup__hint {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px; font-weight: 600;
  color: hsl(var(--ai-glow));
  background: hsl(var(--ai-glow) / 0.1);
  padding: 4px 10px; border-radius: 999px;
  margin-top: 14px;
}

.email-actions { display: flex; gap: 10px; margin-top: 22px; padding-top: 18px; border-top: 1px solid hsl(var(--border)); }

/* ===== Analytics mockup ===== */
.analytics-mockup {
  background: #fff;
  border-radius: 18px;
  border: 1px solid hsl(var(--border));
  box-shadow: var(--shadow-xl);
  padding: 22px;
}
.analytics-mockup__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.analytics-mockup__head strong { font-family: 'Sora', sans-serif; font-size: 17px; }
.analytics-mockup__head .tabs { display: flex; gap: 6px; padding: 4px; background: hsl(var(--muted)); border-radius: 8px; }
.analytics-mockup__head .tabs button { font-size: 11.5px; font-weight: 600; padding: 4px 10px; border-radius: 6px; color: hsl(var(--muted-foreground)); }
.analytics-mockup__head .tabs button.is-active { background: #fff; color: hsl(var(--foreground)); box-shadow: var(--shadow-sm); }

.kpi-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 22px; }
.kpi {
  padding: 12px 14px;
  background: hsl(220 15% 98%);
  border-radius: 12px;
  border: 1px solid hsl(var(--border) / 0.6);
}
.kpi__label { font-size: 10.5px; font-weight: 600; color: hsl(var(--muted-foreground)); text-transform: uppercase; letter-spacing: 0.08em; }
.kpi__val { margin-top: 6px; font-family: 'Sora', sans-serif; font-weight: 700; font-size: 18px; letter-spacing: -0.02em; }
.kpi__delta { font-size: 11px; font-weight: 600; }
.kpi__delta--up { color: hsl(var(--success)); }
.kpi__delta--down { color: hsl(var(--danger)); }

.chart {
  height: 140px;
  position: relative;
  display: flex; align-items: end; gap: 8px;
  padding: 4px 4px 0;
}
.chart__bar { flex: 1; border-radius: 6px 6px 0 0; position: relative; }
.chart__bar--won { background: linear-gradient(180deg, hsl(var(--primary) / 0.9), hsl(var(--primary) / 0.5)); }
.chart__bar--forecast { background: repeating-linear-gradient(45deg, hsl(var(--ai-glow) / 0.4), hsl(var(--ai-glow) / 0.4) 4px, hsl(var(--ai-glow) / 0.2) 4px, hsl(var(--ai-glow) / 0.2) 8px); border: 1px dashed hsl(var(--ai-glow) / 0.5); }
.chart-x { display: flex; gap: 8px; padding: 6px 4px 0; font-family: 'JetBrains Mono', monospace; font-size: 10.5px; color: hsl(var(--muted-foreground)); }
.chart-x span { flex: 1; text-align: center; }

.deal-list { margin-top: 16px; }
.deal-row {
  display: grid; grid-template-columns: 1fr 100px 60px 90px; gap: 12px; align-items: center;
  padding: 10px 12px; border-radius: 10px;
  background: hsl(220 15% 98%);
  border: 1px solid hsl(var(--border) / 0.6);
  margin-bottom: 8px;
  font-size: 13px;
}
.deal-row strong { font-weight: 600; }
.deal-row .meddic {
  display: flex; gap: 2px; align-items: center;
  font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 700;
  padding: 3px 8px; border-radius: 4px;
}
.meddic--strong { background: hsl(var(--success) / 0.1); color: hsl(var(--success)); }
.meddic--med { background: hsl(var(--warning) / 0.12); color: hsl(38 92% 42%); }
.meddic--weak { background: hsl(var(--danger) / 0.1); color: hsl(var(--danger)); }

.deal-row .prob {
  font-family: 'JetBrains Mono', monospace; font-size: 12px; font-weight: 700;
  padding: 3px 8px; border-radius: 999px;
  background: hsl(var(--primary) / 0.1); color: hsl(var(--primary));
  text-align: center;
}
.deal-row .stage {
  font-size: 11px; color: hsl(var(--muted-foreground));
  font-weight: 500;
}

/* ===== CRM Activity Hub card (already in v1) ===== */
.crm-card {
  background: hsl(220 40% 13%);
  border: 1px solid hsl(var(--shell-border));
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 30px 70px hsl(0 0% 0% / 0.4);
}
.crm-card__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.crm-card__title { font-family: 'Sora', sans-serif; font-size: 17px; font-weight: 700; color: #fff; }
.crm-card__sub { font-size: 12px; color: hsl(0 0% 100% / 0.55); margin-top: 3px; }
.crm-card__sync {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600;
  padding: 4px 10px; border-radius: 999px;
  background: hsl(var(--success) / 0.16); color: hsl(145 70% 60%);
  border: 1px solid hsl(var(--success) / 0.3);
}
.crm-card__sync::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: hsl(145 70% 60%); box-shadow: 0 0 6px hsl(145 70% 60%); animation: pulse-dot 1.8s infinite; }

.crm-row {
  display: grid; grid-template-columns: 22px 1fr auto; gap: 12px; align-items: center;
  padding: 10px 12px; border-radius: 10px;
  border: 1px solid hsl(0 0% 100% / 0.06);
  margin-bottom: 8px;
  background: hsl(0 0% 100% / 0.02);
}
.crm-row__avatar { width: 22px; height: 22px; border-radius: 50%; background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--ai-glow))); }
.crm-row__name { font-size: 13.5px; font-weight: 600; color: #fff; }
.crm-row__meta { font-size: 11.5px; color: hsl(0 0% 100% / 0.5); }
.crm-row__action { font-size: 11px; padding: 3px 10px; border-radius: 999px; font-weight: 600; }
.crm-row__action.new { background: hsl(var(--ai-glow) / 0.16); color: hsl(var(--ai-glow)); border: 1px solid hsl(var(--ai-glow) / 0.3); }
.crm-row__action.upd { background: hsl(var(--aurora-teal) / 0.16); color: hsl(var(--aurora-teal)); border: 1px solid hsl(var(--aurora-teal) / 0.3); }
.crm-row__action.task { background: hsl(var(--accent) / 0.16); color: hsl(var(--accent)); border: 1px solid hsl(var(--accent) / 0.3); }
.crm-row__action.signal { background: hsl(var(--warning) / 0.18); color: hsl(38 95% 60%); border: 1px solid hsl(var(--warning) / 0.32); }

/* ===== Integrations grid ===== */
.intgrid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-top: 24px;
}
@media (max-width: 900px) { .intgrid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .intgrid { grid-template-columns: 1fr; } }

.intcard {
  position: relative;
  padding: 22px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid hsl(var(--border));
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.intcard:hover { border-color: hsl(var(--primary) / 0.3); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.intcard__logo {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif; font-weight: 800; font-size: 18px;
  color: #fff; margin-bottom: 14px; letter-spacing: -0.04em;
}
.intcard h4 { font-size: 16px; }
.intcard p { font-size: 13px; color: hsl(var(--muted-foreground)); margin-top: 6px; line-height: 1.5; }
.intcard__status {
  position: absolute; top: 18px; right: 18px;
  font-size: 10.5px; font-weight: 600; padding: 3px 9px;
  border-radius: 999px; background: hsl(var(--success) / 0.12); color: hsl(var(--success));
  text-transform: uppercase; letter-spacing: 0.08em;
}
.intcard__status--beta { background: hsl(var(--warning) / 0.14); color: hsl(38 92% 42%); }
.intcard__status--soon { background: hsl(var(--muted)); color: hsl(var(--muted-foreground)); }

/* ===== Use cases ===== */
.usecases { background: linear-gradient(180deg, hsl(220 15% 98%) 0%, #fff 100%); }
.uc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .uc-grid { grid-template-columns: 1fr; } }

.uc {
  padding: 32px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid hsl(var(--border));
  display: flex; flex-direction: column; gap: 14px;
}
.uc__role {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: hsl(var(--primary)); font-weight: 600;
}
.uc h3 { font-size: 22px; }
.uc p { font-size: 14.5px; color: hsl(var(--muted-foreground)); line-height: 1.55; }
.uc__stat {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px dashed hsl(var(--border));
  display: flex; gap: 24px; flex-wrap: wrap;
}
.uc__stat dt { font-size: 11px; color: hsl(var(--muted-foreground)); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.uc__stat dd {
  margin: 4px 0 0;
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 22px;
  letter-spacing: -0.02em;
}
.uc__stat dd em { font-style: normal; color: hsl(var(--accent-strong)); }

/* ===== Comparison ===== */
.compare {
  background: hsl(var(--shell));
  color: #fff;
  position: relative;
  overflow: hidden;
}
.compare::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, hsl(var(--primary) / 0.18), transparent 50%);
}
.compare__inner { position: relative; z-index: 1; }
.compare h2 { color: #fff; }
.compare__head p { color: hsl(0 0% 100% / 0.72); }

.compare-table {
  margin-top: 12px;
  background: hsl(220 40% 13%);
  border: 1px solid hsl(var(--shell-border));
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 70px hsl(0 0% 0% / 0.5);
}
.compare-table__head, .compare-table__row {
  display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 0; align-items: center;
}
.compare-table__head {
  background: hsl(222 47% 7%);
  border-bottom: 1px solid hsl(var(--shell-border));
}
.compare-table__head > div { padding: 18px 14px; text-align: center; font-family: 'Sora', sans-serif; font-weight: 700; font-size: 13.5px; color: hsl(0 0% 100% / 0.7); border-right: 1px solid hsl(var(--shell-border)); }
.compare-table__head > div:first-child { text-align: left; }
.compare-table__head > div:last-child { border-right: 0; }
.compare-table__head > .own {
  background: hsl(var(--primary) / 0.16);
  color: #fff;
  font-size: 15px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}
.compare-table__row { border-bottom: 1px solid hsl(var(--shell-border)); }
.compare-table__row:last-child { border-bottom: 0; }
.compare-table__row > div { padding: 16px 14px; font-size: 13.5px; border-right: 1px solid hsl(var(--shell-border)); text-align: center; color: hsl(0 0% 100% / 0.78); }
.compare-table__row > div:first-child { text-align: left; font-weight: 500; color: #fff; }
.compare-table__row > div:last-child { border-right: 0; }
.compare-table__row > .own { background: hsl(var(--primary) / 0.08); color: #fff; }
.check-yes { color: hsl(var(--success)); font-weight: 700; }
.check-no { color: hsl(0 0% 100% / 0.3); }
.check-partial { color: hsl(var(--warning)); font-weight: 600; font-size: 12px; }

@media (max-width: 760px) {
  .compare-table { overflow-x: auto; }
  .compare-table__head, .compare-table__row { min-width: 700px; }
}

/* ===== Testimonials ===== */
.testimonials { background: hsl(220 15% 98%); }
.tgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 980px) { .tgrid { grid-template-columns: 1fr; } }

.testimonial {
  background: #fff;
  border: 1px solid hsl(var(--border));
  border-radius: 20px;
  padding: 28px;
  display: flex; flex-direction: column; gap: 18px;
}
.testimonial__quote { font-family: 'Sora', sans-serif; font-size: 17px; line-height: 1.45; letter-spacing: -0.01em; color: hsl(var(--foreground)); }
.testimonial__quote::before { content: '"'; font-family: 'Sora'; font-size: 56px; color: hsl(var(--primary) / 0.25); line-height: 0.3; display: block; margin-bottom: 12px; }
.testimonial__author { display: flex; gap: 12px; align-items: center; margin-top: auto; padding-top: 18px; border-top: 1px solid hsl(var(--border)); }
.testimonial__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--ai-glow)));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-family: 'Sora', sans-serif;
}
.testimonial__name { font-weight: 600; font-size: 14px; }
.testimonial__role { font-size: 12.5px; color: hsl(var(--muted-foreground)); margin-top: 2px; }
.testimonial__metric {
  margin-top: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; font-weight: 700; color: hsl(var(--accent-strong));
}

/* ===== Pricing ===== */
.pricing { background: hsl(220 15% 98%); }
.pricing__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: stretch; }
@media (max-width: 1080px) { .pricing__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pricing__grid { grid-template-columns: 1fr; } }

.price {
  background: #fff;
  border: 1px solid hsl(var(--border));
  border-radius: 20px;
  padding: 28px 24px;
  display: flex; flex-direction: column;
  position: relative;
}
.price--feature {
  border: 2px solid hsl(var(--primary));
  box-shadow: 0 20px 50px hsl(var(--primary) / 0.18);
  background: linear-gradient(180deg, hsl(var(--primary) / 0.03) 0%, #fff 30%);
}
.price__badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  padding: 5px 14px; border-radius: 999px;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-light)));
  color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  box-shadow: 0 4px 12px hsl(var(--primary) / 0.32);
  white-space: nowrap;
}
.price__name { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 17px; display: flex; align-items: center; gap: 8px; }
.price__name svg { width: 18px; height: 18px; color: hsl(var(--primary)); }
.price__desc { font-size: 13px; color: hsl(var(--muted-foreground)); margin-top: 8px; line-height: 1.5; min-height: 38px; }
.price__amt { margin-top: 18px; display: flex; align-items: baseline; gap: 4px; }
.price__amt strong { font-family: 'Sora', sans-serif; font-size: 38px; font-weight: 700; letter-spacing: -0.03em; }
.price__amt span { font-size: 13.5px; color: hsl(var(--muted-foreground)); }
.price__amt .custom { font-family: 'Sora', sans-serif; font-size: 28px; font-weight: 700; letter-spacing: -0.02em; }
.price__cta { margin-top: 20px; }
.price__list { margin-top: 22px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.price__list li { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: hsl(var(--foreground) / 0.8); line-height: 1.4; }
.price__list svg { width: 14px; height: 14px; color: hsl(var(--primary)); flex: 0 0 14px; margin-top: 4px; }
.price__list li.crossed { color: hsl(var(--muted-foreground) / 0.7); }
.price__list li.crossed svg { color: hsl(var(--muted-foreground) / 0.5); }
.price__list li.highlight { font-weight: 600; color: hsl(var(--foreground)); }

/* ===== FAQ ===== */
.faq__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; max-width: 1080px; margin: 0 auto; }
@media (max-width: 760px) { .faq__grid { grid-template-columns: 1fr; } }

.faq__item {
  background: #fff;
  border: 1px solid hsl(var(--border));
  border-radius: 14px;
  padding: 0 22px;
  transition: border-color .2s, box-shadow .2s;
  align-self: start;
}
.faq__item[open] { border-color: hsl(var(--primary) / 0.4); box-shadow: var(--shadow-sm); }
.faq__item summary {
  list-style: none; cursor: pointer;
  padding: 20px 0; display: flex; gap: 16px; align-items: center;
  font-family: 'Sora', sans-serif; font-weight: 600; font-size: 15.5px;
  color: hsl(var(--foreground));
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+'; margin-left: auto; flex: 0 0 28px; width: 28px; height: 28px;
  border-radius: 50%; background: hsl(var(--muted)); display: inline-flex;
  align-items: center; justify-content: center; font-size: 18px; color: hsl(var(--primary));
  font-weight: 400; line-height: 1; transition: transform .2s, background .2s;
}
.faq__item[open] summary::after { content: '−'; background: hsl(var(--primary)); color: #fff; }
.faq__answer { padding: 0 0 22px; font-size: 14.5px; color: hsl(var(--muted-foreground)); line-height: 1.65; }

/* ===== Final CTA ===== */
.finalcta {
  background: hsl(var(--shell));
  color: #fff;
  position: relative;
  overflow: hidden;
}
.finalcta::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, hsl(var(--ai-glow) / 0.3), transparent 60%),
    radial-gradient(ellipse at 20% 100%, hsl(var(--primary) / 0.25), transparent 50%),
    radial-gradient(ellipse at 80% 100%, hsl(var(--accent) / 0.18), transparent 45%);
}
.finalcta__inner { position: relative; z-index: 1; text-align: center; max-width: 820px; margin: 0 auto; padding: 100px 24px; }
.finalcta h2 { color: #fff; font-size: clamp(34px, 5vw, 58px); }
.finalcta p { margin-top: 22px; font-size: 19px; color: hsl(0 0% 100% / 0.74); line-height: 1.55; }
.finalcta__cta { margin-top: 36px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.finalcta__meta { margin-top: 22px; font-size: 13px; color: hsl(0 0% 100% / 0.5); }

/* ===== Footer ===== */
.footer { background: hsl(222 47% 6%); color: hsl(0 0% 100% / 0.7); }
.footer__top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 40px;
  padding: 72px 0 48px;
}
@media (max-width: 900px) { .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 500px) { .footer__top { grid-template-columns: 1fr 1fr; } }

.footer__brand .nav__logo { color: #fff; margin-bottom: 14px; }
.footer__tag { font-size: 13.5px; line-height: 1.55; color: hsl(0 0% 100% / 0.55); max-width: 320px; }
.footer__col h5 { color: #fff; font-family: 'Sora', sans-serif; font-size: 14px; margin-bottom: 14px; font-weight: 600; }
.footer__col li { padding: 5px 0; font-size: 13.5px; color: hsl(0 0% 100% / 0.6); transition: color .15s; cursor: pointer; }
.footer__col li:hover { color: #fff; }
.footer__bottom {
  padding: 20px 0; border-top: 1px solid hsl(0 0% 100% / 0.08);
  display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  font-size: 12.5px; color: hsl(0 0% 100% / 0.45);
}
.footer__legal { display: flex; gap: 18px; }
.footer__legal a:hover { color: #fff; }

/* small icons */
.ic { width: 16px; height: 16px; stroke-width: 1.8; }
.ic-lg { width: 24px; height: 24px; stroke-width: 1.6; }
.ic-xl { width: 32px; height: 32px; stroke-width: 1.5; }

/* Brand logo container — for simple-icons images */
.intcard__logo--img {
  padding: 8px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  /* bg + color come from inline style (brand color) */
}
.intcard__logo--img .logo-letter {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif; font-weight: 800;
  font-size: 16px; letter-spacing: -0.04em;
  color: #fff;
  pointer-events: none;
}
.intcard__logo--img img {
  position: relative; z-index: 1;
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
  background: #fff; border-radius: 4px;
  padding: 2px;
}
.trust__logo img.brand-icon {
  width: 22px; height: 22px;
  object-fit: contain;
}

/* badges */
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px;
  font-size: 12px; font-weight: 600;
  background: hsl(0 0% 100% / 0.08);
  color: hsl(0 0% 100% / 0.85);
  border: 1px solid hsl(0 0% 100% / 0.12);
}
.badge--accent {
  background: hsl(var(--ai-glow) / 0.16);
  border-color: hsl(var(--ai-glow) / 0.32);
  color: hsl(var(--ai-glow));
}
.badge--accent::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: hsl(var(--ai-glow)); box-shadow: 0 0 8px hsl(var(--ai-glow)); }
.badge--warning {
  background: hsl(var(--warning) / 0.16);
  border-color: hsl(var(--warning) / 0.4);
  color: hsl(38 95% 65%);
}
.badge--warning::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: hsl(var(--warning)); box-shadow: 0 0 8px hsl(var(--warning)); animation: pulse-dot 1.8s infinite; }

/* ===== Demo pulse dot for live mockups ===== */
.live-dot {
  width: 8px; height: 8px; border-radius: 50%; background: hsl(var(--accent));
  box-shadow: 0 0 0 4px hsl(var(--accent) / 0.25);
  animation: pulse-dot 1.5s infinite;
}

/* deal probabilities */
.prob--high { background: hsl(var(--success) / 0.14); color: hsl(var(--success)); }
.prob--med { background: hsl(var(--warning) / 0.14); color: hsl(38 92% 42%); }
.prob--low { background: hsl(var(--danger) / 0.1); color: hsl(var(--danger)); }

/* ===== Subpage hero (smaller than main hero) ===== */
.subhero {
  position: relative; overflow: hidden;
  background: hsl(var(--shell)); color: #fff;
  padding: 96px 0 80px;
  isolation: isolate;
}
.subhero::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(circle at 15% 20%, hsl(var(--primary) / 0.3), transparent 36%),
    radial-gradient(circle at 85% 15%, hsl(var(--ai-glow) / 0.26), transparent 38%),
    linear-gradient(180deg, hsl(var(--shell)) 0%, hsl(222 47% 6%) 100%);
}
.subhero__inner { max-width: 800px; }
.subhero h1 {
  color: #fff; font-size: clamp(36px, 4.8vw, 56px); line-height: 1.05;
  margin-top: 20px;
}
.subhero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, hsl(var(--aurora-teal)), hsl(var(--ai-glow)));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.subhero__sub {
  margin-top: 22px; font-size: 19px; line-height: 1.55;
  color: hsl(0 0% 100% / 0.74); max-width: 640px;
}
.subhero__cta { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }
.subhero__crumb { font-size: 13px; color: hsl(0 0% 100% / 0.55); margin-bottom: 8px; display: flex; gap: 6px; align-items: center; }
.subhero__crumb a { color: hsl(0 0% 100% / 0.55); transition: color .15s; }
.subhero__crumb a:hover { color: #fff; }
.subhero__crumb svg { width: 12px; height: 12px; opacity: 0.5; }

.nav__links a.is-active { color: hsl(var(--primary)); }

/* ===== Offer Detail Panel mockup (z OfferDetailPanel.tsx) ===== */
.offer-panel {
  background: #fff;
  border: 1px solid hsl(var(--border));
  border-radius: 18px;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}
.offer-panel__head {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 20px;
  border-bottom: 1px solid hsl(var(--border));
}
.offer-panel__head svg { width: 20px; height: 20px; color: hsl(var(--primary)); }
.offer-panel__head .fname { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 15px; }
.offer-panel__head .ver { font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 600; padding: 2px 7px; border-radius: 999px; background: hsl(var(--muted)); color: hsl(var(--muted-foreground)); }
.offer-panel__body { padding: 18px 20px; }

/* KPI row */
.offer-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 16px; }
.offer-kpi {
  border-radius: 12px; background: hsl(220 15% 98%);
  border: 1px solid hsl(var(--border) / 0.6);
  padding: 12px 8px; text-align: center;
}
.offer-kpi svg { width: 16px; height: 16px; margin: 0 auto 6px; display: block; }
.offer-kpi__val { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 19px; letter-spacing: -0.02em; }
.offer-kpi__label { font-size: 10px; color: hsl(var(--muted-foreground)); margin-top: 2px; }
.offer-kpi--opens svg { color: hsl(var(--primary)); }
.offer-kpi--time svg { color: hsl(var(--warning)); }
.offer-kpi--viewers svg { color: hsl(var(--ai-glow)); }
.offer-kpi--read svg { color: hsl(var(--success)); }

/* Engagement bar */
.offer-engage { margin-bottom: 18px; }
.offer-engage__top { display: flex; justify-content: space-between; font-size: 12px; color: hsl(var(--muted-foreground)); margin-bottom: 5px; }
.offer-engage__top strong { color: hsl(var(--success)); font-weight: 700; }
.offer-engage__track { height: 8px; background: hsl(var(--muted)); border-radius: 999px; overflow: hidden; }
.offer-engage__fill { height: 100%; border-radius: 999px; background: hsl(var(--success)); }

/* Tabs */
.offer-tabs {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 2px;
  background: hsl(var(--muted)); border-radius: 10px; padding: 3px; margin-bottom: 16px;
}
.offer-tab {
  font-size: 11px; font-weight: 600; padding: 7px 4px; border-radius: 8px;
  color: hsl(var(--muted-foreground)); text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 4px;
}
.offer-tab svg { width: 12px; height: 12px; }
.offer-tab.is-active { background: #fff; color: hsl(var(--foreground)); box-shadow: var(--shadow-sm); }

/* Heatmap rows */
.offer-heat { display: flex; flex-direction: column; gap: 10px; }
.offer-heat__row { }
.offer-heat__top { display: flex; justify-content: space-between; align-items: center; font-size: 12.5px; margin-bottom: 5px; }
.offer-heat__name { display: flex; align-items: center; gap: 8px; font-weight: 600; }
.offer-heat__dot { width: 8px; height: 8px; border-radius: 50%; flex: 0 0 8px; }
.offer-heat__dot--hot { background: hsl(var(--danger)); }
.offer-heat__dot--warm { background: hsl(var(--warning)); }
.offer-heat__dot--cool { background: hsl(var(--primary)); }
.offer-heat__dot--cold { background: hsl(var(--muted-foreground) / 0.3); }
.offer-heat__meta { display: flex; gap: 6px; align-items: center; color: hsl(var(--muted-foreground)); }
.offer-heat__meta .mono { font-weight: 600; }
.offer-heat__meta .share { font-size: 10px; }
.offer-heat__track { height: 12px; background: hsl(var(--muted)); border-radius: 999px; overflow: hidden; }
.offer-heat__fill { height: 100%; border-radius: 999px; }
.offer-heat__fill--hot { background: hsl(var(--danger)); }
.offer-heat__fill--warm { background: hsl(var(--warning)); }
.offer-heat__fill--cool { background: hsl(var(--primary)); }
.offer-heat__fill--cold { background: hsl(var(--muted-foreground) / 0.2); }
.offer-heat__pages { font-size: 10px; color: hsl(var(--muted-foreground)); padding-left: 16px; margin-top: 3px; }

/* Lumi insight block */
.offer-insight {
  margin-top: 14px; padding: 12px 14px;
  border-radius: 10px;
  background: hsl(var(--primary) / 0.05);
  border: 1px solid hsl(var(--primary) / 0.12);
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 12.5px; line-height: 1.5; color: hsl(var(--foreground) / 0.85);
}
.offer-insight .lumi-orb { margin-top: 1px; }

/* Footer: password + link */
.offer-foot { margin-top: 16px; padding-top: 14px; border-top: 1px solid hsl(var(--border) / 0.5); display: flex; flex-direction: column; gap: 10px; }
.offer-foot__label { font-size: 11px; font-weight: 600; color: hsl(var(--muted-foreground)); display: flex; align-items: center; gap: 6px; }
.offer-foot__label svg { width: 13px; height: 13px; }
.offer-foot__field {
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
  padding: 8px 12px; border-radius: 8px;
  border: 1px solid hsl(var(--border));
  background: hsl(220 15% 98%);
  display: flex; justify-content: space-between; align-items: center;
}
.offer-foot__field.pw { background: hsl(var(--warning) / 0.06); border-color: hsl(var(--warning) / 0.25); letter-spacing: 0.15em; justify-content: center; font-weight: 600; }
.offer-foot__field .copy { width: 14px; height: 14px; color: hsl(var(--muted-foreground)); }

/* ============================================================
   Mobile responsiveness pack + hamburger nav (2026-06)
   ============================================================ */

/* --- Hamburger button (hidden on desktop) --- */
.nav__burger {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border-radius: 10px;
  background: transparent;
  border: 1px solid hsl(var(--border));
  cursor: pointer;
  margin-left: 8px;
}
.nav__burger svg { width: 22px; height: 22px; stroke: hsl(var(--foreground)); }
.nav__burger:hover { background: hsl(var(--muted)); }

/* --- Mobile drawer --- */
.nav__drawer {
  position: fixed;
  inset: 60px 0 0 0;
  background: hsl(0 0% 100% / 0.98);
  backdrop-filter: blur(20px);
  z-index: 49;
  transform: translateX(100%);
  transition: transform .25s ease;
  padding: 24px 20px 40px;
  overflow-y: auto;
}
.nav__drawer.is-open { transform: translateX(0); }
.nav__drawer a {
  display: block;
  padding: 14px 4px;
  font-size: 17px; font-weight: 600;
  color: hsl(var(--foreground));
  border-bottom: 1px solid hsl(var(--border));
}
.nav__drawer .nav__drawer-cta { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.nav__drawer .nav__drawer-cta .btn { width: 100%; justify-content: center; }

@media (max-width: 980px) {
  .nav__burger { display: inline-flex; }
  .nav__cta .nav__signin { display: none; }
  .nav__cta .btn { padding: 8px 14px; font-size: 13px; }
}
@media (min-width: 981px) {
  .nav__drawer { display: none !important; }
}

/* --- Global container + typography mobile --- */
@media (max-width: 720px) {
  .container { padding-left: 18px; padding-right: 18px; }
  h1 { font-size: 36px !important; line-height: 1.1 !important; }
  h2 { font-size: 28px !important; line-height: 1.15 !important; }
  h3 { font-size: 20px !important; }
  .subhero h1 { font-size: 34px !important; }
  .subhero__sub { font-size: 16px !important; }
  .subhero { padding: 48px 0 32px !important; }
  .hero { padding: 56px 0 40px !important; }
  .hero__title { font-size: 40px !important; }
  .hero__sub { font-size: 16px !important; }
  .finalcta h2 { font-size: 26px !important; }
  .finalcta__inner { padding: 40px 22px !important; }
  .section__head h2 { font-size: 26px !important; }
  .section__head p { font-size: 15px !important; }
}

/* --- CTAs stack on mobile --- */
@media (max-width: 640px) {
  .subhero__cta, .finalcta__cta, .hero__cta {
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100%;
  }
  .subhero__cta .btn, .finalcta__cta .btn, .hero__cta .btn {
    width: 100%;
    justify-content: center;
  }
}

/* --- Showcase / cards 1-col on mobile --- */
@media (max-width: 760px) {
  .showcase__grid, .showcase__grid--reverse {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .modes__grid { grid-template-columns: 1fr !important; gap: 14px; }
  .sumcard__body { padding: 14px !important; }
  .sumcard__head .t { font-size: 14px; }
  .sumcard__foot { flex-direction: column; }
  .sumcard__foot .btn { width: 100%; justify-content: center; }
  .footer__top { grid-template-columns: 1fr 1fr !important; gap: 24px !important; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
  .footer__top { grid-template-columns: 1fr !important; }
  .badge { font-size: 11px; padding: 5px 10px; }
  .nav__inner { gap: 12px; }
  .nav__logo span { font-size: 16px; }
  .lang-switcher { transform: scale(0.9); transform-origin: right center; }
}

/* --- Tables / pricing safety --- */
@media (max-width: 760px) {
  table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .pricing__grid, .tgrid { grid-template-columns: 1fr !important; }
}

/* --- Lumi-chat readability --- */
@media (max-width: 640px) {
  .lumi-chat { padding: 14px !important; }
  .chat-msg__bubble { font-size: 13.5px !important; padding: 10px 12px !important; }
}

/* Hide primary nav CTA on tiny screens — hamburger drawer covers it */
@media (max-width: 520px) {
  .nav__cta > .btn--primary { display: none; }
  .nav__inner { gap: 8px; }
}

/* ===== Module cards · refined (less generic) ===== */
.module {
  position: relative;
  overflow: hidden;
  padding: 28px 26px 22px;
  background:
    radial-gradient(120% 80% at 0% 0%, hsl(var(--primary)/0.04), transparent 55%),
    #fff;
}
.module::before {
  content: '';
  position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, transparent, hsl(var(--primary)/0.5), transparent);
  opacity: 0; transition: opacity .25s;
}
.module:hover::before { opacity: 1; }
.module__icon {
  width: 52px; height: 52px; border-radius: 14px;
  position: relative;
  box-shadow: inset 0 0 0 1px hsl(var(--border) / 0.6);
}
.module__icon::after {
  content: ''; position: absolute; inset: -8px; border-radius: 20px;
  background: radial-gradient(closest-side, currentColor, transparent 70%);
  opacity: 0; filter: blur(10px); transition: opacity .25s;
  z-index: -1;
}
.module:hover .module__icon { transform: translateY(-1px) rotate(-2deg); }
.module:hover .module__icon::after { opacity: 0.25; }
.module__icon svg { width: 24px; height: 24px; stroke-width: 1.8 !important; }

.module--teal   .module__icon { background: linear-gradient(135deg, hsl(var(--primary)/0.18), hsl(var(--primary)/0.06)); color: hsl(var(--primary-strong)); }
.module--coral  .module__icon { background: linear-gradient(135deg, hsl(var(--accent)/0.22), hsl(var(--accent)/0.06)); color: hsl(var(--accent-strong)); }
.module--ai     .module__icon { background: linear-gradient(135deg, hsl(var(--ai-glow)/0.20), hsl(var(--ai-glow-2)/0.08)); color: hsl(var(--ai-glow)); }
.module--emerald .module__icon{ background: linear-gradient(135deg, hsl(var(--success)/0.20), hsl(var(--success)/0.06)); color: hsl(var(--success)); }
.module--amber  .module__icon { background: linear-gradient(135deg, hsl(var(--warning)/0.24), hsl(var(--warning)/0.06)); color: hsl(38 92% 38%); }

.module h3 { font-size: 18px; letter-spacing: -0.015em; }

/* ===== Stakeholder map · visual mockup ===== */
.stakemap {
  position: relative;
  border-radius: 22px;
  background:
    radial-gradient(60% 50% at 50% 50%, hsl(var(--primary)/0.08), transparent 70%),
    linear-gradient(180deg, hsl(var(--shell)) 0%, hsl(var(--shell-2)) 100%);
  border: 1px solid hsl(var(--shell-border));
  padding: 28px 22px 22px;
  overflow: hidden;
  color: #fff;
  box-shadow: var(--shadow-xl);
}
.stakemap__head {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 16px; margin-bottom: 18px;
  border-bottom: 1px solid hsl(0 0% 100% / 0.08);
  font-family: 'Sora', sans-serif; font-weight: 600; font-size: 14px;
}
.stakemap__head .dot { width: 8px; height: 8px; border-radius: 50%; background: hsl(var(--aurora-teal)); box-shadow: 0 0 12px hsl(var(--aurora-teal)); }
.stakemap__head .meta { margin-left: auto; font-family: 'JetBrains Mono', monospace; font-size: 11px; opacity: 0.55; font-weight: 500; letter-spacing: 0.04em; }

.stakemap__svg { position: absolute; inset: 60px 0 100px; pointer-events: none; opacity: 0.35; }
.stakemap__grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px 18px; z-index: 1; }
.smnode {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 12px;
  background: hsl(0 0% 100% / 0.04);
  border: 1px solid hsl(0 0% 100% / 0.08);
  backdrop-filter: blur(6px);
  transition: transform .2s, border-color .2s;
}
.smnode:hover { border-color: hsl(var(--aurora-teal)/0.5); transform: translateY(-2px); }
.smnode .avi {
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 12px;
  color: #fff; flex-shrink: 0;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
}
.smnode .info { min-width: 0; flex: 1; }
.smnode .name { font-size: 13px; font-weight: 600; line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.smnode .title { font-size: 11px; color: hsl(0 0% 100% / 0.5); margin-top: 2px; }
.smnode .role {
  font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 3px 7px; border-radius: 6px; flex-shrink: 0;
}
.smnode--champion .role { background: hsl(145 65% 45% / 0.22); color: hsl(145 65% 70%); }
.smnode--champion .avi { background: linear-gradient(135deg, #10b981, #059669); }
.smnode--decision .role { background: hsl(var(--ai-glow) / 0.22); color: hsl(var(--ai-glow) / 1); }
.smnode--decision .avi { background: linear-gradient(135deg, #8b5cf6, #6366f1); }
.smnode--blocker .role { background: hsl(0 72% 51% / 0.22); color: hsl(0 90% 75%); }
.smnode--blocker .avi { background: linear-gradient(135deg, #f43f5e, #be123c); }
.smnode--influencer .role { background: hsl(var(--warning) / 0.22); color: hsl(38 92% 70%); }
.smnode--influencer .avi { background: linear-gradient(135deg, #f59e0b, #d97706); }
.smnode--user .role { background: hsl(var(--aurora-teal) / 0.22); color: hsl(var(--aurora-teal)); }
.smnode--user .avi { background: linear-gradient(135deg, #06b6d4, #0891b2); }
.smnode .sent {
  width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
}
.sent--pos { background: hsl(145 65% 55%); box-shadow: 0 0 6px hsl(145 65% 55%); }
.sent--neu { background: hsl(0 0% 70%); }
.sent--neg { background: hsl(0 72% 60%); box-shadow: 0 0 6px hsl(0 72% 60%); }

.stakemap__legend {
  margin-top: 18px; padding-top: 14px;
  border-top: 1px solid hsl(0 0% 100% / 0.08);
  display: flex; flex-wrap: wrap; gap: 12px;
  font-size: 11px; color: hsl(0 0% 100% / 0.55);
}
.stakemap__legend span { display: inline-flex; align-items: center; gap: 6px; }

.stakemap__alert {
  margin-top: 14px;
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 12px; border-radius: 10px;
  background: hsl(var(--warning) / 0.10);
  border: 1px solid hsl(var(--warning) / 0.25);
  font-size: 12.5px; line-height: 1.45;
}
.stakemap__alert strong { color: hsl(38 92% 70%); }

@media (max-width: 720px) {
  .stakemap__grid { grid-template-columns: 1fr; }
}

/* ===== About / Contact page polish ===== */
.profile-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 24px; }
@media (max-width: 720px) { .profile-cards { grid-template-columns: 1fr; } }
.profile-card {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px; border-radius: 16px;
  background: #fff; border: 1px solid hsl(var(--border));
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.profile-card:hover { border-color: hsl(var(--primary)/0.35); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.profile-card .ic-wrap {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  display: grid; place-items: center;
  background: linear-gradient(135deg, hsl(var(--primary)/0.15), hsl(var(--primary)/0.05));
  color: hsl(var(--primary-strong));
}
.profile-card h4 { font-size: 15px; margin: 0 0 4px; }
.profile-card p { font-size: 13.5px; color: hsl(var(--muted-foreground)); line-height: 1.5; }
.profile-card a { color: hsl(var(--primary)); font-weight: 600; }

.about-hero h1 em { background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--ai-glow))); -webkit-background-clip: text; background-clip: text; color: transparent; font-style: normal; }
.about-block { padding: 36px; border-radius: 24px; background: linear-gradient(180deg, hsl(var(--primary)/0.04), transparent); border: 1px solid hsl(var(--primary)/0.18); margin-top: 32px; }
.about-block h2 { font-size: 26px; }
.about-block p { margin-top: 12px; color: hsl(var(--muted-foreground)); font-size: 16px; line-height: 1.65; }

.contact-form { display: grid; gap: 14px; }
.contact-form label { font-size: 13px; font-weight: 600; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 12px 14px; border-radius: 10px;
  border: 1.5px solid hsl(var(--border)); background: #fff;
  font-family: inherit; font-size: 14.5px; color: hsl(var(--foreground));
  transition: border-color .2s;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: hsl(var(--primary)/0.6); }
.contact-form textarea { min-height: 130px; resize: vertical; }

.company-card {
  margin-top: 32px; padding: 24px;
  border-radius: 16px; background: hsl(var(--muted) / 0.5);
  border: 1px solid hsl(var(--border));
  font-size: 14px; line-height: 1.6; color: hsl(var(--muted-foreground));
}
.company-card strong { display: block; color: hsl(var(--foreground)); font-size: 15px; margin-bottom: 6px; }
