/* =====================================================================
   MASCULINE FRAME · Homepage
   Cold-traffic clarity, built inside the existing MF visual identity.
   Register: Cinema (#0A0B0C) · Bronze is punctuation, not paint.
   Motion: Controlled Force — opens, communicates, stops.
   ===================================================================== */
:root {
  --gutter: clamp(20px, 5vw, 96px);
  --maxw: 1440px;

  --d-hero:  clamp(58px, 11vw, 168px);
  --d-head:  clamp(32px, 4.6vw, 74px);
  --d-sub:   clamp(26px, 3.2vw, 52px);
  --d-price: clamp(56px, 8vw, 132px);

  --b-lede:  clamp(17px, 1.55vw, 23px);
  --b-body:  clamp(15px, 1.25vw, 19px);
  --eye:     clamp(10px, 0.85vw, 12px);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t-micro: 160ms;
  --t-state: 280ms;
  --t-reveal: 620ms;
  --t-hero: 620ms;

  /* interactive / action bronze — lighter, meets 4.5:1 on ink (decorative bronze stays --mf-bronze) */
  --mf-bronze-action: #B5935A;
}

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

html, body {
  margin: 0; padding: 0;
  background: var(--mf-bg); color: var(--mf-fg-1);
  font-family: var(--mf-font-body);
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
}
html { scroll-behavior: smooth; }
body { overflow-x: hidden; }

/* grain + vignette */
body::before {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 1;
  opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' seed='7' stitchTiles='stitch'/><feColorMatrix type='matrix' values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 240px 240px;
}
body::after {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 1;
  background: radial-gradient(ellipse at 50% 42%, transparent 0%, transparent 55%, rgba(0,0,0,0.55) 100%);
}
::-webkit-scrollbar { width: 0; height: 0; }
html { scrollbar-width: none; }

/* skip link */
.skip {
  position: fixed; top: -60px; left: var(--gutter); z-index: 100;
  background: var(--mf-bg-elev-2); color: var(--mf-fg-1);
  border: 1px solid var(--mf-bronze); padding: 12px 20px;
  font-family: var(--mf-font-mono); font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase; text-decoration: none;
  transition: top var(--t-state) var(--ease);
}
.skip:focus { top: 12px; }

/* focus-visible */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--mf-bronze); outline-offset: 3px;
}

/* section scaffold */
.section {
  position: relative; z-index: 2;
  padding: clamp(96px, 15vh, 200px) var(--gutter);
}
.section__inner { width: 100%; max-width: var(--maxw); margin: 0 auto; }
.divide { border-top: 1px solid var(--mf-border); }

/* reveal grammar (below-the-fold only; hero uses pure CSS) */
.reveal { opacity: 0; transform: translateY(18px);
  transition: opacity var(--t-reveal) var(--ease), transform var(--t-reveal) var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal--d1.in { transition-delay: 90ms; }
.reveal--d2.in { transition-delay: 240ms; }
.reveal--d3.in { transition-delay: 420ms; }
.reveal--d4.in { transition-delay: 600ms; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* primitives */
.eye {
  font-family: var(--mf-font-mono); font-size: var(--eye); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.24em; color: var(--mf-fg-3); margin: 0;
}
.eye .dot { color: var(--mf-bronze); }
.eye-rule { display: inline-flex; align-items: center; gap: 16px; }
.eye-rule::before { content: ""; width: 40px; height: 1px; background: var(--mf-bronze); flex: none; }

.dot { color: var(--mf-bronze); }
.link-cta {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--mf-font-mono); font-size: clamp(12px,1.1vw,14px);
  text-transform: uppercase; letter-spacing: 0.2em; color: var(--mf-fg-2);
  text-decoration: none; transition: color var(--t-micro) var(--ease);
}
.link-cta .arr { width: 28px; height: 9px; transition: transform var(--t-micro) var(--ease); }
.link-cta .arr svg { display: block; }
.link-cta:hover { color: var(--mf-bronze-action); }
.link-cta:hover .arr { transform: translateX(5px); }
a { color: var(--mf-fg-2); }
a:hover { color: var(--mf-bronze-action); }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: clamp(14px, 2vh, 22px) var(--gutter);
  border-bottom: 1px solid transparent; background: transparent;
  transition: background-color 400ms var(--ease), border-color 400ms var(--ease);
}
.nav.scrolled {
  background: rgba(10,11,12,0.72);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--mf-border);
}
.nav__mark {
  font-family: var(--mf-font-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: -0.01em; font-size: clamp(18px, 1.7vw, 23px); line-height: 1;
  color: var(--mf-fg-1); text-decoration: none;
  opacity: 0.85; transition: opacity var(--t-micro) var(--ease);
}
.nav.scrolled .nav__mark, .nav__mark:hover { opacity: 1; color: var(--mf-fg-1); }
.nav__links { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 40px); }
.nav__links a {
  font-family: var(--mf-font-mono); font-size: var(--eye); text-transform: uppercase;
  letter-spacing: 0.2em; color: var(--mf-fg-3); text-decoration: none;
  transition: color var(--t-micro) var(--ease);
}
.nav__links a:not(.nav__apply):hover { color: var(--mf-fg-1); }
.nav__login { opacity: 0.7; }
.nav__apply {
  color: var(--mf-bronze-action); border: 1px solid var(--mf-border); padding: 9px 18px;
  transition: color var(--t-micro) var(--ease), border-color var(--t-micro) var(--ease);
}
.nav__apply:hover { color: var(--mf-fg-1); border-color: var(--mf-bronze); }

/* ============ §01 HERO ============ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  padding: clamp(120px, 18vh, 220px) var(--gutter) clamp(120px, 16vh, 180px);
  overflow: hidden; z-index: 2;
}
.hero__inner { width: 100%; max-width: var(--maxw); margin: 0 auto; position: relative; z-index: 2; }

/* frame field */
.ff { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.ff__rule { position: absolute; left: clamp(16px,4vw,72px); right: clamp(16px,4vw,72px);
  height: 1px; background: var(--mf-border); transform: scaleX(0); transform-origin: center;
  transition: transform var(--t-hero) var(--ease); }
.ff__rule--t { top: 12%; display: none; } .ff__rule--b { bottom: 12%; }
.ff__rule .edge { position: absolute; left: 0; top: 0; height: 100%; width: 120px;
  background: var(--mf-bronze); opacity: 0; transition: opacity 400ms var(--ease) 700ms; }
.ff__grid { position: absolute; top: 12%; bottom: 12%; left: clamp(16px,4vw,72px); right: clamp(16px,4vw,72px);
  background-image: linear-gradient(to right, var(--mf-border) 1px, transparent 1px);
  background-size: calc(100% / 6) 100%; opacity: 0; transition: opacity 700ms var(--ease) 360ms; }
.ff-go .ff__rule { transform: scaleX(1); }
.ff-go .ff__rule .edge { opacity: 0.9; }
.ff-go .ff__grid { opacity: 0.16; }

.hero__eyebrow { margin: 0 0 clamp(24px,4vh,44px); }

.hero__title {
  font-family: var(--mf-font-display); font-weight: 700; text-transform: uppercase;
  font-size: var(--d-hero); line-height: 0.86; letter-spacing: -0.01em;
  color: var(--mf-fg-1); margin: 0;
}
.hero__title .word { display: block; }
.hero__title .dot { color: var(--mf-bronze); }

.hero__lower {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(24px,4vw,72px);
  align-items: end; margin-top: clamp(32px,5vh,56px); max-width: 1180px;
}
.hero__support {
  font-family: var(--mf-font-body); font-weight: 400; font-size: var(--b-lede);
  line-height: 1.5; color: var(--mf-fg-2); margin: 0; max-width: 48ch;
}
.hero__actions { display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }
.hero__cta-row { display: flex; align-items: center; gap: clamp(20px,2.5vw,40px); flex-wrap: wrap; }

/* primary CTA — restrained, unmistakable */
.cta-apply {
  display: inline-flex; align-items: center; gap: 16px; line-height: 1;
  font-family: var(--mf-font-display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(14px, 1.15vw, 16px); letter-spacing: 0.18em;
  color: var(--mf-bg); background: var(--mf-bronze-action); text-decoration: none;
  padding: 18px 40px; border: 1px solid var(--mf-bronze-action);
  transition: background-color var(--t-micro) var(--ease), color var(--t-micro) var(--ease);
}
.cta-apply .arr { width: 26px; height: 9px; display: inline-flex; align-items: center; }
.cta-apply:hover { background: var(--mf-bronze-deep); border-color: var(--mf-bronze-deep); color: var(--mf-fg-1); }
.cta-apply:active { transform: translateY(1px); }

.cta-explore {
  font-family: var(--mf-font-mono); font-size: var(--eye); text-transform: uppercase;
  letter-spacing: 0.2em; color: var(--mf-fg-2); text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
  transition: color var(--t-micro) var(--ease);
}
.cta-explore .dwn { transition: transform var(--t-micro) var(--ease); }
.cta-explore:hover { color: var(--mf-bronze-action); }
.cta-explore:hover .dwn { transform: translateY(3px); }

.hero__micro {
  font-family: var(--mf-font-mono); font-size: clamp(10px,0.85vw,12px);
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--mf-fg-3); margin: 0;
}
.hero__micro .dot { margin: 0 0.4em; }

/* hero info rail */
.hero__rail {
  position: absolute; left: var(--gutter); right: var(--gutter); bottom: clamp(28px,6vh,56px);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(12px,2vw,32px);
  border-top: 1px solid var(--mf-border); padding-top: 18px; z-index: 2;
}
.hero__rail span {
  font-family: var(--mf-font-mono); font-size: clamp(10px,0.85vw,12px);
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--mf-fg-3);
  display: flex; align-items: baseline; gap: 10px;
}
.hero__rail span::before {
  content: ""; width: 6px; height: 6px; background: var(--mf-bronze); flex: none;
  transform: translateY(-1px);
}

/* hero entrance — pure CSS so content shows without JS */
.hero__eyebrow, .hero__title .word, .hero__lower, .hero__rail {
  opacity: 0; animation: heroIn var(--t-hero) var(--ease) forwards;
}
.hero__eyebrow { animation-delay: 120ms; }
.hero__title .word-1 { animation-delay: 220ms; }
.hero__title .word-2 { animation-delay: 340ms; }
.hero__title .word-3 { animation-delay: 460ms; }
.hero__lower { animation-delay: 720ms; }
.hero__rail { animation-delay: 900ms; }
@keyframes heroIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
  .hero__eyebrow, .hero__title .word, .hero__lower, .hero__rail { opacity: 1; animation: none; transform: none; }
  .ff__rule { transform: scaleX(1); transition: none; }
  .ff__rule .edge { opacity: 0.9; transition: none; }
  .ff__grid { opacity: 0.16; transition: none; }
}

@media (max-width: 900px) {
  .hero__lower { grid-template-columns: 1fr; gap: 28px; align-items: start; }
  .hero__rail { grid-template-columns: repeat(2, 1fr); gap: 14px 24px; }
}

/* ============ §02 THE OUTCOME ============ */
.outcome__head { max-width: 22ch; margin-bottom: clamp(28px,5vh,56px); }
.outcome__title {
  font-family: var(--mf-font-display); font-weight: 700; text-transform: uppercase;
  font-size: var(--d-head); line-height: 0.98; letter-spacing: 0.005em;
  color: var(--mf-fg-1); margin: clamp(20px,3vh,32px) 0 0; text-wrap: balance;
}
.outcome__body {
  font-family: var(--mf-font-body); font-size: var(--b-lede); line-height: 1.55;
  color: var(--mf-fg-2); margin: clamp(20px,3vh,30px) 0 0; max-width: 68ch;
}
.wda {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1px solid var(--mf-border); margin-top: clamp(48px,7vh,88px);
}
.wda__col { padding: clamp(28px,3.5vh,44px) clamp(20px,2.4vw,44px) 0 0; position: relative; }
.wda__col + .wda__col { padding-left: clamp(20px,2.4vw,44px); border-left: 1px solid var(--mf-border); }
.wda__col::before {
  content: ""; position: absolute; top: -1px; left: 0; width: 48px; height: 1px; background: var(--mf-bronze);
}
.wda__col + .wda__col::before { left: clamp(20px,2.4vw,44px); }
.wda__k {
  font-family: var(--mf-font-display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(28px,3.4vw,52px); line-height: 1; letter-spacing: 0.01em; color: var(--mf-fg-1); margin: 0;
}
.wda__s {
  font-family: var(--mf-font-body); font-size: var(--b-body); line-height: 1.5;
  color: var(--mf-fg-2); margin: clamp(14px,2vh,20px) 0 0; max-width: 32ch;
}
@media (max-width: 820px) {
  .wda { grid-template-columns: 1fr; }
  .wda__col { padding: clamp(22px,3vh,32px) 0 0; }
  .wda__col + .wda__col { padding-left: 0; border-left: 0; border-top: 1px solid var(--mf-border); }
  .wda__col + .wda__col::before { left: 0; }
}

/* ============ shared panel (system + week proof) ============ */
.panel { background: var(--mf-bg-elev-1); border: 1px solid var(--mf-border); }
.panel__bar {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  padding: 12px 18px; border-bottom: 1px solid var(--mf-border);
  font-family: var(--mf-font-mono); font-size: 10.5px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--mf-fg-3);
}
.panel__bar .brand { color: var(--mf-fg-1); font-weight: 600; letter-spacing: 0.06em; }
.panel__bar .right { margin-left: auto; }
.panel__bar .demo {
  color: var(--mf-bronze); border: 1px solid var(--mf-border); padding: 4px 10px;
  letter-spacing: 0.14em;
}
.panel__body { padding: clamp(16px,1.8vw,26px); display: grid; gap: 10px; }
.pr {
  display: grid; grid-template-columns: minmax(74px, 104px) 1fr auto;
  gap: 10px 20px; align-items: baseline; padding: 11px 4px;
  border-bottom: 1px solid var(--mf-border);
}
.pr:last-child { border-bottom: 0; }
.pr__k { font-family: var(--mf-font-mono); font-size: 10.5px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--mf-fg-3); }
.pr__t { font-family: var(--mf-font-body); font-weight: 500; font-size: clamp(13.5px,1.05vw,16px);
  line-height: 1.4; color: var(--mf-fg-1); }
.pr__t .dim { color: var(--mf-fg-3); font-weight: 400; }
.pr__m { font-family: var(--mf-font-mono); font-size: 11px; letter-spacing: 0.06em;
  color: var(--mf-fg-2); white-space: nowrap; }
.pr__m .up { color: var(--mf-bronze); }
.panel__note {
  margin-top: 4px; padding: 12px 14px; border: 1px solid var(--mf-border);
  border-left: 2px solid var(--mf-bronze); background: var(--mf-bg-elev-2);
  font-family: var(--mf-font-body); font-size: clamp(13px,1.05vw,15px); line-height: 1.5; color: var(--mf-fg-2);
}
.panel__note .who { font-family: var(--mf-font-mono); font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--mf-fg-3); display: block; margin-top: 8px; }

/* ============ §03 THE SYSTEM ============ */
.system__grid {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px,4.5vw,88px);
  align-items: start; margin-top: clamp(36px,5vh,64px);
}
.system__title {
  font-family: var(--mf-font-display); font-weight: 700; text-transform: uppercase;
  font-size: var(--d-head); line-height: 0.98; letter-spacing: 0.005em; color: var(--mf-fg-1);
  margin: clamp(20px,3vh,32px) 0 0; max-width: 14ch; text-wrap: balance;
}
.system__body { font-family: var(--mf-font-body); font-size: var(--b-lede); line-height: 1.55;
  color: var(--mf-fg-2); margin: clamp(18px,2.6vh,28px) 0 0; max-width: 52ch; }
.loopline {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 12px;
  margin: clamp(28px,4vh,44px) 0 0;
}
.loopline span {
  font-family: var(--mf-font-mono); font-size: clamp(11px,1vw,13px); letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--mf-fg-1);
  border: 1px solid var(--mf-border); padding: 8px 13px;
}
.loopline .arw { border: 0; padding: 0; color: var(--mf-bronze); }
.system__cta { margin-top: clamp(28px,4vh,44px); }

@media (max-width: 900px) { .system__grid { grid-template-columns: 1fr; } }

/* ============ §04 THE WEEK ============ */
.week__title {
  font-family: var(--mf-font-display); font-weight: 700; text-transform: uppercase;
  font-size: var(--d-sub); line-height: 1.0; letter-spacing: 0.005em; color: var(--mf-fg-1);
  margin: clamp(20px,3vh,32px) 0 0; max-width: 26ch; text-wrap: balance;
}
.ledger { border-bottom: 1px solid var(--mf-border); margin-top: clamp(40px,6vh,72px); }
.lrow {
  display: grid; grid-template-columns: 56px minmax(150px,240px) 1fr;
  gap: clamp(14px,2.5vw,48px); align-items: baseline;
  border-top: 1px solid var(--mf-border); padding: clamp(22px,3.2vh,38px) 0;
}
.lrow__n { font-family: var(--mf-font-mono); font-size: var(--eye); letter-spacing: 0.16em; color: var(--mf-bronze); }
.lrow__k {
  font-family: var(--mf-font-display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(22px,2.4vw,34px); line-height: 1; letter-spacing: 0.01em; color: var(--mf-fg-1);
}
.lrow__v { font-family: var(--mf-font-body); font-size: var(--b-body); line-height: 1.5; color: var(--mf-fg-2); max-width: 56ch; }
.lrow__v .em { color: var(--mf-fg-1); font-weight: 500; }
.lrow__v--link { text-decoration: none; color: var(--mf-fg-2); transition: color var(--t-micro) var(--ease); }
.lrow__v--link:hover { color: var(--mf-fg-1); }
.lrow__v--link .arr { color: var(--mf-bronze); font-family: var(--mf-font-mono); margin-left: 6px; display: inline-block; transition: transform var(--t-micro) var(--ease); }
.lrow__v--link:hover .arr { transform: translateX(4px); }
.decision {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px;
}
.decision span {
  font-family: var(--mf-font-mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mf-fg-2); border: 1px solid var(--mf-border); padding: 7px 12px;
}
.decision span b { color: var(--mf-bronze); font-weight: 500; }
@media (max-width: 760px) {
  .lrow { grid-template-columns: 40px 1fr; gap: 8px 16px; }
  .lrow__v { grid-column: 1 / -1; }
}

/* Bear support panel */
.bearsupport {
  display: grid; grid-template-columns: 1fr 0.9fr; gap: clamp(32px,4vw,80px);
  align-items: center; margin-top: clamp(48px,7vh,88px);
  border: 1px solid var(--mf-border); padding: clamp(28px,3.5vw,56px);
}
.bearsupport__k { margin: 0 0 clamp(18px,2.5vh,28px); }
.bearsupport__title {
  font-family: var(--mf-font-display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(22px,2.6vw,40px); line-height: 1.02; letter-spacing: 0.005em; color: var(--mf-fg-1);
  margin: 0; max-width: 20ch;
}
.bearsupport__body { font-family: var(--mf-font-body); font-size: var(--b-body); line-height: 1.55;
  color: var(--mf-fg-2); margin: clamp(16px,2.4vh,24px) 0 0; max-width: 52ch; }
.bearsupport__cta { margin-top: clamp(18px,2.6vh,28px); }
.chat { display: grid; gap: 12px; }
.chat .u { justify-self: end; max-width: 88%; background: var(--mf-bg-elev-2); border: 1px solid var(--mf-border);
  border-radius: 14px 14px 4px 14px; padding: 11px 15px; font-family: var(--mf-font-body);
  font-size: clamp(13px,1.05vw,15px); line-height: 1.5; color: var(--mf-fg-1); }
.chat .b { justify-self: start; max-width: 94%; background: var(--mf-bg-elev-2); border: 1px solid var(--mf-border);
  border-left: 2px solid var(--mf-bronze); padding: 12px 16px; font-family: var(--mf-font-body);
  font-size: clamp(13px,1.05vw,15px); line-height: 1.55; color: var(--mf-fg-1); }
.chat .b .who { display: block; font-family: var(--mf-font-mono); font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--mf-fg-3); margin-bottom: 7px; }
.chat .b .cur { color: var(--mf-bronze); }
@media (max-width: 860px) { .bearsupport { grid-template-columns: 1fr; gap: 28px; } }

/* ============ §05 THE BUILDER ============ */
.builder__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px,4.5vw,88px); align-items: start; margin-top: clamp(28px,4.5vh,52px); }
.builder__left { display: block; }
.builder__media { position: relative; margin: 0; aspect-ratio: 4 / 5; background: var(--mf-graphite);
  border: 1px solid var(--mf-border); overflow: hidden; }
.builder__media img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }
.builder__c { position: absolute; width: 15px; height: 15px; z-index: 2; }
.builder__c::before, .builder__c::after { content: ""; position: absolute; background: var(--mf-bronze); }
.builder__c::before { width: 100%; height: 1px; } .builder__c::after { width: 1px; height: 100%; }
.builder__c.tl { top: 10px; left: 10px; }
.builder__c.tr { top: 10px; right: 10px; transform: rotate(90deg); }
.builder__c.bl { bottom: 10px; left: 10px; transform: rotate(-90deg); }
.builder__c.br { bottom: 10px; right: 10px; transform: rotate(180deg); }
.builder__name {
  font-family: var(--mf-font-display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(40px,5vw,80px); line-height: 0.9; letter-spacing: -0.005em; color: var(--mf-fg-1);
  margin: clamp(22px,3vh,34px) 0 0;
}
.builder__role {
  font-family: var(--mf-font-mono); font-size: clamp(11px,1vw,13px); letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--mf-fg-3); margin: 16px 0 0;
}
.builder__role .dot { color: var(--mf-bronze); }
.builder__body { font-family: var(--mf-font-body); font-size: var(--b-lede); line-height: 1.6;
  color: var(--mf-fg-2); margin: 0; }
.builder__body + .builder__body { margin-top: clamp(16px,2.4vh,24px); }
.builder__body .em { color: var(--mf-fg-1); font-weight: 500; }
.factrail { border-bottom: 1px solid var(--mf-border); margin-top: clamp(32px,4.5vh,56px); }
.factrail p {
  margin: 0; border-top: 1px solid var(--mf-border); padding: clamp(15px,2.2vh,22px) 0;
  display: flex; align-items: baseline; gap: 16px;
  font-family: var(--mf-font-mono); font-size: clamp(12px,1.1vw,15px); letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--mf-fg-1);
}
.factrail p .n { color: var(--mf-bronze); flex: none; }
@media (max-width: 900px) { .builder__grid { grid-template-columns: 1fr; gap: 28px; } }

/* ============ §06 MEMBERSHIP ============ */
.member__head { max-width: 24ch; }
.member__title {
  font-family: var(--mf-font-display); font-weight: 700; text-transform: uppercase;
  font-size: var(--d-head); line-height: 0.98; letter-spacing: 0.005em; color: var(--mf-fg-1);
  margin: clamp(20px,3vh,32px) 0 0; text-wrap: balance;
}
.member__grid {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px,4.5vw,88px);
  align-items: start; margin-top: clamp(44px,6.5vh,80px);
}
.price { font-family: var(--mf-font-display); font-weight: 700; text-transform: uppercase;
  font-size: var(--d-price); line-height: 0.86; color: var(--mf-fg-1); margin: 0; }
.price .per { display: block; font-size: 0.2em; letter-spacing: 0.14em; color: var(--mf-fg-3); margin-top: 12px; }
.price-sub { font-family: var(--mf-font-body); font-size: var(--b-body); line-height: 1.55;
  color: var(--mf-fg-2); margin: clamp(18px,2.6vh,28px) 0 0; max-width: 40ch; }
.included { margin: clamp(28px,4vh,44px) 0 0; border-bottom: 1px solid var(--mf-border); }
.included p {
  margin: 0; border-top: 1px solid var(--mf-border); padding: clamp(12px,1.8vh,17px) 0;
  display: flex; gap: 14px; align-items: baseline;
  font-family: var(--mf-font-body); font-size: clamp(14px,1.15vw,17px); line-height: 1.45; color: var(--mf-fg-1);
}
.included p .n { font-family: var(--mf-font-mono); font-size: 10px; letter-spacing: 0.14em; color: var(--mf-bronze); flex: none; }

/* application sequence */
.appseq { display: grid; gap: 0; border-bottom: 1px solid var(--mf-border); }
.appstep {
  display: grid; grid-template-columns: 84px minmax(120px,180px) 1fr; gap: clamp(14px,2.4vw,44px);
  align-items: baseline; border-top: 1px solid var(--mf-border); padding: clamp(18px,2.6vh,28px) 0;
}
.appstep__n { font-family: var(--mf-font-mono); font-size: var(--eye); letter-spacing: 0.16em; color: var(--mf-bronze); }
.appstep__k { font-family: var(--mf-font-display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(18px,1.9vw,27px); line-height: 1; color: var(--mf-fg-1); }
.appstep__v { font-family: var(--mf-font-body); font-size: var(--b-body); line-height: 1.5; color: var(--mf-fg-2); max-width: 52ch; }
@media (max-width: 760px) {
  .appstep { grid-template-columns: 44px 1fr; gap: 6px 14px; }
  .appstep__v { grid-column: 1 / -1; }
}

.member__close {
  margin-top: clamp(44px,6vh,80px); display: flex; flex-direction: column; align-items: flex-start; gap: 18px;
}
.member__closeline {
  font-family: var(--mf-font-body); font-size: var(--b-body); color: var(--mf-fg-3); margin: 0;
}
.apply-frame { position: relative; display: inline-flex; flex-direction: column; align-items: flex-start; gap: 16px;
  padding: clamp(30px,4vw,52px) clamp(36px,5vw,72px); }
.apply-frame .fc { position: absolute; width: 15px; height: 15px; opacity: 0.55;
  transition: transform 500ms var(--ease), opacity 500ms var(--ease); }
.apply-frame .fc::before, .apply-frame .fc::after { content: ""; position: absolute; background: var(--mf-fg-2); }
.apply-frame .fc::before { width: 100%; height: 1px; } .apply-frame .fc::after { width: 1px; height: 100%; }
.apply-frame .fc.tl { top: 0; left: 0; } .apply-frame .fc.tr { top: 0; right: 0; transform: rotate(90deg); }
.apply-frame .fc.bl { bottom: 0; left: 0; transform: rotate(-90deg); } .apply-frame .fc.br { bottom: 0; right: 0; transform: rotate(180deg); }
.apply-frame.locked .fc { opacity: 1; }
.apply-frame.locked .fc.tl { transform: translate(4px,4px); }
.apply-frame.locked .fc.tr { transform: translate(-4px,4px) rotate(90deg); }
.apply-frame.locked .fc.bl { transform: translate(4px,-4px) rotate(-90deg); }
.apply-frame.locked .fc.br { transform: translate(-4px,-4px) rotate(180deg); }
.apply-micro { font-family: var(--mf-font-mono); font-size: var(--eye); letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--mf-fg-3); margin: 0; }
.apply-signin {
  font-family: var(--mf-font-mono); font-size: var(--eye); letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--mf-fg-3); text-decoration: none; border-bottom: 1px solid transparent; padding-bottom: 3px;
  transition: color var(--t-micro) var(--ease), border-color var(--t-micro) var(--ease);
}
.apply-signin:hover { color: var(--mf-fg-1); border-bottom-color: var(--mf-bronze); }
@media (max-width: 900px) { .member__grid { grid-template-columns: 1fr; gap: 32px; } }

/* ============ FOOTER ============ */
.foot { position: relative; z-index: 2; padding: clamp(56px,9vh,104px) var(--gutter);
  border-top: 1px solid var(--mf-border); display: flex; flex-direction: column; align-items: center;
  gap: clamp(22px,3.5vh,36px); text-align: center; }
.foot__mark { font-family: var(--mf-font-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: -0.01em; font-size: clamp(20px,2vw,26px); color: var(--mf-fg-1); text-decoration: none; }
.foot__nav { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(16px,2.4vw,36px); }
.foot__nav a { font-family: var(--mf-font-mono); font-size: var(--eye); letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--mf-fg-3); text-decoration: none; transition: color var(--t-micro) var(--ease); }
.foot__nav a:hover { color: var(--mf-bronze-action); }
.foot__note { font-family: var(--mf-font-body); font-size: clamp(13px,1.1vw,15px); line-height: 1.6;
  color: var(--mf-fg-3); margin: 0; max-width: 52ch; }
.foot__note a { color: var(--mf-bronze-action); text-decoration: none; }
.foot__legalnav { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px;
  font-family: var(--mf-font-mono); font-size: var(--mf-text-2xs); letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--mf-fg-3); opacity: 0.75; }
.foot__legalnav a { color: var(--mf-fg-3); text-decoration: none; }
.foot__legalnav a:hover { color: var(--mf-bronze); }
.foot__legal { display: grid; gap: 6px; font-family: var(--mf-font-mono); font-size: var(--mf-text-2xs);
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--mf-fg-3); opacity: 0.85; }
.foot__legal .sep { color: var(--mf-bronze); }

/* ============ mobile menu ============ */
.nav__menu { display: none; }
.menu-overlay { position: fixed; inset: 0; z-index: 9990; background: var(--mf-bg);
  display: none; flex-direction: column; justify-content: center; padding: max(var(--gutter), 24px); }
.menu-overlay.open { display: flex; }
.menu-overlay__nav { display: grid; gap: 0; }
.menu-overlay__nav a { display: flex; align-items: baseline; gap: 18px; text-decoration: none;
  font-family: var(--mf-font-display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(34px,11vw,64px); line-height: 1.0; letter-spacing: 0.01em; color: var(--mf-fg-1);
  border-bottom: 1px solid var(--mf-border); padding: clamp(13px,2.4vh,22px) 0; }
.menu-overlay__nav a .mnum { font-family: var(--mf-font-mono); font-size: clamp(11px,3vw,14px);
  font-weight: 500; letter-spacing: 0.2em; color: var(--mf-bronze); }
.menu-overlay__util { display: flex; gap: 28px; margin-top: clamp(22px,4vh,36px); }
.menu-overlay__util a { font-family: var(--mf-font-mono); font-size: 12px; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--mf-fg-3); text-decoration: none; }
.menu-overlay__util a:hover { color: var(--mf-fg-1); }
.menu-overlay__foot { margin-top: clamp(20px,3.5vh,32px); font-family: var(--mf-font-mono);
  font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--mf-fg-3); }
body.menu-open { overflow: hidden; }

@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav { height: 58px; padding-top: 0; padding-bottom: 0; }
  .nav__menu { display: inline-flex; flex-direction: column; justify-content: center; align-items: center;
    gap: 6px; width: 44px; height: 44px; padding: 0; background: transparent; border: 0; cursor: pointer;
    position: fixed; top: 8px; right: var(--gutter); z-index: 9999; }
  .nav__menu span { display: block; width: 26px; height: 1.5px; background: var(--mf-fg-1);
    transition: transform .3s var(--ease), width .3s var(--ease), opacity .3s var(--ease); }
  .nav__menu span:nth-child(2) { width: 18px; }
  .nav__menu.open span:nth-child(1) { transform: translateY(3.75px) rotate(45deg); }
  .nav__menu.open span:nth-child(2) { transform: translateY(-3.75px) rotate(-45deg); width: 26px; }
}

/* ---- Item 4: keep the ASSESS -> ADJUST loop on one line at desktop ---- */
@media (min-width: 901px) {
  .loopline { flex-wrap: nowrap; gap: 10px; }
  .loopline span { white-space: nowrap; padding: 8px 12px; }
}

/* ---- Item 1: low-height desktop hero (laptops ~720/768 tall) ---- */
@media (min-width: 901px) and (max-height: 850px) {
  .hero { padding-top: clamp(80px, 11vh, 112px); padding-bottom: clamp(40px, 7vh, 84px); }
  .hero__eyebrow { margin-bottom: clamp(12px, 2.2vh, 26px); }
  .hero__title { font-size: clamp(46px, min(11vw, 15vh), 158px); line-height: 0.84; }
  .hero__lower { margin-top: clamp(18px, 2.8vh, 34px); gap: clamp(20px, 3vw, 56px); }
  .hero__rail { position: static; display: none; }
}

/* ---- MOBILE-PASS landscape : short viewports (phones on their side) ---- */
@media (orientation: landscape) and (max-height: 600px) {
  .hero { min-height: auto; padding-top: clamp(74px, 18vh, 96px); padding-bottom: clamp(28px, 8vh, 44px); }
  .hero__lower { margin-top: clamp(16px, 3vh, 26px); }
  .hero__rail { position: static; margin-top: 20px; padding-top: 14px; }
}

/* ---- Fixes pass : thinner Apply CTA + panel rows reflow on phones ---- */
@media (max-width: 880px) {
  .cta-apply { padding: 12px 24px; font-size: 13px; letter-spacing: 0.14em; gap: 12px; }
}
@media (max-width: 600px) {
  .pr { grid-template-columns: minmax(60px, 88px) 1fr; gap: 6px 14px; }
  .pr__m { grid-column: 2; white-space: normal; justify-self: start; }
  .eye { letter-spacing: 0.13em; }
  .eye-rule { gap: 10px; }
  .eye-rule::before { width: 22px; flex-basis: 22px; }
}
