/* GENERATED from src/styles.css by tools/build-css.mjs — edit the source, not this file. */
/* =====================================================================
   Prest Ventures — styles (SOURCE, authored in px at the 1440 design size)

   Build: `node tools/build-css.mjs` converts every lowercase `px` value
   into `rem` and writes css/styles.css. Because the root font-size is
   fluid above 90rem, the whole design scales proportionally on wide and
   ultrawide monitors while staying pixel-exact at 1440.

   Values written with UPPERCASE `PX` are intentionally NOT converted
   (hairline borders, media queries) so they stay crisp / stable.
   ===================================================================== */

/* ---------- Fonts ---------- */
@font-face {
  font-family: "PP Neue Montreal";
  src: url("../fonts/PPNeueMontreal-Regular.woff2") format("woff2"),
       url("../fonts/PPNeueMontreal-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "PP Neue Montreal";
  src: url("../fonts/PPNeueMontreal-Medium.woff2") format("woff2"),
       url("../fonts/PPNeueMontreal-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
/* Metric-matched fallback (SIL OFL). Inter Tight at 99% is within ~1% of
   Neue Montreal's widths and shares its neo-grotesque letterforms, so the
   layout and line breaks hold even before the licensed PP Neue Montreal
   files are dropped into /fonts. */
@font-face {
  font-family: "Inter Tight";
  src: url("../fonts/InterTight-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  size-adjust: 99%;
}

/* ---------- Tokens ---------- */
:root {
  --green: #bcf6c6;
  --green-rail: #c0f7c9;
  --green-line: #aae0b5;
  --sage: #e0ebe0;
  --sage-line: #d1ded3;
  --sage-2: #d7e3d8;
  --stamp: #edf4ed;
  --ink: #002d19;
  --ink-80: rgba(0, 45, 25, 0.8);
  --ink-24: rgba(0, 45, 25, 0.24);
  --ink-12: rgba(0, 45, 25, 0.12);
  --ink-06: rgba(0, 45, 25, 0.06);
  --dark: #002d19;
  --dark-line: #0a3522;
  --accent: #82fa8c;
  --paper: #f3fff5;
  --white-80: rgba(255, 255, 255, 0.8);

  --font-sans: "PP Neue Montreal", "Neue Montreal", "Inter Tight", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-mono: "Geist Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  --page: 90rem;   /* design frame width */
  --rail: 3.3125rem;     /* side pattern width */
  --gutter: 3.75rem;   /* inner gutter next to rail */
  --edge: 7.0625rem;    /* rail + gutter → content starts here */
  --nav-h: 4rem;
}

/* Fluid scale: 1rem at 1440 → 1.5rem at 2160 (1.5×). Wider than that it caps. */
html {
  font-size: clamp(14px, 1.1111111vw, 24px);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
/* Reduced motion: when JS runs and the OS asks for it (and it is not forced
   on via ?motion=1) every transition/animation collapses to instant. */
html.js:not(.motion) { scroll-behavior: auto; }
html.js:not(.motion) *,
html.js:not(.motion) *::before,
html.js:not(.motion) *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }

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

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--ink);
  background: var(--sage);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-variant-ligatures: no-common-ligatures; /* Figma renders "fi" as two glyphs */
  overflow-x: clip;
}

/* Text is selectable everywhere (highlight, Ctrl+A). Images are not: no
   selection, no dragging, no long-press callout, never a click target. */
::selection { background: var(--ink); color: var(--green); }
.section--dark ::selection { background: var(--accent); color: var(--ink); }
.section--dark input::selection,
.section--dark textarea::selection { background: var(--accent); color: var(--ink); }
img, svg {
  display: block;
  max-width: 100%;
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  pointer-events: none;         /* links wrapping an image still work through the parent */
}
img { height: auto; }
/* keep the accordion / social icons reachable through their parent controls */
.faq__icon, .footer__social a, .contact__email, .nav__brand { pointer-events: auto; }
a { color: inherit; }
h1, h2, h3, p { margin: 0; }
button { font: inherit; color: inherit; }

.skip-link {
  position: absolute; left: 0.5rem; top: -6.25rem; z-index: 1000;
  padding: 0.5rem 0.75rem; background: var(--ink); color: #fff; border-radius: 0.375rem;
  font: 500 0.875rem/1.25rem var(--font-mono); text-transform: uppercase; text-decoration: none;
}
.skip-link:focus { top: 0.5rem; }

/* ---------- Type ---------- */
h2 {
  font-weight: 400;
  font-size: 2.75rem;
  line-height: 1.2;
  letter-spacing: -0.055rem;
  color: var(--ink);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.125rem;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}
.eyebrow__tri {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.5625rem;
  height: 0.6495rem;
  flex-shrink: 0;
}
.eyebrow__tri img {
  width: 0.6495rem;
  height: 0.5625rem;
  max-width: none;
  transform: rotate(90deg);
}

.headings {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}
.headings--center { align-items: center; text-align: center; }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3.8125rem;
}
.section-head--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  margin-left: auto;
  margin-right: auto;
}
.section-head__aside {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--ink-80);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.125rem;
  border: 0;
  border-radius: 62.4375rem;
  /* Figma strokes sit inside the frame, so the 0.0625rem outline is drawn with an
     inset shadow: button heights stay exactly padding + line-height. */
  --stroke: transparent;
  box-shadow: inset 0 0 0 1px var(--stroke);
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.25rem;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.btn:active { transform: translateY(1px); }
.btn:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }
.btn--dark {
  background: var(--ink);
  color: #fff;
  --stroke: rgba(255, 255, 255, 0.12);
}
.btn--dark:hover { background: #07402a; }
.btn--outline {
  background: transparent;
  color: var(--ink);
  --stroke: var(--ink-12);
}
.btn--outline:hover { background: rgba(0, 45, 25, 0.06); }
.btn--light {
  background: var(--paper);
  color: var(--ink);
  --stroke: var(--ink-12);
  padding: 0.5rem 1rem;
}
.btn--light:hover { background: #fff; }
.btn--light:focus-visible { outline-color: #fff; }
.btn--sm { padding: 0.375rem 0.75rem; --stroke: transparent; }
.btn--xs { padding: 0.3125rem 0.75rem; font-size: 0.75rem; }

/* ---------- Sections, rails, containers ---------- */
.section {
  position: relative;
  overflow: hidden;
}
.section--green { background: var(--green); }
.section--sage  { background: var(--sage); }
.section--dark  { background: var(--dark); color: #fff; }

.rail {
  position: absolute;
  top: 0;
  bottom: 0;
  width: var(--rail);
  z-index: 3;
  pointer-events: none;
  background-repeat: repeat;
}
.rail--l { left: 0;  border-right: 1px solid; }
.rail--r { right: 0; border-left: 1px solid; }
.section--green .rail {
  background-color: var(--green-rail);
  border-color: var(--green-line);
  background-image: repeating-linear-gradient(to bottom, var(--green-line) 0 1px, transparent 1px 0.625rem);
}
.section--sage .rail {
  background-color: var(--sage);
  border-color: var(--sage-line);
  background-image: repeating-linear-gradient(to bottom, var(--sage-line) 0 1px, transparent 1px 0.625rem);
}
.section--dark .rail {
  background-color: var(--dark);
  border-color: var(--dark-line);
  background-image: repeating-linear-gradient(to bottom, var(--dark-line) 0 1px, transparent 1px 0.625rem);
}

.inner {
  position: relative;
  max-width: var(--page);
  margin: 0 auto;
  padding-left: var(--edge);
  padding-right: var(--edge);
}
.bleed {
  position: relative;
  max-width: var(--page);
  margin: 0 auto;
  padding-left: var(--rail);
  padding-right: var(--rail);
}

/* =====================================================================
   NAV
   ===================================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.nav--scrolled,
.nav--open {
  background: rgba(224, 235, 224, 0.92);
  -webkit-backdrop-filter: blur(0.875rem);
  backdrop-filter: blur(0.875rem);
  box-shadow: 0 1px 0 rgba(0, 45, 25, 0.08);
}
.nav--open { background: var(--green); }
.nav__inner {
  max-width: var(--page);
  height: var(--nav-h);
  margin: 0 auto;
  padding: 0 var(--edge);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  width: 7.8125rem;
  flex-shrink: 0;
  font-weight: 500;
  font-size: 1rem;
  line-height: normal;
  letter-spacing: -0.01rem;
  color: var(--ink);
  text-decoration: none;
}
.nav__brand img { width: 1.625rem; height: 1.5rem; }
.nav__links { display: flex; align-items: center; gap: 2.5rem; }
.nav__links a,
.nav__mobile nav a {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.125rem;
  text-transform: uppercase;
  color: var(--ink-80);
  text-decoration: none;
  transition: color 0.2s ease;
}
.nav__links a:hover,
.nav__mobile nav a:hover { color: var(--ink); }
.nav__cta { flex-shrink: 0; }

.nav__toggle {
  display: none;
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  margin-right: -0.5rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}
.nav__toggle span {
  position: absolute;
  left: 0.5625rem;
  width: 1.375rem;
  height: 0.09375rem;
  background: var(--ink);
  transition: transform 0.3s ease, top 0.3s ease;
}
.nav__toggle span:nth-child(1) { top: 0.9375rem; }
.nav__toggle span:nth-child(2) { top: 1.5rem; }
.nav--open .nav__toggle span:nth-child(1) { top: 1.21875rem; transform: rotate(45deg); }
.nav--open .nav__toggle span:nth-child(2) { top: 1.21875rem; transform: rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 1.5rem;
  padding: 0.5rem 1.25rem 1.75rem;
  border-top: 1px solid var(--green-line);
}
.nav__mobile nav { display: flex; flex-direction: column; }
.nav__mobile nav a { display: block; padding: 0.875rem 0; font-size: 0.9375rem; border-bottom: 1px solid var(--ink-06); }
.nav__mobile .btn { align-self: flex-start; }

/* =====================================================================
   HERO
   ===================================================================== */
.hero__inner {
  min-height: 56.25rem;
  padding-top: 13.25rem;
  padding-bottom: 9.5rem;
}
.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3.6875rem;
  max-width: 46.875rem;
}
.hero__text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hero__title {
  font-weight: 400;
  font-size: 3.5rem;
  line-height: 1.15;
  letter-spacing: -0.07rem;
  max-width: 36.5rem;
  color: var(--ink);
}
.hero__sub {
  font-size: 1rem;
  line-height: 1.5;
  max-width: 32.8125rem;
  color: var(--ink-80);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.hero__art {
  position: absolute;
  left: 47.9375rem;
  top: 5rem;
  width: 34.125rem;
  height: 51.25rem;
  pointer-events: none;
  /* no z-index here: a stacking context would isolate the statue from the
     section background and break its difference blend */
}
.hero__art-inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero__statue {
  width: 34.125rem;
  height: 51.25rem;
  max-width: none;
  object-fit: cover;
  transform: scaleX(-1);          /* Figma flips the source horizontally */
  mix-blend-mode: difference;     /* black body disappears, wire lines turn green */
}
.hero__fade {
  position: absolute;
  left: -8.75rem;
  top: 33.125rem;
  width: 43.0625rem;
  height: 18.125rem;
  background: linear-gradient(180deg, rgba(188, 246, 198, 0) 7.71%, #bcf6c6 100%);
}

/* =====================================================================
   THESIS
   ===================================================================== */
.thesis .inner {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}
.thesis .headings { max-width: 34.375rem; }
.thesis .headings h2 { max-width: 32.5rem; }
.thesis .section-head__aside {
  max-width: 23.875rem;
  margin-bottom: 0.1875rem;
}
.thesis__grid { display: flex; flex-direction: column; }
.thesis__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}
.thesis__row + .thesis__row { margin-top: -1px; }

/* Figma strokes are 0.0625rem, dash 8 / gap 8, inside the frame. Browsers draw
   `border-style: dashed` with ~0.1875rem dashes, so the dashes are painted as
   background gradients instead. */
.feature-card,
.thesis__art {
  height: 32.625rem;
  border: 0;
  background-color: var(--sage);
  background-image:
    repeating-linear-gradient(90deg,  var(--ink-24) 0 0.5rem, transparent 0.5rem 1rem),
    repeating-linear-gradient(90deg,  var(--ink-24) 0 0.5rem, transparent 0.5rem 1rem),
    repeating-linear-gradient(180deg, var(--ink-24) 0 0.5rem, transparent 0.5rem 1rem),
    repeating-linear-gradient(180deg, var(--ink-24) 0 0.5rem, transparent 0.5rem 1rem);
  background-size: 100% 1px, 100% 1px, 1px 100%, 1px 100%;
  background-position: 0 0, 0 100%, 0 0, 100% 0;
  background-repeat: no-repeat;
  overflow: hidden;
}
.feature-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 5rem;
  padding: 2.5625rem; /* 40 padding + 1 inside stroke, as in Figma */
}
.feature-card__top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.5rem;
}
.feature-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
}
.feature-card__content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 30.375rem;
}
.feature-card__content h3 {
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--ink);
}
.feature-card__content p {
  font-size: 1.125rem;
  line-height: 1.5;
  color: var(--ink-80);
  max-width: var(--w, none);
}
.feature-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.feature-card__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.feature-card__list .num {
  flex-shrink: 0;
  width: 1.25rem;
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1rem;
  color: var(--ink);
}
.feature-card__list li > span:last-child {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--ink-80);
}
.thesis__art {
  margin-left: -1px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.625rem;
}
.thesis__art img { flex-shrink: 0; max-width: none; }
.thesis__row:nth-child(1) .thesis__art img { width: 23.6875rem; height: 35.25rem; }
.thesis__row:nth-child(2) .thesis__art img { width: 24.375rem; height: 32.71381rem; }
.thesis__row:nth-child(3) .thesis__art img { width: 32.9375rem; height: 22rem; }

/* =====================================================================
   FOCUS
   ===================================================================== */
.focus { padding-bottom: 6.25rem; }
.focus .inner { padding-top: 6.25rem; }
.focus__head { max-width: 33.625rem; }
.focus .headings h2 { max-width: 32.5rem; }

.focus__band {
  position: relative;
  overflow: hidden;
  background: var(--accent);
  padding: 3.125rem 3.75rem;
}
.focus__painting {
  position: absolute;
  left: calc(50% + 0.84375rem);
  top: 50%;
  width: 103.375rem;
  height: 69.4375rem;
  max-width: none;
  transform: translate(-50%, -50%);
  object-fit: cover;
}
.focus__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--sage);
  border: 1px solid var(--sage-line);
}
.focus__card {
  --divider-img: repeating-linear-gradient(180deg, var(--ink-12) 0 0.5rem, transparent 0.5rem 1rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.5rem;
  padding: 2.5rem;
  background-color: var(--sage);
  background-image: var(--divider-img);   /* 8/8 dashed right divider */
  background-size: 1px 100%;
  background-position: 100% 0;
  background-repeat: no-repeat;
}
.focus__card:nth-child(3n)     { background-image: none; }
.focus__card:nth-child(-n + 3) { border-bottom: 1px solid var(--sage-line); }
.focus__card > img { width: 2rem; height: 2rem; }
.focus__card-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}
.focus__card h3 {
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--ink);
}
.focus__card p {
  font-size: 1.125rem;
  line-height: 1.5;
  color: var(--ink-80);
  max-width: 20.25rem;
}

/* =====================================================================
   WHAT WE LOOK FOR
   ===================================================================== */
.wwlf .inner {
  padding-top: 6.25rem;
  padding-bottom: 7.75rem; /* Figma frame leaves 7.75rem under the grid */
}
.wwlf .headings h2 { max-width: 25.4375rem; }
.wwlf .section-head__aside {
  max-width: 32.8125rem;
  padding: 0.25rem 0;
}
.wwlf__grid {
  background-image:
    repeating-linear-gradient(90deg,  var(--ink-24) 0 0.5rem, transparent 0.5rem 1rem),
    repeating-linear-gradient(90deg,  var(--ink-24) 0 0.5rem, transparent 0.5rem 1rem),
    repeating-linear-gradient(180deg, var(--ink-24) 0 0.5rem, transparent 0.5rem 1rem),
    repeating-linear-gradient(180deg, var(--ink-24) 0 0.5rem, transparent 0.5rem 1rem);
  background-size: 100% 1px, 100% 1px, 1px 100%, 1px 100%;
  background-position: 0 0, 0 100%, 0 0, 100% 0;
  background-repeat: no-repeat;
}
.wwlf__row {
  display: grid;
  grid-template-columns: minmax(0, 671fr) minmax(0, 543fr);
}
.wwlf__row--flip {
  grid-template-columns: minmax(0, 543fr) minmax(0, 671fr);
  background-image: repeating-linear-gradient(90deg, var(--ink-24) 0 0.5rem, transparent 0.5rem 1rem);
  background-size: 100% 1px;
  background-position: 0 0;
  background-repeat: no-repeat;
}
.wwlf__card {
  height: 31.25rem;
  min-width: 0;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.wwlf__card + .wwlf__card {
  background-image: repeating-linear-gradient(180deg, var(--ink-24) 0 0.5rem, transparent 0.5rem 1rem);
  background-size: 1px 100%;
  background-position: 0 0;
  background-repeat: no-repeat;
}
.wwlf__card h3 {
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--ink);
}
.wwlf__card > p {
  font-size: 1.125rem;
  line-height: 1.5;
  color: var(--ink-80);
}
.wwlf__art {
  position: relative;
  flex: 1 1 0;
  min-height: 0;
  width: 100%;
  overflow: hidden;
  background: var(--sage-2);
}
.wwlf__dots {
  position: absolute;
  top: 0;
  width: 74.4375rem;
  height: 19.625rem;
  max-width: none;
}
.wwlf__art--a .wwlf__dots,
.wwlf__art--d .wwlf__dots { left: 50%; transform: translateX(-50%); }
.wwlf__art--b .wwlf__dots { left: 0; }
.wwlf__art--c .wwlf__dots { right: 0; }

/* shared window */
.win {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16.125rem;
  height: 11.5rem;
  transform: translate(-50%, -50%);
  background: var(--sage-2);
  border: 0.08338rem solid var(--ink);
  border-radius: 0.95856rem;
  box-shadow: 0 0.25rem 0.65rem -0.25rem rgba(0, 0, 0, 0.24);
  overflow: hidden;
}
.win__head {
  position: absolute;
  left: -0.07375rem;
  top: -0.08313rem;
  width: 16.125rem;
  height: 1.6875rem;
  max-width: none;
}
.badge { position: absolute; max-width: none; }

/* A — a real user problem */
.win--a {
  width: 11.8125rem;
  height: 12.4375rem;
  top: calc(50% + 0.21875rem);
  border-width: 0.09419rem;
  border-radius: 1.08331rem;
}
.win--a .win__bar {
  position: absolute;
  top: -0.10063rem;
  left: calc(50% + 0.03125rem);
  width: 13.375rem;
  height: 1.6875rem;
  transform: translateX(-50%);
  background: var(--ink);
}
.win-a__col {
  position: absolute;
  left: calc(50% + 0.005rem);
  top: calc(50% + 0.7775rem);
  width: 7.77163rem;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.413rem;
}
.win-a__col > img { width: 2.89613rem; height: 2.54294rem; }
.win-a__lines {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.56519rem;
}
.win-a__lines i {
  display: block;
  width: 100%;
  height: 0.18837rem;
  border-radius: 4.663rem;
  background: var(--ink);
}
.win-a__lines i:nth-child(2) { width: 5.8405rem; }
.win-a__lines i:nth-child(3) { width: 7.01806rem; }
.win-a__btn {
  width: 4.4275rem;
  height: 1.1775rem;
  border: 0.09419rem solid var(--ink);
  border-radius: 0.32969rem;
}
.badge--bird1 { left: 26.69%; top: 22.29%; width: 3.8125rem; height: 3.8125rem; }
.badge--bird2 { left: 60.46%; top: 63.38%; width: 3.8125rem; height: 3.8125rem; }

/* B — an onchain advantage */
.win--b { left: calc(50% - 0.78125rem); }
.win-b__bars {
  position: absolute;
  bottom: 1.4375rem;
  left: calc(50% - 0.00813rem);
  transform: translateX(-50%);
  display: flex;
  align-items: flex-end;
  gap: 0.53794rem;
}
.win-b__bars i {
  display: block;
  width: 1.92112rem;
  border: 0.07687rem solid var(--ink);
  background: var(--sage-2);
}
.win-b__bars i:nth-child(1) { height: 2.53587rem; }
.win-b__bars i:nth-child(2) { height: 3.6885rem; }
.win-b__bars i:nth-child(3) { height: 4.6875rem; }
.win-b__arrow {
  position: absolute;
  left: 4.6rem;
  top: 3.22313rem;
  width: 6.71125rem;
  height: 3.19975rem;
  max-width: none;
}
.badge--check { left: 68.96%; top: 33.44%; width: 3.25rem; height: 3.25rem; }

/* C — a path to a large market */
.win--c {
  left: calc(50% - 0.8125rem);
  background: none;
  border: 0;
  box-shadow: none;
  overflow: visible;
}
.win-c__img {
  position: absolute;
  left: -0.4rem;
  top: -0.15rem;
  width: 16.925rem;
  height: 12.3rem;
  max-width: none;
}
.win-c__tri-l,
.win-c__tri-r {
  position: absolute;
  top: 5.20625rem;
  width: 5.58681rem;
  height: 3.82912rem;
  max-width: none;
}
.win-c__tri-l { left: 2.58125rem; }
.win-c__tri-r { left: 8.08125rem; transform: scaleX(-1); }
.win-c__tri-v {
  position: absolute;
  left: 8.09375rem;
  top: 5.28125rem;
  width: 0.0625rem;
  height: 3.8125rem;
}
.badge--case { left: 7.03125rem; top: 2.625rem; width: 2.1875rem; height: 2.1875rem; }

/* D — exceptional founder velocity */
.win--d { left: calc(50% + 0.03125rem); }
.win-d__group {
  position: absolute;
  left: calc(50% + 0.03125rem);
  top: calc(50% + 0.78125rem);
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.win-d__sq {
  flex-shrink: 0;
  width: 4.625rem;
  height: 4.5625rem;
  border: 0.0625rem solid var(--ink);
  border-radius: 0.5625rem;
}
.win-d__col {
  width: 8.5625rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.875rem;
}
.win-d__lines {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.4375rem;
}
.win-d__lines i {
  display: block;
  width: 100%;
  height: 0.375rem;
  border-radius: 6.1875rem;
  background: var(--ink);
}
.win-d__lines i:nth-child(2) { width: 7.3125rem; }
.win-d__lines i:nth-child(3) { width: 6.3125rem; }
.win-d__pill {
  width: 3.3125rem;
  height: 1.25rem;
  border-radius: 6.1875rem;
  background: var(--ink);
}

/* =====================================================================
   HOW WE PARTNER
   ===================================================================== */
.partner .inner {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}
.partner__hands {
  position: absolute;
  left: 39.9375rem;
  top: -17.1875rem;
  width: 46.8125rem;
  height: 69.6875rem;
  max-width: none;
  opacity: 0.27;
  --reveal-opacity: 0.27;
  pointer-events: none;
}
.partner__fade {
  position: absolute;
  top: 0;
  height: 19.25rem;
  pointer-events: none;
}
.partner__fade--l {
  left: 39.625rem;
  width: 13.375rem;
  background: linear-gradient(90deg, #bcf6c6 17.554%, rgba(188, 246, 198, 0) 100%);
}
.partner__fade--r {
  left: 75.5rem;
  top: 7.375rem;
  width: 11.375rem;
  background: linear-gradient(270deg, #bcf6c6 17.554%, rgba(188, 246, 198, 0) 100%);
}
.partner__head { position: relative; }
.partner__head h2 { max-width: 31.875rem; }

.partner__cols {
  position: relative;
  margin-top: 21.0625rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 2.75rem;
  row-gap: 3rem;
}
.partner__cols::before {
  content: "";
  position: absolute;
  left: 0.375rem;
  right: 0;
  top: 0.1875rem;
  height: 1px;
  background: var(--ink-12);
}
.partner__col {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.partner__col::before {           /* per-column line, used when columns wrap */
  content: "";
  display: none;
  position: absolute;
  left: 0.375rem;
  right: 0;
  top: 0.1875rem;
  height: 1px;
  background: var(--ink-12);
}
.partner__marks {
  position: relative;
  display: inline-flex;
  gap: 0.0625rem;
  height: 0.5rem;
  background: var(--green);
}
.partner__marks i {
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--ink);
}
.partner__title {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-top: 2rem;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--ink);
  white-space: nowrap;
}
.partner__title img { width: 1.5rem; height: 1.5rem; }
.partner__col p {
  margin-top: 3.5rem;
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--ink-80);
}

/* =====================================================================
   ABOUT
   ===================================================================== */
.about { padding-bottom: 3.3125rem; }
.about .inner { padding-top: 6.25rem; }
.about__head { max-width: 35.1875rem; }
.about__head .section-head__aside { max-width: 28.4375rem; }

.about__box {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding: 3.75rem 1.25rem 2.6875rem;
}
.about__bg {
  position: absolute;
  left: calc(50% - 0.84375rem);
  top: calc(50% + 5.59375rem);
  width: 89.1875rem;
  height: 59.875rem;
  max-width: none;
  transform: translate(-50%, -50%);
  object-fit: cover;
}
.stamp {
  position: relative;
  isolation: isolate;
  width: 29.5625rem;
  max-width: 100%;
  min-height: 36.25rem;
  margin: 0 auto;
  padding: 1.1875rem 1.25rem 0.8125rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.stamp::before {                  /* perforated stamp edge, 9-sliced so it can resize */
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border: 1.5rem solid transparent;
  border-image: url("../assets/stamp.svg") 24 fill / 1.5rem / 0 round;
}
.stamp__header {
  position: relative;
  width: 100%;
  height: 5.5rem;
  overflow: hidden;
  background: var(--sage);
}
.stamp__header-bg {
  position: absolute;
  left: -0.9375rem;
  top: -6.28125rem;
  width: 32.96175rem;
  height: 22.125rem;
  max-width: none;
  object-fit: cover;
}
.stamp__icons {
  position: absolute;
  left: calc(50% - 0.01438rem);
  top: calc(50% - 0.02312rem);
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.stamp__icon {
  display: flex;
  padding: 0.625rem;
  border-radius: 6.1875rem;
  background: rgba(255, 255, 255, 0.04);
}
.stamp__icon img { width: 1.32937rem; height: 1.32937rem; }
.stamp__text {
  width: 100%;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  font-weight: 500;
  color: var(--ink-80);
}
.stamp__text h3 {
  font-weight: 500;
  font-size: 1.75rem;
  line-height: 1.4;
  letter-spacing: -0.0175rem;
  max-width: 22.75rem;
}
.stamp__text p {
  font-size: 1.25rem;
  line-height: 1.6;
}
.stamp__text p:nth-of-type(2) { max-width: 25.5625rem; }

/* =====================================================================
   FAQ
   ===================================================================== */
.faq { padding-bottom: 1.5rem; } /* Figma: 41.0625rem content frame inside a 42.5625rem section */
.faq__inner {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 14.125rem;
  padding: 5rem 3.75rem;
}
.faq__card {
  flex-shrink: 0;
  width: 18.0625rem;
  height: 13.5625rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--ink);
  color: var(--sage);
}
.faq__card-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}
.faq__card-q {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}
.faq__card-q img { width: 1.5rem; height: 1.5rem; }
.faq__card-q h3 {
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--sage);
}
.faq__card-note {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--sage);
  white-space: nowrap;
}
.faq__card-note a { color: inherit; text-decoration: none; }
.faq__card-note a:hover { text-decoration: underline; }

.faq__main {
  width: 37.375rem;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.faq__main .headings { max-width: 33.875rem; }
.faq__list { display: flex; flex-direction: column; }
.faq__item + .faq__item {
  margin-top: 1rem;
  padding-top: 0.9375rem;              /* 16 + 0.0625rem line + 15 = 32, as in Figma */
  border-top: 1px solid var(--ink-06);
}
.faq__h { margin: 0; font: inherit; }
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--ink);
}
.faq__q:focus-visible { outline: 2px solid var(--ink); outline-offset: 4px; }
.faq__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
}
.faq__icon img {
  width: 0.75rem;
  height: 0.75rem;
  transition: transform 0.3s ease;
}
.faq__item.is-open .faq__icon img { transform: rotate(45deg); }
.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.faq__a[hidden] { display: grid; }  /* keep animatable; JS manages visibility */
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p {
  padding-top: 0.5rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--ink-80);
}

/* =====================================================================
   CONTACT
   ===================================================================== */
.contact__inner {
  display: flex;
  align-items: stretch;
  gap: 0.8125rem;
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}
.contact__pattern {
  position: absolute;
  left: 0;
  top: 0;
  width: 32.75rem;
  height: 26.375rem;
  max-width: none;
  transform: rotate(180deg);
  pointer-events: none;
}
.contact__intro {
  position: relative;
  width: 38.1875rem;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2.5rem;
}
.contact__intro-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}
.contact__intro-top > img { width: 3rem; height: 3rem; }
.contact__intro-text {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.contact__intro h2 {
  color: #fff;
  max-width: 25.3125rem;
}
.contact__intro p {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--white-80);
  max-width: 25.3125rem;
}
.contact__email {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  align-self: flex-start;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--white-80);
  text-decoration: underline;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  transition: color 0.2s ease;
}
.contact__email:hover { color: #fff; }
.contact__email img { width: 1.25rem; height: 1.25rem; }

.contact__form {
  position: relative;
  width: 37rem;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.5rem;
}
.contact__fields {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.field {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.field > span {
  font-size: 1rem;
  line-height: 1.5;
  color: #fff;
}
.field input,
.field textarea {
  width: 100%;
  margin: 0;
  padding: 0.6875rem 1rem;             /* 2.875rem tall, as in Figma */
  border: 0;
  --stroke: rgba(224, 235, 224, 0.24);
  box-shadow: inset 0 0 0 1px var(--stroke);
  border-radius: 6249.9375rem;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.5;
  color: #fff;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  transition: box-shadow 0.2s ease, background-color 0.2s ease;
}
.field textarea {
  display: block;
  min-height: 5.875rem;
  border-radius: 0.75rem;
  resize: vertical;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--white-80); opacity: 1; }
.field input:hover,
.field textarea:hover { --stroke: rgba(224, 235, 224, 0.4); }
.field input:focus,
.field textarea:focus { --stroke: rgba(224, 235, 224, 0.7); background: rgba(255, 255, 255, 0.03); }
.field input:user-invalid,
.field textarea:user-invalid { --stroke: #ff9d8a; }
.field input:-webkit-autofill,
.field textarea:-webkit-autofill {
  -webkit-text-fill-color: #fff;
  -webkit-box-shadow: inset 0 0 0 1px var(--stroke), inset 0 0 0 62.5rem #002d19;
  transition: background-color 9999s;
}
.field-row {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.field-row .field { flex: 1 1 0; min-width: 0; }
.contact__status {
  margin-top: -1.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--white-80);
  min-height: 0;
}
.contact__status:empty { display: none; }
.contact__status a { color: #fff; text-decoration: underline; text-underline-offset: 0.125rem; }
.contact__status a:hover { text-decoration: none; }
.btn[disabled] { opacity: 0.6; cursor: progress; transform: none; }

/* honeypot field: off-screen, never visible or focusable by people */
.hp {
  position: absolute !important;
  left: -624.9375rem;
  width: 0.0625rem;
  height: 0.0625rem;
  opacity: 0;
  pointer-events: none;
}

/* success state, swapped in for the fields after a delivered submission */
.contact__done {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  color: #fff;
  outline: none;
}
.contact__done-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 0.5rem;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}
.contact__done-mark svg { width: 1.5rem; height: 1.5rem; }
.contact__done h3 {
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.5;
}
.contact__done p {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--white-80);
  max-width: 27.5rem;
}
.contact__done strong { font-weight: 500; color: #fff; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer__inner { padding-top: 5rem; }
.footer__glow {
  position: absolute;
  left: calc(50% - 0.03125rem);
  top: -37.4375rem;
  width: 100.3125rem;
  height: 52.875rem;
  max-width: none;
  transform: translateX(-50%);
  pointer-events: none;
}
.footer__main {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.footer__head {
  display: flex;
  align-items: flex-end;
  gap: 10.25rem;
}
.footer__brand {
  flex-shrink: 0;
  width: 15.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: normal;
  letter-spacing: -0.0125rem;
  color: #fff;
  text-decoration: none;
}
.footer__logo img { width: 2rem; height: 2rem; }
.footer__tagline {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--white-80);
}
.footer__right {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.25rem 0;
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
}
.footer__links a {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.25;
  text-transform: uppercase;
  color: var(--white-80);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer__links a:hover { color: #fff; }
.footer__social { display: flex; align-items: center; gap: 0.75rem; }
.footer__social a { display: flex; opacity: 1; transition: opacity 0.2s ease; }
.footer__social a:hover { opacity: 0.7; }
.footer__social img { width: 1.5rem; height: 1.5rem; }
.footer__bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer__legal {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--white-80);
}
.footer__wordmark {
  position: relative;
  width: 81.4375rem;
  height: 12.25rem;
  max-width: none;
  margin: 4rem 0 -1.3125rem calc((100% - 81.4375rem) / 2);
  pointer-events: none;
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */

/* ---- Laptop / small desktop: fixed 1rem base, fluid widths ---- */
@media (max-width: 1259px) {
  html { font-size: 16px; }
  :root { --gutter: 3rem; --edge: 6.3125rem; }

  .hero__inner { min-height: calc(min(28.75rem, 36vw) * 1.5 + 11rem); padding-top: 12rem; padding-bottom: 7.5rem; }
  .hero__title { font-size: 3.125rem; max-width: 33.75rem; }
  .hero__content { max-width: 37.5rem; }
  .hero__art {
    left: auto;
    right: calc(var(--rail) + 1.5rem);
    top: 6rem;
    width: min(28.75rem, 36vw);
    height: auto;
  }
  .hero__statue { width: 100%; height: auto; }
  .hero__fade { left: -30%; width: 160%; top: auto; bottom: 0; height: 36%; }

  .thesis__art { padding: 2rem; }
  .thesis__art img { max-width: 100%; height: auto; }

  .focus__band { padding: 2.5rem; }

  .partner__hands { left: auto; right: 0; width: 35rem; height: auto; top: -11.875rem; }
  .partner__fade { display: none; }
  .partner__cols { margin-top: 17.5rem; column-gap: 2rem; }

  .faq__inner { justify-content: space-between; gap: 4rem; }
  .faq__main { width: min(37.375rem, 62%); }

  .contact__intro { width: auto; flex: 1 1 0; }
  .contact__form { width: auto; flex: 1 1 0; }
  .contact__inner { gap: 3rem; }

  .footer__head { gap: 4rem; }
  .footer__wordmark { width: 100%; height: auto; margin: 3.5rem 0 -1.61% 0; }
}

/* ---- Small laptop / iPad landscape ---- */
@media (max-width: 1179px) {
  .section-head--split {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 3rem;
  }
  .section-head--split .section-head__aside { max-width: 35rem; margin: 0; padding: 0; }

  .partner__cols { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 15rem; }
  .partner__cols::before { display: none; }
  .partner__col::before { display: block; }
  .partner__hands { width: 30rem; top: -9.375rem; right: -2.5rem; }

  .focus__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .focus__card { padding: 2rem; }
  .focus__card:nth-child(3n) { background-image: var(--divider-img); }
  .focus__card:nth-child(even) { background-image: none; }
  .focus__card:nth-child(-n + 3) { border-bottom: 0; }
  .focus__card:nth-child(-n + 4) { border-bottom: 1px solid var(--sage-line); }
  .focus__card p { max-width: none; }
}

/* ---- Tablet ---- */
@media (max-width: 1023px) {
  :root { --gutter: 2rem; --edge: 5.3125rem; }

  h2 { font-size: 2.5rem; letter-spacing: -0.05rem; }

  .hero__inner { padding-top: 10.5rem; }
  .hero__title { font-size: 2.75rem; letter-spacing: -0.055rem; max-width: 30rem; }
  .hero__content { max-width: 32.5rem; }
  .hero__art { width: min(25rem, 40vw); top: 6.875rem; right: var(--rail); }
  .hero__inner { min-height: calc(min(25rem, 40vw) * 1.5 + 11.875rem); }

  .thesis__row { grid-template-columns: minmax(0, 1fr); }
  .feature-card { height: auto; gap: 3rem; padding: 2.25rem; }
  .feature-card__content { max-width: 35rem; }
  .thesis__art { height: 23.75rem; margin-left: 0; margin-top: -1px; padding: 1.75rem; }
  .thesis__art img { max-height: 100%; width: auto; }

  .focus__painting { left: 0; top: 0; width: 100%; height: 100%; transform: none; }

  .wwlf__row,
  .wwlf__row--flip { grid-template-columns: minmax(0, 1fr); }
  .wwlf__card { height: auto; }
  .wwlf__card + .wwlf__card {
    background-image: repeating-linear-gradient(90deg, var(--ink-24) 0 0.5rem, transparent 0.5rem 1rem);
    background-size: 100% 1px;
    background-position: 0 0;
  }
  .wwlf__art { flex: none; height: 19.625rem; }

  .partner__col p { font-size: 1.375rem; }

  .about__box { padding: 3rem 1.25rem 2.5rem; }

  .faq__inner { flex-direction: column; align-items: flex-start; gap: 3.5rem; padding: 5rem 2rem; }
  .faq__card { order: 2; }
  .faq__main { width: 100%; max-width: 40rem; gap: 3.5rem; }

  .contact__inner { flex-direction: column; gap: 4rem; }
  .contact__intro { gap: 3rem; }
  .contact__form { width: 100%; }

  .footer__head { flex-direction: column; align-items: flex-start; gap: 2.5rem; }
  .footer__right { width: 100%; padding: 0; }
}

/* ---- Compact nav (iPad portrait and down) ---- */
@media (max-width: 899px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: block; }
  .nav--open .nav__mobile { display: flex; }
  .partner__hands { right: -8.75rem; top: -7.5rem; width: 27.5rem; }
}

/* ---- Mobile ---- */
@media (max-width: 767px) {
  :root { --rail: 0; --gutter: 1.25rem; --edge: 1.25rem; }
  .rail { display: none; }

  h2 { font-size: 2rem; line-height: 1.15; letter-spacing: -0.04rem; }
  .eyebrow { font-size: 0.75rem; }
  .section-head, .section-head--split { margin-bottom: 2.25rem; }
  .section-head--center { gap: 0.75rem; }

  /* hero */
  .hero__inner { padding-top: 8.25rem; padding-bottom: 0; }
  .hero__content { gap: 2.25rem; max-width: none; }
  .hero__title { font-size: 2.5rem; line-height: 1.1; letter-spacing: -0.05rem; max-width: 100%; }
  .hero__actions { width: 100%; }
  .hero__art {
    position: relative;
    left: auto; right: auto; top: auto;
    width: auto;
    height: 25rem;
    margin: 3rem -1.25rem 0 0;
    overflow: hidden;
  }
  .hero__statue {
    position: absolute;
    right: -2rem;
    top: 0;
    width: 18.75rem;
    height: 28.125rem;
  }
  .hero__fade { left: 0; width: 100%; bottom: 0; top: auto; height: 11.25rem; }

  /* thesis */
  .thesis .inner, .focus .inner, .wwlf .inner, .partner .inner, .about .inner { padding-top: 4.5rem; }
  .thesis .inner, .wwlf .inner, .partner .inner { padding-bottom: 4.5rem; }
  .focus, .about { padding-bottom: 4.5rem; }
  .feature-card { padding: 1.5rem; gap: 2.5rem; }
  .feature-card__top { gap: 1.75rem; }
  .feature-card__content h3 { font-size: 1.3125rem; line-height: 1.35; }
  .feature-card__content p { font-size: 1.0625rem; }
  .thesis__art { height: 18.75rem; padding: 1.25rem; }

  /* focus */
  .focus__band { padding: 1rem; }
  .focus__grid { grid-template-columns: minmax(0, 1fr); }
  .focus__card { padding: 1.5rem; gap: 1.5rem; }
  .focus__card { background-image: none; }
  .focus__card:nth-child(-n + 4) { border-bottom: 0; }
  .focus__card:not(:last-child) { border-bottom: 1px solid var(--sage-line); }
  .focus__card h3 { font-size: 1.3125rem; line-height: 1.35; }
  .focus__card p { font-size: 1.0625rem; max-width: none; }

  /* what we look for */
  .wwlf__card { padding: 1.25rem; gap: 0.875rem; }
  .wwlf__card h3 { font-size: 1.3125rem; line-height: 1.35; }
  .wwlf__card > p { font-size: 1.0625rem; }
  .wwlf__art { height: 16.25rem; }

  /* partner */
  .partner__hands { width: 22.5rem; top: 9.375rem; right: -3.75rem; }
  .partner__cols { grid-template-columns: minmax(0, 1fr); margin-top: 16.875rem; row-gap: 2.5rem; }
  .partner__col p { margin-top: 1.75rem; font-size: 1.25rem; }
  .partner__title { margin-top: 1.5rem; }

  /* about */
  .about__box { padding: 2.5rem 1rem 2rem; }
  .stamp { min-height: 0; padding: 1rem 0.875rem 0.75rem; gap: 1.25rem; }
  .stamp::before { border-width: 1.125rem; border-image-width: 1.125rem; }
  .stamp__header { height: 4.5rem; }
  .stamp__header-bg { top: -6.75rem; }
  .stamp__text { padding: 0 0.5rem; }
  .stamp__text h3 { font-size: 1.5rem; letter-spacing: -0.015rem; line-height: 1.3; }
  .stamp__text p { font-size: 1.0625rem; line-height: 1.55; }
  .stamp__text p:nth-of-type(2) { max-width: none; }

  /* faq */
  .faq__inner { padding: 4.5rem 1.25rem; gap: 2.5rem; }
  .faq__card { width: 100%; height: auto; gap: 2.5rem; }
  .faq__card-note { white-space: normal; }
  .faq__main { gap: 2.5rem; }
  .faq__q { font-size: 1.125rem; line-height: 1.4; }

  /* contact */
  .contact__inner { padding-top: 4.5rem; padding-bottom: 4.5rem; gap: 3rem; }
  .contact__intro h2 { max-width: none; }
  .contact__intro p { max-width: none; }
  .contact__email { font-size: 1.125rem; }
  .field-row { flex-direction: column; gap: 1.5rem; }
  .contact__form { gap: 2rem; }
  .contact__form .btn { width: 100%; }

  /* footer */
  .footer__inner { padding-top: 4rem; }
  .footer__brand { width: 100%; }
  .footer__right { flex-direction: column; align-items: flex-start; gap: 1.75rem; }
  .footer__links { gap: 1.25rem 1.75rem; }
  .footer__legal { flex-direction: column; gap: 0.5rem; }
  .footer__wordmark { margin-top: 2.5rem; }
}

@media (max-width: 479px) {
  .hero__title { font-size: 2.25rem; }
  .hero__actions .btn { flex: 1 1 auto; }
  .hero__art { height: 21.25rem; }
  .hero__statue { width: 16.25rem; height: 24.375rem; right: -1.75rem; }
  h2 { font-size: 1.875rem; }
  .partner__hands { width: 20rem; top: 10.625rem; right: -4.375rem; }
  .stamp::before { border-width: 0.875rem; border-image-width: 0.875rem; }
}

/* =====================================================================
   MOTION
   Hover states always apply. Reveals, parallax and ambient animation are
   gated on `.js` (set inline in <head>) and on prefers-reduced-motion.
   ===================================================================== */
:root {
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.45, 0.64, 1);
}

/* micro-interactions */
.nav__links a { position: relative; }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.25rem;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.35s var(--ease-out);
}
.nav__links a:hover::after,
.nav__links a:focus-visible::after { transform: scaleX(1); transform-origin: left center; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.feature-card__icon,
.focus__card > img,
.partner__title img,
.footer__social img,
.contact__email img { transition: transform 0.45s var(--ease-out); }
.feature-card:hover .feature-card__icon,
.focus__card:hover > img,
.partner__col:hover .partner__title img { transform: translateY(-0.1875rem); }
.footer__social a:hover img { transform: translateY(-0.125rem); }
.contact__email:hover img { transform: translate(0.125rem, 0.125rem); }
.faq__q { transition: opacity 0.2s ease; }
.faq__q:hover { opacity: 0.72; }
.faq__icon img { transition: transform 0.35s var(--ease-out); }
.faq__q:hover .faq__icon img { transform: rotate(90deg); }
.faq__item.is-open .faq__q:hover .faq__icon img { transform: rotate(135deg); }
.thesis__art img { transition: transform 0.8s var(--ease-out); }
.thesis__art:hover img { transform: translateY(-0.25rem); }

/* ---- scroll reveals ----
   With JS: elements fade in as they enter the viewport. With `.motion`
   (no reduced-motion preference, or ?motion=1) they also rise/scale. */
.js [data-reveal] {
  opacity: 0;
  transition: opacity 0.9s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}
.js [data-reveal].is-visible { opacity: var(--reveal-opacity, 1); } /* elements with their own opacity set --reveal-opacity */
.motion [data-reveal] {
  transform: translate3d(0, 1.75rem, 0);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.motion [data-reveal="fade"]  { transform: none; transition: opacity 1.1s var(--ease-out); transition-delay: var(--reveal-delay, 0ms); }
.motion [data-reveal="scale"] { transform: translate3d(0, 1rem, 0) scale(0.96); transition-duration: 1.1s; }
.motion [data-reveal="stamp"] { transform: translate3d(0, 2.5rem, 0) rotate(-1.5deg); transition-duration: 1.2s; }
.motion [data-reveal="art"]   { transform: translate3d(0, 3.5rem, 0); transition-duration: 1.5s; }
.motion [data-reveal].is-visible { transform: none; }
.motion [data-reveal].is-visible:not([data-reveal="fade"]) { will-change: auto; }

/* ---- parallax carriers (JS writes --py / --mx / --my only under .motion) ---- */
.motion .hero__art        { transform: translate3d(var(--mx, 0), calc(var(--py, 0) + var(--my, 0)), 0); }
.motion .partner__hands   { transform: translate3d(0, var(--py, 0), 0); }
.motion .focus__painting  { transform: translate(-50%, calc(-50% + var(--py, 0))); }
.motion .about__bg        { transform: translate(-50%, calc(-50% + var(--py, 0))); }
.motion .footer__wordmark { transform: translate3d(0, var(--py, 0), 0); }

/* ---- how we partner: rule draws, markers pop ---- */
.motion .partner__cols::before { transform: scaleX(0); transform-origin: left center; transition: transform 1.4s var(--ease-out) 0.15s; }
.motion .partner__cols.is-visible::before { transform: none; }
.motion .partner__marks i { transform: scale(0); transition: transform 0.5s var(--ease-spring); }
.motion .partner__col.is-visible .partner__marks i { transform: none; }
.partner__marks i:nth-child(2) { transition-delay: 0.1s; }
.partner__marks i:nth-child(3) { transition-delay: 0.2s; }
.partner__marks i:nth-child(4) { transition-delay: 0.3s; }

/* ---- what we look for: illustrations build themselves ---- */
.motion .win-b__bars i { transform: scaleY(0); transform-origin: center bottom; transition: transform 0.7s var(--ease-out); }
.motion .wwlf__card.is-visible .win-b__bars i { transform: none; }
.win-b__bars i:nth-child(1) { transition-delay: 0.45s; }
.win-b__bars i:nth-child(2) { transition-delay: 0.6s; }
.win-b__bars i:nth-child(3) { transition-delay: 0.75s; }
.motion .win-b__arrow { opacity: 0; transform: translate3d(-0.75rem, 0.625rem, 0); transition: opacity 0.6s ease 1s, transform 0.9s var(--ease-out) 1s; }
.motion .wwlf__card.is-visible .win-b__arrow { opacity: 1; transform: none; }
.motion :is(.win-a__lines, .win-d__lines) i { transform: scaleX(0); transform-origin: left center; transition: transform 0.6s var(--ease-out); }
.motion .wwlf__card.is-visible :is(.win-a__lines, .win-d__lines) i { transform: none; }
:is(.win-a__lines, .win-d__lines) i:nth-child(1) { transition-delay: 0.45s; }
:is(.win-a__lines, .win-d__lines) i:nth-child(2) { transition-delay: 0.55s; }
:is(.win-a__lines, .win-d__lines) i:nth-child(3) { transition-delay: 0.65s; }
.motion :is(.win-a__btn, .win-d__pill, .win-d__sq, .win-a__col > img) { opacity: 0; transition: opacity 0.7s ease 0.85s; }
.motion .wwlf__card.is-visible :is(.win-a__btn, .win-d__pill, .win-d__sq, .win-a__col > img) { opacity: 1; }
.motion :is(.win-c__tri-l, .win-c__tri-r, .win-c__tri-v) { opacity: 0; transition: opacity 0.6s ease 0.6s; }
.motion .wwlf__card.is-visible :is(.win-c__tri-l, .win-c__tri-r, .win-c__tri-v) { opacity: 1; }
.motion .badge { animation: float 6s ease-in-out infinite; }
.badge--bird2 { animation-delay: -2.2s; }
.badge--check { animation-delay: -1.1s; animation-duration: 5.2s; }
.badge--case  { animation-delay: -3.4s; animation-duration: 5.6s; }
@keyframes float {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -0.375rem; }
}

/* ---- about: stamp header icons breathe ---- */
.motion .stamp__icon { animation: breathe 4s ease-in-out infinite; }
.stamp__icon + img + .stamp__icon { animation-delay: -2s; }
@keyframes breathe {
  0%, 100% { background: rgba(255, 255, 255, 0.04); }
  50%      { background: rgba(255, 255, 255, 0.14); }
}


/* ---- Utilities ---- */
/* Design line breaks: forced only at the exact-design breakpoints, natural
   wrapping everywhere else. `nw` keeps each designed line on one line so a
   fallback font that is a hair wider can never push a word down. */
.br-desk, .br-md { display: none; }
@media (min-width: 1024px) { .br-md { display: inline; } .nw-md { white-space: nowrap; } }
@media (min-width: 1260px) {
  .br-desk { display: inline; }
  .nw,
  .feature-card__content h3,
  .focus__card h3,
  .wwlf__card h3 { white-space: nowrap; }
  /* right-aligned aside keeps its right edge on the grid even if the
     fallback font runs a few px wider than the 23.875rem design box */
  .thesis .section-head__aside { width: max-content; min-width: 23.875rem; max-width: none; }
}

.visually-hidden {
  position: absolute !important;
  width: 0.0625rem; height: 0.0625rem;
  padding: 0; margin: -0.0625rem;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}
