/* =============================================
   RAZOR — Central de compras estratégica
   Lionsoul-inspired system: dark teal accent,
   generous whitespace, full-bleed imagery
   ============================================= */

:root {
  /* Palette — Lionsoul-style: off-white + deep petroleum */
  --ink: #0B1A1A;
  --ink-2: #163030;
  --ink-3: #2A4040;
  --teal: #0E4A44;          /* primary brand accent */
  --teal-2: #0A3A35;
  --teal-soft: #1E7A70;
  --mint: #1FB59E;          /* highlight color for headlines */
  --paper: #F8F8F6;
  --paper-2: #EFEFEA;
  --paper-3: #E2E2DA;
  --rule-soft: #D8D8D0;
  --rule: #C6C6BC;
  --mute: #6B7070;
  --mute-2: #9AA0A0;
  --text: #1A2626;

  /* Type */
  --sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --display: 'Fraunces', Georgia, serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;

  --container: 1240px;
  --gutter: 32px;
  --radius: 4px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 { margin: 0; font-weight: 400; letter-spacing: -0.02em; line-height: 1.08; font-family: var(--sans); }
h1 { font-size: clamp(40px, 5.2vw, 68px); font-weight: 400; letter-spacing: -0.03em; }
h2 { font-size: clamp(32px, 4vw, 52px); font-weight: 400; letter-spacing: -0.02em; line-height: 1.1; }
h3 { font-size: 24px; font-weight: 500; }
h4 { font-size: 19px; font-weight: 500; line-height: 1.3; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }

.accent-mint { color: var(--mint); }
.accent-teal { color: var(--teal); }

/* ---------- Layout primitives ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.container-wide { max-width: 1440px; margin: 0 auto; padding: 0 var(--gutter); }

.section { padding: clamp(80px, 10vw, 130px) 0; }
.section.tight { padding: clamp(48px, 6vw, 72px) 0; }
.section-head { margin-bottom: 56px; max-width: 860px; }
.section-head .eyebrow { margin-bottom: 20px; }

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 500;
  display: inline-block;
}
.eyebrow.light { color: var(--mute-2); }

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(248,248,246,.92);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--rule-soft);
  transition: background .3s var(--ease), border-color .3s;
}
.nav.over-hero { background: transparent; border-bottom-color: transparent; color: #fff; }
.nav-inner {
  max-width: 1440px; margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
}
.brand img {
  transition: filter .3s;
  height: 40px;
  max-height: none;
  width: auto;
  display: block;
}

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  opacity: .9; transition: opacity .2s, color .2s;
  padding: 6px 0;
}
.nav-links a:hover { opacity: 1; color: var(--teal); }
.nav.over-hero .nav-links a:hover { color: var(--mint); }
.nav-links a.active { color: var(--teal); opacity: 1; }
.nav.over-hero .nav-links a.active { color: var(--mint); }

.nav-cta {
  display: flex; align-items: center; gap: 20px;
}
.nav-sign {
  font-size: 13px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 6px;
}
.nav-sign:hover { color: var(--teal); }

/* ---------- HAMBURGER + MOBILE DRAWER ---------- */
.nav-burger {
  display: none;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--rule);
  border-radius: 3px;
  cursor: pointer;
  padding: 0;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: border-color .2s;
}
.nav-burger span {
  display: block;
  width: 20px; height: 1.5px;
  background: var(--ink);
  transition: transform .25s, opacity .2s;
  transform-origin: center;
}
.nav.over-hero:not(.has-mega-open) .nav-burger { border-color: rgba(255,255,255,.35); }
.nav.over-hero:not(.has-mega-open) .nav-burger span { background: #fff; }
.nav-burger.open { border-color: var(--teal); }
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(400px, 88vw);
  height: 100vh; height: 100dvh;
  background: var(--paper, #fff);
  z-index: 1000;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.2, .7, .2, 1);
  display: flex; flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: -8px 0 40px rgba(0,0,0,.08);
  visibility: hidden;
  pointer-events: none;
}
.mobile-drawer.open { transform: translateX(0); visibility: visible; pointer-events: auto; }
.mobile-drawer-inner { padding: 96px 28px 32px; display: flex; flex-direction: column; gap: 0; }
.mobile-link-group { border-bottom: 1px solid var(--rule-soft, rgba(11,26,26,.08)); }
.mobile-link-group:first-child { border-top: 1px solid var(--rule-soft, rgba(11,26,26,.08)); }
.mobile-link-row {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 56px;
}
.mobile-link-row > a {
  flex: 1;
  display: block;
  font-family: var(--serif, 'Fraunces', serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  text-decoration: none;
  padding: 16px 0;
  letter-spacing: -0.01em;
}
.mobile-link-row > a.active { color: var(--teal); }
.mobile-expand {
  width: 44px; height: 44px;
  background: transparent; border: none;
  cursor: pointer;
  color: var(--ink); opacity: .5;
  display: flex; align-items: center; justify-content: center;
  transition: transform .25s, opacity .2s;
}
.mobile-expand .caret { font-size: 12px; }
.mobile-link-group.expanded .mobile-expand { transform: rotate(180deg); opacity: 1; color: var(--teal); }
.mobile-sublinks {
  display: flex; flex-direction: column;
  gap: 2px;
  padding: 4px 0 20px 16px;
  border-left: 1px solid var(--rule-soft, rgba(11,26,26,.08));
  margin: 0 0 8px 4px;
}
.mobile-sublinks a {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 12px;
  padding: 10px 14px;
  text-decoration: none;
  color: var(--ink);
  border-radius: 3px;
}
.mobile-sublinks a:active { background: rgba(31,181,158,.08); }
.mobile-sublinks .sub-num {
  grid-row: 1 / span 2;
  font-family: var(--mono, 'JetBrains Mono', monospace);
  font-size: 11px;
  color: var(--teal);
  padding-top: 3px;
  letter-spacing: 0.05em;
}
.mobile-sublinks .sub-label {
  grid-column: 2;
  font-size: 15px; font-weight: 500;
}
.mobile-sublinks a:not(:has(.sub-num)) .sub-label { grid-column: 1 / -1; }
.mobile-sublinks .sub-desc {
  grid-column: 2;
  font-size: 12px;
  color: var(--mute, rgba(11,26,26,.55));
  margin-top: 2px;
  line-height: 1.4;
}
.mobile-sublinks a:not(:has(.sub-num)) .sub-desc { grid-column: 1 / -1; }

.mobile-drawer-cta {
  margin-top: 32px;
  display: flex; flex-direction: column;
  gap: 16px;
}
.mobile-whats {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--rule, rgba(11,26,26,.12));
  border-radius: 3px;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--mono, 'JetBrains Mono', monospace);
  font-size: 13px;
  letter-spacing: 0.04em;
}
.mobile-whats svg { width: 18px; height: 18px; color: #25D366; flex: none; }

.mobile-backdrop {
  position: fixed; inset: 0;
  background: rgba(11,26,26,.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
  z-index: 999;
}
.mobile-backdrop.open { opacity: 1; pointer-events: auto; }

@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-sign { display: none; }
  .nav-cta .btn { display: none; }
  .nav-burger { display: inline-flex; }
}

/* ---------- MEGA-MENU ---------- */
.nav-link-wrap { position: relative; display: inline-flex; }
.nav-links a .caret {
  display: inline-block; margin-left: 6px; font-size: 9px;
  transform: translateY(-1px);
  transition: transform .25s var(--ease);
  opacity: .6;
}
.nav-links a.mega-active .caret { transform: translateY(0) rotate(-180deg); opacity: 1; }

/* When a mega is open, solidify the nav bar even if over-hero */
.nav.has-mega-open {
  background: rgba(248,248,246,.98);
  border-bottom-color: var(--rule-soft);
  color: var(--ink);
}
.nav.has-mega-open.over-hero .nav-links a { color: var(--ink); opacity: .85; }
.nav.has-mega-open.over-hero .nav-links a:hover,
.nav.has-mega-open.over-hero .nav-links a.mega-active { color: var(--teal); opacity: 1; }
.nav.has-mega-open.over-hero .nav-sign { color: var(--ink); }

.mega-wrap {
  position: absolute; left: 0; right: 0; top: 100%;
  background: #fff;
  border-bottom: 1px solid var(--rule-soft);
  box-shadow: 0 24px 60px -20px rgba(11,26,26,.18);
  opacity: 0; pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .22s var(--ease), transform .22s var(--ease);
  max-height: 0; overflow: hidden;
}
.mega-wrap.open {
  opacity: 1; pointer-events: auto; transform: translateY(0);
  max-height: 620px;
}

.mega {
  color: var(--ink);
}
.mega-inner {
  max-width: 1440px; margin: 0 auto;
  padding: 44px var(--gutter) 48px;
  display: grid; grid-template-columns: 1fr 1fr 1.1fr; gap: 56px;
  align-items: start;
}

.mega-col-title {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule-soft);
}

.mega-items { display: flex; flex-direction: column; gap: 4px; }
.mega-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 10px 12px; margin: 0 -12px;
  border-radius: 4px;
  transition: background .18s var(--ease);
}
.mega-item:hover { background: var(--paper-2); }
.mega-item-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; flex: 0 0 36px;
  border: 1px solid var(--rule-soft);
  border-radius: 4px;
  color: var(--teal);
  font-size: 16px;
  background: var(--paper);
  margin-top: 2px;
}
.mega-item-text { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.mega-item-label {
  font-size: 15px; font-weight: 500; color: var(--ink);
  display: inline-flex; align-items: center; gap: 6px;
}
.mega-item-label .ar-sm {
  font-size: 13px; color: var(--mute);
  transform: translateX(-4px); opacity: 0;
  transition: all .2s var(--ease);
}
.mega-item:hover .mega-item-label .ar-sm { transform: translateX(0); opacity: 1; color: var(--teal); }
.mega-item-desc {
  font-size: 13px; line-height: 1.45; color: var(--mute);
}

.mega-feature {
  position: relative;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px 28px 26px;
  min-height: 300px;
  border-radius: 6px;
  overflow: hidden;
  background-size: cover; background-position: center;
  color: #fff;
  transition: transform .3s var(--ease);
}
.mega-feature:hover { transform: translateY(-2px); }
.mega-feature::after {
  content: ""; position: absolute; inset: 0;
  border: 1px solid rgba(255,255,255,.14); border-radius: 6px;
  pointer-events: none;
}
.mega-feature-eyebrow {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 12px;
}
.mega-feature-title {
  font-family: var(--display);
  font-size: 26px; line-height: 1.15; letter-spacing: -0.015em;
  font-weight: 400;
  margin-bottom: 10px;
  max-width: 22ch;
}
.mega-feature-body {
  font-size: 13px; line-height: 1.55;
  color: rgba(255,255,255,.78);
  margin-bottom: 18px;
  max-width: 32ch;
}
.mega-feature-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,.5);
  align-self: flex-start;
  transition: border-color .2s, color .2s;
}
.mega-feature:hover .mega-feature-cta { color: var(--mint); border-bottom-color: var(--mint); }

/* Mega — STEPS (as row of numbered steps) */
.mega-steps-inner {
  display: block; padding: 40px var(--gutter) 48px;
}
.mega-steps-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px; padding-bottom: 28px;
  border-bottom: 1px solid var(--rule-soft);
  margin-bottom: 28px;
}
.mega-steps-title {
  font-family: var(--display);
  font-size: 28px; line-height: 1.15;
  letter-spacing: -0.015em; font-weight: 400;
  color: var(--ink); max-width: 32ch;
  flex: 1;
}
.mega-steps-head .link-arrow {
  font-size: 13px; color: var(--teal); border-color: var(--teal);
}
.mega-steps-row {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px;
  background: var(--rule-soft);
  border: 1px solid var(--rule-soft);
}
.mega-step {
  display: flex; flex-direction: column; gap: 10px;
  padding: 22px 20px;
  background: #fff;
  transition: background .18s var(--ease);
  min-height: 140px;
}
.mega-step:hover { background: var(--paper); }
.mega-step-n {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.22em;
  color: var(--teal);
}
.mega-step-label {
  font-size: 17px; font-weight: 500; color: var(--ink);
  letter-spacing: -0.01em;
}
.mega-step-desc {
  font-size: 13px; line-height: 1.5; color: var(--mute);
}

/* Mega — GRID (segmentos) */
.mega-grid-menu .mega-inner {
  display: block;
  padding: 40px var(--gutter) 48px;
}
.mega-grid-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--rule-soft);
  border: 1px solid var(--rule-soft);
}
.mega-grid-item {
  position: relative;
  display: flex; flex-direction: column; gap: 8px;
  padding: 24px 26px 48px;
  background: #fff;
  transition: background .2s var(--ease);
  min-height: 130px;
}
.mega-grid-item:hover { background: var(--paper); }
.mega-grid-num {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.22em;
  color: var(--mute);
}
.mega-grid-label {
  font-size: 20px; font-weight: 500;
  letter-spacing: -0.015em; color: var(--ink);
}
.mega-grid-desc {
  font-size: 13px; line-height: 1.45; color: var(--mute);
  max-width: 38ch;
}
.mega-grid-ar {
  position: absolute; right: 26px; bottom: 20px;
  font-size: 16px; color: var(--mute);
  transform: translateX(-4px); opacity: 0;
  transition: all .2s var(--ease);
}
.mega-grid-item:hover .mega-grid-ar { transform: translateX(0); opacity: 1; color: var(--teal); }

/* Mega — SIMPLE (sobre) */
.mega-simple-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  padding: 44px var(--gutter) 48px;
}
.mega-simple-items { display: flex; flex-direction: column; gap: 6px; }
.mega-simple-feature {
  position: relative;
  min-height: 280px;
  border-radius: 6px;
  overflow: hidden;
  background-size: cover; background-position: center;
}
.mega-simple-feature::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11,26,26,.75) 100%);
}
.mega-simple-caption {
  position: absolute; left: 20px; bottom: 18px; z-index: 2;
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: #fff;
}

@media (max-width: 1100px) {
  .mega-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .mega-feature { grid-column: 1 / -1; min-height: 200px; }
  .mega-steps-row { grid-template-columns: repeat(3, 1fr); }
  .mega-steps-row .mega-step:nth-child(n+4) { }
  .mega-grid-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  .mega-wrap { display: none; }
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  font-family: var(--sans);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .25s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--teal); color: #fff; border-color: var(--teal); }
.btn-primary:hover { background: var(--ink); border-color: var(--ink); }
.btn-white { background: #fff; color: var(--teal); border-color: #fff; }
.btn-white:hover { background: var(--mint); color: #fff; border-color: var(--mint); }
.btn-outline { background: transparent; color: currentColor; border-color: currentColor; }
.btn-outline:hover { background: var(--teal); color: #fff; border-color: var(--teal); }
.btn-ghost { background: transparent; color: currentColor; }
.btn-ghost:hover { color: var(--teal); }
.btn .ar { transition: transform .2s var(--ease); font-size: 14px; }
.btn:hover .ar { transform: translate(2px, -2px); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: color .2s;
}
.link-arrow:hover { color: var(--teal); }

/* ---------- WhatsApp FAB ---------- */
.whatsapp-fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 40px -10px rgba(0,0,0,.35);
  cursor: pointer;
  transition: transform .3s var(--ease);
}
.whatsapp-fab:hover { transform: translateY(-3px) scale(1.05); }
.whatsapp-fab svg { width: 26px; height: 26px; }
.whatsapp-fab .pulse {
  position: absolute; inset: 0; border-radius: 50%;
  animation: pulse 2.4s infinite;
  box-shadow: 0 0 0 0 rgba(37,211,102,.5);
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.55); }
  70% { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ---------- HERO: full-bleed image with dark overlay ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  color: #fff;
  overflow: hidden;
  display: flex; flex-direction: column;
  margin-top: -72px; /* pull under transparent nav */
  padding-top: 72px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(90deg, rgba(11,26,26,.92) 0%, rgba(11,26,26,.7) 45%, rgba(11,26,26,.35) 75%, rgba(11,26,26,.2) 100%),
    linear-gradient(180deg, rgba(11,26,26,.3) 0%, rgba(11,26,26,.4) 70%, rgba(11,26,26,.85) 100%),
    url("https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=2400&q=85");
  background-size: cover;
  background-position: center right;
  z-index: 0;
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(31,181,158,.08), transparent 50%);
}
.hero-frame {
  position: absolute; inset: 16px;
  border: 1px solid rgba(255,255,255,.12);
  pointer-events: none;
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  flex: 1;
  display: flex; align-items: flex-end;
  padding: clamp(24px, 4vw, 48px) 0 clamp(56px, 8vw, 100px);
}
.hero-content .container-wide { width: 100%; }
.hero-content h1 {
  max-width: 20ch;
  font-size: clamp(48px, 6.4vw, 88px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: #fff;
}
.hero-content h1 em { font-style: normal; color: var(--mint); font-weight: 400; }
.hero-content .sub {
  max-width: 54ch;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255,255,255,.78);
  margin-top: 28px;
}
.hero-content .actions {
  margin-top: 36px;
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center;
}
.hero-content .actions .link-arrow { color: rgba(255,255,255,.9); border-color: rgba(255,255,255,.4); }
.hero-content .actions .link-arrow:hover { color: var(--mint); border-color: var(--mint); }

.hero-bottom {
  position: relative; z-index: 2;
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 16px 0;
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255,255,255,.55);
}
.hero-bottom .container-wide { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.hero-bottom .scroll { display: inline-flex; align-items: center; gap: 8px; }
.hero-bottom .scroll::after { content: "↓"; animation: bob 2s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(4px); } }

/* Hero top badge/eyebrow strip */
.hero-badges {
  position: relative; z-index: 2;
  padding: clamp(32px, 5vw, 56px) 0 0;
}
.hero-badges .eyebrow {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  border: 1px solid rgba(31,181,158,.35);
  background: rgba(31,181,158,.08);
  backdrop-filter: blur(8px);
  border-radius: 2px;
}

/* Hero bottom meta row with dot */
.hero-bottom .hero-meta {
  display: flex; gap: 28px; align-items: center; flex-wrap: wrap;
}
.hero-bottom .hero-meta .dot {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--mint); margin-right: 8px;
  box-shadow: 0 0 0 3px rgba(31,181,158,.2);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(31,181,158,.2); }
  50% { box-shadow: 0 0 0 6px rgba(31,181,158,0); }
}

/* Hero variant: centered (Lionsoul style) */
.hero.variant-centered {
  min-height: auto;
  background: var(--paper);
  color: var(--ink);
  padding: clamp(100px, 12vw, 160px) 0 0;
  margin-top: 0;
}
.hero.variant-centered .hero-bg { display: none; }
.hero.variant-centered .hero-frame { display: none; }
.hero.variant-centered .hero-content { padding-bottom: 64px; justify-content: center; text-align: center; }
.hero.variant-centered .hero-content h1 {
  color: var(--ink);
  font-size: clamp(40px, 5.4vw, 76px);
  max-width: 20ch;
  margin: 0 auto;
}
.hero.variant-centered .hero-content h1 em { color: var(--mint); }
.hero.variant-centered .hero-content .sub { margin: 36px auto 0; text-align: left; color: var(--mute); max-width: 48ch; font-size: 17px; }
.hero.variant-centered .hero-content .actions { justify-content: flex-start; margin-top: 28px; }
.hero.variant-centered .hero-content .actions .link-arrow { color: var(--mute); border-color: var(--mute); }
.hero.variant-centered .hero-inner-flex {
  max-width: 720px; margin: 0 auto; text-align: left;
  display: flex; flex-direction: column; align-items: flex-start;
}
.hero.variant-centered .hero-split-rule {
  border-top: 1px solid var(--rule-soft);
  margin: 48px 0 0;
}
.hero.variant-centered .hero-img-row {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 32px;
  padding: 48px 0 0;
}
.hero.variant-centered .hero-img-row .img {
  aspect-ratio: 16/10;
  background-size: cover; background-position: center;
  border-radius: var(--radius);
}
.hero.variant-centered .hero-img-row .img-1 { background-image: url("assets/placeholder-hero.svg"); }
.hero.variant-centered .hero-img-row .img-2 { background-image: url("assets/placeholder-team.svg"); }
@media (max-width: 800px) { .hero.variant-centered .hero-img-row { grid-template-columns: 1fr; } }

/* Hero variant: split */
.hero.variant-split {
  min-height: 90vh;
  background: var(--teal);
  color: #fff;
  padding: 0;
  margin-top: -72px; padding-top: 72px;
}
.hero.variant-split .hero-bg { display: none; }
.hero.variant-split .hero-frame { display: none; }
.hero.variant-split .hero-content {
  padding: 0; align-items: stretch;
}
.hero.variant-split .split-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; width: 100%; min-height: 82vh;
}
.hero.variant-split .split-text {
  padding: clamp(60px, 8vw, 100px) clamp(32px, 5vw, 80px) clamp(60px, 8vw, 100px) clamp(32px, 5vw, 80px);
  display: flex; flex-direction: column; justify-content: flex-end;
}
.hero.variant-split .split-image {
  background-image:
    linear-gradient(180deg, rgba(14,74,68,.2), rgba(14,74,68,.4)),
    url("assets/placeholder-office.svg");
  background-size: cover; background-position: center;
}
@media (max-width: 900px) {
  .hero.variant-split .split-grid { grid-template-columns: 1fr; min-height: auto; }
  .hero.variant-split .split-image { min-height: 400px; }
}

/* ---------- What we do ---------- */
.whatwedo {
  padding: clamp(80px, 10vw, 130px) 0;
  background: var(--paper);
}
.whatwedo .section-head h2 { max-width: 20ch; }
.whatwedo .lede {
  font-size: 18px; color: var(--mute); max-width: 56ch; margin-top: 20px; line-height: 1.55;
}
.wwd-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  margin-top: 72px;
  border-top: 1px solid var(--rule-soft);
}
.wwd-card {
  padding: 40px 32px 48px;
  border-right: 1px solid var(--rule-soft);
  position: relative;
  transition: background .3s;
  min-height: 320px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.wwd-card:last-child { border-right: none; }
.wwd-card:hover { background: #fff; }
.wwd-card .icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--teal); color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
}
.wwd-card .icon svg { width: 20px; height: 20px; }
.wwd-card h4 { font-size: 20px; font-weight: 500; margin-bottom: 12px; letter-spacing: -0.01em; }
.wwd-card p { color: var(--mute); font-size: 15px; line-height: 1.55; }
.wwd-card .num { font-family: var(--mono); font-size: 11px; color: var(--teal); letter-spacing: 0.14em; text-transform: uppercase; margin-top: 24px; }
@media (max-width: 1000px) { .wwd-grid { grid-template-columns: repeat(2, 1fr); } .wwd-card:nth-child(2) { border-right: none; } .wwd-card:nth-child(1), .wwd-card:nth-child(2) { border-bottom: 1px solid var(--rule-soft); } }
@media (max-width: 600px) { .wwd-grid { grid-template-columns: 1fr; } .wwd-card { border-right: none; border-bottom: 1px solid var(--rule-soft); min-height: auto; } }

/* ---------- Product cards (Lionsoul style) ---------- */
.products {
  padding: clamp(80px, 10vw, 130px) 0;
  background: #fff;
  border-top: 1px solid var(--rule-soft);
}
.products-head {
  display: grid; grid-template-columns: 260px 1fr auto; gap: 48px; align-items: start;
  margin-bottom: 56px;
}
.products-head .side {
  font-size: 14px; color: var(--mute); line-height: 1.6; max-width: 28ch;
}
.products-head h2 { max-width: 20ch; }
@media (max-width: 1000px) {
  .products-head { grid-template-columns: 1fr; }
  .products-head .btn { justify-self: start; }
}

.pc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.pc-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--ink-2);
}
.pc-card .img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .7s var(--ease);
}
.pc-card:hover .img { transform: scale(1.04); }
.pc-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.8) 100%);
}
.pc-card .arrow-btn {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  width: 36px; height: 36px; background: #fff; color: var(--ink);
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  transition: background .2s;
}
.pc-card:hover .arrow-btn { background: var(--mint); color: #fff; }
.pc-card .pc-body {
  position: absolute; left: 24px; right: 24px; bottom: 24px; z-index: 2;
  color: #fff;
}
.pc-card .pc-body h4 {
  font-size: 20px; font-weight: 500; line-height: 1.2;
  max-width: 20ch;
}
.pc-card .pc-body .tag {
  display: inline-block;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--mint); margin-bottom: 10px;
}
.pc-descriptions {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 24px;
}
.pc-descriptions .pc-desc {
  font-size: 14px; color: var(--mute); line-height: 1.55;
}
@media (max-width: 900px) {
  .pc-grid, .pc-descriptions { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .pc-grid, .pc-descriptions { grid-template-columns: 1fr; }
}

/* ---------- How it works (3 steps) ---------- */
.howitworks {
  padding: clamp(80px, 10vw, 130px) 0;
  background: var(--paper-2);
}
.hiw-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  margin-top: 56px;
  border-top: 1px solid var(--rule-soft);
}
.hiw-step {
  padding: 40px 32px 48px;
  border-right: 1px solid var(--rule-soft);
  position: relative;
}
.hiw-step:last-child { border-right: none; }
.hiw-step .num {
  font-family: var(--display);
  font-size: 80px; font-weight: 300;
  color: var(--teal);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}
.hiw-step h4 { font-size: 22px; font-weight: 500; margin-bottom: 12px; letter-spacing: -0.01em; }
.hiw-step p { color: var(--mute); line-height: 1.55; font-size: 15px; }
@media (max-width: 900px) { .hiw-grid { grid-template-columns: 1fr; } .hiw-step { border-right: none; border-bottom: 1px solid var(--rule-soft); } .hiw-step:last-child { border-bottom: none; } }

/* ---------- Segments ---------- */
.segments {
  padding: clamp(80px, 10vw, 130px) 0;
  background: #fff;
}
.seg-layout { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: start; }
.seg-layout .text h2 { max-width: 18ch; }
.seg-layout .text .quote {
  font-family: var(--display);
  font-size: 22px; font-weight: 300; line-height: 1.4;
  font-style: italic;
  color: var(--ink-2);
  border-left: 3px solid var(--teal);
  padding-left: 20px;
  margin: 32px 0;
  max-width: 44ch;
}
.seg-layout .text p { color: var(--mute); font-size: 16px; line-height: 1.6; max-width: 52ch; }

.seg-tags {
  margin-top: 40px;
  display: flex; flex-wrap: wrap; gap: 10px;
}
.seg-tag {
  padding: 10px 18px;
  border: 1px solid var(--rule);
  border-radius: 100px;
  font-size: 13px;
  color: var(--ink-2);
  transition: all .25s;
  cursor: default;
}
.seg-tag:hover { background: var(--teal); color: #fff; border-color: var(--teal); }

.seg-image {
  aspect-ratio: 4/5;
  background-size: cover; background-position: center;
  border-radius: var(--radius);
  background-image: url("https://images.unsplash.com/photo-1554224155-8d04cb21cd6c?auto=format&fit=crop&w=1400&q=80");
}
@media (max-width: 1000px) { .seg-layout { grid-template-columns: 1fr; gap: 56px; } }

/* ---------- Journey scroll-driven timeline ---------- */
.journey { padding: clamp(80px, 10vw, 130px) 0; background: var(--paper-2); overflow: hidden; }

.jt-track {
  position: relative;
  margin-top: 64px;
  padding: 40px 0 120px;
}
.jt-rail {
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 2px; transform: translateX(-50%);
  background: var(--rule-soft);
}
.jt-rail-fill {
  position: absolute;
  left: 50%; top: 0;
  width: 2px; transform: translateX(-50%);
  background: linear-gradient(180deg, var(--teal), var(--mint));
  box-shadow: 0 0 18px rgba(31,181,158,.5);
  transition: height .15s linear;
  z-index: 1;
}

.jt-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 120px 1fr;
  align-items: start;
  gap: 24px;
  margin-bottom: 140px;
}
.jt-item:last-child { margin-bottom: 0; }

.jt-dot {
  grid-column: 2; justify-self: center;
  position: relative;
  width: 18px; height: 18px;
  display: flex; align-items: center; justify-content: center;
  z-index: 3;
  margin-top: 36px;
}
.jt-dot-inner {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--paper-2);
  border: 2px solid var(--rule);
  transition: all .4s var(--ease);
}
.jt-item.active .jt-dot-inner {
  background: var(--mint);
  border-color: var(--mint);
  box-shadow: 0 0 0 5px rgba(31,181,158,.18), 0 0 22px rgba(31,181,158,.55);
}
.jt-dot-ring {
  position: absolute; inset: -8px;
  border-radius: 50%;
  border: 1px solid var(--mint);
  opacity: 0;
  transition: opacity .4s, transform .6s var(--ease);
  transform: scale(0.6);
}
.jt-item.active .jt-dot-ring {
  opacity: 0.4;
  animation: jtPulse 2.2s ease-out infinite;
}
@keyframes jtPulse {
  0% { transform: scale(0.6); opacity: 0.6; }
  100% { transform: scale(1.8); opacity: 0; }
}

.jt-year {
  grid-row: 1;
  font-family: var(--display);
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--rule);
  transition: color .6s var(--ease), transform .6s var(--ease);
  align-self: start;
}
.jt-item.active .jt-year { color: var(--teal); }

.jt-card {
  grid-row: 1;
  background: #fff;
  border: 1px solid var(--rule-soft);
  border-radius: var(--radius);
  padding: 28px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease), border-color .5s;
}
.jt-item.active .jt-card {
  opacity: 1;
  transform: translateY(0);
  border-color: var(--teal-soft);
}

.jt-tag {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 10px;
}
.jt-card h4 { font-size: 22px; font-weight: 500; margin-bottom: 10px; letter-spacing: -0.01em; }
.jt-card p { color: var(--mute); font-size: 15px; line-height: 1.6; margin-bottom: 20px; }

.jt-thumb {
  aspect-ratio: 16/10;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  background-size: cover; background-position: center;
}
.jt-thumb::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent 0 8px, rgba(255,255,255,.08) 8px 9px);
}
.jt-thumb .overlay-label {
  position: absolute; left: 16px; bottom: 14px; z-index: 1;
  color: #fff; font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
}
.jt-thumb.j1 { background-image: linear-gradient(135deg, var(--teal), var(--ink-2)); }
.jt-thumb.j2 { background-image: linear-gradient(135deg, var(--teal-soft), var(--teal)); }
.jt-thumb.j3 { background-image: linear-gradient(135deg, var(--mint), var(--teal)); }

/* Alternating sides */
.jt-item.left .jt-year { grid-column: 3; text-align: left; padding-left: 8px; }
.jt-item.left .jt-card { grid-column: 1; text-align: right; }
.jt-item.left .jt-tag { text-align: right; }

.jt-item.right .jt-year { grid-column: 1; text-align: right; padding-right: 8px; }
.jt-item.right .jt-card { grid-column: 3; }

/* Connector line from card to dot */
.jt-card { position: relative; }
.jt-item.left .jt-card::after,
.jt-item.right .jt-card::after {
  content: ""; position: absolute; top: 44px;
  width: 28px; height: 1px;
  background: var(--rule);
  transition: background .5s;
}
.jt-item.left .jt-card::after { right: -28px; }
.jt-item.right .jt-card::after { left: -28px; }
.jt-item.active .jt-card::after { background: var(--mint); }

/* End marker */
.jt-end { opacity: 0.6; }
.jt-end .jt-year { font-size: clamp(20px, 2vw, 28px); font-family: var(--sans); color: var(--mute); font-weight: 500; text-transform: uppercase; letter-spacing: 0.12em; }
.jt-card-ghost { background: transparent; border-style: dashed; }
.jt-dot-end .jt-dot-inner { background: var(--paper-2); border: 2px dashed var(--rule); }
.jt-end.active { opacity: 1; }
.jt-end.active .jt-dot-inner { border-style: solid; background: var(--teal); border-color: var(--teal); box-shadow: 0 0 0 5px rgba(14,74,68,.15); }

@media (max-width: 900px) {
  .jt-rail, .jt-rail-fill { left: 20px; }
  .jt-item { grid-template-columns: 40px 1fr; gap: 16px; margin-bottom: 80px; }
  .jt-dot { grid-column: 1; justify-self: center; margin-top: 20px; }
  .jt-item .jt-year { grid-column: 2; text-align: left; padding: 0; font-size: 42px; }
  .jt-item .jt-card { grid-column: 2; text-align: left; }
  .jt-item .jt-tag { text-align: left; }
  .jt-item .jt-card::after { left: -16px; right: auto; width: 16px; top: 30px; }
  .jt-year { grid-row: auto !important; }
  .jt-card { grid-row: auto !important; margin-top: 8px; }
}

/* ---------- CTA band ---------- */
.cta-band {
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--teal);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(31,181,158,.28), transparent 45%),
    radial-gradient(circle at 15% 80%, rgba(31,181,158,.16), transparent 45%);
  pointer-events: none;
}
.cta-band::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(135deg, rgba(255,255,255,.04) 0 1px, transparent 1px 28px);
  pointer-events: none;
  mix-blend-mode: screen;
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band .watermark {
  position: absolute;
  right: -40px; bottom: -120px;
  font-family: var(--display);
  font-size: clamp(280px, 38vw, 520px);
  font-weight: 300;
  line-height: 1;
  color: rgba(31,181,158,.06);
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
}
@media (max-width: 900px) {
  .cta-band .watermark { right: -30px; bottom: -80px; font-size: 280px; }
}
.cta-band .container { position: relative; }
.cta-band .cta-grid {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 64px; align-items: center;
}
.cta-band h2 {
  font-size: clamp(32px, 4vw, 52px);
  color: #fff; max-width: 20ch;
  font-weight: 400;
}
.cta-band h2 em { font-style: normal; color: var(--mint); }
.cta-band .sub { color: rgba(255,255,255,.8); font-size: 17px; line-height: 1.6; margin-top: 24px; max-width: 54ch; }
.cta-band .actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; margin-top: 32px; }
@media (max-width: 900px) { .cta-band .cta-grid { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq-section { padding: clamp(80px, 10vw, 130px) 0; background: var(--paper); }
.faq-section .section-head h2 { max-width: 20ch; }
.faq-list { margin-top: 48px; border-top: 1px solid var(--rule-soft); }
.faq-item { border-bottom: 1px solid var(--rule-soft); }
.faq-q {
  padding: 26px 0;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; gap: 24px;
  font-size: 19px; font-weight: 500; line-height: 1.35;
  transition: color .2s;
}
.faq-q:hover { color: var(--teal); }
.faq-q .plus {
  flex-shrink: 0; width: 32px; height: 32px; border: 1px solid var(--rule); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; transition: all .3s var(--ease);
}
.faq-item.open .faq-q .plus { background: var(--teal); border-color: var(--teal); color: #fff; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a-inner { padding: 0 0 28px; color: var(--mute); font-size: 16px; line-height: 1.65; max-width: 68ch; }
.faq-item.open .faq-a { max-height: 400px; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #fff; padding: 80px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: 56px; }
.footer-brand { margin-bottom: 20px; }
.footer-brand img { height: 56px; max-height: none; width: auto; display: block; }
.footer-tagline { color: rgba(255,255,255,.65); font-size: 15px; line-height: 1.6; max-width: 38ch; }
.footer-col h5 { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(255,255,255,.5); margin: 0 0 18px; font-weight: 500; }
.footer-col a, .footer-col p { display: block; color: rgba(255,255,255,.75); font-size: 14px; padding: 5px 0; transition: color .2s; line-height: 1.5; }
.footer-col a:hover { color: var(--mint); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(255,255,255,.45);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Page hero (internal pages) ---------- */
.page-hero {
  padding: clamp(80px, 10vw, 120px) 0 clamp(56px, 7vw, 80px);
  background: var(--paper);
  border-bottom: 1px solid var(--rule-soft);
}
.page-hero .eyebrow { display: block; margin-bottom: 24px; }
.page-hero h1 { max-width: 22ch; font-size: clamp(40px, 5vw, 64px); }
.page-hero h1 em { font-style: normal; color: var(--mint); }
.page-hero .sub { font-size: 18px; color: var(--mute); max-width: 56ch; margin-top: 28px; line-height: 1.55; }

/* ---------- Form / Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; }
.contact-left { display: flex; flex-direction: column; gap: 28px; }
.contact-ch { border-top: 1px solid var(--rule-soft); padding-top: 16px; }
.contact-ch .k { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--teal); margin-bottom: 6px; }
.contact-ch .v { font-size: 18px; font-weight: 400; line-height: 1.4; color: var(--ink); }
.contact-ch .v:hover { color: var(--teal); }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }

.form-wrap {
  background: #fff;
  border: 1px solid var(--rule-soft);
  padding: 40px;
  display: grid; gap: 20px;
  border-radius: var(--radius);
}
.form-wrap .form-eyebrow { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--teal); font-weight: 500; }
.form-wrap h3 { font-size: 26px; max-width: 24ch; font-weight: 500; letter-spacing: -0.01em; }
.field { display: grid; gap: 6px; }
.field label { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--mute); }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 0;
  border: none; border-bottom: 1px solid var(--rule-soft);
  background: transparent;
  font-family: var(--sans); font-size: 16px;
  color: var(--ink);
  transition: border-color .2s;
  border-radius: 0;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal); }
.field.invalid input, .field.invalid select { border-color: #C3522B; }
.field .err { font-family: var(--mono); font-size: 11px; color: #C3522B; text-transform: uppercase; letter-spacing: 0.06em; min-height: 14px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }
.form-success {
  background: var(--teal); color: #fff;
  padding: 48px; border-radius: var(--radius);
  display: flex; flex-direction: column; justify-content: center; min-height: 400px;
}
.form-success .check { width: 48px; height: 48px; border: 2px solid var(--mint); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--mint); font-size: 24px; margin-bottom: 24px; }
.form-success h3 { color: #fff; font-size: 26px; font-weight: 500; margin-bottom: 16px; }
.form-success p { color: rgba(255,255,255,.8); font-size: 16px; line-height: 1.55; }

/* ---------- Methodology page ---------- */
.method-phase {
  padding: clamp(80px, 10vw, 120px) 0;
  border-bottom: 1px solid var(--rule-soft);
}
.method-phase:nth-child(even) { background: var(--paper-2); }
.method-phase .grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.method-phase .big-num { font-family: var(--display); font-size: clamp(100px, 14vw, 180px); font-weight: 300; color: var(--teal); line-height: 0.9; letter-spacing: -0.04em; }
.method-phase .phase-label { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--teal); margin-bottom: 16px; }
.method-phase h3 { font-size: 32px; font-weight: 500; letter-spacing: -0.02em; margin-bottom: 24px; max-width: 16ch; }
.method-phase .phase-body { font-size: 17px; line-height: 1.55; color: var(--ink-2); max-width: 52ch; margin-bottom: 40px; }
.method-phase .twocol { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.method-phase .twocol ul { list-style: none; padding: 0; margin: 0; }
.method-phase .twocol ul li { padding: 12px 0; border-top: 1px solid var(--rule-soft); font-size: 15px; }
.method-phase .twocol .kpi { font-family: var(--mono); font-size: 13px; line-height: 1.8; color: var(--ink-2); text-transform: uppercase; letter-spacing: 0.04em; border-top: 1px solid var(--rule-soft); padding-top: 16px; }
@media (max-width: 900px) { .method-phase .grid { grid-template-columns: 1fr; } .method-phase .twocol { grid-template-columns: 1fr; } }

/* ---------- For-whom page ---------- */
.forwhom-hero-img {
  margin-top: 40px;
  aspect-ratio: 21/9;
  background-image:
    linear-gradient(rgba(11,26,26,.3), rgba(11,26,26,.5)),
    url("https://images.unsplash.com/photo-1587293852726-70cdb56c2866?auto=format&fit=crop&w=2000&q=80");
  background-size: cover; background-position: center;
  border-radius: var(--radius);
}

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Modal ---------- */
.modal-backdrop {
  position: fixed; inset: 0; background: rgba(11,26,26,.82);
  backdrop-filter: blur(8px);
  display: flex; align-items: flex-start; justify-content: center;
  padding: 60px 24px;
  z-index: 100;
  overflow-y: auto;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.modal-backdrop.open { opacity: 1; pointer-events: auto; }
.modal {
  background: #fff; color: var(--ink);
  max-width: 860px; width: 100%; border-radius: var(--radius);
  overflow: hidden;
  transform: translateY(20px); transition: transform .3s var(--ease);
}
.modal-backdrop.open .modal { transform: translateY(0); }
.modal-head { padding: 40px 48px 24px; border-bottom: 1px solid var(--rule-soft); position: relative; }
.modal-head .close { position: absolute; top: 20px; right: 20px; width: 40px; height: 40px; border: 1px solid var(--rule-soft); background: transparent; cursor: pointer; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.modal-head .close:hover { background: var(--teal); color: #fff; border-color: var(--teal); }
.modal-head .tag { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--teal); margin-bottom: 12px; }
.modal-head h3 { font-size: 28px; font-weight: 500; max-width: 26ch; line-height: 1.2; }
.modal-body { padding: 32px 48px 48px; display: grid; gap: 28px; }
.modal-body .block h5 { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--teal); margin: 0 0 10px; font-weight: 500; }
.modal-body .block p { font-size: 16px; line-height: 1.55; color: var(--ink-2); }
.modal-body .metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; border-top: 1px solid var(--rule-soft); padding-top: 24px; }
.modal-body .metric .m-label { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--mute); }
.modal-body .metric .m-val { font-family: var(--display); font-size: 32px; font-weight: 400; color: var(--teal); margin-top: 4px; }
.modal-body .disclaimer { font-family: var(--mono); font-size: 11px; color: var(--mute); border-top: 1px dashed var(--rule-soft); padding-top: 16px; text-transform: uppercase; letter-spacing: 0.06em; }
@media (max-width: 700px) { .modal-head, .modal-body { padding-left: 28px; padding-right: 28px; } .modal-body .metrics { grid-template-columns: 1fr; } }

/* ---------- Stats strip (dark) ---------- */
.stats-dark {
  background: var(--ink);
  color: #fff;
  padding: 72px 0;
}
.stats-dark .row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.stats-dark .cell { padding: 56px 32px; border-right: 1px solid rgba(255,255,255,.12); }
.stats-dark .cell:last-child { border-right: none; }
.stats-dark .cell .label { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(255,255,255,.6); }
.stats-dark .cell .val { font-family: var(--display); font-size: clamp(56px, 7vw, 88px); font-weight: 300; margin: 16px 0; line-height: 1; letter-spacing: -0.03em; color: #fff; }
.stats-dark .cell .val sup { color: var(--mint); font-size: 0.5em; }
.stats-dark .cell .note { color: rgba(255,255,255,.6); font-size: 14px; max-width: 24ch; }
@media (max-width: 900px) { .stats-dark .row { grid-template-columns: 1fr; } .stats-dark .cell { border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); } .stats-dark .cell:last-child { border-bottom: none; } }

/* ---------- About page ---------- */
.about-intro { display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; align-items: start; }
.about-intro .big-text { font-family: var(--display); font-size: 28px; font-weight: 300; line-height: 1.35; color: var(--ink); max-width: 32ch; }
.about-intro .big-text em { color: var(--teal); font-style: italic; }
.about-intro .meta { display: grid; gap: 16px; }
.about-intro .meta .item { padding: 14px 0; border-top: 1px solid var(--rule-soft); display: grid; gap: 4px; }
.about-intro .meta .k { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--mute); }
.about-intro .meta .v { font-size: 16px; color: var(--ink); }
@media (max-width: 900px) { .about-intro { grid-template-columns: 1fr; } }

.principles {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
  margin-top: 56px; border: 1px solid var(--rule-soft); border-radius: var(--radius); overflow: hidden;
}
.principle {
  padding: 40px; background: #fff;
  border-right: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
}
.principle:nth-child(2n) { border-right: none; }
.principle:nth-child(n+3) { border-bottom: none; }
.principle .label { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--teal); margin-bottom: 16px; }
.principle h4 { font-size: 22px; font-weight: 500; margin-bottom: 16px; letter-spacing: -0.01em; }
.principle p { color: var(--mute); line-height: 1.55; }
@media (max-width: 700px) { .principles { grid-template-columns: 1fr; } .principle { border-right: none; border-bottom: 1px solid var(--rule-soft) !important; } .principle:last-child { border-bottom: none !important; } }

/* ---------- Tweaks panel ---------- */
.tweaks-panel {
  position: fixed; bottom: 22px; right: 92px; z-index: 70;
  background: var(--ink); color: #fff;
  padding: 20px; border-radius: 6px;
  min-width: 280px;
  box-shadow: 0 16px 50px -10px rgba(0,0,0,.5);
  display: none;
}
.tweaks-panel.open { display: block; }
.tweaks-panel h6 { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--mint); margin: 0 0 16px; font-weight: 500; }
.tweaks-panel label { display: block; font-family: var(--mono); font-size: 11px; color: rgba(255,255,255,.6); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.1em; }
.tweaks-panel .seg { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin-bottom: 14px; }
.tweaks-panel .seg button {
  padding: 10px 8px; background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,.2); font-family: var(--mono); font-size: 11px; cursor: pointer; text-transform: uppercase; letter-spacing: 0.05em;
  border-radius: 2px;
}
.tweaks-panel .seg button:hover { border-color: var(--mint); }
.tweaks-panel .seg button.active { background: var(--mint); color: var(--ink); border-color: var(--mint); }


/* ---------- Expansion gallery (horizontal scroll) ---------- */
.expansion { padding: clamp(80px, 10vw, 130px) 0 clamp(60px, 8vw, 100px); background: var(--ink); color: #fff; overflow: hidden; }
.expansion h2 { color: #fff; max-width: 18ch; }
.expansion h2 em { color: var(--mint); font-style: normal; }
.expansion .eyebrow { color: var(--mint); }
.expansion-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; margin-bottom: 56px; flex-wrap: wrap; }
.expansion-nav { display: flex; gap: 8px; }
.ex-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
  background: transparent;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: all .2s var(--ease);
}
.ex-btn:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.ex-btn.primary { background: var(--mint); color: var(--ink); border-color: var(--mint); }
.ex-btn.primary:hover { background: #fff; border-color: #fff; transform: translateX(3px); }
.expansion-track {
  display: flex; gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 0 24px;
  scrollbar-width: thin;
  scrollbar-color: var(--mint) rgba(255,255,255,.1);
}
.expansion-track::-webkit-scrollbar { height: 6px; }
.expansion-track::-webkit-scrollbar-track { background: rgba(255,255,255,.08); border-radius: 3px; }
.expansion-track::-webkit-scrollbar-thumb { background: var(--mint); border-radius: 3px; }
.expansion-spacer { flex: 0 0 max(32px, calc((100vw - 1240px) / 2)); }
.expansion-card {
  flex: 0 0 clamp(280px, 38vw, 480px);
  margin: 0;
  scroll-snap-align: start;
  display: flex; flex-direction: column; gap: 16px;
}
.expansion-img {
  aspect-ratio: 4/5;
  background-size: cover; background-position: center;
  border-radius: var(--radius);
  transition: transform .5s var(--ease);
  box-shadow: 0 20px 60px -20px rgba(0,0,0,.5);
}
.expansion-card:hover .expansion-img { transform: translateY(-4px); }
.expansion-card figcaption {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,.7);
}
.expansion-card figcaption .num { color: var(--mint); font-weight: 500; }
