/* ============================================================
   endy® — design system rebuilt after the tryera.ai reference:
   black smoke hero, hairline 4-col grid with "+" crosses,
   mono micro-labels, ultra-wide grotesk display, rainbow
   gradient signature, alternating black / light sections.
   ============================================================ */

/* ---------- fonts ---------- */
@font-face {
  font-family: "Martian Grotesk";
  src: url("/v2/fonts/MartianGrotesk-StdRg.woff2") format("woff2");
  font-weight: 400; font-display: swap;
}
@font-face {
  font-family: "Martian Grotesk";
  src: url("/v2/fonts/MartianGrotesk-StdMd.woff2") format("woff2");
  font-weight: 500; font-display: swap;
}
@font-face {
  font-family: "Martian Grotesk";
  src: url("/v2/fonts/MartianGrotesk-StdBd.woff2") format("woff2");
  font-weight: 700; font-display: swap;
}
@font-face {
  font-family: "Martian Grotesk";
  src: url("/v2/fonts/MartianGrotesk-StdBl.woff2") format("woff2");
  font-weight: 900; font-display: swap;
}
@font-face {
  font-family: "Martian Grotesk uWd";
  src: url("/v2/fonts/MartianGrotesk-uWdBd.woff2") format("woff2");
  font-weight: 700; font-display: swap;
}
@font-face {
  font-family: "Martian Grotesk uWd";
  src: url("/v2/fonts/MartianGrotesk-uWdBl.woff2") format("woff2");
  font-weight: 900; font-display: swap;
}

:root {
  --bg0: #0e0e0e;
  --bg1: #171717;
  --paper: #f5f5f5;
  --gray: #eaeaea;
  --ink: #171717;
  --line-d: rgba(245, 245, 245, 0.1);
  --line-l: rgba(23, 23, 23, 0.12);
  --mut-d: rgba(245, 245, 245, 0.55);
  --mut-l: rgba(23, 23, 23, 0.55);
  --grad: linear-gradient(90deg, #a31bb6 0%, #3bbbd5 26.5%, #c9c5c7 51%, #e86167 74%, #f54510 100%);
  --mono: "IBM Plex Mono", monospace;
  --body: "Geist", "Inter", sans-serif;
  --grot: "Martian Grotesk", "Geist", sans-serif;
  --uwide: "Martian Grotesk uWd", "Martian Grotesk", sans-serif;
  --pad: clamp(20px, 3.4vw, 56px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--bg0);
  color: var(--paper);
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: #a31bb6; color: #fff; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }

.dark { background: var(--bg0); color: var(--paper); }
.light { background: var(--paper); color: var(--ink); }
.gray { background: var(--gray); color: var(--ink); }

/* the footer carries a .cross-row too, and it is a <footer>, not a <section> — without a
   positioned ancestor its hairline and crosses resolve against the viewport and land at the
   very top of the page */
section, .site-foot { position: relative; }
section { padding: clamp(90px, 11vw, 180px) var(--pad); }
/* anchor jumps must clear the fixed header, or the section label you just clicked lands under it */
section[id] { scroll-margin-top: 110px; }

/* ---------- fixed column grid ---------- */
.grid-cols {
  position: fixed; inset: 0; z-index: 2;
  pointer-events: none;
  padding: 0 var(--pad);
  display: flex; justify-content: space-between;
}
.grid-cols i { width: 1px; background: var(--line-d); opacity: 0.55; }
/* .grid-cols sits before <main>, so no ".light ~ *" selector can ever reach it —
   the section behind it is resolved in JS instead */
.grid-cols.on-light i { background: var(--line-l); }

/* section-top hairline + crosses */
.cross-row {
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px; background: var(--line-d);
  display: flex; justify-content: space-between;
  padding: 0 calc(var(--pad) - 5px);
}
.light .cross-row, .gray .cross-row { background: var(--line-l); }
.cross-row i {
  width: 11px; height: 11px; margin-top: -5px; position: relative;
}
.cross-row i::before, .cross-row i::after {
  content: ""; position: absolute; background: var(--mut-d);
}
.cross-row i::before { left: 5px; top: 0; width: 1px; height: 11px; }
.cross-row i::after { left: 0; top: 5px; width: 11px; height: 1px; }
.light .cross-row i::before, .light .cross-row i::after,
.gray .cross-row i::before, .gray .cross-row i::after { background: var(--mut-l); }

/* ---------- mono tags ---------- */
.tag {
  font-family: var(--mono);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
}
.tag-light { color: var(--mut-d); }
.tag-dark { color: var(--mut-l); }
.tag b { font-weight: 500; }
.tag.dot::before { content: "●"; margin-right: 8px; }

/* ---------- header ---------- */
.site-head {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  padding: 26px var(--pad) 0;
  pointer-events: none;
  --hfg: #171717;
  --hbg: #f5f5f5;
}
.site-head.on-dark { --hfg: #f5f5f5; --hbg: #0e0e0e; }
.site-head > * { pointer-events: auto; }
.logo {
  font-family: var(--grot);
  font-weight: 700; font-size: 30px;
  letter-spacing: -0.03em; line-height: 1;
  color: var(--hfg, inherit);
}
.logo sup { font-size: 0.42em; font-weight: 400; }
.menu-open {
  font-family: var(--mono); font-size: 12px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  display: flex; align-items: center; gap: 6px;
  padding-top: 6px;
  color: var(--hfg, inherit);
}
.menu-open span { font-size: 15px; }
.head-right {
  display: flex; align-items: center; gap: 16px; justify-self: end;
}
.head-note {
  font-family: var(--mono); font-size: 10px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  text-align: right; line-height: 1.6;
  color: var(--hfg, inherit);
}
.head-plus {
  width: 52px; height: 52px; border-radius: 50%;
  flex: none;
  background: var(--hfg, #171717); color: var(--hbg, #f5f5f5);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 24px; font-weight: 400;
  transition: transform 0.3s;
}
.head-plus:hover { transform: rotate(90deg); }
.head-ava {
  width: 52px; height: 52px; border-radius: 50%;
  flex: none;
  border: 2px solid #fff;
  background: #cfa3b8; color: #171717;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 13px; font-weight: 600;
  letter-spacing: 0.04em;
}

/* ---------- menu overlay ---------- */
.menu-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: var(--bg0);
  padding: var(--pad);
  display: flex; flex-direction: column; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}
.menu-overlay.open { opacity: 1; visibility: visible; }
.menu-close {
  position: absolute; top: 30px; right: var(--pad);
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--mut-d);
}
.menu-close:hover { color: #fff; }
/* eight entries can outgrow a short laptop viewport — let the list scroll rather than clip */
.menu-nav { display: flex; flex-direction: column; max-height: calc(100svh - 150px); overflow-y: auto; }
.menu-nav a {
  display: flex; align-items: baseline; gap: 24px;
  font-family: var(--uwide);
  font-weight: 700;
  font-size: clamp(30px, 5.4vw, 68px);
  letter-spacing: 0;
  line-height: 1.22;
  text-transform: uppercase;
  color: var(--paper);
  transform: translateY(26px); opacity: 0;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s, color 0.25s;
}
.menu-overlay.open .menu-nav a { transform: none; opacity: 1; }
.menu-overlay.open .menu-nav a:nth-child(1) { transition-delay: 0.05s; }
.menu-overlay.open .menu-nav a:nth-child(2) { transition-delay: 0.10s; }
.menu-overlay.open .menu-nav a:nth-child(3) { transition-delay: 0.15s; }
.menu-overlay.open .menu-nav a:nth-child(4) { transition-delay: 0.20s; }
.menu-overlay.open .menu-nav a:nth-child(5) { transition-delay: 0.25s; }
.menu-overlay.open .menu-nav a:nth-child(6) { transition-delay: 0.30s; }
.menu-nav a em {
  font-style: normal;
  font-family: var(--mono); font-weight: 500;
  font-size: 11px; letter-spacing: 0.2em;
  color: var(--mut-d);
}
.menu-nav a:hover {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.menu-foot {
  position: absolute; bottom: 34px; left: var(--pad);
  display: flex; gap: 32px;
  font-family: var(--mono); font-size: 12px;
  color: var(--mut-d);
}
.menu-foot a:hover { color: #fff; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  height: 135svh;
  padding: 0;
  overflow: hidden;
  background: #1a1a1a;
}
#smoke {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
}
.hero-inner {
  position: sticky; top: 0;
  height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 var(--pad) 12svh;
  z-index: 3;
}
.hero-tag { margin-bottom: 28px; }
.hero-title {
  font-family: var(--uwide);
  font-weight: 700;
  font-size: clamp(44px, 6vw, 110px);
  line-height: 1.04;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.45);
}
.hero-title span { display: block; }
.hero-side {
  position: absolute;
  right: var(--pad); bottom: 30svh;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.75);
  text-align: right;
}
.hero-scroll {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  z-index: 3;
  animation: scrollhint 2.2s infinite;
}
@keyframes scrollhint { 50% { opacity: 0.25; transform: translateX(-50%) translateY(6px); } }

/* ---------- quick services list ---------- */
.services-quick { padding-top: clamp(70px, 8vw, 130px); }
.services-quick .tag { display: block; margin-bottom: 48px; }
.quick-list { border-top: 1px solid var(--line-d); }
.quick-list li {
  display: flex; align-items: baseline; gap: 28px;
  font-family: var(--uwide);
  font-weight: 700;
  font-size: clamp(24px, 3.6vw, 54px);
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1.15;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-d);
  transition: padding-left 0.35s cubic-bezier(0.22, 1, 0.36, 1), color 0.3s;
}
.quick-list li:hover { padding-left: 20px; color: #3bbbd5; }
.quick-list li span {
  font-family: var(--mono); font-weight: 500;
  font-size: 12px; letter-spacing: 0.18em;
  color: var(--mut-d);
}

/* ---------- banner (straight answer) ---------- */
.banner { background: var(--bg1); }
.banner-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.banner-title {
  font-family: var(--uwide);
  font-weight: 900;
  font-size: clamp(48px, 7vw, 116px);
  line-height: 0.98;
  text-transform: uppercase;
}
.banner-note {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  line-height: 2;
  color: var(--mut-d);
}
.banner-form { display: flex; flex-direction: column; gap: 18px; }
.banner-form input {
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  background-image: linear-gradient(var(--bg0), var(--bg0)), var(--grad);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  color: #fff;
  font-family: var(--mono); font-size: 13px;
  letter-spacing: 0.06em;
  padding: 20px 30px;
  outline: none;
}
.banner-form input::placeholder { color: var(--mut-d); text-transform: uppercase; }
.btn-grad {
  position: relative;
  border-radius: 999px;
  padding: 20px 30px;
  font-family: var(--mono); font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: #fff;
  background-image: linear-gradient(var(--bg0), var(--bg0)), var(--grad);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  border: 1px solid transparent;
  text-align: center;
  transition: filter 0.3s;
}
.btn-grad:hover { filter: brightness(1.35); }
.btn-grad.big { padding: 22px 34px; }

/* ---------- manifest ---------- */
.manifest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 110px);
}
.manifest-left .tag { display: block; margin-bottom: 14px; }
.left-sub {
  font-family: var(--grot);
  font-weight: 700;
  font-size: clamp(22px, 2.3vw, 34px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 34px 0 40px;
}
.media-card {
  border-radius: 24px;
  background:
    radial-gradient(120% 140% at 20% 0%, rgba(59, 187, 213, 0.35), transparent 55%),
    radial-gradient(120% 160% at 90% 100%, rgba(163, 27, 182, 0.4), transparent 60%),
    var(--bg1);
  border: 1px solid var(--line-d);
  min-height: 320px;
  padding: 34px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.media-num {
  font-family: var(--uwide);
  font-weight: 900;
  font-size: clamp(90px, 10vw, 170px);
  line-height: 0.9;
}
.media-cap {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  line-height: 1.9;
  color: var(--mut-d);
}
.left-mono {
  margin-top: 40px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  line-height: 2.1;
  color: var(--mut-d);
  max-width: 42ch;
}
.manifest-right .tag { display: block; margin-bottom: 40px; }
.manifest-text {
  font-family: var(--uwide);
  font-weight: 700;
  font-size: clamp(34px, 4.4vw, 72px);
  line-height: 1.08;
  text-transform: uppercase;
}
.manifest-text .ml { display: block; color: rgba(245, 245, 245, 0.22); transition: color 0.6s; }
.manifest-text .ml.on { color: #f5f5f5; }
.sign {
  margin-top: 56px;
  display: flex; align-items: center; gap: 18px;
}
.sign-ava {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 13px; font-weight: 600;
  color: #fff;
}
.sign-name {
  font-family: var(--mono); font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  line-height: 1.8;
}
.sign-name em { font-style: normal; font-weight: 400; color: var(--mut-d); }

/* ---------- what i do ---------- */
.whatido > .tag { display: block; margin-bottom: 48px; }
.whatido-intro {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 48px; align-items: end;
  margin-bottom: clamp(70px, 8vw, 130px);
}
.intro-text { font-size: 17px; line-height: 1.65; color: rgba(245, 245, 245, 0.78); max-width: 56ch; }
.btn-white {
  justify-self: end;
  width: 100%;
  display: block;
  background: #fff; color: var(--ink);
  font-family: var(--mono); font-size: 12px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  text-align: center;
  padding: 24px 30px;
  border-radius: 999px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(255, 255, 255, 0.16); }

.feature {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  padding: clamp(48px, 6vw, 90px) 0;
  border-top: 1px solid var(--line-d);
}
.feature-l { display: flex; flex-direction: column; gap: 22px; }
.feature-idx {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.18em; color: var(--mut-d);
}
.feature-l h3 {
  font-family: var(--uwide);
  font-weight: 700;
  font-size: clamp(30px, 3.6vw, 56px);
  line-height: 1.04;
  text-transform: uppercase;
}
.feature-media {
  border-radius: 24px;
  min-height: 300px;
  border: 1px solid rgba(245, 245, 245, 0.22);
  background:
    radial-gradient(120% 160% at 20% 0%, rgba(255, 255, 255, 0.6), transparent 46%),
    radial-gradient(140% 160% at 90% 100%, rgba(255, 255, 255, 0.28), transparent 50%),
    linear-gradient(128deg, #eceef2 0%, #b7bac5 22%, #f4f5f7 38%, #8f929f 55%, #d9dbe1 72%, #82858f 88%, #c4c7ce 100%);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.feature:hover .feature-media { transform: translateY(-6px); }
.feature-media span {
  font-family: var(--uwide); font-weight: 900;
  font-size: clamp(44px, 4.6vw, 76px);
  color: rgba(23, 23, 23, 0.32);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.55), 0 -1px 0 rgba(23, 23, 23, 0.12);
  letter-spacing: 0.02em;
}
.feature-r p:first-child {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  line-height: 2.1;
  color: var(--mut-d);
  max-width: 40ch;
}
.hash {
  margin-top: 28px;
  font-family: var(--mono); font-size: 12px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: #f5f5f5;
}
/* one span per tag: the gap survives, and the line can break between tags on narrow screens
   instead of forcing the whole page sideways */
.hash span { display: inline-block; margin-right: 26px; }
.hash span:last-child { margin-right: 0; }

/* ---------- results (light) ---------- */
.results > .tag { display: block; margin-bottom: 60px; }
.results-head { position: relative; margin-bottom: clamp(70px, 8vw, 120px); }
.semi {
  width: 120px; height: 60px;
  border-radius: 120px 120px 0 0;
  background: rgba(23, 23, 23, 0.12);
  margin-bottom: 40px;
  margin-left: 52%;
}
.results-title {
  font-family: var(--grot);
  font-weight: 900;
  font-size: clamp(40px, 5.6vw, 88px);
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: uppercase;
  margin-left: 52%;
}
.results-title span { color: rgba(23, 23, 23, 0.35); }
.results-side {
  position: absolute; left: 0; bottom: 6px;
  font-size: 15px; line-height: 1.6;
  color: var(--mut-l);
  max-width: 30ch;
}
.stats {
  position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-l);
  overflow: hidden;
}
.stat {
  padding: clamp(36px, 4vw, 64px) clamp(20px, 2.4vw, 40px);
  border-right: 1px solid var(--line-l);
  display: flex; flex-direction: column; gap: 22px;
}
/* :last-of-type would match nothing — .grad-blob is the last div inside .stats */
.stat:nth-of-type(4) { border-right: 0; }
.stat-num {
  font-family: var(--grot);
  font-weight: 900;
  font-size: clamp(52px, 6vw, 96px);
  letter-spacing: -0.045em;
  line-height: 0.95;
}
.stat-cap {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase;
  line-height: 1.9;
  color: var(--mut-l);
}
.grad-blob {
  position: absolute; right: -12%; bottom: -45%;
  width: 46%; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, #e86167, #a31bb6 55%, rgba(163, 27, 182, 0) 72%);
  filter: blur(50px);
  opacity: 0.75;
  pointer-events: none;
}
.watermark {
  position: absolute; right: 16%; bottom: 8%;
  font-family: var(--grot); font-weight: 700;
  font-size: 34px; letter-spacing: -0.03em;
  color: rgba(23, 23, 23, 0.28);
}
.watermark sup { font-size: 0.45em; }
.meta-row {
  display: flex; justify-content: space-between; gap: 24px;
  margin-top: 60px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--mut-l);
}

/* ---------- clients (light) ---------- */
.clients > .tag { display: block; margin-bottom: 60px; }
.clients-giant {
  font-family: var(--uwide);
  font-weight: 700;
  font-size: clamp(40px, 6.2vw, 100px);
  line-height: 1.06;
  text-transform: uppercase;
  max-width: 22ch;
}
.clients-giant .w { color: var(--ink); transition: color 0.4s; margin-right: 0.32em; }
.clients-giant .w.dim { color: rgba(23, 23, 23, 0.28); }
.clients-note {
  margin-top: 56px;
  font-size: 15px; line-height: 1.65;
  color: var(--mut-l);
  max-width: 44ch;
}

/* ---------- experience (gray) ---------- */
.xp > .tag { display: block; margin-bottom: 60px; }
.xp-list { border-top: 1px solid var(--line-l); }
.xp-row {
  display: grid;
  grid-template-columns: 90px 1.5fr 1fr;
  gap: 32px;
  align-items: baseline;
  padding: 34px 0;
  border-bottom: 1px solid var(--line-l);
  transition: padding-left 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.xp-row:hover { padding-left: 16px; }
.xp-idx {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.14em; color: var(--mut-l);
}
.xp-name {
  font-family: var(--grot); font-weight: 700;
  font-size: clamp(22px, 2.6vw, 40px);
  letter-spacing: -0.03em; line-height: 1.08;
  text-transform: uppercase;
  display: flex; flex-direction: column; gap: 10px;
}
.xp-name em {
  font-style: normal;
  font-family: var(--mono); font-weight: 400;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--mut-l);
}
.xp-stat {
  justify-self: end; text-align: right;
  font-family: var(--grot); font-weight: 900;
  font-size: clamp(28px, 3.2vw, 52px);
  letter-spacing: -0.035em;
  display: flex; flex-direction: column; gap: 8px;
}
.xp-stat em {
  font-style: normal;
  font-family: var(--mono); font-weight: 400;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--mut-l);
}

/* ---------- ways (black pricing) ---------- */
.ways { text-align: center; }
.ways-logo {
  font-family: var(--grot); font-weight: 700;
  font-size: 34px; letter-spacing: -0.03em;
  color: var(--mut-d);
  margin-top: clamp(70px, 9vw, 130px);
  margin-bottom: 26px;
}
.ways-logo sup { font-size: 0.45em; }
.ways-tag { display: block; margin-bottom: 30px; }
.ways-chips {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: clamp(60px, 7vw, 110px);
}
.ways-chips i {
  width: 54px; height: 28px;
  border-radius: 8px;
  background: #fff;
  position: relative;
}
.ways-chips i::after {
  content: ""; position: absolute;
  right: -4px; top: 4px; bottom: 4px; width: 20px;
  border-radius: 6px; background: var(--bg0);
}
.ways-chips em {
  font-style: normal;
  border: 1px solid var(--line-d);
  border-radius: 999px;
  padding: 6px 16px;
  color: var(--mut-d);
}
.plans {
  display: grid; grid-template-columns: repeat(3, 1fr);
  text-align: left;
  border-top: 1px solid var(--line-d);
  border-left: 1px solid var(--line-d);
}
.plan {
  position: relative;
  padding: clamp(34px, 3.6vw, 60px);
  border-right: 1px solid var(--line-d);
  border-bottom: 1px solid var(--line-d);
  display: flex; flex-direction: column; gap: 14px;
}
.plan-badge {
  position: absolute; top: 22px; right: 22px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase;
  border: 1px solid var(--line-d);
  border-radius: 999px;
  padding: 5px 14px;
  color: var(--mut-d);
}
.plan-name {
  font-family: var(--grot); font-weight: 700;
  font-size: clamp(20px, 1.9vw, 28px);
  letter-spacing: -0.02em; text-transform: uppercase;
}
.plan-sub {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--mut-d);
}
.plan-num {
  font-family: var(--uwide); font-weight: 900;
  font-size: clamp(72px, 7.4vw, 130px);
  line-height: 1;
  margin: 18px 0;
}
.plan ul { margin-bottom: 26px; }
.plan ul li {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--mut-d);
  padding: 9px 0 9px 26px;
  position: relative;
}
.plan ul li::before {
  content: "✓✓";
  position: absolute; left: 0;
  font-size: 9px;
  color: #f5f5f5;
}
.plan .btn-line, .plan .btn-grad { margin-top: auto; text-align: center; display: block; }
.btn-line {
  border: 1px solid rgba(245, 245, 245, 0.25);
  border-radius: 999px;
  padding: 20px 30px;
  font-family: var(--mono); font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: #f5f5f5;
  transition: border-color 0.3s, background 0.3s;
}
.btn-line:hover { border-color: #fff; background: rgba(245, 245, 245, 0.06); }
.plan.popular {
  background:
    radial-gradient(140% 90% at 50% 115%, rgba(163, 27, 182, 0.4), transparent 62%),
    radial-gradient(120% 80% at 85% 110%, rgba(245, 69, 16, 0.3), transparent 60%),
    var(--bg0);
}

/* ---------- faq (light) ---------- */
.faq > .tag { display: block; margin-bottom: 34px; }
.giant {
  font-family: var(--grot);
  font-weight: 900;
  font-size: clamp(72px, 12vw, 190px);
  letter-spacing: -0.045em;
  line-height: 0.95;
  text-transform: uppercase;
  margin-left: 25%;
  margin-bottom: clamp(60px, 7vw, 110px);
}
.faq-list { margin-left: 25%; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line-l);
  border-radius: 18px;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  display: flex; align-items: center; gap: 22px;
  padding: 24px 28px;
  cursor: pointer;
  font-family: var(--body); font-weight: 600; font-size: 16px;
  letter-spacing: -0.01em;
  transition: color 0.25s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: #a31bb6; }
.faq-item summary span {
  width: 36px; height: 36px; flex: none;
  border-radius: 50%; background: #efefef;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-weight: 500;
  font-size: 11px; letter-spacing: 0.1em;
  color: var(--mut-l);
}
.faq-item summary i {
  margin-left: auto;
  font-style: normal;
  font-family: var(--mono); font-size: 18px;
  transition: transform 0.3s;
}
.faq-item[open] summary i { transform: rotate(45deg); }
.faq-item p {
  padding: 0 28px 26px 86px;
  font-size: 15px; line-height: 1.65;
  color: var(--mut-l);
}

/* ---------- contact (light) ---------- */
.contact { overflow: hidden; }
.contact > .tag { display: block; margin-bottom: 34px; }
.contact-sub {
  margin-left: 25%;
  font-size: 17px; line-height: 1.6;
  color: var(--mut-l);
  margin-bottom: clamp(60px, 7vw, 110px);
}
.contact-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-left: 25%;
  position: relative; z-index: 2;
}
.field {
  padding: 26px 30px 34px;
  border: 1px solid var(--line-l);
  display: flex; flex-direction: column; gap: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='16'%3E%3Ccircle cx='2' cy='2' r='1.3' fill='%23b5b5b5'/%3E%3Ccircle cx='8' cy='2' r='1.3' fill='%23b5b5b5'/%3E%3Ccircle cx='2' cy='8' r='1.3' fill='%23b5b5b5'/%3E%3Ccircle cx='8' cy='8' r='1.3' fill='%23b5b5b5'/%3E%3Ccircle cx='2' cy='14' r='1.3' fill='%23b5b5b5'/%3E%3Ccircle cx='8' cy='14' r='1.3' fill='%23b5b5b5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 26px center;
}
.field-name { grid-column: 1; grid-row: 1; }
.field-mail { grid-column: 2; grid-row: 2; }
.field label {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
}
.field input {
  background: transparent; border: 0; outline: none;
  font-family: var(--mono); font-size: 15px;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink);
}
.field input::placeholder { color: rgba(23, 23, 23, 0.3); }
.contact-send {
  grid-column: 3; grid-row: 3;
  display: flex; align-items: center; justify-content: space-between;
  padding: 30px 34px;
  border: 1px solid var(--line-l);
  background: transparent;
  font-family: var(--body); font-weight: 700; font-size: 17px;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
  position: relative;
  transition: background 0.3s;
}
.contact-send:hover { background: rgba(23, 23, 23, 0.05); }
.contact-send::after {
  content: ""; position: absolute;
  left: -1px; right: -1px; bottom: -1px; height: 2px;
  background: var(--grad);
}
.contact-send span { font-size: 22px; font-weight: 400; }
.contact-terms {
  grid-column: 3; grid-row: 4;
  padding: 20px 30px 24px;
  border: 1px solid var(--line-l);
  border-top: 0;
  font-family: var(--mono); font-size: 9px;
  letter-spacing: 0.14em; text-transform: uppercase;
  line-height: 1.9;
  color: var(--mut-l);
}
.contact-blob {
  left: -14%; right: auto; bottom: -38%;
  width: 52%;
  background: radial-gradient(circle at 55% 55%, rgba(245, 133, 63, 0.55), rgba(232, 97, 103, 0.28) 55%, rgba(232, 97, 103, 0) 75%);
  opacity: 0.8;
}

/* ---------- footer ---------- */
.site-foot { padding: clamp(60px, 7vw, 100px) var(--pad) 40px; }
.foot-top {
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  padding-bottom: 60px;
}
.foot-links { display: flex; gap: 32px; font-family: var(--mono); font-size: 12px; color: var(--mut-d); }
.foot-links a:hover { color: #fff; }
.to-top {
  font-family: var(--mono); font-size: 12px;
  /* spacing lives here, not as literal spaces between letters — screen readers
     announce "B, a, c, k" when the markup is padded out by hand */
  letter-spacing: 0.3em; word-spacing: 0.9em; text-transform: uppercase;
}
.to-top:hover { color: #3bbbd5; }
.foot-bottom {
  display: flex; justify-content: space-between; gap: 24px;
  border-top: 1px solid var(--line-d);
  padding-top: 30px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mut-d);
}

/* ---------- responsive ---------- */
@media (max-width: 1100px) {
  .feature { grid-template-columns: 1fr 1fr; }
  .feature-r { grid-column: 1 / -1; }
}
@media (max-width: 860px) {
  .head-note, .head-ava { display: none; }
  .banner-grid, .manifest-grid, .whatido-intro { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .plans { grid-template-columns: 1fr; }
  .xp-row { grid-template-columns: 60px 1fr; }
  .xp-stat { grid-column: 2; justify-self: start; text-align: left; }
  .results-title, .semi { margin-left: 0; }
  .results-side { position: static; margin-top: 26px; }
  .hero-side { display: none; }
  .foot-top { flex-direction: column; align-items: flex-start; }
  .giant, .faq-list, .contact-sub, .contact-form { margin-left: 0; }
  .contact-form { grid-template-columns: 1fr; }
  .field-name, .field-mail, .contact-send, .contact-terms { grid-column: 1; grid-row: auto; }
  .field-mail, .contact-send, .contact-terms { border-top: 0; }
  /* four links no longer fit on one row */
  .menu-foot { flex-wrap: wrap; gap: 14px 26px; right: var(--pad); }
}

/* ---------- phones: the desktop grid and the ultra-wide display sizes
   overflow the viewport horizontally, so they collapse here ---------- */
/* Martian Grotesk uWd runs about 1.1em per character at Bold and 1.3em at Black, so the
   desktop vw factors put single words wider than a phone viewport. Sizes below are set from
   the longest word in each block ("Performance", "Straight", "touch") against a 350px column. */
@media (max-width: 620px) {
  .feature { grid-template-columns: 1fr; gap: 26px; }
  .feature-media { min-height: 190px; }
  .feature-media span { font-size: 40px; }
  .feature-l h3 { font-size: clamp(22px, 7vw, 56px); }
  .banner-title { font-size: clamp(30px, 8.5vw, 116px); }
  .hero-title { font-size: clamp(30px, 9.5vw, 110px); }
  .clients-giant { font-size: clamp(24px, 8vw, 100px); }
  .quick-list li { font-size: clamp(18px, 7vw, 54px); gap: 16px; }
  .manifest-text { font-size: clamp(24px, 8.5vw, 72px); }
  .plan-num { font-size: clamp(56px, 18vw, 130px); }
  .giant { font-size: clamp(40px, 11vw, 190px); }
  .ways-chips { flex-wrap: wrap; gap: 12px; }
  .foot-links { flex-wrap: wrap; gap: 12px 24px; }
  .foot-bottom { flex-wrap: wrap; gap: 8px 20px; }
  .meta-row { flex-wrap: wrap; gap: 8px 18px; }
}

/* ---------- design switcher ----------
   lives in the header rather than floating over the page, so it inherits the same
   light/dark probe as the logo and never lands on top of section content */
.head-left { display: flex; flex-direction: column; gap: 11px; }
.skin {
  display: flex; gap: 20px;
  font-family: var(--mono); font-size: 10px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--hfg, #171717);
}
.skin a {
  display: flex; align-items: baseline; gap: 7px;
  opacity: 0.4;
  transition: opacity 0.25s;
}
.skin a:hover, .skin a.on { opacity: 1; }
.skin a.on b { text-decoration: underline; text-underline-offset: 4px; }
.skin b { font-weight: 500; }
/* the header column is narrow on a phone — numbers only, so it clears the Menu button */
@media (max-width: 860px) {
  .skin { gap: 14px; font-size: 9px; }
  .skin b { display: none; }
  .head-left { gap: 8px; }
}

/* ---------- new copy hooks ---------- */
.faq-item p a { text-decoration: underline; text-underline-offset: 3px; }
.faq-item p a:hover { color: #a31bb6; }
.contact-terms a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .manifest-text .ml { color: #f5f5f5; }
}
