/* ──────────────────────────────────────────────────────────────────────────
   LothusPDV — Landing page styles
   ────────────────────────────────────────────────────────────────────────── */

:root {
  /* Verde-floresta theme (default) */
  --ink: oklch(0.22 0.02 155);
  --ink-soft: oklch(0.32 0.02 155);
  --muted: oklch(0.50 0.012 155);
  --muted-soft: oklch(0.68 0.01 145);
  --line: oklch(0.90 0.012 145);
  --line-soft: oklch(0.94 0.01 145);
  --surface: oklch(0.985 0.006 90);
  --surface-warm: oklch(0.965 0.012 85);
  --surface-deep: oklch(0.94 0.018 85);
  --primary: oklch(0.42 0.085 155);
  --primary-deep: oklch(0.30 0.06 155);
  --primary-soft: oklch(0.92 0.04 150);
  --primary-ink: oklch(0.99 0.004 90);
  --accent: oklch(0.82 0.13 85);
  --accent-ink: oklch(0.28 0.05 80);
  --accent-soft: oklch(0.95 0.05 85);
  --danger: oklch(0.55 0.16 28);
  --positive: oklch(0.62 0.13 150);

  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  --shadow-card: 0 1px 0 oklch(0.95 0.01 145), 0 24px 60px -32px oklch(0.30 0.05 155 / 0.18);
  --shadow-lift: 0 2px 0 oklch(0.94 0.01 145), 0 40px 80px -36px oklch(0.30 0.05 155 / 0.32);
  --shadow-inset: inset 0 1px 0 oklch(1 0 0 / 0.5);

  --font-display: "Bricolage Grotesque", "DM Sans", sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --density: 1;
}

[data-theme="azul"] {
  --primary: oklch(0.42 0.13 245);
  --primary-deep: oklch(0.30 0.10 245);
  --primary-soft: oklch(0.92 0.04 245);
  --accent: oklch(0.82 0.13 60);
  --accent-ink: oklch(0.32 0.06 60);
  --accent-soft: oklch(0.95 0.05 60);
}

[data-theme="laranja"] {
  --primary: oklch(0.58 0.18 50);
  --primary-deep: oklch(0.42 0.15 50);
  --primary-soft: oklch(0.94 0.06 55);
  --accent: oklch(0.42 0.10 235);
  --accent-ink: oklch(0.28 0.07 235);
  --accent-soft: oklch(0.94 0.04 235);
}

[data-theme="grafite"] {
  --primary: oklch(0.22 0.02 155);
  --primary-deep: oklch(0.14 0.02 155);
  --primary-soft: oklch(0.92 0.012 145);
  --accent: oklch(0.78 0.16 75);
  --accent-ink: oklch(0.28 0.06 75);
  --accent-soft: oklch(0.95 0.06 75);
}

[data-density="compact"] {
  --density: 0.78;
}

/* ── reset / base ──────────────────────────────────────────────────────── */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--surface);
  font-size: 17px;
  line-height: 1.55;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* ── layout primitives ─────────────────────────────────────────────────── */
.shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.shell-wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: calc(120px * var(--density)) 0;
  position: relative;
}
.section-tight {
  padding: calc(80px * var(--density)) 0;
}

.kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.kicker::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--muted-soft);
}
.kicker.no-rule::before { display: none; }
.kicker .num {
  color: var(--primary);
  font-weight: 600;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.02;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
.display-xl { font-size: clamp(48px, 6.4vw, 96px); font-weight: 500; letter-spacing: -0.035em; line-height: 0.98; }
.display-lg { font-size: clamp(40px, 4.8vw, 68px); font-weight: 500; letter-spacing: -0.03em; line-height: 1.0; }
.display-md { font-size: clamp(32px, 3.4vw, 48px); font-weight: 500; letter-spacing: -0.025em; line-height: 1.05; }
.display-sm { font-size: clamp(24px, 2.2vw, 32px); font-weight: 500; letter-spacing: -0.02em; line-height: 1.15; }

.lede {
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 56ch;
  text-wrap: pretty;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── buttons ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 16px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--ink);
  transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--primary);
  color: var(--primary-ink);
  box-shadow: 0 1px 0 oklch(1 0 0 / 0.18) inset, 0 12px 30px -14px oklch(0.30 0.05 155 / 0.5);
}
.btn-primary:hover { background: var(--primary-deep); }

.btn-secondary {
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink);
}
.btn-secondary:hover { border-color: var(--ink); }

.btn-ghost {
  color: var(--ink-soft);
  padding: 12px 18px;
}
.btn-ghost:hover { color: var(--ink); }

.btn-amber {
  background: var(--accent);
  color: var(--accent-ink);
}
.btn-amber:hover { background: oklch(from var(--accent) calc(l - 0.04) c h); }

.btn .arrow {
  display: inline-flex;
  transition: transform .2s ease;
}
.btn:hover .arrow { transform: translateX(3px); }

/* ── chip / tag ───────────────────────────────────────────────────────── */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-deep);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.chip .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--primary);
}
.chip.amber {
  background: var(--accent-soft);
  color: var(--accent-ink);
}
.chip.amber .dot { background: var(--accent); }

/* ── nav ──────────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: oklch(from var(--surface) l c h / 0.82);
  border-bottom: 1px solid oklch(from var(--line) l c h / 0);
  transition: border-color .2s ease;
}
.nav.scrolled { border-color: var(--line); }
.nav-inner {
  height: 72px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.02em;
  color: var(--ink);
  cursor: pointer;
  text-decoration: none;
}
.nav-brand:hover { opacity: 0.85; }
.nav-brand .mark {
  width: 32px; height: 32px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nav-links {
  display: flex;
  gap: 28px;
  margin-left: 20px;
}
.nav-links a {
  font-size: 14.5px;
  color: var(--ink-soft);
  transition: color .15s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta { margin-left: auto; display: flex; gap: 10px; align-items: center; }

/* ── hero ─────────────────────────────────────────────────────────────── */
.hero {
  padding: calc(64px * var(--density)) 0 calc(96px * var(--density));
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}
.hero-copy { max-width: 620px; }
.hero h1 {
  margin-top: 28px;
}
.hero-h-rotator {
  position: relative;
  min-height: 1.1em;
}
.hero-h-rotator > span {
  display: block;
  transition: opacity .35s ease, transform .35s ease;
}
.hero-sub {
  margin-top: 28px;
  font-size: clamp(18px, 1.3vw, 20px);
  color: var(--ink-soft);
  line-height: 1.5;
  max-width: 56ch;
  text-wrap: pretty;
}
.hero-meta-row {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-fine {
  margin-top: 18px;
  font-size: 13px;
  color: var(--muted);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-fine span { display: inline-flex; align-items: center; gap: 6px; }
.hero-fine .dot {
  width: 4px; height: 4px; border-radius: 50%; background: var(--muted-soft);
}

.hero-visual {
  position: relative;
  aspect-ratio: 5 / 4.2;
  min-height: 540px;
}
.hero-visual-devices {
  aspect-ratio: 1407 / 768;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-devices {
  position: relative;
  z-index: 1;
  width: 75%;
  max-width: 520px;
  margin: 0 auto;
  height: auto;
  display: block;
  filter: drop-shadow(0 24px 40px oklch(0.25 0.04 155 / 0.18));
}

/* organic blob backdrop used SPARINGLY behind the hero visual only */
.hero-backdrop {
  position: absolute;
  inset: -10% -8% -8% -2%;
  z-index: 0;
  pointer-events: none;
}
.hero-backdrop::before, .hero-backdrop::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.55;
}
.hero-backdrop::before {
  width: 380px; height: 380px;
  top: 8%; right: 4%;
  background: radial-gradient(circle at 30% 30%, var(--accent) 0%, transparent 65%);
}
.hero-backdrop::after {
  width: 320px; height: 320px;
  bottom: 4%; left: 6%;
  background: radial-gradient(circle at 60% 40%, var(--primary-soft) 0%, transparent 70%);
}

/* ── dashboard mock ───────────────────────────────────────────────────── */
.dash {
  position: relative;
  z-index: 1;
  background: var(--surface);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lift);
  overflow: hidden;
  display: grid;
  grid-template-columns: 180px 1fr;
}
.dash-side {
  background: oklch(from var(--surface-warm) l c h);
  border-right: 1px solid var(--line);
  padding: 20px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
}
.dash-side .brand {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 15px;
  margin-bottom: 22px;
  padding: 0 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.dash-side .nav-item {
  padding: 9px 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
  cursor: pointer;
}
.dash-side .nav-item.active {
  background: var(--primary);
  color: var(--primary-ink);
  font-weight: 500;
}
.dash-side .nav-item .ico {
  width: 14px; height: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  opacity: 0.9;
}
.dash-side .spacer { flex: 1; }
.dash-side .user-card {
  margin-top: 12px;
  padding: 10px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
}
.dash-side .user-card .av {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.dash-main {
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.dash-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dash-topbar h4 {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: -0.02em;
  margin: 0;
}
.dash-topbar .meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  display: flex; gap: 12px;
}
.dash-topbar .live {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--positive);
  font-weight: 500;
}
.dash-topbar .live .pulse {
  width: 7px; height: 7px; border-radius: 50%; background: var(--positive);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.4); }
}

.dash-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.dash-kpi {
  background: var(--surface-warm);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 14px;
}
.dash-kpi .lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.dash-kpi .val {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-top: 6px;
}
.dash-kpi .delta {
  font-size: 11px;
  margin-top: 4px;
  color: var(--positive);
  font-family: var(--font-mono);
}
.dash-kpi.amber {
  background: var(--accent-soft);
  border-color: oklch(from var(--accent) l c h / 0.3);
}
.dash-kpi.amber .val { color: var(--accent-ink); }

.dash-chart {
  position: relative;
  height: 180px;
  background: var(--surface-warm);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 16px 16px 8px;
}
.dash-chart .legend {
  display: flex;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 8px;
}
.dash-chart .legend span { display: inline-flex; align-items: center; gap: 6px; }
.dash-chart .legend .sw { width: 8px; height: 8px; border-radius: 2px; }
.dash-chart svg { width: 100%; height: 120px; display: block; }
.dash-chart .tooltip {
  position: absolute;
  top: 32px;
  right: 28%;
  background: var(--accent);
  color: var(--accent-ink);
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 6px;
  font-weight: 500;
}
.dash-chart .tooltip::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 8px; height: 8px;
  background: var(--accent);
}

.dash-feed {
  background: var(--surface-warm);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 6px;
}
.dash-feed-row {
  display: grid;
  grid-template-columns: 28px 1fr auto auto;
  gap: 10px;
  align-items: center;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 13px;
}
.dash-feed-row + .dash-feed-row { border-top: 1px solid var(--line-soft); }
.dash-feed-row .ico {
  width: 28px; height: 28px;
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--surface);
  border: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--primary);
}
.dash-feed-row .ico.danger { color: var(--danger); background: oklch(from var(--danger) calc(l + 0.4) calc(c - 0.1) h); border-color: oklch(from var(--danger) calc(l + 0.32) calc(c - 0.08) h); }
.dash-feed-row .meta { font-family: var(--font-mono); font-size: 10px; color: var(--muted); }
.dash-feed-row .val { font-family: var(--font-display); font-weight: 500; }
.dash-feed-row .val.neg { color: var(--danger); }

/* phone mock */
.phone-float {
  position: absolute;
  bottom: -10%;
  right: -8%;
  width: 260px;
  z-index: 2;
  transform: rotate(6deg);
  transition: transform .4s ease;
}
.phone-float:hover { transform: rotate(2deg) translateY(-6px); }
.phone {
  background: var(--ink);
  border-radius: 32px;
  padding: 8px;
  box-shadow: 0 30px 60px -20px oklch(0.25 0.04 155 / 0.4);
}
.phone-screen {
  background: var(--surface);
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 9 / 18;
  position: relative;
  padding: 20px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.phone-screen-image {
  padding: 0;
  background: #000;
}
.phone-screen-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  backface-visibility: hidden;
  transform: translateZ(0);
}
.phone-status {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--ink);
  font-weight: 600;
}
.phone-greet {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}
.phone-balance {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.phone-balance .small { font-size: 12px; color: var(--muted); font-weight: 400; }
.phone-sub {
  font-size: 10px;
  color: var(--positive);
  font-family: var(--font-mono);
}
.phone-card {
  background: var(--surface-warm);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 10px;
}
.phone-card .row { display: flex; justify-content: space-between; align-items: center; }
.phone-card .lbl { font-family: var(--font-mono); color: var(--muted); font-size: 9px; text-transform: uppercase; letter-spacing: 0.06em; }
.phone-card .v { font-family: var(--font-display); font-weight: 500; font-size: 13px; }
.phone-alert {
  background: oklch(from var(--danger) calc(l + 0.4) calc(c - 0.1) h);
  border: 1px solid oklch(from var(--danger) calc(l + 0.28) calc(c - 0.08) h);
  color: var(--danger);
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 9.5px;
  line-height: 1.4;
}
.phone-alert b { color: oklch(from var(--danger) calc(l - 0.08) c h); }

/* ── pain section ─────────────────────────────────────────────────────── */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: 56px;
}
.pain-cell {
  background: var(--surface);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 220px;
  transition: background .2s ease;
}
.pain-cell:hover { background: var(--surface-warm); }
.pain-cell .num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.pain-cell .txt {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.3;
  letter-spacing: -0.015em;
  font-weight: 400;
  color: var(--ink);
  text-wrap: pretty;
}
.pain-cell .tag {
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--danger);
}

.pain-conclusion {
  margin-top: 56px;
  padding: 28px 36px;
  background: var(--ink);
  color: var(--surface);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.pain-conclusion .txt {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.015em;
  font-weight: 400;
}

/* ── solution / modules ───────────────────────────────────────────────── */
.modules {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 56px;
}
.module {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 320px;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.module:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--ink);
}
.module .badge {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.module .name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.module .name .light { color: var(--muted); font-weight: 400; }
.module .desc {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.45;
  margin-top: auto;
}
.module .feats {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
}
.module .feats span::before {
  content: "→";
  margin-right: 6px;
  color: var(--primary);
}
.module.featured {
  background: var(--primary);
  color: var(--primary-ink);
  border-color: var(--primary);
}
.module.featured .badge,
.module.featured .desc,
.module.featured .feats { color: oklch(from var(--primary-ink) l c h / 0.78); }
.module.featured .name .light { color: oklch(from var(--primary-ink) l c h / 0.6); }
.module.featured .feats span::before { color: var(--accent); }
.module.featured .gratis {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--accent);
  color: var(--accent-ink);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 10px;
  border-radius: 999px;
}

/* ── benefits ─────────────────────────────────────────────────────────── */
.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: 56px;
}
.benefit {
  background: var(--surface);
  padding: 28px 24px 26px;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background .2s ease;
  position: relative;
}
.benefit:hover { background: var(--surface-warm); }
.benefit .b-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--primary);
}
.benefit .b-txt {
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1.3;
  letter-spacing: -0.012em;
  font-weight: 400;
  color: var(--ink);
  text-wrap: pretty;
}
.benefit .b-tag {
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── social proof ─────────────────────────────────────────────────────── */
.social-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.stat {
  background: var(--surface);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stat .v {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.4vw, 60px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
}
.stat .v .accent { color: var(--primary); }
.stat .lbl {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}
.testimonial {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.testimonial .quote-mark {
  font-family: var(--font-display);
  font-size: 60px;
  line-height: 0.6;
  color: var(--primary-soft);
  margin: -8px 0 -10px;
}
.testimonial .body {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.35;
  letter-spacing: -0.012em;
  font-weight: 400;
  color: var(--ink);
  text-wrap: pretty;
  flex: 1;
}
.testimonial .author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
}
.testimonial .av {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--primary-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.01em;
}
.testimonial .who {
  font-size: 14px;
  font-weight: 500;
}
.testimonial .where {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.testimonial.placeholder {
  background: var(--surface-warm);
  border-style: dashed;
  border-color: var(--line);
}
.testimonial.placeholder .body { color: var(--muted); font-style: italic; }
.testimonial.placeholder .author .av {
  background: var(--line);
  color: var(--muted);
}

.testimonial-note {
  margin-top: 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  background: var(--surface-warm);
  border: 1px dashed var(--line);
  border-radius: var(--r-md);
  padding: 14px 18px;
}

/* ── pricing ──────────────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 18px;
  margin-top: 56px;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
}
.price-card.featured {
  background: var(--ink);
  color: var(--surface);
  border-color: var(--ink);
}
.price-card .head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.price-card .name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.price-card .badge-included {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--surface-warm);
  color: var(--ink-soft);
  border: 1px solid var(--line);
}
.price-card.featured .badge-included {
  background: oklch(from var(--surface) l c h / 0.1);
  border-color: oklch(from var(--surface) l c h / 0.18);
  color: oklch(from var(--surface) l c h / 0.7);
}
.price-card .big {
  font-family: var(--font-display);
  font-size: clamp(56px, 6vw, 84px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}
.price-card .big .cur { font-size: 0.5em; padding-bottom: 0.5em; color: var(--muted); }
.price-card .big .per { font-size: 0.22em; padding-bottom: 1em; color: var(--muted); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.08em; }
.price-card.featured .big .cur,
.price-card.featured .big .per { color: oklch(from var(--surface) l c h / 0.55); }
.price-card .price-fine {
  margin-top: 12px;
  font-size: 14px;
  color: var(--muted);
}
.price-card.featured .price-fine { color: oklch(from var(--surface) l c h / 0.65); }
.price-includes {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.price-includes .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid var(--line-soft);
  font-size: 14.5px;
  gap: 16px;
}
.price-card.featured .price-includes .row {
  border-top-color: oklch(from var(--surface) l c h / 0.12);
}
.price-includes .row .lbl { color: var(--ink-soft); text-wrap: pretty; }
.price-card.featured .price-includes .row .lbl { color: oklch(from var(--surface) l c h / 0.85); }
.price-includes .row .v {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  white-space: nowrap;
}
.price-includes .row .v.gratis {
  background: var(--accent);
  color: var(--accent-ink);
  padding: 4px 9px;
  border-radius: 999px;
  font-weight: 600;
}
.price-card .impl {
  margin-top: 18px;
  padding: 18px 20px;
  background: var(--surface-warm);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.price-card .extra {
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.price-card.featured .extra { color: oklch(from var(--surface) l c h / 0.6); }
.price-card .cta-row {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── objections (tabbed) ──────────────────────────────────────────────── */
.objections {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  margin-top: 56px;
  align-items: start;
}
.obj-tabs {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.obj-tab {
  text-align: left;
  background: transparent;
  border: none;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink-soft);
  font-size: 15px;
  font-family: var(--font-body);
  transition: color .2s ease;
}
.obj-tab:last-of-type { border-bottom: 1px solid var(--line); }
.obj-tab:hover { color: var(--ink); }
.obj-tab .n {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  min-width: 24px;
}
.obj-tab.active { color: var(--ink); font-weight: 500; }
.obj-tab.active .n { color: var(--primary); }
.obj-tab .arrow { margin-left: auto; opacity: 0; transition: opacity .2s, transform .2s; }
.obj-tab.active .arrow { opacity: 1; transform: translateX(0); color: var(--primary); }

.obj-panel {
  background: var(--surface-warm);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 44px 48px;
  min-height: 280px;
}
.obj-panel .q {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.4vw, 34px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 20px;
  text-wrap: balance;
}
.obj-panel .a {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
  text-wrap: pretty;
  max-width: 56ch;
}

/* ── guarantee ────────────────────────────────────────────────────────── */
.guarantee {
  background: var(--ink);
  color: var(--surface);
  border-radius: var(--r-xl);
  padding: 80px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.guarantee .seal {
  width: 220px; height: 220px;
  border-radius: 50%;
  border: 1px solid oklch(from var(--surface) l c h / 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 auto;
}
.guarantee .seal::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  border: 1px solid oklch(from var(--accent) l c h / 0.5);
}
.guarantee .seal .inner {
  font-family: var(--font-display);
  font-weight: 500;
  text-align: center;
  letter-spacing: -0.02em;
  line-height: 1;
  font-size: 28px;
  color: var(--accent);
}
.guarantee .seal .inner .sub {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: oklch(from var(--surface) l c h / 0.6);
  margin-top: 10px;
  font-weight: 400;
}

/* ── urgency ──────────────────────────────────────────────────────────── */
.urgency {
  text-align: center;
  padding: calc(120px * var(--density)) 0;
}
.urgency .display-xl {
  max-width: 18ch;
  margin: 0 auto;
}
.urgency .lede {
  margin: 32px auto 0;
}
.urgency-cta {
  margin-top: 48px;
  display: inline-flex;
  gap: 12px;
}

/* ── FAQ ──────────────────────────────────────────────────────────────── */
.faq {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  margin-top: 56px;
  align-items: start;
}
.faq-list {
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-top: 1px solid var(--line);
  padding: 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
  cursor: pointer;
}
.faq-q .plus {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .25s ease, background .2s ease, color .2s ease;
}
.faq-item.open .faq-q .plus {
  transform: rotate(45deg);
  background: var(--primary);
  color: var(--primary-ink);
  border-color: var(--primary);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .25s ease;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 0 28px;
}

/* ── final CTA ────────────────────────────────────────────────────────── */
.cta-final {
  background: var(--primary);
  color: var(--primary-ink);
  border-radius: var(--r-xl);
  padding: 80px 64px;
  position: relative;
  overflow: hidden;
}
.cta-final h2 {
  color: var(--primary-ink);
  max-width: 18ch;
}
.cta-final .lede {
  color: oklch(from var(--primary-ink) l c h / 0.78);
}
.cta-final .cta-row { margin-top: 40px; display: flex; gap: 14px; flex-wrap: wrap; }
.cta-final .btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
}
.cta-final .btn-primary:hover { background: oklch(from var(--accent) calc(l + 0.04) c h); }
.cta-final .btn-secondary {
  background: transparent;
  border-color: oklch(from var(--primary-ink) l c h / 0.3);
  color: var(--primary-ink);
}
.cta-final .btn-secondary:hover { border-color: var(--primary-ink); }

/* ── footer ───────────────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 64px;
  margin-top: 80px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 56px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--muted);
  max-width: 36ch;
  margin: 16px 0 0;
  line-height: 1.5;
}
.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin: 0 0 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col li a { font-size: 14.5px; color: var(--ink-soft); }
.footer-col li a:hover { color: var(--ink); }

.footer-meta {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ── product showcase (real screenshots) ──────────────────────────────── */
.showcase {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: start;
}
.show-tabs {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.show-tab {
  text-align: left;
  background: transparent;
  border: none;
  padding: 16px 18px;
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 15px;
  transition: background .2s ease, color .2s ease;
  cursor: pointer;
}
.show-tab:hover { background: var(--surface-warm); color: var(--ink); }
.show-tab.active {
  background: var(--ink);
  color: var(--surface);
}
.show-tab .lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.6;
}
.show-tab .title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.015em;
}
.show-tab .desc {
  font-size: 13.5px;
  opacity: 0.85;
  margin-top: 4px;
  line-height: 1.4;
}

.show-frame {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
}
.show-frame .chrome {
  background: var(--surface-warm);
  border-bottom: 1px solid var(--line);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
}
.show-frame .chrome .dots {
  display: flex; gap: 6px;
}
.show-frame .chrome .dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--line);
}
.show-frame .chrome .url {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.show-frame .stage {
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  min-height: 420px;
}
.show-frame .stage img {
  max-width: 100%;
  max-height: 480px;
  border-radius: var(--r-sm);
  box-shadow: 0 20px 50px -16px oklch(0 0 0 / 0.5);
}
.show-frame .stage.mobile img {
  max-height: 540px;
  border-radius: 24px;
}
.show-frame .caption {
  padding: 16px 20px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.show-frame .caption .tags {
  display: flex; gap: 14px;
}
.show-frame .caption .tags span::before {
  content: "●";
  margin-right: 6px;
  color: var(--primary);
}
@media (max-width: 1100px) {
  .showcase { grid-template-columns: 1fr; }
  .show-tabs { flex-direction: row; overflow-x: auto; }
  .show-tab { min-width: 220px; }
}
.sec-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 8px;
}
.sec-head .lede { margin-top: 24px; }
.sec-head.center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 24px;
}
.sec-head.center .lede { margin-top: 24px; }

/* responsive squeezes */
@media (max-width: 1180px) {
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
}
@media (max-width: 1100px) {
  .hero-grid, .pricing-grid, .objections, .guarantee, .faq, .footer-inner, .sec-head {
    grid-template-columns: 1fr !important;
  }
  .modules, .benefits, .pain-grid, .social-stats, .testimonials {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .hero-visual { min-height: 460px; }
  .phone-float { width: 160px; right: -4%; }
  .guarantee, .cta-final { padding: 56px 36px; }
}
@media (max-width: 680px) {
  .shell, .shell-wide { padding: 0 20px; }
  .modules, .benefits, .pain-grid, .social-stats, .testimonials, .dash {
    grid-template-columns: 1fr !important;
  }
  .nav-links { display: none; }
  .nav-cta .btn-secondary { display: none; }
  .hero-visual { min-height: 380px; }
  .phone-float { display: none; }
  .hero-fine { font-size: 12px; }
}
