/* ── Replenly marketing — brand tokens from assets/replenly-brand.md ────── */
:root {
  --deepwater: #0C5B4A;
  --ink: #1A2421;
  --current: #2E9C7E;
  --copper: #C0763A;
  --signal: #C13E2C;
  --tint: #E4EFEA;
  --paper: #F7F5F1;
  --slate: #55635D;
  --mist: #DDE4E0;
  --heading: 'Schibsted Grotesk', system-ui, sans-serif;
  --body: 'Instrument Sans', system-ui, sans-serif;
  --mono: 'Instrument Sans', system-ui, sans-serif; /* brand v2: data face */
  --wordmark: 'Schibsted Grotesk', system-ui, sans-serif;
  --maxw: 1080px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  /* faint paper grain */
  background-image: radial-gradient(rgba(26, 36, 33, 0.028) 1px, transparent 1px);
  background-size: 22px 22px;
}
.wm { font-family: var(--wordmark); font-weight: 700; letter-spacing: -0.03em; }

h1, h2, h3 { font-family: var(--heading); font-weight: 700; line-height: 1.12; letter-spacing: -0.015em; }
a { color: var(--deepwater); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.mono { font-family: var(--mono); font-weight: 500; }

/* ── Nav ────────────────────────────────────────────────────────────────── */
nav {
  border-bottom: 1px solid var(--mist);
  background: rgba(247, 245, 241, 0.92);
  backdrop-filter: blur(8px);
  position: sticky; top: 0; z-index: 50;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo svg { height: 26px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 28px; font-size: 14.5px; font-weight: 500; }
.nav-links a { color: var(--ink); }
.nav-links a.btn-primary { color: #fff; }
.nav-links a.btn-primary:hover { color: #fff; }
.nav-links a:hover { color: var(--deepwater); text-decoration: none; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--heading); font-weight: 600; font-size: 15px;
  padding: 10px 20px; border-radius: 8px; border: none; cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}
.btn-primary { background: var(--deepwater); color: #fff; }
.btn-primary:hover { background: #0A4C3E; text-decoration: none; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--mist); }
.btn-ghost:hover { border-color: var(--slate); text-decoration: none; }
.nav-links .btn { padding: 8px 16px; font-size: 14px; }

/* ── Hero ───────────────────────────────────────────────────────────────── */
.hero { padding: 88px 0 72px; overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
}
.eyebrow {
  font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--deepwater); font-weight: 500;
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 20px;
}
.eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--copper); }
.hero h1 { font-size: clamp(38px, 5.2vw, 56px); margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--deepwater); }
.hero-sub { font-size: 18.5px; color: var(--slate); max-width: 34em; margin-bottom: 32px; }
.hero-cta { display: flex; gap: 14px; align-items: center; margin-bottom: 18px; }
.hero-note { font-family: var(--mono); font-size: 12.5px; color: var(--slate); }

/* staggered reveal */
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.hero .eyebrow, .hero h1, .hero-sub, .hero-cta, .hero-note, .ledger {
  animation: rise 0.6s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.hero h1 { animation-delay: 0.06s; }
.hero-sub { animation-delay: 0.12s; }
.hero-cta { animation-delay: 0.18s; }
.hero-note { animation-delay: 0.24s; }
.ledger { animation-delay: 0.2s; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

/* ── The ledger artifact (hero) ────────────────────────────────────────── */
.ledger {
  background: #fff; border: 1px solid var(--mist); border-radius: 14px;
  box-shadow: 0 24px 48px -24px rgba(26, 36, 33, 0.18), 0 2px 6px rgba(26, 36, 33, 0.05);
  overflow: hidden;
  transform: rotate(0.4deg);
}
.ledger-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 18px; border-bottom: 1px solid var(--mist);
  font-family: var(--mono); font-size: 12px; color: var(--slate);
}
.ledger-head .dot { color: var(--current); }
.ledger table { width: 100%; border-collapse: collapse; font-size: 13px; }
.ledger th {
  font-family: var(--mono); font-weight: 500; font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--slate); text-align: left;
  padding: 10px 18px 8px; border-bottom: 1px solid var(--mist);
}
.ledger td { padding: 12px 18px; border-bottom: 1px solid var(--mist); vertical-align: middle; }
.ledger tr:last-child td { border-bottom: none; }
.ledger .sku { font-family: var(--mono); font-weight: 600; font-size: 12.5px; }
.cover { display: flex; align-items: center; gap: 10px; }
.cover-bar { width: 84px; height: 8px; background: var(--tint); border-radius: 4px; overflow: hidden; }
.cover-fill { height: 100%; border-radius: 4px; animation: fill 1.1s 0.5s cubic-bezier(0.2, 0.7, 0.2, 1) both; }
@keyframes fill { from { width: 0 !important; } }
.cover .mono { font-size: 12px; color: var(--slate); }
.act {
  font-family: var(--mono); font-size: 11.5px; font-weight: 600;
  padding: 4px 10px; border-radius: 999px; white-space: nowrap;
}
.act-ocean { background: var(--tint); color: var(--deepwater); }
.act-air { background: rgba(192, 118, 58, 0.14); color: var(--copper); }
.act-alert { background: rgba(193, 62, 44, 0.12); color: var(--signal); }
.ledger-foot {
  padding: 12px 18px; font-family: var(--mono); font-size: 12px; color: var(--slate);
  display: flex; justify-content: space-between; background: var(--paper);
}
.ledger-foot strong { color: var(--deepwater); font-weight: 600; }

/* ── Stat strip ─────────────────────────────────────────────────────────── */
.strip { border-top: 1px solid var(--mist); border-bottom: 1px solid var(--mist); background: #fff; }
.strip-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  font-family: var(--mono);
}
.strip-cell { padding: 22px 18px; border-right: 1px solid var(--mist); }
.strip-cell:last-child { border-right: none; }
.strip-cell b { display: block; font-size: 20px; font-weight: 600; color: var(--ink); }
.strip-cell span { font-size: 12px; color: var(--slate); }

/* ── Sections ───────────────────────────────────────────────────────────── */
section { padding: 84px 0; }
.sec-head { max-width: 620px; margin-bottom: 48px; }
.sec-head h2 { font-size: clamp(28px, 3.6vw, 38px); margin-bottom: 14px; }
.sec-head p { color: var(--slate); font-size: 17px; }

/* How it works — steps carry the restock-stack geometry (42 / 70 / 100%) */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.step { position: relative; padding-top: 26px; }
.step-bar { height: 10px; border-radius: 5px; margin-bottom: 22px; }
.step:nth-child(1) .step-bar { width: 42%; background: var(--copper); }
.step:nth-child(2) .step-bar { width: 70%; background: var(--current); }
.step:nth-child(3) .step-bar { width: 100%; background: var(--deepwater); }
.step-num { font-family: var(--mono); font-size: 12px; color: var(--slate); margin-bottom: 8px; display: block; }
.step h3 { font-size: 21px; margin-bottom: 10px; }
.step p { color: var(--slate); font-size: 15.5px; }

/* Features */
.features { background: #fff; border-top: 1px solid var(--mist); border-bottom: 1px solid var(--mist); }
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--mist); border: 1px solid var(--mist); border-radius: 14px; overflow: hidden; }
.feat { background: #fff; padding: 30px 28px; transition: background 0.15s ease; }
.feat:hover { background: var(--paper); }
.feat .glyph { font-family: var(--mono); font-size: 12px; color: var(--copper); margin-bottom: 14px; display: block; }
.feat h3 { font-size: 18px; margin-bottom: 8px; }
.feat p { color: var(--slate); font-size: 14.5px; }

/* Integrations */
.integrations .row { display: flex; gap: 16px; flex-wrap: wrap; }
.chip {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--mist); background: #fff; border-radius: 10px;
  padding: 14px 22px; font-weight: 600; font-size: 15px; font-family: var(--heading);
}
.chip .mono { font-size: 11px; color: var(--slate); font-weight: 400; }
.chip.soon { border-style: dashed; color: var(--slate); }

/* CTA block */
.cta-block {
  background: var(--ink); color: var(--paper); border-radius: 18px;
  padding: 64px 56px; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: center;
}
.cta-block h2 { font-size: clamp(26px, 3.4vw, 36px); color: #fff; margin-bottom: 14px; }
.cta-block p { color: rgba(247, 245, 241, 0.72); font-size: 16.5px; }
.cta-block .mono-line { font-family: var(--mono); font-size: 12.5px; color: rgba(247, 245, 241, 0.55); margin-top: 18px; }
.cta-right { text-align: right; }
.btn-paper { background: var(--paper); color: var(--ink); }
.btn-paper:hover { background: #fff; text-decoration: none; transform: translateY(-1px); }

/* ── Footer ─────────────────────────────────────────────────────────────── */
footer { border-top: 1px solid var(--mist); padding: 40px 0 48px; margin-top: 84px; }
.foot-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 18px; }
.foot-inner svg { height: 20px; width: auto; display: block; }
.foot-links { display: flex; gap: 24px; font-size: 14px; }
.foot-links a { color: var(--slate); }
.foot-copy { font-family: var(--mono); font-size: 12px; color: var(--slate); }

/* ── Legal pages ────────────────────────────────────────────────────────── */
.legal { max-width: 760px; margin: 0 auto; padding: 72px 24px 40px; }
.legal h1 { font-size: 36px; margin-bottom: 8px; }
.legal .updated { font-family: var(--mono); font-size: 12.5px; color: var(--slate); margin-bottom: 40px; display: block; }
.legal h2 { font-size: 21px; margin: 40px 0 12px; }
.legal p, .legal li { color: #2A3430; font-size: 15.5px; margin-bottom: 12px; }
.legal ul { padding-left: 22px; margin-bottom: 12px; }
.legal .lede { font-size: 17px; color: var(--slate); }

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid, .cta-block { grid-template-columns: 1fr; }
  .cta-right { text-align: left; }
  .steps, .feat-grid { grid-template-columns: 1fr; }
  .strip-inner { grid-template-columns: repeat(2, 1fr); }
  .strip-cell:nth-child(2) { border-right: none; }
  .strip-cell:nth-child(-n+2) { border-bottom: 1px solid var(--mist); }
  .nav-links a:not(.btn) { display: none; }
  .hero { padding: 56px 0 48px; }
  section { padding: 60px 0; }
  .cta-block { padding: 44px 28px; }
}

/* ── Integrations row (slim, above the fold) ───────────────────────────── */
.integrations-row {
  margin-top: 40px; padding: 14px 20px;
  border: 1px solid var(--mist); border-radius: 12px; background: #fff;
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  animation: rise 0.6s 0.3s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.int-label {
  font-family: var(--mono); font-weight: 500; font-size: 11.5px;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--slate);
}
.int-logo { display: inline-flex; align-items: center; }
.int-logo svg { display: block; }
.int-chip {
  font-family: var(--mono); font-weight: 500; font-size: 12.5px;
  color: var(--deepwater); background: var(--tint);
  padding: 6px 12px; border-radius: 999px;
}

/* ── Collaboration section ─────────────────────────────────────────────── */
.collab { background: #fff; border-top: 1px solid var(--mist); border-bottom: 1px solid var(--mist); }
.collab-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: center; }
.collab-points { list-style: none; padding: 0; margin: 0; }
.collab-points li {
  position: relative; padding-left: 26px; margin-bottom: 12px;
  color: var(--slate); font-size: 15.5px;
}
.collab-points li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 12px; height: 7px; border-radius: 3px; background: var(--current);
}
.chat-card {
  background: var(--paper); border: 1px solid var(--mist); border-radius: 14px;
  box-shadow: 0 24px 48px -24px rgba(26, 36, 33, 0.15);
  overflow: hidden;
}
.chat-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 16px; background: #fff; border-bottom: 1px solid var(--mist);
  font-size: 12px; color: var(--slate);
}
.chat-body { padding: 16px; }
.chat-msg { display: flex; gap: 10px; margin-bottom: 14px; }
.chat-msg .avatar {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  color: #fff; font-weight: 700; font-size: 13px;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--heading);
}
.chat-meta { font-size: 11.5px; color: var(--slate); margin-bottom: 2px; }
.chat-msg p {
  background: #fff; border: 1px solid var(--mist); border-radius: 0 10px 10px 10px;
  padding: 8px 12px; font-size: 13.5px; color: var(--ink); margin: 0;
}
.chat-msg p strong { color: var(--deepwater); }
.chat-sys {
  font-size: 11px; color: var(--slate); border-top: 1px dashed var(--mist);
  padding-top: 10px; margin-top: 4px;
}

@media (max-width: 900px) {
  .collab-grid { grid-template-columns: 1fr; gap: 32px; }
  .integrations-row { gap: 14px; }
}

/* ── Early-access modal ─────────────────────────────────────────────────── */
body.lm-lock { overflow: hidden; }
/* The [hidden] rule is load-bearing: display:flex below would otherwise
   override the UA's hidden-attribute display:none, leaving an invisible
   full-screen overlay that swallows every click on the page. */
.lm-overlay[hidden] { display: none; }
.lm-overlay {
  position: fixed; inset: 0; z-index: 60;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  background: rgba(26, 36, 33, 0.55);           /* Ink veil */
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  opacity: 0; transition: opacity 0.18s ease;
}
.lm-overlay.lm-open { opacity: 1; }
.lm-card {
  position: relative; width: 100%; max-width: 480px;
  max-height: calc(100vh - 40px); overflow-y: auto;
  background: var(--paper); border-radius: 18px;
  padding: 36px 36px 30px;
  box-shadow: 0 24px 64px rgba(26, 36, 33, 0.35);
  transform: translateY(14px) scale(0.985);
  transition: transform 0.22s cubic-bezier(0.2, 0.8, 0.25, 1);
}
.lm-overlay.lm-open .lm-card { transform: translateY(0) scale(1); }

/* Three brand bars across the top — echoes the mark without redrawing it. */
.lm-bars { position: absolute; top: 0; left: 0; right: 0; height: 5px;
  display: flex; border-radius: 18px 18px 0 0; overflow: hidden; }
.lm-bars i { flex: 1; }
.lm-bars i:nth-child(1) { background: var(--copper); }
.lm-bars i:nth-child(2) { background: var(--current); }
.lm-bars i:nth-child(3) { background: var(--deepwater); }

.lm-close {
  position: absolute; top: 14px; right: 14px;
  width: 32px; height: 32px; border: 0; border-radius: 8px;
  background: transparent; color: var(--slate);
  font-size: 22px; line-height: 1; cursor: pointer;
}
.lm-close:hover { background: var(--tint); color: var(--ink); }

.lm-head { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; padding-right: 34px; }
.lm-head[hidden] { display: none; }
.lm-progress { flex: 1; height: 4px; background: var(--mist); border-radius: 2px; overflow: hidden; }
.lm-progress span { display: block; height: 100%; width: 33%;
  background: var(--deepwater); border-radius: 2px; transition: width 0.25s ease; }
.lm-stepcount { font-family: var(--mono); font-size: 11px; color: var(--slate); white-space: nowrap; }

.lm-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.lm-step h3 {
  font-family: 'Schibsted Grotesk', sans-serif; font-weight: 700;
  font-size: 24px; color: var(--ink); margin: 0 0 6px; letter-spacing: -0.02em;
}
.lm-sub { font-size: 14.5px; color: var(--slate); margin: 0 0 18px; line-height: 1.5; }

.lm-label {
  display: block; font-family: var(--mono); font-size: 11px; letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--deepwater); font-weight: 600; margin: 16px 0 7px;
}
.lm-step input[type="email"], .lm-step input[type="text"]:not(.lm-hp) {
  width: 100%; box-sizing: border-box; padding: 12px 14px; font-size: 16px;
  font-family: inherit; color: var(--ink); background: #fff;
  border: 1.5px solid var(--mist); border-radius: 10px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.lm-step input:focus {
  outline: none; border-color: var(--deepwater);
  box-shadow: 0 0 0 3px var(--tint);
}

.lm-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.lm-chip { cursor: pointer; }
.lm-chip input { position: absolute; opacity: 0; pointer-events: none; }
.lm-chip span {
  display: inline-block; padding: 9px 15px; font-size: 14.5px; font-weight: 500;
  color: var(--ink); background: #fff; border: 1.5px solid var(--mist);
  border-radius: 999px; transition: all 0.12s ease; user-select: none;
}
.lm-chip:hover span { border-color: var(--slate); }
.lm-chip input:checked + span {
  background: var(--tint); border-color: var(--deepwater);
  color: var(--deepwater); font-weight: 600;
}
.lm-chip input:focus-visible + span { box-shadow: 0 0 0 3px var(--tint); }

.lm-next { width: 100%; margin-top: 22px; justify-content: center;
  font-size: 15.5px; padding: 12px 18px; }
.lm-back {
  display: block; margin: 12px auto 0; border: 0; background: none;
  font-size: 13px; color: var(--slate); cursor: pointer;
}
.lm-back:hover { color: var(--ink); }

.lm-error { font-size: 13.5px; color: var(--signal); margin: 12px 0 0; }

.lm-success { text-align: center; padding: 12px 0 4px; }
.lm-check { width: 56px; height: 56px; margin: 0 auto 14px; display: block; }
.lm-check circle { stroke-dasharray: 158; stroke-dashoffset: 158;
  animation: lm-draw 0.5s ease forwards; }
.lm-check path { stroke-dasharray: 34; stroke-dashoffset: 34;
  animation: lm-draw 0.35s ease 0.4s forwards; }
@keyframes lm-draw { to { stroke-dashoffset: 0; } }
.lm-success h3 {
  font-family: 'Schibsted Grotesk', sans-serif; font-weight: 700;
  font-size: 24px; color: var(--ink); margin: 0 0 8px;
}
.lm-success p { font-size: 14.5px; color: var(--slate); line-height: 1.55; margin: 0 0 20px; }

@media (max-width: 520px) {
  .lm-card { padding: 28px 20px 24px; border-radius: 14px; }
  .lm-overlay { padding: 12px; align-items: flex-end; }
}
@media (prefers-reduced-motion: reduce) {
  .lm-overlay, .lm-card, .lm-progress span, .lm-chip span { transition: none; }
  .lm-check circle, .lm-check path { animation: none; stroke-dashoffset: 0; }
}

/* ── Analytics band: same card grid, quiet tint to separate it ─────────── */
.analytics { background: var(--tint, #E4EFEA); }

/* ── Pricing ──────────────────────────────────────────────────────────── */
.pricing-sec { padding: 88px 0; background: #fff; border-top: 1px solid var(--mist); }
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.plan {
  border: 1px solid var(--mist); border-radius: 12px; padding: 28px 26px;
  background: var(--paper, #F7F5F1); display: flex; flex-direction: column;
}
.plan-featured { border: 2px solid var(--deepwater); background: #fff; }
.plan h3 { font-size: 18px; margin-bottom: 10px; }
.plan-price { margin-bottom: 18px; }
.plan-amount { font-family: 'Schibsted Grotesk', sans-serif; font-weight: 700; font-size: 40px; color: var(--ink); }
.plan-per { color: var(--slate); font-size: 14px; margin-left: 2px; }
.plan ul { list-style: none; margin: 0 0 22px; padding: 0; }
.plan ul li { padding: 7px 0; border-bottom: 1px solid var(--mist); font-size: 14px; color: var(--slate); }
.plan ul li:last-child { border-bottom: none; }
.plan-cta { margin-top: auto; text-align: center; }
@media (max-width: 860px) { .plans { grid-template-columns: 1fr; } }

/* 7 feature cards in a 3-col grid: a card alone on the last row spans it,
   so no empty mist panels show through the grid gaps. */
.feat:last-child:nth-child(3n + 1) { grid-column: 1 / -1; }

/* ── Feature restructure + product shots (2026-08-17) ──────────────────
   Three lead capabilities carry a screenshot each; everything else drops
   to a compact list so the page reads as "here's the core, here's the
   rest" instead of ten equal-weight cards. */
.lead-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 40px;
}
.lead-feat {
  background: #fff;
  border: 1px solid var(--mist);
  border-radius: 14px;
  padding: 24px 22px 22px;
  display: flex;
  flex-direction: column;
}
.lead-feat h3 {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-size: 1.15rem;
  margin: 0 0 8px;
  color: var(--ink, #1A2421);
}
.lead-feat > p { margin: 0 0 16px; color: var(--slate); line-height: 1.55; }
.lead-feat .shot { margin-top: auto; }

/* Compact list — smaller type, no numbering, two columns on desktop. */
.feat-compact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 34px;
  border-top: 1px solid var(--mist);
  padding-top: 28px;
}
.feat-compact h4 {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-size: 0.95rem;
  margin: 0 0 4px;
  color: var(--ink, #1A2421);
}
.feat-compact p { margin: 0; font-size: 0.9rem; color: var(--slate); line-height: 1.5; }

/* ── Product screenshots ───────────────────────────────────────────────
   Same border/shadow language as the hero mock. Images are lazy-loaded,
   scale to their container, and open in a lightbox on click. */
.shot { margin: 0; }
.shot img,
.shot-ph {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--mist);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgb(12 91 74 / 0.08);
  background: #fff;
}
.shot img { cursor: zoom-in; }
.shot-ph {
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  background:
    repeating-linear-gradient(45deg, #F2F5F3 0 10px, #EDF1EF 10px 20px);
  color: var(--slate);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 12px;
}
.shot-inline, .shot-wide { margin-top: 22px; }
.shot-wide { max-width: 960px; margin-left: auto; margin-right: auto; }

/* ── Founder note ─────────────────────────────────────────────────────── */
.founder { padding: 64px 0; border-top: 1px solid var(--mist); }
.founder-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: start;
}
.portrait-ph {
  width: 200px;
  height: 200px;
  aspect-ratio: auto;
  border-radius: 14px;
}
.founder-portrait img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--mist);
  box-shadow: 0 10px 30px rgb(12 91 74 / 0.08);
}
.founder-copy h2 { margin-top: 0; }
.founder-copy p { color: var(--slate); line-height: 1.65; margin: 0 0 14px; }
.founder-punch { font-weight: 600; color: var(--ink, #1A2421) !important; }
.founder-sig {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-size: 0.9rem;
  color: var(--slate);
}

/* ── Single pricing plan ──────────────────────────────────────────────── */
.plans-single { grid-template-columns: minmax(0, 420px); justify-content: center; }
.plans-single .plan { text-align: center; }
.plan-lede { color: var(--slate); line-height: 1.55; margin: 6px 0 10px; }
.plan-terms { font-size: 0.85rem; color: var(--slate); margin: 0 0 18px; }

/* ── Lightbox ─────────────────────────────────────────────────────────── */
.lb-overlay {
  position: fixed;
  inset: 0;
  background: rgb(26 36 33 / 0.82);
  display: grid;
  place-items: center;
  padding: 4vmin;
  z-index: 120;
}
.lb-overlay[hidden] { display: none; }
.lb-overlay img {
  max-width: 96vw;
  max-height: 92vh;
  border-radius: 10px;
  box-shadow: 0 24px 60px rgb(0 0 0 / 0.45);
  background: #fff;
}
.lb-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: none;
  border: 0;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 980px) {
  .lead-grid { grid-template-columns: 1fr; }
  .feat-compact { grid-template-columns: 1fr; }
  .founder-grid { grid-template-columns: 1fr; gap: 24px; }
  .founder-portrait { justify-self: start; }
}

/* Design-partner application (2026-08-25): the free-text pain field. */
#lead-form textarea {
  width: 100%;
  border: 1px solid var(--mist);
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
  color: var(--ink, #1A2421);
  resize: vertical;
  margin-bottom: 14px;
  background: #fff;
}
#lead-form textarea:focus { outline: 2px solid var(--deepwater); border-color: var(--deepwater); }

/* Design-partner commitment checkbox (2026-08-25). */
.lm-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.82rem;
  color: var(--slate);
  line-height: 1.5;
  margin: 6px 0 14px;
  cursor: pointer;
}
.lm-consent input { margin-top: 3px; accent-color: var(--deepwater); flex-shrink: 0; }
