/* ============================================================
   Zoee AI — Design tokens + base
   Aesthetic: white ground, Zoee blue accent.
   Type: Inter + JetBrains Mono.
   ============================================================ */

:root {
  --bg: #ffffff;
  --bg-alt: #fafafa;
  --bg-dark: #0a0a0f;
  --fg: #0a0a0f;
  --fg-muted: #6e6e73;
  --fg-faint: #a1a1a6;
  --line: #ececee;
  --line-strong: #d4d4d8;
  --accent: #465be0;
  --accent-ink: #ffffff;
  --accent-soft: color-mix(in oklch, var(--accent) 10%, var(--bg));
  --accent-soft-ink: color-mix(in oklch, var(--accent) 70%, #001028);

  --font-display: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --shadow-card: 0 1px 2px rgba(10, 10, 15, 0.04), 0 4px 16px rgba(10, 10, 15, 0.04);
  --shadow-card-hover: 0 2px 4px rgba(10, 10, 15, 0.06), 0 12px 28px rgba(10, 10, 15, 0.08);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;

  --container: 1240px;
  --pad-x: clamp(20px, 4vw, 56px);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
}

body {
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  background: none;
  border: none;
  color: inherit;
}

input, select, textarea {
  font: inherit;
  color: inherit;
}

img, svg {
  display: block;
  max-width: 100%;
}

::selection {
  background: var(--accent);
  color: var(--accent-ink);
}

/* ---------- Typography ---------- */
.h-display {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
  font-size: clamp(48px, 8.5vw, 128px);
  text-wrap: balance;
}
.h-1 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.02;
  font-size: clamp(36px, 5vw, 72px);
  text-wrap: balance;
}
.h-2 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
  font-size: clamp(28px, 3.4vw, 44px);
  text-wrap: balance;
}
.h-3 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.2;
  font-size: clamp(20px, 1.6vw, 24px);
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-muted);
}
.mono {
  font-family: var(--font-mono);
}
.lede {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--fg-muted);
  line-height: 1.5;
  text-wrap: pretty;
}

/* ---------- Layout ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--pad-x);
}
section {
  position: relative;
}
.section-pad {
  padding-block: clamp(72px, 9vw, 140px);
}
.section-pad-sm {
  padding-block: clamp(48px, 6vw, 88px);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.005em;
  transition: transform 200ms var(--ease), background 200ms var(--ease), border-color 200ms var(--ease), color 200ms var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--fg);
  color: var(--bg);
}
.btn-primary:hover {
  background: color-mix(in oklch, var(--fg) 88%, var(--accent));
}
.btn-secondary {
  border-color: var(--line-strong);
  color: var(--fg);
  background: transparent;
}
.btn-secondary:hover {
  border-color: var(--fg);
}
.btn-accent {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 1px 2px rgba(70, 91, 224, 0.18), 0 6px 16px rgba(70, 91, 224, 0.22);
}
.btn-accent:hover {
  background: color-mix(in oklch, var(--accent) 88%, white);
}
.btn-sm {
  height: 34px;
  padding: 0 14px;
  font-size: 13px;
}
.btn-ghost {
  background: transparent;
  color: var(--fg);
  border-color: transparent;
}
.btn-ghost:hover { background: var(--bg-alt); }

/* ---------- Cards ---------- */
.card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  transition: transform 250ms var(--ease), border-color 250ms var(--ease), background 250ms var(--ease), box-shadow 250ms var(--ease);
}
.card:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-card-hover);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklch, var(--bg) 85%, transparent);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.025em;
}
.brand__logo {
  width: 26px;
  height: 26px;
  display: block;
  flex-shrink: 0;
  color: var(--accent);
}
.brand__mark {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.brand sup {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  margin-left: 4px;
  margin-top: -10px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 450;
  color: var(--fg-muted);
  border-radius: 8px;
  transition: color 180ms var(--ease), background 180ms var(--ease);
}
.nav-links a:hover {
  color: var(--fg);
  background: var(--bg-alt);
}
.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ---------- Hero ---------- */
.hero {
  padding-top: clamp(64px, 8vw, 120px);
  padding-bottom: clamp(48px, 6vw, 88px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -40% 20% 20% 20%;
  background: radial-gradient(circle at 50% 50%,
    color-mix(in oklch, var(--accent) 6%, transparent) 0%,
    transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero > .container { position: relative; z-index: 1; }

.hero-typo {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-typo .hero__eyebrow { margin-bottom: 40px; }
.hero-typo__title {
  margin: 0;
  font-size: clamp(56px, 10vw, 156px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  font-weight: 500;
  text-wrap: balance;
  max-width: 14ch;
}
.hero-typo__title em {
  font-style: normal;
  background: linear-gradient(180deg, var(--fg) 0%, var(--fg-muted) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-typo__line2 {
  display: inline-block;
}
.hero-typo .hero__sub {
  max-width: 620px;
  margin: 36px auto 32px;
  text-align: center;
}
.hero-typo .hero__cta-row { justify-content: center; }
.hero-typo__tags {
  display: flex;
  gap: 18px;
  margin-top: 56px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-typo__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  background: var(--bg);
}
.hero-typo__tag .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px 6px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--fg-muted);
  margin-bottom: 28px;
  white-space: nowrap;
}
.hero__eyebrow .pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 var(--accent);
  animation: pulse 2.4s var(--ease) infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 color-mix(in oklch, var(--accent) 55%, transparent); }
  70% { box-shadow: 0 0 0 8px color-mix(in oklch, var(--accent) 0%, transparent); }
  100% { box-shadow: 0 0 0 0 transparent; }
}

.hero-typo__title .accent-stroke {
  position: relative;
  white-space: nowrap;
}
.hero-typo__title .accent-stroke::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.04em;
  height: 0.12em;
  background: var(--accent);
  border-radius: 4px;
  transform-origin: left;
  animation: stroke-in 800ms var(--ease) 600ms both;
}
@keyframes stroke-in {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.hero__sub {
  max-width: 540px;
  margin: 0 0 36px;
}
.hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- Credibility bar ---------- */
.cred-bar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.cred-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}
.cred-cell {
  background: var(--bg);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cred-cell .label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-faint);
}
.cred-cell .value {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.015em;
}

/* ---------- Pains ---------- */
.pains {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pains__intro {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.pains__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.pain-col {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-card);
}
.pain-col__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.pain-col__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-soft-ink);
  background: var(--accent-soft);
  padding: 4px 8px;
  border-radius: 4px;
}
.pain-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pain-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  color: var(--fg);
}
.pain-list li:last-child { border-bottom: none; }
.pain-list .num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-faint);
  padding-top: 3px;
  min-width: 22px;
}

/* ---------- Calculator ---------- */
.calc {
  background: var(--bg);
}
.calc__shell {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.calc__inputs {
  padding: 40px;
  background: var(--bg);
  border-right: 1px solid var(--line);
}
.calc__output {
  padding: 40px;
  background: var(--bg-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.calc__output::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 70%;
  height: 100%;
  background: radial-gradient(circle, color-mix(in oklch, var(--accent) 35%, transparent) 0%, transparent 60%);
  pointer-events: none;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}
.field label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
}
.field input[type="number"],
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 15px;
  width: 100%;
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in oklch, var(--accent) 25%, transparent);
}
.field textarea { resize: vertical; min-height: 96px; font-family: var(--font-body); }
.field .hint {
  font-size: 12px;
  color: var(--fg-faint);
}
.slider-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.slider-row input[type="range"] {
  flex: 1;
  height: 4px;
  background: var(--line);
  border-radius: 999px;
  -webkit-appearance: none;
  appearance: none;
}
.slider-row input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--fg);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 1px var(--fg);
  cursor: pointer;
}
.slider-row input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--fg);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 1px var(--fg);
  cursor: pointer;
}
.slider-row .value {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  min-width: 48px;
  text-align: right;
}

.calc__output .eyebrow {
  color: color-mix(in oklch, var(--accent) 50%, white);
  margin-bottom: 14px;
  display: inline-block;
}
.calc__metric {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
  margin: 0 0 8px;
}
.calc__metric .unit {
  font-size: 0.4em;
  color: rgba(255,255,255,0.5);
  margin-left: 8px;
}
.calc__metric.accent { color: var(--accent); }
.calc__subgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-block: 24px;
  padding-block: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.calc__subgrid .item .num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.calc__subgrid .item .lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.calc__insights {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.calc__insight {
  display: flex;
  gap: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
}
.calc__insight::before {
  content: "→";
  color: var(--accent);
  flex-shrink: 0;
}
.calc__email-row {
  display: flex;
  gap: 8px;
}
.calc__email-row input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 14px;
}
.calc__email-row input::placeholder { color: rgba(255,255,255,0.4); }
.calc__email-row input:focus {
  outline: none;
  border-color: var(--accent);
}
.calc__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  gap: 16px;
}
.calc__placeholder .pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2.4s var(--ease) infinite;
}
.calc__success {
  padding: 14px 16px;
  border: 1px solid color-mix(in oklch, var(--accent) 50%, transparent);
  background: color-mix(in oklch, var(--accent) 14%, transparent);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: color-mix(in oklch, var(--accent) 60%, white);
}
.calc__insights[data-loading="true"] { animation: ins-pulse 1.4s var(--ease) infinite; }
@keyframes ins-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.55; } }

/* ---------- Portfolio ---------- */
.portfolio__intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  gap: 32px;
}
.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (min-width: 1500px) {
  .portfolio__grid { grid-template-columns: repeat(4, 1fr); }
}
.product-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow: hidden;
  padding: 0;
  box-shadow: var(--shadow-card);
}
.product-card__visual {
  height: 200px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.product-card__body {
  padding: 0 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
}
.product-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
}
.status-pill {
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 10px;
  letter-spacing: 0.08em;
}
.status-pill.live {
  background: var(--accent-soft);
  color: var(--accent-soft-ink);
}
.status-pill.early {
  background: #fef3c7;
  color: #92400e;
}
.status-pill.dev {
  background: var(--bg-alt);
  color: var(--fg-muted);
  border: 1px solid var(--line);
}

.product-card__name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0;
}
.product-card__pitch {
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}
.product-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-card__features li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: var(--fg);
}
.product-card__features li::before {
  content: "";
  width: 4px;
  height: 4px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.product-card__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
  border-bottom: 1px solid var(--line-strong);
  align-self: flex-start;
  padding-bottom: 2px;
  transition: border-color 200ms var(--ease), gap 200ms var(--ease);
}
.product-card__cta:hover {
  border-color: var(--accent);
  gap: 10px;
}

/* Product visuals */
.pv-zoeepet {
  background:
    radial-gradient(circle at 20% 30%, color-mix(in oklch, var(--accent) 25%, transparent) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, color-mix(in oklch, var(--accent) 18%, transparent) 0%, transparent 50%),
    var(--bg-alt);
}
.pv-crm, .pv-laudin, .pv-zoeepet, .pv-studio {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pv-studio {
  background: var(--bg-alt);
}
.pv-studio-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.pv-studio-shapes i {
  position: absolute;
  display: block;
  border: 1px solid color-mix(in oklch, var(--accent) 40%, var(--line));
}
.pv-studio-shapes i:nth-child(1) { width: 90px; height: 90px; border-radius: 50%; left: -24px; top: -24px; }
.pv-studio-shapes i:nth-child(2) { width: 70px; height: 70px; right: 18px; bottom: 16px; transform: rotate(22deg); border-radius: 6px; }
.pv-studio-shapes i:nth-child(3) { width: 120px; height: 1px; right: -20px; top: 46px; transform: rotate(-14deg); border-width: 0; border-top-width: 1px; }
.pv-mark {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: var(--fg);
  position: relative;
  z-index: 1;
}
.pv-mark .accent {
  color: var(--accent);
}
.pv-mark sup {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
  margin-left: 4px;
  vertical-align: super;
}

.pv-crm {
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg) 100%);
}
.pv-crm-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, var(--line) 1px, transparent 1px);
  background-size: 24px 100%;
  opacity: 0.6;
}
.pv-laudin {
  background: var(--bg-dark);
  color: #fff;
}
.pv-laudin .pv-mark {
  color: #fff;
}
.pv-laudin .pv-mark .accent {
  color: var(--accent);
}
.pv-laudin-lines {
  position: absolute;
  inset: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0.15;
}
.pv-laudin-lines span {
  height: 6px;
  background: white;
  border-radius: 999px;
}
.pv-laudin-lines span:nth-child(1) { width: 70%; }
.pv-laudin-lines span:nth-child(2) { width: 50%; }
.pv-laudin-lines span:nth-child(3) { width: 80%; }
.pv-laudin-lines span:nth-child(4) { width: 40%; }
.pv-laudin-lines span:nth-child(5) { width: 60%; }

.portfolio__banner {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-alt);
}
.portfolio__banner-text {
  font-size: 15px;
  color: var(--fg);
}
.portfolio__banner-text strong {
  font-weight: 500;
}

/* ---------- Solutions ---------- */
.solutions {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.solutions__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.sol-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-card);
  transition: transform 250ms var(--ease), border-color 250ms var(--ease), box-shadow 250ms var(--ease);
}
.sol-card:nth-child(1) { grid-column: span 3; }
.sol-card:nth-child(2) { grid-column: span 3; }
.sol-card:nth-child(3) { grid-column: span 2; }
.sol-card:nth-child(4) { grid-column: span 2; }
.sol-card:nth-child(5) { grid-column: span 2; }
.sol-card:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-card-hover);
}
.sol-card .icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--accent-soft-ink);
  background: var(--accent-soft);
}
.sol-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.015em;
  margin: 0;
}
.sol-card p {
  margin: 0;
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.5;
}
.sol-card .more {
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.sol-card .more:hover { color: var(--accent-soft-ink); }
.sol-card .chev { display: inline-block; transition: transform 200ms var(--ease); }

.sol-detail {
  font-size: 13px;
  color: var(--fg-muted);
  border-top: 1px solid var(--line);
  line-height: 1.55;
  overflow: hidden;
  max-height: 0;
  padding-top: 0;
  margin-top: 0;
  border-top-width: 0;
  transition: max-height 350ms var(--ease), padding-top 250ms var(--ease), margin-top 250ms var(--ease);
}
.sol-card[data-open="true"] .sol-detail {
  max-height: 260px;
  padding-top: 14px;
  margin-top: 4px;
  border-top-width: 1px;
}

/* Process timeline */
.process {
  margin-top: 88px;
  padding-top: 56px;
  border-top: 1px solid var(--line);
}
.process__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 48px;
}
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process__steps::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--line);
  z-index: 0;
}
.process-step {
  padding-right: 24px;
  position: relative;
  z-index: 1;
}
.process-step .num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 18px;
}
.process-step:first-child .num {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: transparent;
}
.process-step h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}
.process-step p {
  font-size: 13px;
  color: var(--fg-muted);
  margin: 0;
  line-height: 1.5;
}

/* ---------- Pillars ---------- */
.pillars__head {
  max-width: 720px;
  margin-bottom: 56px;
}
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.pillar {
  background: var(--bg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pillar__num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-faint);
  letter-spacing: 0.08em;
}
.pillar__icon {
  width: 28px;
  height: 28px;
  color: var(--accent-soft-ink);
}
.pillar h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.015em;
  margin: 0;
}
.pillar p {
  font-size: 14px;
  color: var(--fg-muted);
  margin: 0;
  line-height: 1.55;
}

/* ---------- Metrics band ---------- */
.metrics {
  background: var(--bg-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.metrics::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 80px 100%;
  pointer-events: none;
}
.metrics__head {
  max-width: 720px;
  margin-bottom: 56px;
  position: relative;
}
.metrics__head .h-1 { color: #fff; }
.metrics__head .lede { color: rgba(255,255,255,0.7); }
.metrics__head .eyebrow {
  color: color-mix(in oklch, var(--accent) 50%, white);
  margin-bottom: 12px;
  display: block;
}
.metrics__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 80px;
  position: relative;
}
.metric {
  border-left: 1px solid rgba(255,255,255,0.12);
  padding-left: 24px;
}
.metric__num {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 12px;
}
.metric__label {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
}

.cases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
  position: relative;
}
.case-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.case-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
}
.case-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), color-mix(in oklch, var(--accent) 50%, var(--bg-dark)));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  flex-shrink: 0;
}
.case-card__name { font-weight: 500; font-size: 15px; }
.case-card__sector { font-size: 12px; color: rgba(255,255,255,0.55); font-family: var(--font-mono); letter-spacing: 0.04em; }
.case-card__metric {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--accent);
}
.case-card__quote {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.55;
  border-left: 2px solid var(--accent);
  padding-left: 14px;
  margin: 0;
}
.metrics__cta {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.metrics__cta-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.015em;
}

/* ---------- Contact ---------- */
.contact__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact__head { margin-bottom: 40px; }
.contact__steps {
  display: flex;
  gap: 6px;
  margin-bottom: 28px;
}
.contact__step {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 4px;
  color: var(--fg-muted);
  background: var(--bg-alt);
  border: 1px solid var(--line);
  white-space: nowrap;
}
.contact__step[data-active="true"] {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}
.contact__step[data-done="true"] {
  background: var(--accent-soft);
  color: var(--accent-soft-ink);
  border-color: color-mix(in oklch, var(--accent) 30%, var(--line));
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact__actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}
.contact__trust {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.contact__trust span {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.contact__trust span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.contact__aside {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  background: var(--bg-alt);
  box-shadow: var(--shadow-card);
}
.contact__aside h4 {
  font-family: var(--font-display);
  font-weight: 500;
  margin: 0 0 6px;
  font-size: 18px;
}
.contact__aside-grid {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact__aside-item .label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-faint);
  margin-bottom: 6px;
}
.contact__aside-item .val {
  font-size: 15px;
  font-weight: 450;
}
.contact__aside-item .val a {
  border-bottom: 1px solid var(--line-strong);
  transition: border-color 180ms var(--ease);
}
.contact__aside-item .val a:hover {
  border-color: var(--accent);
}

.contact__success {
  padding: 32px;
  border: 1px solid color-mix(in oklch, var(--accent) 40%, var(--line));
  background: var(--accent-soft);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact__success .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 8px;
}

/* ---------- Insights ---------- */
.insights__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 48px;
}
.insights__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.insight-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
  border: none;
  background: transparent;
}
.insight-card__visual {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-md);
  background: var(--bg-alt);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: transform 300ms var(--ease);
}
.insight-card:hover .insight-card__visual {
  transform: translateY(-2px);
}
.insight-card__num {
  position: absolute;
  top: 16px;
  left: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--fg-faint);
  z-index: 2;
}
.insight-card__visual.v1 { background: linear-gradient(135deg, var(--accent-soft), var(--bg-alt)); }
.insight-card__visual.v1::after {
  content: "";
  position: absolute;
  width: 50%; height: 50%;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in oklch, var(--accent) 50%, transparent), transparent 70%);
  left: 60%; top: 55%; transform: translate(-50%, -50%);
}
.insight-card__visual.v1 .vislabel {
  position: absolute;
  right: 18px; bottom: 18px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.insight-card__visual.v2 {
  background: var(--bg-alt);
}
.insight-card__visual.v2::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--line-strong) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  background-position: 11px 11px;
  opacity: 0.6;
}
.insight-card__visual.v2 .vislabel {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(180deg, transparent, color-mix(in oklch, var(--bg-alt) 90%, transparent) 70%);
}
.insight-card__visual.v3 {
  background: var(--bg-dark);
  color: #fff;
}
.insight-card__visual.v3::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 22px 22px;
}
.insight-card__visual.v3::after {
  content: "LGPD";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 56px;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.12);
}
.insight-card__visual.v3 .vislabel {
  position: absolute;
  right: 18px; bottom: 18px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.insight-card__visual.v3 .insight-card__num { color: rgba(255,255,255,0.5); }
.insight-card__meta {
  display: flex;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
}
.insight-card__meta .dot { color: var(--fg-faint); }
.insight-card__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.015em;
  line-height: 1.25;
  margin: 0;
  text-wrap: balance;
}
.insight-card__title a {
  border-bottom: 1px solid transparent;
  transition: border-color 200ms var(--ease);
}
.insight-card:hover .insight-card__title a {
  border-color: var(--accent);
}

/* ---------- Tech stack strip ---------- */
.stack {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
}
.stack__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.stack__label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-faint);
  flex-shrink: 0;
}
.stack__logos {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  flex: 1;
  justify-content: center;
}
.stack__logo {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--fg-muted);
  opacity: 0.85;
  white-space: nowrap;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-dark);
  color: #fff;
  padding-block: 80px 28px;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 80px 100%;
  pointer-events: none;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.3fr;
  gap: 48px;
  margin-bottom: 64px;
  position: relative;
}
.site-footer .brand {
  color: #fff;
  margin-bottom: 16px;
  font-size: 18px;
}
.footer-tag {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  line-height: 1.55;
  max-width: 280px;
  margin: 0 0 22px;
}
.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  margin: 0 0 18px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  transition: color 180ms var(--ease);
}
.footer-col a:hover { color: var(--accent); }

.footer-newsletter input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: 13px;
  margin-bottom: 8px;
}
.footer-newsletter input:focus {
  outline: none;
  border-color: var(--accent);
}
.footer-newsletter button {
  width: 100%;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 500;
  transition: background 180ms var(--ease);
}
.footer-newsletter button:hover {
  background: color-mix(in oklch, var(--accent) 88%, white);
}
.footer-newsletter p {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  margin: 8px 0 0;
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}

.site-footer__bottom {
  position: relative;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.02em;
  flex-wrap: wrap;
}
.site-footer__bottom .socials {
  display: flex;
  gap: 14px;
  align-items: center;
}
.site-footer__bottom .socials a {
  color: rgba(255,255,255,0.45);
  transition: color 180ms var(--ease);
}
.site-footer__bottom .socials a:hover { color: var(--accent); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .cred-bar__inner { grid-template-columns: 1fr 1fr; }
  .pains__grid { grid-template-columns: 1fr; }
  .calc__shell { grid-template-columns: 1fr; }
  .calc__inputs { border-right: none; border-bottom: 1px solid var(--line); }
  .portfolio__grid, .insights__grid, .cases__grid { grid-template-columns: 1fr; }
  .solutions__grid { grid-template-columns: 1fr 1fr; }
  .sol-card:nth-child(n) { grid-column: span 1; }
  .process__steps { grid-template-columns: 1fr 1fr; gap: 32px 16px; }
  .process__steps::before { display: none; }
  .pillars__grid { grid-template-columns: 1fr 1fr; }
  .metrics__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .portfolio__intro, .insights__head, .process__head { flex-direction: column; align-items: flex-start; }
  .hero__eyebrow { white-space: normal; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .solutions__grid, .pillars__grid, .metrics__grid { grid-template-columns: 1fr; }
  .portfolio__banner { flex-direction: column; align-items: flex-start; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .calc__inputs, .calc__output { padding: 28px; }
  .pain-col { padding: 26px; }
}
