:root {
  --ink: #14110f;
  --ink-2: #3a342e;
  --muted: #6e665e;
  --line: #e6e0d6;
  --bg: #f6f1e8;
  --paper: #fbf7ef;
  --accent: #0F62FE;
  --accent-ink: #0b4ab8;
  --chip: #efe7d6;
  --sans: 'Inter', system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;
  --serif: 'Instrument Serif', 'Times New Roman', serif;
}
html[data-theme="dark"] {
  --ink: #f6f1e8;
  --ink-2: #e3dcce;
  --muted: #a49d92;
  --line: #2a2620;
  --bg: #14110f;
  --paper: #1a1613;
  --accent: #0F62FE;
  --accent-ink: #0b4ab8;
  --chip: #22201c;
}
* { box-sizing: border-box; }
html, body { margin:0; padding:0; }
body {
  font-family: var(--sans);
  color: var(--ink); background: var(--bg) !important;
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.serif { font-family: var(--serif); font-weight: 400; letter-spacing: -0.01em; }
em.key { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: -0.01em; }

/* ------------ NAV ------------ */
nav.top {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: saturate(180%) blur(10px);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.brand img { height: 34px; width: auto; display: block; }
html[data-theme="dark"] .brand img { filter: invert(1) hue-rotate(180deg) brightness(1.05); }
.nav-links { display: flex; gap: 32px; font-size: 14.5px; color: var(--ink-2); }
.nav-links a:hover { color: var(--ink); }
.nav-right { display: flex; align-items: center; gap: 10px; }

.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 999px; background: transparent;
  font-size: 13px; color: var(--ink-2);
}
.pill.on { background: var(--ink); color: var(--bg); }
.lang, .theme {
  display: inline-flex; padding: 3px; border-radius: 999px;
  background: var(--chip); font-size: 12px;
}
.lang button, .theme button {
  padding: 5px 11px; border-radius: 999px; color: var(--muted);
  letter-spacing: 0.04em;
}
.lang button.active, .theme button.active { background: var(--ink); color: var(--bg); }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 999px;
  font-size: 14px; font-weight: 500;
  transition: transform .18s ease, background .18s ease, opacity .18s ease;
}
.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover { opacity: 0.88; }
.btn-ghost { color: var(--ink); border: 1px solid var(--line); background: transparent; }
.btn-ghost:hover { background: var(--chip); }
.btn-lg { padding: 14px 22px; font-size: 15px; }
.btn .arr { transition: transform .2s; }
.btn:hover .arr { transform: translateX(2px); }

/* ---------- HERO ---------- */
.hero { padding: 48px 0 100px; position: relative; overflow: hidden; }
.hero-inner {
  position: relative; z-index: 2; text-align: center;
  pointer-events: none;
}
.hero-inner > * { pointer-events: auto; }

.hero-tag {
  display: inline-flex; gap: 8px; align-items: center;
  font-size: 13px; color: var(--ink-2);
  padding: 6px 14px; background: var(--chip); border-radius: 999px;
  margin-bottom: 28px;
}
.hero-tag .dot { width: 6px; height: 6px; border-radius: 50%; background: #d97758; }

h1.hero-h {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(52px, 7.5vw, 96px);
  line-height: 0.95; letter-spacing: -0.03em;
  margin: 0 auto; max-width: 16ch; text-wrap: balance;
}
h1.hero-h i { font-style: italic; color: var(--accent); }
.hero-sub {
  font-size: 17px;
  color: var(--ink-2); margin: 28px auto 0; max-width: 52ch;
  line-height: 1.55;
}
.hero-cta {
  display: inline-flex; gap: 12px; margin-top: 36px; flex-wrap: wrap;
  justify-content: center;
}

/* Floating persona cards */
.hero-float { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.persona {
  position: absolute;
  width: 170px; background: color-mix(in srgb, var(--accent) 10%, var(--paper));
  border-radius: 14px; padding: 12px;
  box-shadow: 0 20px 40px -20px rgba(20,17,15,0.18), 0 2px 8px rgba(20,17,15,0.06);
  border: 1px solid color-mix(in srgb, var(--accent) 32%, transparent);
  pointer-events: auto;
  transition: transform .4s cubic-bezier(.2,.7,.2,1);
  animation: floaty 6s ease-in-out infinite;
}
html[data-theme="dark"] .persona {
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.6), 0 2px 8px rgba(0,0,0,0.25);
}
.persona:hover { transform: translateY(-4px) rotate(0deg) !important; z-index: 10; }
.persona img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover;
  border-radius: 10px; display: block;
}
.persona .pm {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 10px; padding: 0 2px;
}
.persona .pm .role {
  font-size: 12.5px; font-weight: 500; color: var(--ink);
  letter-spacing: -0.01em;
}
.persona .pm .mini {
  font-size: 10.5px; color: var(--muted);
}
.persona .badge {
  position: absolute; top: 8px; left: 8px;
  background: color-mix(in srgb, var(--paper) 88%, transparent); backdrop-filter: blur(6px);
  padding: 4px 8px; border-radius: 999px;
  font-size: 10.5px; font-weight: 500;
  color: var(--ink);
  display: flex; gap: 6px; align-items: center;
  border: 1px solid color-mix(in srgb, var(--line) 60%, transparent);
}
.persona .badge .lv { width: 5px; height: 5px; border-radius: 50%; background: #10a37f; }

.persona.p1 { top: 30px; left: 4%; transform: rotate(-5deg); animation-delay: 0s; }
.persona.p2 { top: 140px; right: 6%; transform: rotate(4deg); animation-delay: -1.2s; }
.persona.p3 { top: 340px; left: 9%; transform: rotate(3deg); animation-delay: -2.4s; }
.persona.p4 { top: 360px; right: 10%; transform: rotate(-4deg); animation-delay: -3.6s; }

@keyframes floaty {
  0%, 100% { transform: var(--rot) translateY(0); }
  50% { transform: var(--rot) translateY(-8px); }
}
.persona.p1 { --rot: rotate(-5deg); }
.persona.p2 { --rot: rotate(4deg); }
.persona.p3 { --rot: rotate(3deg); }
.persona.p4 { --rot: rotate(-4deg); }

@media (max-width: 900px) {
  .hero-float { display: none; }
  .hero { padding: 32px 0 60px; }
}

/* Logo strip */
.logos-strip {
  padding: 22px 0; border-top: 1px solid var(--line);
}
.logos-strip .row {
  display: flex; align-items: center; justify-content: center;
  gap: 10px 28px; flex-wrap: wrap;
  font-family: var(--serif); font-size: 17px; color: var(--muted);
  line-height: 1.2;
}
.logos-strip .row > span { display: inline-flex; align-items: center; }
.logos-strip .row > span::after {
  content: "·"; margin-left: 28px; color: var(--line);
}
.logos-strip .row > span:last-child::after { content: ""; margin: 0; }
.logos-strip .row i { font-style: italic; }
.logos-strip .lbl {
  font-family: var(--sans); font-size: 11.5px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
  flex: 0 0 100%; text-align: center; margin-bottom: 4px;
}
.logos-strip .lbl::after { display: none; }
@media (min-width: 760px) {
  .logos-strip .lbl { flex: 0 0 auto; margin-bottom: 0; margin-right: 8px; text-align: left; }
  .logos-strip .lbl::after { display: inline; }
}

/* Section shell */
section.bk { padding: 40px 0; position: relative; }
.sec-eyebrow {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 18px;
}
h2.sec-h {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(40px, 5.2vw, 72px);
  line-height: 1.02; letter-spacing: -0.025em;
  margin: 0; max-width: 18ch; text-wrap: balance;
}
h2.sec-h.wide { max-width: none !important; font-size: clamp(34px, 4.2vw, 56px); }
@media (min-width: 760px) {
  h2.sec-h.wide { white-space: nowrap; }
}
h2.sec-h i { font-style: italic; color: var(--accent); }
.sec-desc {
  font-size: 17px; color: var(--ink-2); margin: 22px 0 0; max-width: 54ch; line-height: 1.55;
}

/* How it works — 3 steps big serif */
.how-rows {
  margin-top: 56px; display: grid; gap: 0;
  border-top: 1px solid var(--line);
}
.how-row {
  display: grid; grid-template-columns: 80px 1.2fr 1.8fr;
  gap: 48px; padding: 40px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.how-row .n {
  font-family: var(--serif); font-size: 36px;
  color: var(--muted);
}
.how-row h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: 32px; line-height: 1.05; letter-spacing: -0.01em;
  margin: 0;
}
.how-row h3 i { font-style: italic; color: var(--accent); }
.how-row p { margin: 0; color: var(--ink-2); font-size: 16px; max-width: 52ch; }
@media (max-width: 760px) {
  .how-row { grid-template-columns: 60px 1fr; gap: 16px; }
  .how-row p { grid-column: 2 / 3; }
}

/* Industries chip grid */
.ind-pane { margin-top: 64px; position: relative; }
.ind-chips {
  display: flex; flex-wrap: wrap; gap: 10px;
  max-width: 940px;
}
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: 999px;
  background: var(--chip); color: var(--ink);
  font-size: 14px; font-weight: 500;
  border: 1px solid transparent;
  transition: transform .15s, background .15s, border-color .15s;
  cursor: pointer;
}
.chip:hover { transform: translateY(-1px); }
.chip.active { background: var(--accent); color: #fff; }
.chip .ic { font-size: 14px; }

.ind-panel {
  margin-top: 36px;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px;
  align-items: start;
}
.ind-copy .role {
  font-family: var(--serif); font-style: italic;
  font-size: 40px; line-height: 1.05; color: var(--accent);
  margin: 0 0 14px;
}
.ind-copy h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: 40px; line-height: 1.05; letter-spacing: -0.02em;
  margin: 0 0 18px;
}
.ind-copy p { font-size: 17px; color: var(--ink-2); margin: 0 0 24px; max-width: 50ch; }
.ind-quote {
  border-left: 2px solid var(--accent); padding: 6px 0 6px 18px;
  font-family: var(--serif); font-size: 22px; font-style: italic;
  color: var(--ink); line-height: 1.3; margin: 0 0 16px;
}
.ind-quote cite {
  display: block; margin-top: 10px;
  font-family: var(--sans); font-style: normal; font-size: 13px;
  color: var(--muted); letter-spacing: 0.02em;
}
.ind-photo {
  border-radius: 18px; overflow: hidden; aspect-ratio: 4/5;
  background-size: cover; background-position: center;
  background-color: color-mix(in srgb, var(--accent) 14%, transparent);
  box-shadow: 0 30px 60px -30px rgba(20,17,15,0.2);
}

@media (max-width: 900px) {
  .ind-panel { grid-template-columns: 1fr; }
}

/* Stories / social proof */
.stories {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 56px;
}
.story {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 18px; padding: 28px;
}
.story q {
  font-family: var(--serif); font-size: 22px; line-height: 1.3;
  color: var(--ink); display: block; margin-bottom: 22px;
  quotes: none;
}
.story q::before, .story q::after { content: ""; }
.story q i { font-style: italic; color: var(--accent); }
.story .who {
  display: flex; gap: 12px; align-items: center;
  padding-top: 16px; border-top: 1px solid var(--line);
}
.story .who img {
  width: 40px; height: 40px; border-radius: 50%; object-fit: cover;
}
.story .who .nm { font-size: 14px; font-weight: 500; }
.story .who .ti { font-size: 12.5px; color: var(--muted); }
@media (max-width: 900px) { .stories { grid-template-columns: 1fr; } }

/* Pricing — simple */
.price-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 48px;
}
.price {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 20px; padding: 32px; position: relative;
}
.price.hero-pricing { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.price .nm {
  font-family: var(--serif); font-size: 28px;
}
.price .amt {
  font-family: var(--serif); font-size: 56px; line-height: 1;
  margin: 14px 0 6px; letter-spacing: -0.02em;
}
.price .amt span { font-family: var(--sans); font-size: 14px; color: var(--muted); font-weight: 400; margin-left: 6px; }
.price.hero-pricing .amt span { color: color-mix(in srgb, var(--bg) 60%, var(--muted)); }
.price p.desc { color: var(--ink-2); margin: 6px 0 20px; font-size: 15px; }
.price.hero-pricing p.desc { color: color-mix(in srgb, var(--bg) 70%, var(--muted)); }
.price ul { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 10px; font-size: 15px; }
.price li { display: grid; grid-template-columns: 18px 1fr; gap: 10px; line-height: 1.45; }
.price li::before {
  content: "✓"; color: var(--accent); font-weight: 600;
}
.price.hero-pricing li::before { color: var(--accent); }
.price .tag {
  position: absolute; top: 22px; right: 22px;
  background: var(--accent); color: #fff;
  font-size: 12px; padding: 4px 10px; border-radius: 999px;
  letter-spacing: 0.06em;
}
.btn-full { width: 100%; justify-content: center; }
@media (max-width: 900px) { .price-row { grid-template-columns: 1fr; } }

/* FAQ */
.faq { border-top: 1px solid var(--line); margin-top: 40px; }
.fi { border-bottom: 1px solid var(--line); padding: 22px 0; cursor: pointer; }
.fq {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--serif); font-size: 22px;
}
.fq .pl { font-size: 22px; color: var(--muted); transition: transform .2s; }
.fi.open .pl { transform: rotate(45deg); }
.fa {
  max-height: 0; overflow: hidden; transition: max-height .3s, padding .3s;
  color: var(--ink-2); font-size: 15.5px; line-height: 1.6; max-width: 64ch;
}
.fi.open .fa { max-height: 260px; padding-top: 12px; }

/* Final CTA */
.final {
  background: var(--ink); color: var(--bg);
  border-radius: 28px; padding: 80px 56px;
  text-align: center; margin: 40px 0 72px;
}
.final h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(40px, 5vw, 68px); line-height: 1.03; letter-spacing: -0.025em;
  margin: 0 auto;
}
.final h3 i { font-style: italic; color: var(--accent); }
html[data-theme="dark"] .final h3 i { color: var(--accent); }
.final p {
  font-size: 17px; margin: 20px auto 34px; max-width: 50ch;
  color: color-mix(in srgb, var(--bg) 70%, var(--muted));
}
.final .btn-primary { background: var(--bg); color: var(--ink); }
.final .btn-primary:hover { background: var(--paper); }
.final .btn-ghost { color: var(--bg); border-color: color-mix(in srgb, var(--bg) 30%, transparent); }
.final .btn-ghost:hover { background: rgba(255,255,255,0.06); }

/* Footer */
footer { padding: 60px 0 40px; border-top: 1px solid var(--line); }
.foot-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px;
}
.foot-grid h5 {
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 14px; font-weight: 500;
}
.foot-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; font-size: 14px; color: var(--ink-2); }
.foot-grid .about { font-family: var(--serif); font-size: 19px; color: var(--ink-2); max-width: 34ch; margin: 16px 0 0; line-height: 1.4; }
.foot-bot {
  margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-size: 13px; color: var(--muted);
}
.foot-bot-left, .foot-bot-right { display: inline-flex; align-items: center; gap: 18px; }
.foot-bot a { color: inherit; }
.foot-login-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: 999px;
  border: 1px solid var(--line); color: var(--ink-2);
  font-size: 13px; font-weight: 500;
  transition: background .15s, border-color .15s, color .15s;
}
.foot-login-btn:hover { background: var(--paper); border-color: var(--ink-2); color: var(--ink); text-decoration: none; }
@media (max-width: 1000px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) {
  .foot-grid { grid-template-columns: 1fr; gap: 28px; text-align: left; }
  .foot-grid > div { text-align: left; }
  .foot-bot { flex-direction: column; align-items: flex-start; }
  .foot-bot-left, .foot-bot-right { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* Tweaks panel */
.tweaks-panel {
  position: fixed; right: 20px; bottom: 20px; z-index: 100;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 18px; padding: 20px; width: 280px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.2);
  display: none; font-size: 13px;
}
.tweaks-panel.on { display: block; }
.tweaks-panel h4 {
  margin: 0 0 14px; font-family: var(--serif);
  font-size: 16px; font-weight: 400;
}
.tw-row { display: grid; grid-template-columns: 1fr auto; gap: 10px; margin-bottom: 12px; align-items: center; }
.tw-swatches { display: flex; gap: 6px; }
.tw-swatches button {
  width: 22px; height: 22px; border-radius: 50%; border: 2px solid transparent;
}
.tw-swatches button.active { border-color: var(--ink); }

/* ============ SERVICE PAGE EXTRAS ============ */
.sub-hero { padding: 20px 0 60px; position: relative; overflow: hidden; }
.sub-hero .wrap { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.sub-hero h1 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(44px, 6vw, 80px);
  line-height: 1.0; letter-spacing: -0.03em;
  margin: 0 0 22px; text-wrap: balance;
}
.sub-hero h1 i { font-style: italic; color: var(--accent); }
.sub-hero .lead {
  font-size: 17px; color: var(--ink-2); line-height: 1.55; margin: 0 0 28px; max-width: 48ch;
}
.sub-hero .proof-row {
  display: flex; flex-wrap: wrap; gap: 22px; margin-top: 28px;
  padding-top: 22px; border-top: 1px solid var(--line);
  font-size: 13px; color: var(--muted);
}
.sub-hero .proof-row strong { display: block; font-family: var(--serif); font-size: 28px; color: var(--ink); font-weight: 400; letter-spacing: -0.02em; line-height: 1; margin-bottom: 4px; }
.sub-hero .hero-art {
  position: relative; border-radius: 22px; overflow: hidden;
  aspect-ratio: 4/5; background-size: cover; background-position: center;
  box-shadow: 0 40px 80px -30px rgba(20,17,15,0.3);
}
.sub-hero .hero-art::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(20,17,15,0.55));
}
.sub-hero .float-stat {
  position: absolute; z-index: 3;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 14px; padding: 14px 16px;
  box-shadow: 0 20px 40px -18px rgba(20,17,15,0.25);
  font-size: 13px; min-width: 180px;
}
.sub-hero .float-stat.s1 { top: 30px; left: -22px; }
.sub-hero .float-stat.s2 { bottom: 30px; right: -22px; }
.sub-hero .float-stat strong { display: block; font-family: var(--serif); font-size: 24px; color: var(--accent); font-weight: 400; line-height: 1; margin-bottom: 4px; letter-spacing: -0.02em; }
.sub-hero .float-stat span { color: var(--muted); font-size: 12px; }
@media (max-width: 900px) {
  .sub-hero .wrap { grid-template-columns: 1fr; gap: 40px; }
  .sub-hero .hero-art { aspect-ratio: 4/3; }
  .sub-hero .float-stat.s1 { left: 10px; top: 10px; }
  .sub-hero .float-stat.s2 { right: 10px; bottom: 10px; }
}

/* Pain cards */
.pain-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  margin-top: 48px;
}
.pain {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 18px; padding: 26px;
}
.pain .ic {
  width: 42px; height: 42px; border-radius: 12px;
  background: color-mix(in srgb, var(--accent) 14%, transparent);
  color: var(--accent); display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 22px; margin-bottom: 18px;
}
.pain h4 { font-family: var(--serif); font-size: 24px; font-weight: 400; letter-spacing: -0.02em; margin: 0 0 8px; line-height: 1.15; }
.pain p { margin: 0; color: var(--ink-2); font-size: 15px; line-height: 1.55; }
@media (max-width: 900px) { .pain-grid { grid-template-columns: 1fr; } }

/* Scenario rows — phone-style conversations */
.scen-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 48px;
}
.scen {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 20px; padding: 26px;
  display: flex; flex-direction: column; gap: 12px;
}
.scen .meta {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 14px; border-bottom: 1px solid var(--line); margin-bottom: 6px;
}
.scen .meta .who { font-size: 13px; color: var(--ink-2); font-weight: 500; }
.scen .meta .time { font-size: 12px; color: var(--muted); letter-spacing: 0.14em; text-transform: uppercase; }
.scen .line {
  display: flex; gap: 10px; font-size: 15px; line-height: 1.55;
}
.scen .line .tag {
  flex: 0 0 auto; font-family: var(--serif); font-style: italic; font-size: 13.5px;
  color: var(--muted); width: 52px;
}
.scen .line.ai .tag { color: var(--accent); }
.scen .line p { margin: 0; color: var(--ink); }
.scen .outcome {
  margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line);
  font-family: var(--serif); font-size: 16px; font-style: italic; color: var(--accent);
}
@media (max-width: 900px) { .scen-grid { grid-template-columns: 1fr; } }

/* Feature list two-column */
.feat-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  margin-top: 56px; align-items: start;
}
.feat-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 18px; }
.feat-list li {
  display: grid; grid-template-columns: 28px 1fr; gap: 14px; align-items: start;
}
.feat-list li::before {
  content: ""; width: 18px; height: 18px; border-radius: 50%; margin-top: 4px;
  background: var(--accent);
  background-image: radial-gradient(circle at 55% 45%, rgba(255,255,255,.75) 2.5px, transparent 3px);
}
.feat-list strong { display: block; font-family: var(--serif); font-size: 24px; font-weight: 400; letter-spacing: -0.01em; margin-bottom: 4px; }
.feat-list p { margin: 0; color: var(--ink-2); font-size: 15px; line-height: 1.55; }

.integrations {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px;
}
.integrations .itag {
  background: var(--chip); color: var(--ink);
  padding: 8px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 500;
}
@media (max-width: 900px) { .feat-split { grid-template-columns: 1fr; gap: 40px; } }

/* Big ROI strip */
.roi {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  margin-top: 48px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.roi .r {
  padding: 36px 24px; border-right: 1px solid var(--line);
}
.roi .r:last-child { border-right: 0; }
.roi .n { font-family: var(--serif); font-size: 56px; line-height: 1; letter-spacing: -0.03em; color: var(--ink); }
.roi .n i { font-style: italic; color: var(--accent); }
.roi .l { margin-top: 10px; font-size: 13.5px; color: var(--muted); max-width: 26ch; }
@media (max-width: 900px) {
  .roi { grid-template-columns: 1fr 1fr; }
  .roi .r { border-right: 0; border-bottom: 1px solid var(--line); }
  .roi .r:nth-child(2n) { border-right: 0; }
  .roi .r:nth-last-child(-n+2) { border-bottom: 0; }
}

/* Big testimonial */
.bigquote {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 24px; padding: 48px; margin-top: 48px;
  display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: center;
}
.bigquote q {
  font-family: var(--serif); font-size: clamp(26px, 3vw, 36px);
  line-height: 1.2; color: var(--ink); display: block; letter-spacing: -0.015em;
  quotes: none;
}
.bigquote q::before, .bigquote q::after { content: ""; }
.bigquote q i { font-style: italic; color: var(--accent); }
.bigquote .cite {
  margin-top: 22px; display: flex; gap: 12px; align-items: center;
}
.bigquote .cite img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.bigquote .cite .nm { font-size: 15px; font-weight: 500; }
.bigquote .cite .ti { font-size: 13px; color: var(--muted); }
.bigquote .photo {
  aspect-ratio: 4/5; border-radius: 18px; background-size: cover; background-position: center;
}
@media (max-width: 900px) {
  .bigquote { grid-template-columns: 1fr; padding: 32px; }
  .bigquote .photo { aspect-ratio: 4/3; order: -1; }
}

/* Breadcrumbs — use padding-top/bottom so .wrap's side padding (28px) is preserved */
.crumb {
  padding-top: 22px; padding-bottom: 14px;
  font-size: 13px; color: var(--muted);
  letter-spacing: 0.02em;
}
.crumb a:hover { color: var(--ink); }
.crumb span.sep { margin: 0 8px; color: var(--line); }
.crumb .current { color: var(--ink); font-weight: 500; }
@media (max-width: 760px) {
  .crumb { padding-top: 14px; padding-bottom: 10px; font-size: 12.5px; }
  .crumb span.sep { margin: 0 6px; }
}

/* Nav dropdown (Industries) */
.nav-dropdown { position: relative; display: inline-flex; align-items: center; }
.nav-dropdown > .nav-dropdown-trigger {
  display: inline-flex; align-items: center; gap: 4px;
  cursor: pointer; color: var(--ink-2);
}
.nav-dropdown > .nav-dropdown-trigger::after {
  content: ""; width: 8px; height: 8px; margin-left: 2px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-1px, -1px);
  opacity: .5; transition: transform .2s, opacity .2s;
}
.nav-dropdown:hover > .nav-dropdown-trigger,
.nav-dropdown:focus-within > .nav-dropdown-trigger { color: var(--ink); }
.nav-dropdown:hover > .nav-dropdown-trigger::after,
.nav-dropdown:focus-within > .nav-dropdown-trigger::after {
  opacity: 1; transform: rotate(225deg) translate(-1px, -1px);
}
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 2px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 14px; padding: 8px; min-width: 220px;
  box-shadow: 0 24px 48px -16px rgba(0,0,0,0.22), 0 4px 12px rgba(0,0,0,0.06);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .18s, visibility .18s, transform .18s;
  z-index: 60; display: grid; gap: 2px;
}
html[data-theme="dark"] .nav-dropdown-menu {
  box-shadow: 0 24px 48px -16px rgba(0,0,0,0.6), 0 4px 12px rgba(0,0,0,0.25);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  padding: 10px 14px; border-radius: 9px;
  font-size: 14.5px; color: var(--ink-2);
  transition: background .12s, color .12s;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover { background: var(--chip); color: var(--ink); }
.nav-dropdown-menu a.current { background: var(--chip); color: var(--ink); }

/* Drawer sub-links (Industries children) */
.drawer-links a.sub {
  font-family: var(--sans); font-size: 15px; font-weight: 500;
  padding: 10px 0 10px 18px; color: var(--ink-2);
  border-left: 2px solid var(--line); border-bottom: 1px solid var(--line);
  margin-left: 4px; letter-spacing: 0.01em;
}
.drawer-links a.sub:hover { color: var(--accent); border-left-color: var(--accent); }

/* Hide dropdown on mobile (drawer takes over) */
@media (max-width: 860px) {
  .nav-dropdown-menu { display: none; }
}

/* ============ POPUP MODAL ============ */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(20,17,15,0.45);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  display: none; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; transition: opacity .25s;
}
html[data-theme="dark"] .modal-backdrop { background: rgba(0,0,0,0.55); }
.modal-backdrop.on { display: flex; opacity: 1; }
.modal-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 22px; padding: 38px 34px 30px;
  width: 100%; max-width: 480px; position: relative;
  box-shadow: 0 50px 100px -25px rgba(0,0,0,0.45), 0 10px 30px -10px rgba(0,0,0,0.2);
  transform: translateY(12px) scale(.98); transition: transform .3s cubic-bezier(.2,.7,.2,1);
  max-height: 92vh; overflow-y: auto;
}
.modal-backdrop.on .modal-card { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute; top: 14px; right: 16px;
  width: 34px; height: 34px; border-radius: 50%;
  font-size: 22px; color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  transition: background .15s, color .15s;
}
.modal-close:hover { background: var(--chip); color: var(--ink); }
.modal-eyebrow {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 10px;
}
.modal-title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(28px, 3.2vw, 36px); line-height: 1.05; letter-spacing: -0.02em;
  margin: 0 0 10px;
}
.modal-title i { color: var(--accent); font-style: italic; }
.modal-sub { font-size: 15px; color: var(--ink-2); margin: 0 0 22px; line-height: 1.55; }
.modal-form { display: grid; gap: 14px; }
.modal-form label {
  display: block; font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted); font-weight: 600;
}
.modal-form input, .modal-form select {
  display: block; width: 100%; margin-top: 6px;
  padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px;
  background: var(--bg); color: var(--ink);
  font-family: inherit; font-size: 15px; letter-spacing: normal; text-transform: none;
  transition: border-color .15s, box-shadow .15s;
}
.modal-form input:focus, .modal-form select:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent);
}
.modal-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.modal-form button[type="submit"] { margin-top: 8px; }
.modal-msg {
  font-size: 13.5px; margin-top: 6px; color: var(--accent);
  text-align: center; min-height: 18px;
}
.modal-msg.err { color: #c9513a; }
.modal-foot {
  margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line);
  font-size: 13px; color: var(--muted); text-align: center;
}
.modal-foot a { color: var(--ink); font-weight: 500; }
@media (max-width: 480px) {
  .modal-card { padding: 30px 22px 22px; border-radius: 18px; }
  .modal-form .form-row { grid-template-columns: 1fr; }
}

/* ============ MOBILE NAV / DRAWER ============ */
.nav-burger {
  display: none;
  width: 42px; height: 42px; border-radius: 999px;
  background: transparent; border: 1px solid var(--line);
  align-items: center; justify-content: center;
  color: var(--ink); transition: background .15s;
}
.nav-burger:hover { background: var(--chip); }
.nav-burger svg { width: 20px; height: 20px; }

.drawer-backdrop {
  position: fixed; inset: 0; z-index: 900;
  background: rgba(20,17,15,0.4);
  backdrop-filter: blur(8px) saturate(150%);
  -webkit-backdrop-filter: blur(8px) saturate(150%);
  opacity: 0; pointer-events: none;
  transition: opacity .25s;
}
html[data-theme="dark"] .drawer-backdrop { background: rgba(0,0,0,0.55); }
.drawer-backdrop.on { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 901;
  width: min(420px, 92vw);
  background: var(--paper); border-left: 1px solid var(--line);
  padding: 22px 24px 30px;
  transform: translateX(100%); transition: transform .3s cubic-bezier(.2,.7,.2,1);
  display: flex; flex-direction: column; gap: 16px;
  box-shadow: -30px 0 60px -20px rgba(0,0,0,0.25);
  overflow-y: auto;
}
.drawer.on { transform: translateX(0); }
.drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 12px; border-bottom: 1px solid var(--line); margin-bottom: 8px;
}
.drawer-head img { height: 30px; }
html[data-theme="dark"] .drawer-head img { filter: invert(1) hue-rotate(180deg) brightness(1.05); }
.drawer-close {
  width: 38px; height: 38px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 22px;
}
.drawer-close:hover { background: var(--chip); color: var(--ink); }

.drawer-links {
  display: flex; flex-direction: column; gap: 2px;
  margin: 4px 0 20px;
}
.drawer-links a {
  font-family: var(--serif); font-size: 28px; letter-spacing: -0.01em;
  padding: 12px 0; color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.drawer-links a:last-child { border-bottom: 0; }
.drawer-links a:hover { color: var(--accent); }

.drawer-actions {
  display: flex; flex-direction: column; gap: 10px; margin-top: auto;
}
.drawer-actions .btn { justify-content: center; }
.drawer-tools {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line);
  font-size: 13px; color: var(--muted);
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-right .lang,
  .nav-right .theme,
  .nav-right > .btn:not(.btn-burger) { display: none; }
  .nav-burger { display: inline-flex; }
}
@media (min-width: 861px) {
  .drawer, .drawer-backdrop { display: none; }
}

body.drawer-open { overflow: hidden; }
