/* ============================================================
   FLICK Sports — marketing site
   Design system
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cal+Sans&family=Inter:wght@400;500;600;700&family=Schibsted+Grotesk:wght@400;500;600;700;800&display=swap');

:root {
  /* Colour */
  --ink: #111111;
  --ink-70: rgba(17, 17, 17, 0.70);
  --ink-55: rgba(17, 17, 17, 0.55);
  --ink-40: rgba(17, 17, 17, 0.40);
  --ink-12: rgba(17, 17, 17, 0.12);
  --ink-07: rgba(17, 17, 17, 0.07);
  --paper: #FAFAF8;
  --white: #FFFFFF;
  --purple: #5B4B9E;
  --purple-soft: #efecf7;
  --teal: #1FA39A;
  --teal-dark: #178a82;
  --teal-soft: #e6f4f3;
  --pitch: #2f7d4f;

  /* Type */
  --display: 'Schibsted Grotesk', 'Inter', system-ui, sans-serif;
  --body: 'Inter', system-ui, -apple-system, sans-serif;
  --mono: ui-monospace, 'SF Mono', 'JetBrains Mono', Menlo, monospace;

  /* Layout */
  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 64px);
  --section-y: clamp(38px, 5.5vw, 76px);
  --radius: 16px;
  --radius-sm: 10px;

  /* Shadow */
  --shadow-sm: 0 1px 2px rgba(17,17,17,.04), 0 4px 16px rgba(17,17,17,.05);
  --shadow-md: 0 2px 4px rgba(17,17,17,.04), 0 18px 48px rgba(17,17,17,.09);
  --shadow-lg: 0 8px 24px rgba(17,17,17,.08), 0 40px 80px rgba(17,17,17,.12);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 88px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: var(--teal); color: #fff; }

/* ---------- Typography ---------- */
.display {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.02;
  text-wrap: balance;
}
h1, h2, h3 { font-family: var(--display); font-weight: 700; letter-spacing: -0.02em; line-height: 1.05; }

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-dark);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 24px; height: 1.5px;
  background: var(--teal);
  display: inline-block;
}
.eyebrow.purple { color: var(--purple); }
.eyebrow.purple::before { background: var(--purple); }

.lead {
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.28;
  letter-spacing: -0.015em;
  font-weight: 500;
  font-family: var(--display);
  text-wrap: balance;
}

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

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: clamp(30px, 4vw, 56px); }

a { color: inherit; text-decoration: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--body);
  font-size: 15px; font-weight: 600;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s cubic-bezier(.2,.7,.3,1), background .25s, box-shadow .25s, color .25s, border-color .25s;
  white-space: nowrap;
  line-height: 1;
}
.btn svg { width: 15px; height: 15px; transition: transform .25s; }
.btn:hover svg { transform: translateX(3px); }

.btn--primary { background: var(--teal); color: #fff; box-shadow: 0 1px 2px rgba(31,163,154,.25), 0 10px 22px rgba(31,163,154,.28); }
.btn--primary:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 2px 4px rgba(31,163,154,.25), 0 16px 30px rgba(31,163,154,.34); }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink-12); }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }

.btn--light { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.28); backdrop-filter: blur(8px); }
.btn--light:hover { background: rgba(255,255,255,.22); transform: translateY(-2px); }

.btn--lg { padding: 16px 28px; font-size: 16px; }

/* ---------- Image placeholders ---------- */
.ph {
  position: relative;
  overflow: hidden;
  background-color: #ecebe6;
  background-image:
    repeating-linear-gradient(135deg, rgba(17,17,17,.045) 0 1px, transparent 1px 11px);
  border-radius: var(--radius);
  display: flex; align-items: flex-end;
  isolation: isolate;
}
.ph::after {
  content: attr(data-label);
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.04em;
  color: var(--ink-55);
  background: rgba(250,250,248,.86);
  border: 1px solid var(--ink-12);
  border-radius: 6px;
  padding: 5px 9px;
  margin: 12px;
  max-width: calc(100% - 24px);
  backdrop-filter: blur(2px);
}
.ph--dark { background-color: #1c1b22; background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.05) 0 1px, transparent 1px 11px); }
.ph--dark::after { color: rgba(255,255,255,.8); background: rgba(20,20,26,.6); border-color: rgba(255,255,255,.18); }
.ph--purple { background-color: var(--purple-soft); background-image: repeating-linear-gradient(135deg, rgba(91,75,158,.10) 0 1px, transparent 1px 11px); }
.ph--teal { background-color: var(--teal-soft); background-image: repeating-linear-gradient(135deg, rgba(31,163,154,.12) 0 1px, transparent 1px 11px); }

/* real image layered over a placeholder; if it fails to load it is removed and the placeholder shows */
.media-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 2; display: block; border: 0; }
.media-img.grayscale { filter: grayscale(1) contrast(1.02); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .35s ease, box-shadow .35s ease, border-color .35s ease, backdrop-filter .35s;
  border-bottom: 1px solid transparent;
}
.nav__inner {
  max-width: 1320px; margin-inline: auto;
  padding: 16px var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav.scrolled {
  background: rgba(250,250,248,.78);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom-color: var(--ink-07);
}
.nav.scrolled .nav__links a, .nav.scrolled .logo { color: var(--ink); }

.logo {
  display: inline-flex; align-items: center; gap: 8px;
  /* Cal Sans for the flick wordmark when rendered as text */
  font-family: 'Cal Sans', var(--display); font-weight: 400; font-size: 30px;
  letter-spacing: 0; text-transform: lowercase; color: #fff; transition: color .35s;
  line-height: 1;
}
.logo .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); display: inline-block; transform: translateY(1px); }
.logo__img { height: 30px; width: auto; display: block; }
.logo__img--dark { display: none; }
.nav.scrolled .logo__img--light { display: none; }
.nav.scrolled .logo__img--dark { display: block; }
@media (max-width: 920px) { .logo__img { height: 27px; } }

.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links a {
  font-size: 14.5px; font-weight: 500; color: rgba(255,255,255,.92); transition: color .35s, opacity .2s;
  position: relative;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -5px; height: 1.5px;
  background: var(--teal); transition: right .3s ease;
}
.nav__links a:hover::after { right: 0; }
.nav__cta { display: flex; align-items: center; gap: 14px; }

.nav__burger { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; }
.nav__burger span { width: 22px; height: 2px; background: #fff; transition: background .35s, transform .3s, opacity .3s; }
.nav.scrolled .nav__burger span { background: var(--ink); }

@media (max-width: 920px) {
  .nav__links { display: none; }
  .nav__cta .btn { display: none; }
  .nav__burger { display: flex; }
  .nav__links.open {
    display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(250,250,248,.97); backdrop-filter: blur(18px);
    padding: 16px var(--gutter) 26px; border-bottom: 1px solid var(--ink-07);
  }
  .nav__links.open a { color: var(--ink); font-size: 18px; padding: 12px 0; width: 100%; border-bottom: 1px solid var(--ink-07); }
  .nav__links.open a:last-child { border-bottom: 0; }
  .nav__links.open .btn { display: inline-flex; margin-top: 12px; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; z-index: 0; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-top: clamp(96px, 13vh, 140px);
  color: #fff; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; border-radius: 0; }
.hero__bg.ph { border-radius: 0; }
.hero__bg.ph::after { margin: 0 0 92px 14px; }
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(17,16,22,.55) 0%, rgba(17,16,22,.12) 32%, rgba(17,16,22,.30) 62%, rgba(17,16,22,.86) 100%),
    linear-gradient(110deg, rgba(45,33,82,.45), rgba(8,40,38,.25));
}
.hero__inner { position: relative; z-index: 2; max-width: 1320px; margin-inline: auto; width: 100%; padding: 0 var(--gutter) clamp(36px, 6vw, 64px); }
.hero__content { max-width: 960px; }
.hero h1 {
  font-size: clamp(40px, 7.4vw, 92px);
  line-height: 0.98; letter-spacing: -0.03em;
  margin-top: 18px;
}
.hero__tag {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(19px, 2.4vw, 27px); letter-spacing: -0.01em;
  margin-top: 22px; color: rgba(255,255,255,.94);
}
.hero__sub {
  max-width: 680px; margin-top: 20px;
  font-size: clamp(15px, 1.6vw, 18px); line-height: 1.6; color: rgba(255,255,255,.82);
}
.hero__actions { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero .eyebrow { color: #fff; }
.hero .eyebrow::before { background: var(--teal); }

/* trust strip */
.trust {
  border-top: 1px solid rgba(255,255,255,.16);
  margin-top: clamp(34px, 5vw, 52px); padding-top: 22px;
}
.trust__label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-bottom: 12px; }
.trust__items { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.trust__items li { list-style: none; font-size: 13.5px; font-weight: 500; color: rgba(255,255,255,.9); display: flex; align-items: center; gap: 22px; }
.trust__items li:not(:last-child)::after { content: ""; width: 3px; height: 3px; border-radius: 50%; background: var(--teal); display: inline-block; }

/* three-point row */
.threepoint {
  background: var(--ink); color: #fff;
}
.threepoint__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
}
.threepoint__item { padding: clamp(30px, 4vw, 50px) clamp(24px, 3vw, 46px); border-left: 1px solid rgba(255,255,255,.12); }
.threepoint__item:first-child { border-left: 0; }
.threepoint__num { font-family: var(--mono); font-size: 12px; color: var(--teal); letter-spacing: .1em; }
.threepoint__item p { font-family: var(--display); font-weight: 600; font-size: clamp(19px, 2vw, 24px); line-height: 1.12; letter-spacing: -0.02em; margin-top: 14px; }
@media (max-width: 760px) {
  .threepoint__grid { grid-template-columns: 1fr; }
  .threepoint__item { border-left: 0; border-top: 1px solid rgba(255,255,255,.12); }
  .threepoint__item:first-child { border-top: 0; }
}

/* ============================================================
   WHY NOW
   ============================================================ */
.whynow { background: var(--white); overflow: hidden; }
.pitch-texture::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(90deg, rgba(47,125,79,.035) 0 50%, transparent 50% 100%);
  background-size: 13% 100%;
  -webkit-mask-image: radial-gradient(120% 90% at 50% 0%, #000 35%, transparent 78%);
  mask-image: radial-gradient(120% 90% at 50% 0%, #000 35%, transparent 78%);
}
.whynow > * { position: relative; z-index: 1; }

.whynow__lead { max-width: 900px; font-size: clamp(26px, 4vw, 50px); line-height: 1.08; letter-spacing: -0.025em; margin-top: 26px; }
.whynow__lead em { font-style: normal; color: var(--purple); }

.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--ink-12);
  border: 1px solid var(--ink-12); border-radius: var(--radius);
  overflow: hidden; margin-top: clamp(40px, 6vw, 72px);
}
.stat { background: var(--white); padding: clamp(26px, 3vw, 38px) clamp(20px, 2.4vw, 32px); }
.stat__num {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(34px, 4.6vw, 56px); letter-spacing: -0.03em; line-height: 1;
  color: var(--ink); font-variant-numeric: tabular-nums;
}
.stat__num .unit { color: var(--teal); }
.stat__num .arrow { color: var(--ink-40); margin: 0 4px; font-weight: 500; }
.stat__cap { margin-top: 14px; font-size: 13px; line-height: 1.45; color: var(--ink-55); }
@media (max-width: 880px) { .stats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .stats { grid-template-columns: 1fr; } }

.audience { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: clamp(40px, 6vw, 64px); }
.acard {
  background: var(--paper); border: 1px solid var(--ink-12); border-radius: var(--radius);
  padding: 28px 26px; transition: transform .3s, box-shadow .3s, border-color .3s;
}
.acard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.acard__tag { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-40); }
.acard__tag.focus { color: var(--teal-dark); }
.acard h3 { font-size: 22px; margin-top: 14px; letter-spacing: -0.02em; }
.acard p { margin-top: 10px; font-size: 14.5px; color: var(--ink-55); line-height: 1.5; }
.acard--focus { background: var(--teal); border-color: var(--teal); }
.acard--focus h3, .acard--focus p { color: #fff; }
.acard--focus p { color: rgba(255,255,255,.88); }
.acard--focus .acard__tag.focus { color: rgba(255,255,255,.78); }
.acard--focus:hover { box-shadow: 0 18px 48px rgba(31,163,154,.30); }
@media (max-width: 820px) { .audience { grid-template-columns: 1fr; } }

/* ============================================================
   WHAT WE DO
   ============================================================ */
.whatwedo__statement { font-size: clamp(28px, 4.6vw, 58px); line-height: 1.05; letter-spacing: -0.028em; max-width: 16ch; margin-top: 24px; }
.whatwedo__statement b { color: var(--teal-dark); font-weight: 700; }
.whatwedo__support { font-size: clamp(18px, 2vw, 23px); color: var(--ink-55); max-width: 620px; margin-top: 26px; font-family: var(--display); font-weight: 500; letter-spacing: -0.01em; }
.whatwedo__support b { color: var(--ink); }

.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: clamp(44px, 6vw, 72px); }
.pillar {
  border: 1px solid var(--ink-12); border-radius: var(--radius);
  padding: clamp(28px, 3vw, 42px); background: var(--white);
  position: relative; overflow: hidden;
}
.pillar__icon { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; color: #fff; }
.pillar--a .pillar__icon { background: var(--purple); }
.pillar--b .pillar__icon { background: var(--teal); }
.pillar h3 { font-size: clamp(24px, 2.6vw, 31px); margin-top: 22px; letter-spacing: -0.02em; }
.pillar p { margin-top: 14px; color: var(--ink-55); font-size: 15.5px; max-width: 42ch; }
.pillar__bar { position: absolute; left: 0; top: 0; bottom: 0; width: 4px; }
.pillar--a .pillar__bar { background: var(--purple); }
.pillar--b .pillar__bar { background: var(--teal); }
@media (max-width: 760px) { .pillars { grid-template-columns: 1fr; } }

/* ============================================================
   HOW WE FOCUS
   ============================================================ */
.howfocus { background: var(--white); }
.focus-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-top: clamp(34px, 4vw, 50px); }
.focus-tab {
  font-family: var(--body); font-size: 15px; font-weight: 600;
  padding: 12px 20px; border-radius: 999px; border: 1px solid var(--ink-12);
  background: var(--paper); cursor: pointer; color: var(--ink-55);
  transition: all .25s; line-height: 1;
}
.focus-tab:hover { border-color: var(--ink-40); color: var(--ink); }
.focus-tab.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.focus-panel {
  margin-top: 26px; border: 1px solid var(--ink-12); border-radius: var(--radius);
  background: var(--paper); overflow: hidden;
  display: grid; grid-template-columns: 1.1fr 1fr; min-height: 340px;
}
.focus-panel__body { padding: clamp(30px, 4vw, 52px); display: flex; flex-direction: column; justify-content: center; }
.focus-panel__num { font-family: var(--mono); font-size: 12px; letter-spacing: .12em; color: var(--teal-dark); }
.focus-panel__body h3 { font-size: clamp(26px, 3.4vw, 40px); margin-top: 14px; letter-spacing: -0.025em; }
.focus-panel__body > p { margin-top: 14px; color: var(--ink-55); font-size: 16px; max-width: 40ch; }
.focus-proof { margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--ink-12); display: flex; gap: 13px; align-items: flex-start; }
.focus-proof .tick { flex: 0 0 auto; width: 22px; height: 22px; border-radius: 50%; background: var(--teal-soft); color: var(--teal-dark); display: grid; place-items: center; }
.focus-proof .tick svg { width: 12px; height: 12px; }
.focus-proof__txt b { display: block; font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-40); margin-bottom: 4px; font-weight: 500; }
.focus-proof__txt span { font-size: 15px; color: var(--ink); font-weight: 500; line-height: 1.4; }
.focus-panel__media { position: relative; }
.focus-panel__media .ph { position: absolute; inset: 0; border-radius: 0; }
@media (max-width: 800px) {
  .focus-panel { grid-template-columns: 1fr; }
  .focus-panel__media { min-height: 220px; }
}

/* ============================================================
   HOW WE DELIVER (diagram)
   ============================================================ */
.deliver { background: var(--ink); color: #fff; overflow: hidden; }
.deliver .eyebrow { color: var(--teal); }
.deliver__head { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; }
.deliver h2 { font-size: clamp(34px, 5vw, 64px); letter-spacing: -0.03em; line-height: 1; margin-top: 18px; }
.deliver__copy { color: rgba(255,255,255,.72); font-size: 17px; line-height: 1.6; }
.deliver__copy .accountable { display: block; margin-top: 18px; color: #fff; font-family: var(--display); font-weight: 500; font-size: 19px; line-height: 1.35; letter-spacing: -0.01em; }
@media (max-width: 820px) { .deliver__head { grid-template-columns: 1fr; gap: 22px; } }

.diagram { position: relative; width: 100%; max-width: 760px; margin: clamp(40px, 6vw, 70px) auto 0; aspect-ratio: 1 / 1; }
.diagram__svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.diagram__line { stroke: rgba(255,255,255,.22); stroke-width: 1.5; stroke-dasharray: var(--len); stroke-dashoffset: var(--len); transition: stroke-dashoffset .9s ease; }
.diagram.in .diagram__line { stroke-dashoffset: 0; }
.node {
  position: absolute; transform: translate(-50%, -50%) scale(.8); opacity: 0;
  transition: opacity .5s ease, transform .5s cubic-bezier(.2,.7,.3,1);
  text-align: center;
}
.diagram.in .node { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.node__core {
  width: clamp(118px, 17vw, 152px); height: clamp(118px, 17vw, 152px); border-radius: 50%;
  background: var(--teal); display: grid; place-items: center; text-align: center;
  box-shadow: 0 0 0 1px rgba(255,255,255,.2), 0 0 60px rgba(31,163,154,.5);
  font-family: var(--display); font-weight: 700; letter-spacing: -0.01em; line-height: 1.05;
  font-size: clamp(15px, 2vw, 19px); padding: 12px;
}
.node__core span { display: block; font-family: var(--mono); font-weight: 500; font-size: 10px; letter-spacing: .14em; color: rgba(255,255,255,.7); margin-top: 4px; }
.node__spoke {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px; padding: 10px 16px; font-size: 13px; font-weight: 500;
  white-space: nowrap; backdrop-filter: blur(4px); color: rgba(255,255,255,.94);
  transition: background .25s, border-color .25s, color .25s, transform .25s;
}
.node:hover .node__spoke { background: var(--purple); border-color: var(--purple); }
@media (max-width: 620px) {
  .diagram { display: none; }
  .diagram-fallback { display: grid; }
}
.diagram-fallback { display: none; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 36px; }
.diagram-fallback .core-pill { grid-column: 1 / -1; text-align: center; background: var(--teal); border-radius: 12px; padding: 16px; font-family: var(--display); font-weight: 700; }
.diagram-fallback .spoke-pill { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16); border-radius: 10px; padding: 13px 14px; font-size: 13px; font-weight: 500; }

/* ============================================================
   METHODOLOGY
   ============================================================ */
.method__flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: clamp(40px, 5vw, 64px); }
.step { position: relative; padding-right: 28px; }
.step:not(:last-child)::after {
  content: ""; position: absolute; top: 22px; right: 14px; width: 22px; height: 2px;
  background: var(--ink-12);
}
.step:not(:last-child)::before {
  content: ""; position: absolute; top: 18px; right: 8px;
  border-left: 7px solid var(--ink-12); border-top: 5px solid transparent; border-bottom: 5px solid transparent;
  z-index: 1;
}
.step__num {
  width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid var(--ink-12);
  display: grid; place-items: center; font-family: var(--display); font-weight: 700; font-size: 18px;
  color: var(--purple); background: var(--white);
}
.step h3 { font-size: 23px; margin-top: 22px; letter-spacing: -0.02em; }
.step p { margin-top: 10px; font-size: 14.5px; color: var(--ink-55); line-height: 1.5; padding-right: 18px; }
@media (max-width: 820px) {
  .method__flow { grid-template-columns: 1fr 1fr; gap: 32px 0; }
  .step:nth-child(2)::after, .step:nth-child(2)::before { display: none; }
}
@media (max-width: 480px) {
  .method__flow { grid-template-columns: 1fr; gap: 26px; }
  .step::after, .step::before { display: none; }
  .step { padding-right: 0; }
}

.method__tech {
  margin-top: clamp(40px, 5vw, 64px);
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 30px;
  background: var(--purple); color: #fff; border-radius: var(--radius);
  padding: clamp(28px, 3.4vw, 46px);
}
.method__tech .eyebrow { color: rgba(255,255,255,.85); }
.method__tech .eyebrow::before { background: rgba(255,255,255,.6); }
.method__tech p { margin-top: 16px; font-size: clamp(17px, 1.8vw, 20px); line-height: 1.5; font-family: var(--display); font-weight: 500; letter-spacing: -0.01em; }
.measure h4 { font-family: var(--mono); font-weight: 500; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-bottom: 14px; }
.measure li { list-style: none; padding: 11px 0; border-top: 1px solid rgba(255,255,255,.18); font-size: 15px; font-weight: 500; display: flex; align-items: center; gap: 10px; }
.measure li::before { content: ""; width: 6px; height: 6px; background: var(--teal); border-radius: 50%; }
@media (max-width: 760px) { .method__tech { grid-template-columns: 1fr; } }

/* ============================================================
   TEAM
   ============================================================ */
.team__grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 22px; margin-top: clamp(40px, 5vw, 64px); align-items: start; }
.tcard { background: var(--white); border: 1px solid var(--ink-12); border-radius: var(--radius); overflow: hidden; }
.tcard__media { aspect-ratio: 16 / 10; }
.tcard__media .ph { border-radius: 0; width: 100%; height: 100%; }
.tcard__body { padding: clamp(26px, 3vw, 40px); }
.tcard__role { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--teal-dark); }
.tcard__role.purple { color: var(--purple); }
.tcard h3 { font-size: clamp(24px, 2.6vw, 33px); margin-top: 12px; letter-spacing: -0.025em; }
.tcard__quote { font-family: var(--display); font-weight: 500; font-size: clamp(19px, 2.1vw, 25px); line-height: 1.3; letter-spacing: -0.015em; margin: 22px 0; color: var(--ink); text-wrap: balance; }
.tcard__quote::before { content: "“"; color: var(--teal); }
.tcard__quote::after { content: "”"; color: var(--teal); }
.tcard__bio { font-size: 14.5px; color: var(--ink-55); line-height: 1.6; }
.tcard--lead .tcard__media { aspect-ratio: 16 / 11; }
@media (max-width: 860px) { .team__grid { grid-template-columns: 1fr; } }

.network {
  margin-top: 20px; border: 1px dashed var(--ink-12); border-radius: var(--radius);
  padding: 24px clamp(22px, 3vw, 34px); background: var(--paper);
  display: flex; align-items: center; gap: 18px 30px; flex-wrap: wrap;
}
.network__label { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-40); flex: 0 0 auto; }
.network__items { display: flex; gap: 10px; flex-wrap: wrap; }
.network__items span { font-size: 13px; font-weight: 500; padding: 8px 14px; border-radius: 999px; background: var(--white); border: 1px solid var(--ink-12); color: var(--ink-70); }

/* ============================================================
   POINT OF VIEW
   ============================================================ */
.pov { background: var(--white); }
.povcard {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--ink-12);
  background: var(--paper);
}
.povcard__body { padding: clamp(32px, 4vw, 60px); display: flex; flex-direction: column; justify-content: center; }
.povcard h2 { font-size: clamp(28px, 3.6vw, 46px); letter-spacing: -0.03em; line-height: 1.04; }
.povcard p { margin-top: 18px; color: var(--ink-55); font-size: 16px; line-height: 1.6; max-width: 46ch; }
.povcard__series { margin-top: 16px; font-size: 14px; color: var(--ink-40); }
.povcard__series b { color: var(--purple); font-weight: 600; }
.pov-actions { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.pov-signup { display: flex; gap: 8px; flex: 1 1 280px; min-width: 240px; }
.pov-signup input {
  flex: 1; padding: 13px 16px; border-radius: 999px; border: 1px solid var(--ink-12);
  font-family: var(--body); font-size: 15px; background: var(--white); color: var(--ink);
}
.pov-signup input:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-soft); }
.read-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 15px; color: var(--purple); }
.read-link svg { width: 15px; height: 15px; transition: transform .25s; }
.read-link:hover svg { transform: translateX(4px); }
.povcard__media { position: relative; min-height: 320px; }
.povcard__media .ph { position: absolute; inset: 0; border-radius: 0; }
@media (max-width: 820px) { .povcard { grid-template-columns: 1fr; } .povcard__media { min-height: 220px; order: -1; } }

/* ============================================================
   WHO THIS IS FOR
   ============================================================ */
.whofor { background: var(--paper); }
.whofor__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: clamp(36px, 5vw, 56px); }
.forcol { border-radius: var(--radius); padding: clamp(30px, 3.5vw, 46px); border: 1px solid var(--ink-12); background: var(--white); }
.forcol--is { border-color: var(--teal); background: var(--teal-soft); }
.forcol__title { display: flex; align-items: center; gap: 12px; font-family: var(--display); font-weight: 700; font-size: clamp(22px, 2.6vw, 30px); letter-spacing: -0.02em; }
.forcol__mark { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; flex: 0 0 auto; }
.forcol--is .forcol__mark { background: var(--teal); color: #fff; }
.forcol--not .forcol__mark { background: var(--ink-07); color: var(--ink-40); }
.forcol ul { margin-top: 24px; }
.forcol li { list-style: none; padding: 15px 0; border-top: 1px solid var(--ink-12); font-size: 16.5px; line-height: 1.45; display: flex; gap: 12px; }
.forcol--is li { border-top-color: rgba(31,163,154,.22); }
.forcol li .li-mark { flex: 0 0 auto; margin-top: 3px; }
.forcol--is .li-mark { color: var(--teal-dark); }
.forcol--not .li-mark { color: var(--ink-40); }
.forcol--not li { color: var(--ink-55); }
@media (max-width: 760px) { .whofor__grid { grid-template-columns: 1fr; } }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--ink); color: #fff; }
.contact__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
.contact .eyebrow { color: var(--teal); }
.contact h2 { font-size: clamp(34px, 5vw, 62px); letter-spacing: -0.03em; line-height: 1; margin-top: 18px; }
.contact__close { margin-top: 22px; font-family: var(--display); font-weight: 500; font-size: clamp(19px, 2.2vw, 26px); line-height: 1.25; letter-spacing: -0.01em; color: rgba(255,255,255,.9); max-width: 18ch; }
.contact__detail { margin-top: 34px; display: flex; flex-direction: column; gap: 4px; }
.contact__detail a { font-size: 18px; font-weight: 500; color: #fff; }
.contact__detail span { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.5); }

.form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.55); }
.field input, .field select, .field textarea {
  font-family: var(--body); font-size: 15.5px; color: #fff;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-sm); padding: 14px 16px; transition: border-color .25s, box-shadow .25s, background .25s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.4); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal); background: rgba(255,255,255,.08); box-shadow: 0 0 0 3px rgba(31,163,154,.25); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23ffffff' stroke-opacity='.6' stroke-width='1.6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.field select option { color: #111; }
.form .btn { grid-column: 1 / -1; margin-top: 6px; }
.form__success { grid-column: 1/-1; display: none; align-items: center; gap: 12px; padding: 16px; border-radius: var(--radius-sm); background: rgba(31,163,154,.15); border: 1px solid var(--teal); color: #fff; font-weight: 500; }
.form__success.show { display: flex; }
.form__error {
  grid-column: 1/-1; display: none; align-items: center; gap: 8px; padding: 14px 16px;
  border-radius: var(--radius-sm); background: rgba(220,80,70,.14);
  border: 1px solid rgba(220,80,70,.5); color: #ffd9d4; font-size: 14px; font-weight: 500;
}
.form__error.show { display: flex; }
.form__error a { color: #fff; text-decoration: underline; }
@media (max-width: 880px) { .contact__grid { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .form { grid-template-columns: 1fr; } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: rgba(255,255,255,.7); border-top: 1px solid rgba(255,255,255,.1); }
.footer__inner { padding-block: clamp(40px, 5vw, 60px); display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; }
.footer .logo { color: #fff; }
.footer__tag { margin-top: 14px; font-size: 14px; max-width: 30ch; line-height: 1.5; }
.footer__col h5 { font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 14px; }
.footer__col a { display: block; padding: 6px 0; font-size: 14.5px; color: rgba(255,255,255,.78); transition: color .2s; }
.footer__col a:hover { color: #fff; }
.footer__bottom { padding: 22px var(--gutter); border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12.5px; color: rgba(255,255,255,.45); max-width: var(--maxw); margin-inline: auto; }
.footer__socials { display: flex; gap: 10px; }
.footer__socials a { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); display: grid; place-items: center; color: rgba(255,255,255,.7); transition: all .25s; }
.footer__socials a:hover { background: var(--teal); border-color: var(--teal); color: #fff; }
.footer__socials svg { width: 15px; height: 15px; }
@media (max-width: 720px) { .footer__inner { grid-template-columns: 1fr 1fr; } .footer__brand { grid-column: 1/-1; } }

/* ============================================================
   MOBILE FOLLOW CTA
   ============================================================ */
.mobile-cta {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90;
  display: none; transform: translateY(140%); transition: transform .4s cubic-bezier(.2,.7,.3,1);
}
.mobile-cta.show { transform: translateY(0); }
.mobile-cta .btn { width: 100%; box-shadow: 0 8px 30px rgba(31,163,154,.45); padding: 16px; }
@media (max-width: 920px) { .mobile-cta { display: block; } }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s cubic-bezier(.2,.7,.3,1), transform .8s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .diagram__line { stroke-dashoffset: 0 !important; }
  .node { opacity: 1 !important; transform: translate(-50%,-50%) !important; }
}

.section-head { max-width: 760px; }
.section-head h2 { font-size: clamp(32px, 4.8vw, 60px); letter-spacing: -0.03em; line-height: 1.02; margin-top: 20px; }
