/* ============================================
   Epifront — Pitch Deck
   Simplified structure, brand-matched
   ============================================ */

@font-face {
  font-family: "Bomstad Display";
  src: url("fonts/BomstadDisplay-Light.woff2") format("woff2");
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Bomstad Display";
  src: url("fonts/BomstadDisplay-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Bomstad Display";
  src: url("fonts/BomstadDisplay-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Geist";
  src: url("fonts/Geist-Variable.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
  font-style: normal;
}

:root {
  --bg: #0a0a0f;
  --bg-card: #111119;
  --bg-soft: #07070c;
  --fg: #ffffff;
  --fg-muted: #8b8b97;
  --fg-faint: #5a5a66;
  --line: #1a1a22;
  --line-soft: #15151c;

  --container: 1200px;
  --page-px: clamp(1rem, 3vw, 2.5rem);
  --space-section: clamp(96px, 14vh, 200px);

  --font-display: "Bomstad Display", system-ui, sans-serif;
  --font-sans: "Geist", system-ui, sans-serif;

  --ease-out: cubic-bezier(0.2, 0.6, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--fg);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
}

::selection {
  background: var(--fg);
  color: var(--bg);
}

/* ============================================
   Grain
   ============================================ */

.grain-svg {
  position: fixed;
  width: 0;
  height: 0;
  pointer-events: none;
}

.grain-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  opacity: 0.08;
  filter: url(#grain);
  mix-blend-mode: overlay;
}

/* ============================================
   Typography
   ============================================ */

.display, h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--fg);
  text-transform: lowercase;
}

h1.display {
  font-size: clamp(64px, 13vw, 180px);
  line-height: 0.9;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.head {
  font-size: clamp(34px, 4.5vw, 72px);
  line-height: 1.0;
  font-weight: 300;
  letter-spacing: -0.025em;
  margin-bottom: 48px;
  max-width: 22ch;
}

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

.display-final {
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.95;
}

h3 {
  font-size: clamp(20px, 1.6vw, 26px);
  line-height: 1.25;
  font-weight: 400;
  margin-bottom: 12px;
  letter-spacing: -0.015em;
  text-transform: none;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--fg-muted);
  margin-bottom: 48px;
}

.lede {
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.4;
  font-weight: 300;
  color: var(--fg);
  max-width: 28ch;
  margin: 56px 0 32px;
  font-family: var(--font-display);
  letter-spacing: -0.015em;
}

.intro-para {
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.65;
  font-weight: 400;
  color: var(--fg-muted);
  max-width: 52ch;
  font-family: var(--font-sans);
}

.section-intro {
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.55;
  color: var(--fg-muted);
  max-width: 60ch;
  margin: -24px 0 56px;
  font-family: var(--font-sans);
}

.body-large {
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 22px;
  max-width: 56ch;
  color: var(--fg);
}

p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--fg);
}

.closing {
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.35;
  font-family: var(--font-display);
  font-weight: 300;
  max-width: 28ch;
  margin-top: 80px;
  color: var(--fg);
  letter-spacing: -0.02em;
}

/* ============================================
   Container
   ============================================ */

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

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

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: clamp(1rem, 2.5vw, 2rem) var(--page-px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  mix-blend-mode: difference;
}

.nav-logo {
  display: block;
  transition: transform 0.4s var(--ease-out);
}

.nav-logo img {
  width: clamp(1.5rem, 2.5vw, 2.25rem);
  height: auto;
  display: block;
}

.nav-logo:hover {
  transform: rotate(180deg);
}

.nav-meta {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--fg);
  opacity: 0.7;
}

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

.hero {
  min-height: 100dvh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px var(--page-px) 80px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s var(--ease-out), transform 1.2s var(--ease-out);
  overflow: hidden;
}

.hero.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-grid {
  position: absolute;
  inset: 0;
  padding: 0 var(--page-px);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  pointer-events: none;
}

.hero-grid > div {
  border-left: 1px solid var(--line);
}

.hero-grid > div:last-child {
  border-right: 1px solid var(--line);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}

.hero .display {
  margin: 0;
  display: block;
}

.line {
  display: block;
  overflow: hidden;
  line-height: 0.9;
}

.line-in {
  display: block;
  transform: translateY(100%);
  animation: lineRise 1.4s var(--ease-out) forwards;
}

.line:nth-child(1) .line-in { animation-delay: 0.3s; }
.line:nth-child(2) .line-in { animation-delay: 0.42s; padding-left: 1em; }

@media (min-width: 1024px) {
  .line:nth-child(2) .line-in { padding-left: 2em; }
}

@keyframes lineRise {
  to { transform: translateY(0); }
}

.scroll-mark {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--fg-muted);
  animation: nudge 2.4s ease-in-out infinite;
  font-weight: 500;
  z-index: 3;
}

@keyframes nudge {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.5; }
  50% { transform: translate(-50%, 8px); opacity: 1; }
}

/* ============================================
   Sections
   ============================================ */

.section {
  padding: var(--space-section) 0;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  position: relative;
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-dim {
  background: var(--bg-soft);
}

/* ============================================
   Example demo (WhatsApp + AI)
   ============================================ */

.example-row {
  display: grid;
  grid-template-columns: 1fr 100px 1.15fr;
  gap: 0;
  align-items: center;
  margin-top: 32px;
}

.whatsapp-mock {
  background: #0f1117;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.03) 0%, transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.02) 0%, transparent 40%);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  font-family: var(--font-sans);
  max-height: 540px;
  overflow: hidden;
  position: relative;
}

.whatsapp-mock::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(180deg, transparent, #0f1117);
  pointer-events: none;
}

.wa-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 12px;
}

.wa-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #25d366;
  color: #0a0a0f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 15px;
  font-family: var(--font-sans);
}

.wa-name {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.wa-name strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
}

.wa-name span {
  font-size: 11px;
  color: var(--fg-muted);
  font-weight: 400;
}

.wa-body {
  padding: 0 4px;
  display: flex;
  flex-direction: column;
}

.wa-date {
  align-self: center;
  font-size: 10px;
  color: var(--fg-muted);
  margin: 14px 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(255,255,255,0.06);
  padding: 3px 10px;
  border-radius: 12px;
  font-weight: 500;
}

.wa-msg {
  font-size: 13.5px;
  line-height: 1.5;
  padding: 8px 12px;
  margin-bottom: 5px;
  max-width: 80%;
  border-radius: 10px;
  word-wrap: break-word;
  width: fit-content;
}

.wa-in {
  background: #1f2128;
  color: var(--fg);
  margin-right: auto;
  border-bottom-left-radius: 2px;
}

.wa-out {
  background: #134d2c;
  color: #d4f5dd;
  margin-left: auto;
  border-bottom-right-radius: 2px;
}

.example-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 12px;
}

.arrow-line {
  width: 56px;
  height: 1px;
  background: var(--fg);
  position: relative;
}

.arrow-line::after {
  content: '';
  position: absolute;
  right: -1px;
  top: -4px;
  width: 9px;
  height: 9px;
  border-right: 1px solid var(--fg);
  border-top: 1px solid var(--fg);
  transform: rotate(45deg);
}

.arrow-label {
  font-size: 11px;
  text-align: center;
  letter-spacing: 0.04em;
  color: var(--fg-muted);
  line-height: 1.5;
  font-family: var(--font-display);
  font-weight: 300;
  max-width: 100px;
}

.insight-card {
  background: var(--fg);
  color: var(--bg);
  padding: 40px 36px;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.insight-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 22px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(10, 10, 15, 0.15);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(10, 10, 15, 0.5);
  font-weight: 500;
  flex-wrap: wrap;
  gap: 12px;
}

.insight-tag {
  color: var(--bg);
  font-weight: 600;
}

.insight-section {
  margin-bottom: 24px;
}

.insight-section:last-child {
  margin-bottom: 0;
}

.insight-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 400;
  color: rgba(10, 10, 15, 0.55);
  margin-bottom: 8px;
  text-transform: lowercase;
  letter-spacing: 0.02em;
}

.insight-section p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--bg);
}

.suggested-msg {
  background: rgba(10, 10, 15, 0.06);
  border-left: 2px solid var(--bg);
  padding: 14px 18px;
  font-size: 14px;
  line-height: 1.55;
  font-family: var(--font-display);
  font-weight: 300;
  margin-top: 6px;
  border-radius: 0 4px 4px 0;
  color: var(--bg);
  letter-spacing: -0.005em;
}

/* ============================================
   Where it lives — browser + phone
   ============================================ */

.where-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 32px;
  align-items: start;
}

.where-col {
  max-width: 50ch;
}

.where-col + .where-col {
  /* second column inherits same treatment */
}

.where-label {
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 32px);
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--fg);
  letter-spacing: -0.015em;
}

.quick-list {
  list-style: none;
  margin-top: 24px;
}

.quick-list li {
  font-size: 14px;
  line-height: 1.55;
  padding: 10px 0;
  padding-left: 22px;
  position: relative;
  color: var(--fg-muted);
  border-bottom: 1px solid var(--line);
}

.quick-list li:last-child {
  border-bottom: none;
}

.quick-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 12px;
  height: 1px;
  background: var(--fg-muted);
}

.phone-wrap {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 72px;
  padding: 40px 0 0;
  border-top: 1px solid var(--line);
}

.phone {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 9 / 19.5;
  background: #050507;
  border: 8px solid #1a1a22;
  border-radius: 44px;
  padding: 24px 20px;
  position: relative;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 1px 0 rgba(255, 255, 255, 0.06) inset;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone-notch {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 26px;
  background: #1a1a22;
  border-radius: 14px;
  z-index: 2;
}

.phone-screen {
  flex: 1;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
  position: relative;
}

.phone-time {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
  padding: 0 4px 4px;
}

.phone-app-header {
  padding: 0 4px 12px;
  border-bottom: 1px solid var(--line);
}

.phone-app-title {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--fg);
  letter-spacing: -0.02em;
  margin-bottom: 2px;
}

.phone-app-sub {
  font-size: 10px;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

.phone-notif {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}

.phone-notif-tag {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 500;
}

.phone-notif-title {
  font-family: var(--font-display);
  font-size: 13px;
  line-height: 1.25;
  color: var(--fg);
  letter-spacing: -0.01em;
  text-transform: none;
}

.phone-notif-body {
  font-size: 11px;
  line-height: 1.5;
  color: var(--fg-muted);
}

.phone-notif-actions {
  display: flex;
  gap: 8px;
  margin-top: 6px;
}

.phone-btn {
  font-size: 10px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  background: transparent;
  color: var(--fg-muted);
  border: 1px solid var(--line);
}

.phone-btn-primary {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}

.phone-notif-voice {
  background: rgba(255,255,255,0.02);
}

.phone-voice-bars {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 18px;
  margin: 4px 0 2px;
}

.phone-voice-bars span {
  display: block;
  width: 2px;
  background: var(--fg-muted);
  border-radius: 2px;
  animation: voicePulse 1.4s ease-in-out infinite;
}

.phone-voice-bars span:nth-child(1) { height: 6px; animation-delay: 0s; }
.phone-voice-bars span:nth-child(2) { height: 10px; animation-delay: 0.05s; }
.phone-voice-bars span:nth-child(3) { height: 14px; animation-delay: 0.1s; }
.phone-voice-bars span:nth-child(4) { height: 8px; animation-delay: 0.15s; }
.phone-voice-bars span:nth-child(5) { height: 12px; animation-delay: 0.2s; }
.phone-voice-bars span:nth-child(6) { height: 16px; animation-delay: 0.25s; }
.phone-voice-bars span:nth-child(7) { height: 10px; animation-delay: 0.3s; }
.phone-voice-bars span:nth-child(8) { height: 14px; animation-delay: 0.35s; }
.phone-voice-bars span:nth-child(9) { height: 6px; animation-delay: 0.4s; }
.phone-voice-bars span:nth-child(10) { height: 12px; animation-delay: 0.45s; }
.phone-voice-bars span:nth-child(11) { height: 8px; animation-delay: 0.5s; }
.phone-voice-bars span:nth-child(12) { height: 14px; animation-delay: 0.55s; }
.phone-voice-bars span:nth-child(13) { height: 10px; animation-delay: 0.6s; }
.phone-voice-bars span:nth-child(14) { height: 6px; animation-delay: 0.65s; }

@keyframes voicePulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================
   Deliverables — 3 cards
   ============================================ */

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 32px;
}

.deliverable {
  padding: 32px 0 0;
  border-top: 1px solid var(--fg);
  display: flex;
  flex-direction: column;
}

.del-when {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 500;
  margin-bottom: 24px;
}

.deliverable h3 {
  margin-bottom: 16px;
}

.deliverable p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--fg-muted);
}

/* ============================================
   Capability section — visual mockups
   ============================================ */

.cap-list {
  display: flex;
  flex-direction: column;
  margin-top: 64px;
  border-top: 1px solid var(--fg);
}

.cap {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  padding: 72px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}

.cap-meta {
  position: sticky;
  top: 120px;
}

.cap-num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 13px;
  color: var(--fg-faint);
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}

.cap-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.2vw, 52px);
  font-weight: 400;
  color: var(--fg);
  text-transform: lowercase;
  letter-spacing: -0.025em;
  line-height: 0.95;
  margin-bottom: 20px;
}

.cap-caption {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.4;
  color: var(--fg-muted);
  max-width: 28ch;
  margin-bottom: 24px;
  letter-spacing: -0.005em;
}

.cap-also {
  font-size: 12px;
  color: var(--fg-faint);
  line-height: 1.6;
  letter-spacing: 0.02em;
  font-family: var(--font-sans);
  max-width: 30ch;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.cap-visual {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.cap-visual-stack {
  gap: 20px;
}

/* ============================================
   Mock components — shared base
   ============================================ */

.mock {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 28px;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.02) inset;
  position: relative;
  overflow: hidden;
}

.mock-tag {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-faint);
  font-weight: 500;
  margin-bottom: 16px;
  font-family: var(--font-sans);
}

.mock-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 18px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
  gap: 8px;
}

.mock-title {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--fg);
  letter-spacing: -0.015em;
  text-transform: lowercase;
}

.mock-meta {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 500;
}

/* ============================================
   Mock: searchable archive
   ============================================ */

.mock-search-bar {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.mock-search-icon {
  color: var(--fg-muted);
  font-size: 16px;
}

.mock-search-query {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--fg);
}

.mock-search-results {
  display: flex;
  flex-direction: column;
}

.mock-search-row {
  display: grid;
  grid-template-columns: 80px 1fr 40px;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid var(--line-soft);
  font-size: 13px;
  align-items: center;
}

.mock-search-row:first-child { border-top: none; }

.mock-search-channel {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-muted);
  font-weight: 600;
}

.mock-search-snippet {
  color: var(--fg);
  line-height: 1.45;
}

.mock-search-snippet strong {
  font-weight: 600;
}

.mock-search-time {
  font-size: 11px;
  color: var(--fg-muted);
  text-align: right;
}

.mock-search-more {
  color: var(--fg-muted);
  padding-top: 16px;
  margin-top: 4px;
  border-top: 1px solid var(--line);
}

.mock-search-more .mock-search-channel { color: var(--fg-faint); }
.mock-search-more .mock-search-snippet { color: var(--fg-muted); font-style: italic; }

/* ============================================
   Mock: LinkedIn post
   ============================================ */

.mock-linkedin {
  background: #1b1f24;
  border-color: #2a2f37;
}

.li-header {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.li-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0a66c2, #1e88e5);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 17px;
  font-family: var(--font-sans);
  flex-shrink: 0;
}

.li-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.li-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
}

.li-role {
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.4;
}

.li-time {
  font-size: 11px;
  color: var(--fg-faint);
  margin-top: 2px;
}

.li-body {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg);
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 4px 0 16px;
  border-bottom: 1px solid var(--line);
}

.li-body p {
  font-size: 14px;
  color: var(--fg);
  line-height: 1.55;
}

.li-meta {
  font-size: 11px;
  color: var(--fg-faint);
  letter-spacing: 0.04em;
  font-style: italic;
  padding-top: 14px;
  font-family: var(--font-display);
}

/* ============================================
   Mock: Meta ad
   ============================================ */

.mock-ad {
  background: #161b22;
  border-color: #232a33;
}

.ad-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.ad-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ad-logo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #2d4a3e;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 11px;
  font-family: var(--font-sans);
  letter-spacing: -0.02em;
}

.ad-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  font-family: var(--font-sans);
}

.ad-sponsored {
  font-size: 11px;
  color: var(--fg-muted);
  font-family: var(--font-sans);
}

.ad-body {
  font-size: 14px;
  line-height: 1.5;
  color: var(--fg);
  margin-bottom: 16px;
  font-family: var(--font-sans);
}

.ad-image {
  aspect-ratio: 1.91 / 1;
  background: linear-gradient(135deg, #1e2a25, #2d4a3e, #1a2e26);
  background-size: 200% 200%;
  border-radius: 6px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.ad-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 40%, rgba(255,255,255,0.06) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(255,255,255,0.04) 0%, transparent 50%);
}

.ad-image-tag {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  position: relative;
  z-index: 1;
  font-family: var(--font-sans);
  font-weight: 500;
}

.ad-cta {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ad-cta-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ad-cta-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  font-family: var(--font-sans);
}

.ad-cta-domain {
  font-size: 11px;
  color: var(--fg-muted);
  font-family: var(--font-sans);
}

.ad-cta-btn {
  background: var(--fg);
  color: var(--bg);
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-sans);
  white-space: nowrap;
}

/* ============================================
   Mock: Strategy doc
   ============================================ */

.mock-doc {
  padding: 0;
  background: #15151c;
  border-color: #20202a;
}

.doc-bar {
  background: #0e0e14;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--line);
}

.doc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.doc-dot-r { background: #ff5f57; }
.doc-dot-y { background: #ffbd2e; }
.doc-dot-g { background: #28ca41; }

.doc-bar-name {
  font-size: 11px;
  color: var(--fg-muted);
  margin-left: 12px;
  font-family: var(--font-sans);
  letter-spacing: 0.02em;
}

.doc-body {
  padding: 32px 36px;
}

.doc-tag {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 500;
  margin-bottom: 12px;
  font-family: var(--font-sans);
}

.doc-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 400;
  color: var(--fg);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.doc-section {
  margin-bottom: 24px;
}

.doc-section:last-child { margin-bottom: 0; }

.doc-section-label {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 15px;
  color: var(--fg);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.doc-section p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--fg-muted);
}

.doc-section p em {
  color: var(--fg);
  font-style: italic;
  font-family: var(--font-display);
}

.doc-footer {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  color: var(--fg-faint);
  letter-spacing: 0.05em;
  font-style: italic;
  font-family: var(--font-display);
}

/* ============================================
   Mock: Intel widget
   ============================================ */

.intel-rows {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}

.intel-row {
  display: grid;
  grid-template-columns: 100px 1fr 90px;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--line-soft);
  align-items: center;
  font-family: var(--font-sans);
}

.intel-row:first-child { border-top: none; padding-top: 0; }

.intel-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
}

.intel-mid {
  font-size: 13px;
  color: var(--fg-muted);
}

.intel-stat {
  font-size: 12px;
  font-weight: 600;
  text-align: right;
}

.intel-up { color: #5fd97e; }
.intel-down { color: #ff7a7a; }
.intel-flat { color: var(--fg-muted); }

.intel-callout {
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 6px;
  border-left: 2px solid var(--fg-muted);
  margin-top: 14px;
}

.intel-callout-warn {
  border-left-color: #d97e3a;
  background: rgba(217, 126, 58, 0.06);
}

.intel-callout-tag {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--fg-muted);
  font-weight: 600;
  margin-bottom: 6px;
  font-family: var(--font-sans);
}

.intel-callout p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--fg);
  font-family: var(--font-sans);
}

.intel-callout p strong {
  font-weight: 600;
}

/* ============================================
   Mock: Forecast
   ============================================ */

.forecast-big {
  padding: 4px 0 28px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}

.forecast-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  color: var(--fg);
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 10px;
}

.forecast-label {
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  font-family: var(--font-sans);
  margin-bottom: 22px;
}

.forecast-label .intel-up {
  margin-left: 8px;
}

.forecast-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 60px;
  padding: 0 2px;
}

.forecast-bar {
  flex: 1;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  min-height: 8px;
  transition: opacity 0.3s;
}

.forecast-bar-now {
  background: var(--fg);
}

.forecast-bar-future {
  background: rgba(255, 255, 255, 0.35);
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 3px,
    rgba(0,0,0,0.25) 3px,
    rgba(0,0,0,0.25) 6px
  );
}

.forecast-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.forecast-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 6px;
  align-items: start;
  font-family: var(--font-sans);
}

.forecast-row-risk {
  background: rgba(255, 122, 122, 0.06);
  border-left: 2px solid #ff7a7a;
}

.forecast-row-opp {
  background: rgba(95, 217, 126, 0.06);
  border-left: 2px solid #5fd97e;
}

.forecast-row-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--fg);
}

.forecast-row-body {
  font-size: 13px;
  line-height: 1.5;
  color: var(--fg-muted);
}

/* ============================================
   Mock: Team scorecard
   ============================================ */

.team-list {
  display: flex;
  flex-direction: column;
}

.team-row {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--line-soft);
  align-items: start;
  font-family: var(--font-sans);
}

.team-row:first-child { border-top: none; padding-top: 0; }

.team-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--fg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 13px;
}

.team-avatar-good {
  background: rgba(95, 217, 126, 0.15);
  color: #8de8a4;
}

.team-avatar-flag {
  background: rgba(217, 126, 58, 0.15);
  color: #f0b387;
}

.team-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.team-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
}

.team-detail {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--fg-muted);
}

.team-insight {
  margin-top: 18px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 6px;
  border-left: 2px solid var(--fg-muted);
}

.team-insight-tag {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--fg-muted);
  font-weight: 600;
  margin-bottom: 6px;
  font-family: var(--font-sans);
}

.team-insight p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--fg);
  font-family: var(--font-sans);
}

.team-insight p strong {
  font-weight: 600;
}

/* ============================================
   Timeline (rhythm of delivery)
   ============================================ */

.timeline {
  display: flex;
  flex-direction: column;
  margin-top: 64px;
  border-top: 1px solid var(--fg);
}

.timeline-row {
  display: grid;
  grid-template-columns: 260px 80px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}

.timeline-when {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 600;
}

.timeline-line {
  height: 1px;
  background: var(--fg-faint);
  position: relative;
}

.timeline-line::before,
.timeline-line::after {
  content: '';
  position: absolute;
  top: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--fg);
}

.timeline-line::before { left: 0; }
.timeline-line::after { right: 0; opacity: 0.5; }

.timeline-what {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 400;
  color: var(--fg);
  letter-spacing: -0.015em;
  line-height: 1.3;
}

/* ============================================
   Final — where this stands
   ============================================ */

.section-final {
  background: var(--bg);
}

.stand-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  margin-top: 32px;
  align-items: start;
}

.stand-col-cta {
  padding-top: 28px;
  border-top: 1px solid var(--fg);
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--fg);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: clamp(18px, 1.4vw, 22px);
  font-weight: 400;
  padding: 20px 28px;
  text-decoration: none;
  border-radius: 100px;
  transition: transform 0.4s var(--ease-out), background 0.3s, gap 0.3s var(--ease-out);
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}

.cta-primary:hover {
  background: #f0f0f5;
  gap: 22px;
}

.cta-arrow {
  display: inline-block;
  transition: transform 0.4s var(--ease-out);
}

.cta-primary:hover .cta-arrow {
  transform: translateX(4px);
}

.cta-meta {
  font-size: 14px;
  line-height: 1.7;
  color: var(--fg-muted);
  font-family: var(--font-sans);
}

.signoff {
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

.signoff p {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.5;
  color: var(--fg-muted);
  font-style: normal;
  letter-spacing: -0.005em;
  max-width: 60ch;
}

/* ============================================
   Footer
   ============================================ */

.footer {
  background: var(--bg-soft);
  padding: 80px 0 40px;
  border-top: 1px solid var(--line);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-logo {
  width: 120px;
  height: auto;
  display: block;
  margin-bottom: 16px;
  opacity: 0.85;
}

.footer-tag {
  font-size: 13px;
  color: var(--fg-muted);
  max-width: 50ch;
  line-height: 1.55;
  font-family: var(--font-sans);
}

.footer-meta {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-faint);
  text-align: right;
  line-height: 2.2;
  font-weight: 500;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
  :root {
    --space-section: 96px;
  }

  .lede { max-width: 100%; }

  .example-row {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .example-arrow {
    flex-direction: row;
    margin: 0 auto;
    gap: 24px;
  }

  .arrow-line { transform: rotate(90deg); }

  .where-row { grid-template-columns: 1fr; gap: 48px; }

  .deliverables-grid { grid-template-columns: 1fr; gap: 40px; }

  .cap {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 0;
  }

  .cap-meta {
    position: static;
  }

  .cap-caption { max-width: 100%; }
  .cap-also { max-width: 100%; }

  .timeline-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 0;
  }

  .timeline-line {
    display: none;
  }

  .stand-grid { grid-template-columns: 1fr; gap: 56px; }

  .footer-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .footer-meta { text-align: left; }
}

@media (max-width: 640px) {
  body { font-size: 15px; }

  .nav-meta { display: none; }

  h1.display { font-size: clamp(48px, 16vw, 80px); line-height: 0.95; }

  .head { font-size: clamp(28px, 8vw, 40px); margin-bottom: 32px; }
  .display-final { font-size: clamp(32px, 9vw, 48px); }

  .lede { font-size: 19px; margin: 40px 0 28px; }
  .body-large { font-size: 16px; }
  .closing { font-size: 20px; margin-top: 56px; }
  .section-intro { font-size: 15px; }

  .hero { padding: 120px var(--page-px) 80px; }

  .insight-card { padding: 28px 24px; }

  .deliverable { padding-top: 24px; }

  .usecase {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .usecase-num { padding-top: 0; }

  .quick-list li { padding-left: 18px; }

  .cta-primary { font-size: 18px; padding: 18px 24px; }

  .phone { max-width: 280px; }

  .signoff { margin-top: 56px; padding-top: 32px; }
}
