/* ============================================================
   AI Streamliners — Vanilla V2
   Source of truth: docs/website_structure_brief_v2.md + docs/design.md
   ============================================================ */

:root {
  --bg: #fafaf7;
  --surface: #ffffff;
  --ink: #0a0a0a;
  --text: #2a2a2a;
  --muted: #6b6b6b;
  --border: #e8e8e3;
  --border-strong: #d8d8d0;

  --sand: #efe8dc;
  --champagne: #d8cdbb;

  --radius-lg: 22px;
  --radius-md: 16px;

  --shadow-soft: 0 1px 2px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(0, 0, 0, 0.04);
  --shadow-hover: 0 1px 2px rgba(0, 0, 0, 0.06), 0 16px 38px rgba(0, 0, 0, 0.08);

  --container: 1200px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 200ms;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-underline-offset: 3px;
}

::selection {
  background: color-mix(in oklab, var(--champagne) 55%, transparent);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.section {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  overflow-x: hidden;
  overflow-x: clip;
}

.section.featured,
.section.sectors,
.section.method,
.section.process,
.section.final-cta {
  padding-top: clamp(56px, 6vw, 96px);
  padding-bottom: clamp(56px, 6vw, 96px);
}

/* Decorative section art (blurred so no readable text in images) */
.section-art {
  position: absolute;
  inset: -24px 0 auto 0;
  height: 260px;
  pointer-events: none;
  opacity: 0.22;
  filter: blur(10px) saturate(0.9);
  mask-image: radial-gradient(60% 70% at 35% 35%, #000 0%, transparent 70%);
}

.section-art-method {
  background: url("assets/visuals/primitives.png") center/cover no-repeat;
}

.section-art-ops {
  background: url("assets/visuals/command-center.png") center/cover no-repeat;
}

.method .container,
.services .container {
  position: relative;
  overflow-x: hidden;
  overflow-x: clip;
}

@media (min-width: 900px) {
  .section {
    padding: 76px 0;
  }
  .section.hero {
    padding: 42px 0 66px;
    border-top: none;
  }
  .section-art {
    height: 320px;
    inset: -36px 0 auto 0;
    opacity: 0.2;
  }
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin: 0;
}

.h1,
.h2,
.h3 {
  font-family: Fraunces, Georgia, serif;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin: 0;
}

.h1 {
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  margin-top: 14px;
}

.h2 {
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.12;
  margin-top: 12px;
}

.h3 {
  font-size: 22px;
  line-height: 1.2;
  margin-top: 10px;
}

em {
  font-style: italic;
  color: var(--ink);
}

.lead {
  font-size: 16px;
  color: var(--muted);
  max-width: 60ch;
  margin: 18px 0 0;
}

.body {
  margin: 14px 0 0;
  color: var(--muted);
}

.muted {
  color: var(--muted);
}

/* ============================================================
   Header / Nav
   ============================================================ */

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 10px 12px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--ink);
  transform: translateY(-200%);
  transition: transform var(--dur) var(--ease);
  z-index: 999;
}

.skip-link:focus {
  transform: translateY(0);
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--champagne) 55%, transparent);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 247, 0.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  border-bottom-color: var(--border);
}

.header-inner {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo-img {
  display: block;
  height: 28px;
  width: auto;
  max-width: min(200px, 48vw);
}

.brand--footer .brand-logo-img--footer {
  height: 26px;
  max-width: 220px;
}

.brand:focus-visible {
  outline: none;
  border-radius: 8px;
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--champagne) 55%, transparent);
}

.nav {
  display: none;
  gap: 18px;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 999px;
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}

.nav-link:hover {
  color: var(--ink);
  background: color-mix(in oklab, var(--sand) 55%, transparent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-actions .btn-primary {
  display: none;
}

/* Language switcher (desktop) */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  user-select: none;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px;
  background: color-mix(in oklab, var(--surface) 90%, var(--sand));
}

.lang-btn {
  border: none;
  background: transparent;
  color: var(--muted);
  font: inherit;
  padding: 7px 10px;
  border-radius: 999px;
  cursor: pointer;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}

.lang-btn:hover {
  background: color-mix(in oklab, var(--sand) 55%, transparent);
  color: var(--ink);
}

.lang-btn.is-active {
  background: var(--ink);
  color: var(--bg);
}

.lang-sep {
  opacity: 0.4;
  font-size: 10px;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.nav-toggle-bars {
  width: 18px;
  height: 12px;
  position: relative;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
}

.nav-toggle-bars::before {
  top: 0;
}
.nav-toggle-bars::after {
  bottom: 0;
}

@media (min-width: 900px) {
  .nav {
    display: flex;
  }
  .header-actions .btn-primary {
    display: inline-flex;
  }
  .nav-toggle {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: blur(10px);
}

.mobile-menu-inner {
  padding: 20px;
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu-title {
  font-weight: 600;
  color: var(--ink);
}

.mobile-menu-close {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.mobile-menu-links {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.mobile-menu-link {
  display: block;
  text-decoration: none;
  padding: 16px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--ink);
}

.mobile-menu-cta {
  margin-top: 16px;
}

/* ============================================================
   Buttons
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.01em;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease),
    border-color var(--dur) var(--ease), color var(--dur) var(--ease);
  border: 1px solid transparent;
  user-select: none;
}

.btn:focus-visible,
.tab:focus-visible,
.nav-toggle:focus-visible,
.mobile-menu-close:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--champagne) 55%, transparent);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--ink);
  color: var(--bg);
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  background: color-mix(in oklab, var(--ink) 92%, white);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border-strong);
}

.btn-ghost:hover {
  background: color-mix(in oklab, var(--sand) 65%, transparent);
}

.btn-full {
  width: 100%;
}

/* ============================================================
   Hero
   ============================================================ */

.hero {
  border-top: none;
  background: linear-gradient(to bottom, var(--bg), color-mix(in oklab, var(--sand) 60%, var(--bg)));
  padding-top: 36px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -15%;
  right: -10%;
  width: 70%;
  height: 90%;
  z-index: -2;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(216, 205, 187, 0.55), transparent 65%);
  filter: blur(20px);
  opacity: 0.85;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.4;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='3' stitchTiles='stitch' seed='2'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.42 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 240px 240px;
  mix-blend-mode: multiply;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 28px;
}

.hero-grid::before {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 50%;
  height: 60%;
  z-index: -2;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(239, 232, 220, 0.7), transparent 60%);
  filter: blur(30px);
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: stretch;
    gap: 46px;
  }
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.metrics {
  margin-top: 28px;
  display: grid;
  gap: 10px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

@media (min-width: 700px) {
  .metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.metric dt {
  font-family: Fraunces, Georgia, serif;
  font-size: 20px;
  color: var(--ink);
}

.metric dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.hero-media .media-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 14px;
  box-shadow: var(--shadow-soft);
}

/* Premium WhatsApp mock (Hero) */
.wa-mock {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #fffdf9, #faf6ef);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 -8px 22px rgba(0, 0, 0, 0.04) inset,
    0 2px 6px rgba(0, 0, 0, 0.06),
    0 24px 60px -12px rgba(10, 10, 10, 0.18);
  overflow: hidden;
  height: 100%;
  transition: transform 600ms var(--ease);
}

@media (min-width: 900px) {
  .wa-mock {
    transform: perspective(2400px) rotateY(-3deg) rotateX(1deg) translateZ(0);
    transition: transform 700ms var(--ease);
    transform-origin: center center;
  }
  .hero-media:hover .wa-mock {
    transform: perspective(2400px) rotateY(0deg) rotateX(0deg) translateZ(0);
  }
}

.wa-top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px 14px;
  border-bottom: 1px solid var(--border);
}

.wa-avatar {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--sand), #f6f2ea);
  border: 1px solid var(--border);
  position: relative;
}

.wa-avatar::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--ink);
}

.wa-name {
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.2;
}

.wa-status {
  margin: 2px 0 0;
  font-size: 12px;
  color: var(--muted);
}

.wa-badges {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.chip {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: color-mix(in oklab, var(--sand) 45%, var(--surface));
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
}

.wa-body {
  background: linear-gradient(180deg, #f3ecdf, #efe5d6);
  padding: 14px;
  display: grid;
  gap: 10px;
}

.wa-msg {
  max-width: 88%;
  border-radius: 18px;
  border: 1px solid rgba(10, 10, 10, 0.06);
  background: rgba(255, 255, 255, 0.92);
  padding: 10px 12px;
}

.wa-msg-user {
  margin-left: auto;
}

.wa-msg-agent {
  margin-right: auto;
  background: #ffffff;
}

.wa-text {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.45;
}

.wa-meta {
  margin: 6px 0 0;
  font-size: 11px;
  color: color-mix(in oklab, var(--muted) 75%, transparent);
}

.wa-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.tag {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(10, 10, 10, 0.08);
  background: rgba(250, 250, 247, 0.7);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
}

.wa-cta {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.wa-status-panel {
  margin-top: 8px;
  border: 1px solid rgba(10, 10, 10, 0.1);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 14px;
  padding: 10px 12px;
  display: grid;
  gap: 6px;
}

.wa-status-panel p {
  margin: 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  color: var(--muted);
  font-size: 12px;
}

.wa-status-panel strong {
  color: var(--ink);
  font-weight: 600;
}

.wa-btn {
  height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--bg);
  font-weight: 600;
  cursor: pointer;
}

.wa-btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: color-mix(in oklab, var(--ink) 25%, var(--border));
}

.wa-footnote {
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  letter-spacing: -0.01em;
}

.media-placeholder {
  border-radius: calc(var(--radius-lg) - 6px);
  background: linear-gradient(180deg, var(--sand), #f6f2ea);
  border: 1px dashed color-mix(in oklab, var(--border-strong) 70%, transparent);
  min-height: 320px;
  display: grid;
  place-items: center;
  color: color-mix(in oklab, var(--muted) 80%, transparent);
}

.media-placeholder-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ============================================================
   Featured (CarloVogue)
   ============================================================ */

.featured {
  background:
    radial-gradient(circle at 78% 18%, rgba(216, 205, 187, 0.38), transparent 32%),
    color-mix(in oklab, var(--sand) 38%, var(--bg));
}

.featured-title {
  font-size: clamp(28px, 2.8vw, 38px);
  max-width: 12ch;
}

.featured-grid {
  display: grid;
  gap: 28px;
  position: relative;
  border: 1px solid color-mix(in oklab, var(--border-strong) 72%, white);
  border-radius: 34px;
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 253, 247, 0.86)),
    radial-gradient(circle at 95% 0%, rgba(216, 205, 187, 0.32), transparent 38%);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.featured-grid::before {
  content: "";
  position: absolute;
  inset: 16px 16px auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, color-mix(in oklab, var(--champagne) 72%, transparent), transparent);
  pointer-events: none;
}

.featured-copy {
  position: relative;
  z-index: 1;
  align-self: center;
}

@media (min-width: 900px) {
  .featured-grid {
    grid-template-columns: 0.82fr 1.18fr;
    gap: 34px;
    align-items: center;
    padding: 34px;
  }
}

.mini-stats {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.featured-kicker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.status-pill {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
}

.featured-media {
  position: relative;
  z-index: 1;
}

.showcase-frame {
  border-radius: 30px;
  border: 1px solid color-mix(in oklab, var(--border-strong) 72%, white);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.44), rgba(241, 232, 218, 0.74)),
    radial-gradient(circle at 44% 12%, rgba(255, 255, 255, 0.82), transparent 36%);
  padding: clamp(14px, 2.2vw, 22px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  position: relative;
  overflow: hidden;
}

.showcase-frame::after {
  content: "";
  position: absolute;
  inset: auto 12% 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.08);
  filter: blur(18px);
  pointer-events: none;
}

.shot-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  align-items: center;
  justify-items: center;
  position: relative;
  z-index: 1;
}

.shot {
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 18px;
  border: 1px solid color-mix(in oklab, var(--border-strong) 76%, white);
  background: var(--surface);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), 0 16px 36px rgba(0, 0, 0, 0.11);
  transition: transform 480ms var(--ease), box-shadow 480ms var(--ease);
}

.shot-main {
  grid-row: 1 / span 2;
  max-height: 590px;
  transform: translateY(4px);
}

.shot-support {
  max-height: 270px;
  transform: translateY(-2px);
}

.shot-support-low {
  transform: translateY(16px);
}

.shot-grid:hover .shot-main {
  transform: translateY(0) scale(1.015);
}

.shot-grid:hover .shot-support {
  transform: translateY(-4px) scale(0.99);
}

.shot-grid:hover .shot-support-low {
  transform: translateY(12px) scale(0.99);
}

@media (max-width: 699px) {
  .featured-grid {
    padding: 16px;
    border-radius: 26px;
  }
  .featured-title {
    max-width: 14ch;
  }
  .showcase-frame {
    margin-inline: 0;
  }
  .shot-grid {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding: 2px 2px 12px;
    scroll-snap-type: x mandatory;
  }
  .shot-main,
  .shot-support {
    grid-row: auto;
    flex: 0 0 min(74vw, 310px);
    width: min(74vw, 310px);
    max-height: 520px;
    transform: none;
    scroll-snap-align: center;
  }
}

.shot-labels {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.proof-row {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  gap: 8px 10px;
}

.proof-row .chip,
.shot-labels .chip {
  background: rgba(255, 255, 255, 0.62);
  border-color: color-mix(in oklab, var(--border-strong) 72%, white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.64);
}

@media (max-width: 520px) {
  .proof-row {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Cards + grids
   ============================================================ */

.card-grid {
  margin-top: 22px;
  display: grid;
  gap: 14px;
}

@media (min-width: 900px) {
  .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
    border-color var(--dur) var(--ease);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: color-mix(in oklab, var(--border-strong) 80%, transparent);
}

.card-num {
  margin: 0;
  font-family: Fraunces, Georgia, serif;
  color: color-mix(in oklab, var(--muted) 70%, transparent);
  font-size: 18px;
  opacity: 0.8;
  letter-spacing: 0.04em;
}

.impact-label {
  margin: 12px 0 0;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.pill {
  margin: 16px 0 0;
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: color-mix(in oklab, var(--sand) 55%, var(--surface));
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
}

/* ============================================================
   Tabs (sector selector)
   ============================================================ */

.tabs {
  margin-top: 18px;
}

.sector-context {
  margin-top: 18px;
  padding: 16px 16px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  display: grid;
  gap: 10px;
}

.sector-insight {
  margin: 0;
  grid-column: 1 / -1;
  color: var(--ink);
  font-weight: 500;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

@media (min-width: 700px) {
  .sector-context {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }
  .context-item + .context-item {
    border-left: 1px solid var(--border);
    padding-left: 14px;
  }
}

.context-label {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.context-value {
  margin: 8px 0 0;
  font-family: Fraunces, Georgia, serif;
  color: var(--ink);
  font-size: 18px;
  letter-spacing: -0.01em;
}

.tablist {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
}

.tab {
  scroll-snap-align: start;
  position: relative;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: transparent;
  color: var(--muted);
  padding: 12px 16px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
    border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
  white-space: nowrap;
}

.tab:hover {
  transform: translateY(-1px);
  color: var(--ink);
  background: color-mix(in oklab, var(--sand) 55%, transparent);
}

.tab.is-active {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
  box-shadow: 0 6px 16px -6px rgba(10, 10, 10, 0.32);
  transform: translateY(-1px);
}

.tab:active {
  transform: scale(0.98);
}

.panel {
  margin-top: 18px;
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.panel.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sectors-footer {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #fffdf9, #f8f3ea);
  padding: 16px;
}

@media (min-width: 900px) {
  .sectors-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
  }
}

.btn-diagnostic {
  min-width: 210px;
  background: #fff;
  border-color: color-mix(in oklab, var(--ink) 12%, var(--border));
}

.btn-diagnostic:hover {
  border-color: color-mix(in oklab, var(--ink) 24%, var(--border));
  box-shadow: var(--shadow-soft);
}

/* ============================================================
   Method primitives
   ============================================================ */

.method-system {
  margin-top: 26px;
  padding: 18px;
  border-radius: 30px;
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 253, 248, 0.92)),
    radial-gradient(circle at 15% 0%, rgba(216, 205, 187, 0.34), transparent 34%);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.method-system::before {
  content: "";
  position: absolute;
  inset: 16px 16px auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, color-mix(in oklab, var(--champagne) 78%, transparent), transparent);
  pointer-events: none;
}

.flow {
  padding: 12px;
  border-radius: 22px;
  border: 1px solid color-mix(in oklab, var(--border-strong) 62%, white);
  background: rgba(255, 255, 255, 0.72);
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: -0.01em;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.flow-step {
  position: relative;
  color: var(--ink);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #fff, #fbf8f1);
  padding: 10px 14px 10px 34px;
  border-radius: 999px;
  white-space: nowrap;
  scroll-snap-align: start;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.flow-step::before {
  content: attr(data-step);
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: color-mix(in oklab, var(--sand) 48%, white);
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0;
}

.flow-step-active {
  border-color: color-mix(in oklab, var(--ink) 22%, var(--border));
  background: var(--ink);
  color: var(--bg);
}

.flow-step-active::before {
  background: rgba(255, 255, 255, 0.14);
  color: var(--bg);
}

.flow-arrow {
  color: color-mix(in oklab, var(--muted) 52%, transparent);
  flex: 0 0 auto;
}

.method-system-note {
  margin-top: 16px;
  padding: 0 4px;
}

.primitives {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

@media (min-width: 900px) {
  .method-system {
    padding: 22px;
  }
  .flow {
    justify-content: space-between;
    overflow: visible;
  }
  .primitives {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
  }
}

.primitive {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
  min-height: 188px;
  border-radius: 20px;
  border: 1px solid color-mix(in oklab, var(--border-strong) 62%, white);
  background:
    linear-gradient(180deg, #fffefb, #ffffff),
    radial-gradient(circle at top left, rgba(216, 205, 187, 0.18), transparent 42%);
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}

.primitive:hover {
  transform: translateY(-3px);
  border-color: color-mix(in oklab, var(--ink) 18%, var(--border));
  box-shadow: var(--shadow-hover);
}

.primitive::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, color-mix(in oklab, var(--champagne) 90%, white), transparent);
}

.primitive-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.primitive-num {
  font-family: Fraunces, Georgia, serif;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--muted);
  font-weight: 600;
}

.primitive-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #fff, #faf6ef);
  display: grid;
  place-items: center;
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
  flex: 0 0 auto;
}

.primitive-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.5;
  color: var(--ink);
}

.primitive-title {
  margin: 0;
  font-family: Fraunces, Georgia, serif;
  font-size: 18px;
  line-height: 1.16;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.primitive-desc {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.quote {
  margin: 18px 4px 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--border);
  color: var(--muted);
  max-width: 74ch;
}

/* ============================================================
   Reels
   ============================================================ */

.reels {
  background: color-mix(in oklab, var(--sand) 30%, var(--bg));
}

.reels-grid {
  margin-top: 22px;
  display: grid;
  gap: 14px;
}

@media (min-width: 900px) {
  .reels-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
}

/* Premium placeholder video cards */
.video-card {
  aspect-ratio: 9 / 16;
  min-height: 420px;
  border-radius: var(--radius-lg);
  border: 1px solid color-mix(in oklab, var(--border) 70%, #000);
  background: radial-gradient(1200px 600px at 20% 0%, rgba(255, 255, 255, 0.06), transparent),
    linear-gradient(180deg, #0a0a0a, #141414);
  overflow: hidden;
  position: relative;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.18), 0 18px 40px rgba(0, 0, 0, 0.26);
}

.video-card-fashion {
  background-image: linear-gradient(rgba(12, 12, 12, 0.45), rgba(12, 12, 12, 0.65)), url("assets/visuals/reel-fashion.png");
  background-size: cover;
  background-position: center;
}

.video-card-hospitality {
  background-image: linear-gradient(rgba(12, 12, 12, 0.45), rgba(12, 12, 12, 0.65)), url("assets/visuals/reel-hospitality.png");
  background-size: cover;
  background-position: center;
}

.video-card-medical {
  background-image: linear-gradient(rgba(12, 12, 12, 0.45), rgba(12, 12, 12, 0.65)), url("assets/visuals/reel-medical.png");
  background-size: cover;
  background-position: center;
}

.video-top {
  padding: 12px 12px;
}

.video-mid {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.play {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  position: relative;
}

.play::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 18px;
  width: 0;
  height: 0;
  border-left: 14px solid rgba(255, 255, 255, 0.9);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.video-timeline {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.video-meta {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 24px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.75);
  font-size: 11px;
  letter-spacing: 0.02em;
}

.caption {
  margin: 10px 0 0;
  color: var(--muted);
}

/* ============================================================
   Founder
   ============================================================ */

.founder-grid {
  display: grid;
  gap: 22px;
}

@media (min-width: 900px) {
  .founder-grid {
    grid-template-columns: 0.55fr 1.45fr;
    gap: 34px;
    align-items: center;
  }
}

.founder-photo .media-placeholder {
  min-height: 380px;
}

.founder-img {
  width: 148px;
  height: 148px;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 999px;
  border: 1px solid color-mix(in oklab, var(--ink) 12%, var(--border));
  background: color-mix(in oklab, var(--sand) 40%, #fff);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 14px 30px rgba(0, 0, 0, 0.07);
  filter: saturate(0.78) contrast(0.97);
}

.founder-photo {
  display: flex;
  justify-content: center;
}

.portrait-card {
  width: min(100%, 260px);
  border-radius: 28px;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at 50% 8%, rgba(216, 205, 187, 0.42), transparent 48%),
    linear-gradient(180deg, #fffdf8, #f4ecdf);
  padding: 18px;
  display: grid;
  justify-items: center;
  gap: 14px;
  box-shadow: var(--shadow-soft);
}

.portrait-meta {
  width: 100%;
  border-top: 1px solid color-mix(in oklab, var(--border) 82%, transparent);
  padding-top: 12px;
  display: grid;
  gap: 2px;
  text-align: center;
}

.portrait-meta span:first-child {
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.portrait-meta span:last-child {
  color: var(--muted);
  font-size: 12px;
}

.founder-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.founder-line {
  margin: 10px 0 0;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.founder-link {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  color: var(--ink);
  background: #fff;
  border: 1px solid color-mix(in oklab, var(--ink) 14%, var(--border));
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.founder-link::before {
  content: none;
}

.founder-link svg {
  width: 16px;
  height: 16px;
  stroke-width: 1.8;
}

.founder-link:hover {
  transform: translateY(-1px);
  border-color: color-mix(in oklab, var(--ink) 28%, var(--border));
  box-shadow: var(--shadow-soft);
}

.founder-points {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

@media (min-width: 900px) {
  .founder-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
}

.point {
  padding: 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: color-mix(in oklab, var(--sand) 25%, var(--surface));
}

.point-title {
  margin: 0;
  font-weight: 600;
  color: var(--ink);
}

.point-desc {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.prose p {
  margin: 0 0 12px;
  color: var(--muted);
}

.legal-note {
  margin: 18px 0 12px;
  color: var(--muted);
}

.logo-marquee {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}

.logo-track {
  display: flex;
  gap: 10px;
  align-items: center;
  min-width: max-content;
  animation: logos-marquee 38s linear infinite;
}

.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}

.logo-item {
  height: 36px;
  min-width: 152px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
}

.logo {
  width: 100%;
  max-width: 132px;
  max-height: 16px;
  object-fit: contain;
  filter: grayscale(100%) contrast(0.85) opacity(0.72);
  transition: filter var(--dur) var(--ease);
}

.logo-item:hover .logo {
  filter: grayscale(100%) contrast(1) opacity(0.92);
}

@keyframes logos-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 10px));
  }
}

/* ============================================================
   Process
   ============================================================ */

.steps {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  position: relative;
  counter-reset: step;
}

.steps::before {
  content: none;
}

.step {
  counter-increment: step;
  padding: 18px 18px 18px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #fffefb, #ffffff);
  position: relative;
}

.step::before {
  content: none;
}

.step::after {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 14px;
  right: 18px;
  font-family: Fraunces, Georgia, serif;
  font-size: 32px;
  color: var(--muted);
  opacity: 0.18;
  letter-spacing: -0.02em;
  pointer-events: none;
}

@media (min-width: 700px) {
  .step::after {
    font-size: 48px;
    top: 18px;
    right: 24px;
  }
}

.step-kicker {
  margin: 0;
  font-weight: 600;
  color: var(--ink);
}

.step-meta {
  margin-top: 10px;
  display: grid;
  gap: 8px;
}

@media (min-width: 700px) {
  .step-meta {
    grid-template-columns: repeat(2, minmax(220px, max-content));
    gap: 10px;
  }
}

.meta {
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid color-mix(in oklab, var(--border-strong) 75%, white);
  background: color-mix(in oklab, var(--sand) 24%, #fff);
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  justify-self: start;
}

.badge {
  display: inline-flex;
  margin-left: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg);
  font-size: 12px;
  font-weight: 600;
}

/* ============================================================
   Final CTA + Footer
   ============================================================ */

.final-cta {
  background: color-mix(in oklab, var(--sand) 55%, var(--bg));
}

.cta-box {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  background: linear-gradient(180deg, #fffdf9, #f7f0e4);
  box-shadow: var(--shadow-soft);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.cta-proof {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cta-proof span {
  display: inline-flex;
  padding: 7px 11px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
}

.btn-disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

/* Offers */
.offer-grid {
  margin-top: 22px;
  display: grid;
  gap: 14px;
}

@media (min-width: 900px) {
  .offer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }
}

.offer {
  position: relative;
  overflow: visible;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 18px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
    border-color var(--dur) var(--ease);
}

.offer:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: color-mix(in oklab, var(--border-strong) 80%, transparent);
}

.offer.is-recommended {
  background: linear-gradient(180deg, #fffefb, #faf4ea);
  border-color: var(--ink);
  border-width: 1.5px;
  box-shadow:
    var(--shadow-soft),
    0 0 0 6px color-mix(in oklab, var(--champagne) 28%, transparent);
  transform: translateY(-4px);
}

.offer.is-recommended:hover {
  transform: translateY(-7px);
  box-shadow:
    var(--shadow-hover),
    0 0 0 6px color-mix(in oklab, var(--champagne) 32%, transparent);
}

.offer.is-recommended::before {
  content: none;
}

.recommended-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: var(--bg);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 6px 16px -4px rgba(10, 10, 10, 0.3);
  z-index: 2;
}

.offer-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.offer-title {
  margin: 0;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.offer-price {
  margin: 0;
  font-family: Fraunces, Georgia, serif;
  color: var(--ink);
}

.offer-meta {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.offer-desc {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.retainer-row {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: color-mix(in oklab, var(--sand) 30%, var(--surface));
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.retainer-label {
  margin: 0;
  font-weight: 600;
  color: var(--ink);
}

.retainer-value {
  margin: 0;
  color: var(--muted);
}

.diagnostic-deliverables {
  background: color-mix(in oklab, var(--sand) 18%, var(--bg));
}

.diag-grid {
  margin-top: 26px;
  display: grid;
  gap: 14px;
}

@media (min-width: 900px) {
  .diag-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
}

.diag-item {
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  display: grid;
  gap: 8px;
  align-content: start;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.diag-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.diag-item svg {
  width: 28px;
  height: 28px;
  color: var(--ink);
  margin-bottom: 4px;
}

/* Work */
.work-grid {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}

@media (min-width: 900px) {
  .work-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
}

.work-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 22px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
    border-color var(--dur) var(--ease);
}

.work-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: color-mix(in oklab, var(--border-strong) 80%, transparent);
}

.work-card.is-live {
  border-color: color-mix(in oklab, var(--ink) 22%, var(--border));
  background:
    linear-gradient(180deg, #fffefb, #faf6ef),
    radial-gradient(circle at 90% 0%, rgba(216, 205, 187, 0.32), transparent 50%);
  box-shadow:
    var(--shadow-soft),
    0 0 0 1px color-mix(in oklab, var(--ink) 8%, transparent);
}

.work-card.is-live:hover {
  border-color: color-mix(in oklab, var(--ink) 35%, var(--border));
  box-shadow: var(--shadow-hover);
}

.status-pill-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: color-mix(in oklab, var(--ink) 92%, white);
  color: var(--bg);
  border: none;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.22);
  animation: pulse-live 2.4s ease-in-out infinite;
}

@keyframes pulse-live {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.22);
  }
  50% {
    opacity: 0.85;
    box-shadow: 0 0 0 6px rgba(74, 222, 128, 0.08);
  }
}

.work-card:not(.is-live) .status-pill {
  background: color-mix(in oklab, var(--sand) 30%, var(--surface));
  color: var(--muted);
}

.work-top {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
}

.work-tags {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  background: var(--bg);
}

.footer-grid {
  display: grid;
  gap: 18px;
}

@media (min-width: 900px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 0.8fr;
    align-items: start;
  }
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--ink);
  text-decoration: underline;
}

.footer-tagline {
  margin: 12px 0 0;
  color: var(--muted);
}

.footer-bottom {
  margin-top: 18px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* ============================================================
   Reveal on scroll (JS toggles .is-revealed)
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 420ms var(--ease), transform 420ms var(--ease);
}

.reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .btn,
  .tab,
  .card,
  .primitive,
  .panel,
  .logo {
    transition: none !important;
  }
  .logo-track {
    animation: none !important;
  }
  .live-dot {
    animation: none;
  }
  .wa-mock,
  .shot {
    transform: none !important;
  }
  .btn:hover,
  .tab:hover,
  .card:hover,
  .primitive:hover,
  .logo-item:hover .logo,
  .shot-grid:hover .shot-main,
  .shot-grid:hover .shot-support,
  .shot-grid:hover .shot-support-low {
    transform: none;
  }
}

@media (max-width: 899px) {
  .container {
    padding: 0 16px;
  }
  .h1 {
    font-size: clamp(34px, 10vw, 46px);
  }
  .hero-media {
    max-width: 520px;
  }
  .video-card {
    min-height: 340px;
  }
  .cta-actions .btn {
    width: 100%;
  }
  .hero {
    padding-top: 14px;
  }
  .founder-img {
    width: 132px;
    height: 132px;
  }
  .portrait-card {
    width: min(100%, 240px);
    margin-inline: auto;
  }
  .method-system {
    padding: 14px;
    border-radius: 24px;
  }
  .primitive {
    min-height: 0;
  }
  .primitive-icon {
    width: 36px;
    height: 36px;
  }
  .recommended-badge {
    top: -10px;
    font-size: 10px;
    padding: 5px 12px;
  }
  .offer.is-recommended {
    transform: translateY(0);
    margin-top: 8px;
  }
  .offer.is-recommended:hover {
    transform: translateY(-3px);
  }
  .section {
    padding: 40px 0;
  }
  .section.featured,
  .section.sectors,
  .section.method,
  .section.process,
  .section.final-cta {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

@media print {
  .site-header,
  #contact {
    display: none !important;
  }
}

/* === V2.1 — Grain & ambient depth === */

.has-grain {
  position: relative;
  isolation: isolate;
}

.has-grain::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.08 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* === V3.0 — HERO MULTI-NICHES === */
.hero-niche-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  margin-bottom: 14px;
  padding: 6px;
  background: color-mix(in oklab, var(--surface) 80%, var(--sand));
  border: 1px solid var(--border);
  border-radius: 14px;
}

.niche-tab {
  border: none;
  background: transparent;
  color: var(--muted);
  padding: 8px 6px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.niche-tab:hover {
  color: var(--ink);
  background: color-mix(in oklab, var(--sand) 50%, transparent);
}

.niche-tab.is-active {
  background: var(--ink);
  color: var(--bg);
  box-shadow: 0 4px 10px -3px rgba(10, 10, 10, 0.25);
}

.niche-tab:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--champagne) 55%, transparent);
}

.hero-pricing-band {
  margin-top: 36px;
  padding: 18px 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, #fffefb, #faf6ef),
    radial-gradient(circle at 50% 0%, rgba(216, 205, 187, 0.32), transparent 60%);
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  box-shadow: var(--shadow-soft);
}

@media (min-width: 700px) {
  .hero-pricing-band {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.pricing-band-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-band-item + .pricing-band-item {
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

@media (min-width: 700px) {
  .pricing-band-item + .pricing-band-item {
    border-top: none;
    padding-top: 0;
    border-left: 1px solid var(--border);
    padding-left: 24px;
  }
}

.pricing-band-item svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.5;
  color: var(--ink);
  flex: 0 0 auto;
}

.pricing-band-label {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.pricing-band-value {
  margin: 4px 0 0;
  font-family: Fraunces, Georgia, serif;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.wa-mock {
  transition:
    opacity 220ms var(--ease),
    transform 220ms var(--ease);
}

.wa-mock.is-fading-out {
  opacity: 0.4;
}

.wa-mock.is-fading-in {
  opacity: 1;
}

@media (min-width: 900px) {
  .hero-grid {
    align-items: start;
  }
  .hero-media {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 540px) {
  .hero-niche-tabs {
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
  }
  .niche-tab {
    font-size: 11px;
    padding: 8px 4px;
  }
}

/* === V3.0 — Bug fixes mobile === */
@media (max-width: 899px) {
  .featured {
    overflow: hidden;
  }
  .featured-grid {
    max-width: 100%;
    overflow: hidden;
  }
  .featured-copy,
  .featured-media {
    min-width: 0;
    max-width: 100%;
  }
  .featured-copy h2,
  .featured-copy p {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  .showcase-frame {
    max-width: 100%;
    overflow: hidden;
  }
}

.tabs {
  position: relative;
}

@media (min-width: 541px) and (max-width: 899px) {
  .tablist {
    -webkit-overflow-scrolling: touch;
    padding-right: 28px;
    mask-image: linear-gradient(to right, #000 0%, #000 88%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, #000 0%, #000 88%, transparent 100%);
  }
}

@media (max-width: 540px) {
  .tablist {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    overflow: visible;
    mask-image: none;
    -webkit-mask-image: none;
    padding-right: 0;
    padding-bottom: 0;
  }
  .tab {
    font-size: 12px;
    padding: 10px 8px;
    text-align: center;
    white-space: normal;
    line-height: 1.2;
  }
}

@media (max-width: 700px) {
  .flow {
    flex-direction: column;
    align-items: stretch;
    overflow: visible;
    gap: 6px;
    padding: 14px;
  }
  .flow-step {
    width: 100%;
    text-align: left;
    padding: 10px 14px 10px 38px;
    white-space: normal;
  }
  .flow-arrow {
    align-self: center;
    transform: rotate(90deg);
    color: color-mix(in oklab, var(--muted) 45%, transparent);
    font-size: 18px;
  }
}

.card-format-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 12px;
  text-decoration: none;
  transition: color var(--dur) var(--ease);
  width: 100%;
}

.card-format-link:hover {
  color: var(--ink);
}

.card-format-link strong {
  color: var(--ink);
  font-weight: 600;
}

.card-format-link::after {
  content: "→";
  margin-left: auto;
  opacity: 0.5;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.card-format-link:hover::after {
  opacity: 1;
  transform: translateX(2px);
}

.addon-row {
  margin-top: 20px;
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px dashed color-mix(in oklab, var(--ink) 18%, var(--border));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(250, 246, 239, 0.5));
  display: grid;
  gap: 14px;
  align-items: center;
  grid-template-columns: auto 1fr;
}

@media (min-width: 700px) {
  .addon-row {
    grid-template-columns: auto 1fr auto;
  }
}

.addon-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.addon-icon svg {
  width: 22px;
  height: 22px;
  color: var(--ink);
  stroke-width: 1.5;
}

.addon-label {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.addon-title {
  margin: 4px 0 0;
  font-family: Fraunces, Georgia, serif;
  font-size: 17px;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.addon-desc {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.addon-cta {
  align-self: center;
  white-space: nowrap;
}

@media (max-width: 699px) {
  .addon-cta {
    grid-column: 1 / -1;
    justify-self: stretch;
  }
}

.cta-deliverables {
  margin-top: 22px;
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.55);
}

@media (min-width: 800px) {
  .cta-deliverables {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

.cta-deliverable {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.cta-deliverable svg {
  width: 22px;
  height: 22px;
  color: var(--ink);
  stroke-width: 1.5;
  flex: 0 0 auto;
  margin-top: 2px;
}

.cta-d-title {
  margin: 0;
  font-weight: 600;
  color: var(--ink);
  font-size: 14px;
  letter-spacing: -0.01em;
}

.cta-d-desc {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

