:root {
  color-scheme: dark;
  --bg: #050b0f;
  --panel: rgba(8, 22, 28, 0.72);
  --panel-strong: #08161c;
  --line: rgba(122, 214, 225, 0.24);
  --line-soft: rgba(255, 255, 255, 0.11);
  --text: #f7f7f1;
  --muted: #b6c1c1;
  --faint: #718080;
  --cyan: #54dced;
  --amber: #f39a20;
  --amber-2: #f7c154;
  --green: #66f08a;
  --radius: 8px;
  --shell: min(1460px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 72% 8%, rgba(84, 220, 237, 0.12), transparent 24rem),
    radial-gradient(circle at 8% 34%, rgba(243, 154, 32, 0.1), transparent 28rem),
    linear-gradient(180deg, #02070a 0%, #081116 48%, #05090a 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}

a {
  color: inherit;
}

img,
svg {
  display: block;
}

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 18px;
  z-index: 50;
  padding: 10px 14px;
  background: var(--text);
  color: #061116;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-frame {
  width: var(--shell);
  margin: 10px auto 28px;
  border: 1px solid rgba(124, 225, 238, 0.34);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(5, 15, 19, 0.88);
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.48);
}

.site-nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 72px;
  padding: 18px 28px;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(3, 11, 15, 0.72);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 950;
  line-height: 0.98;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.bolt {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.035);
}

.bolt svg {
  width: 20px;
  fill: var(--amber-2);
  filter: drop-shadow(0 0 12px rgba(243, 154, 32, 0.52));
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.8vw, 42px);
}

.nav-links a {
  color: #d5dede;
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--cyan);
  outline: none;
}

.nav-cta {
  justify-self: end;
  padding: 14px 20px;
  border: 1px solid rgba(243, 154, 32, 0.78);
  border-radius: 7px;
  color: #ffc96d;
  font-size: 0.84rem;
  font-weight: 900;
  text-decoration: none;
  background: linear-gradient(180deg, rgba(243, 154, 32, 0.16), rgba(243, 154, 32, 0.06));
  box-shadow: inset 0 0 24px rgba(243, 154, 32, 0.12);
}

.menu-button {
  display: none;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  min-height: 465px;
  padding: 38px 64px 20px;
  border-bottom: 1px solid var(--line-soft);
  background:
    radial-gradient(circle at 58% 45%, rgba(84, 220, 237, 0.14), transparent 30rem),
    linear-gradient(180deg, rgba(5, 14, 18, 0.2), rgba(5, 14, 18, 0.95));
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 560px;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(3.15rem, 4.15vw, 4.65rem);
  line-height: 0.99;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-copy h1 span {
  display: block;
  color: var(--cyan);
  text-shadow: 0 0 26px rgba(84, 220, 237, 0.28);
}

.hero-copy p {
  margin: 18px 0 0;
  color: #dce5e5;
  font-size: 1.08rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  padding: 0 28px;
  border-radius: 7px;
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.button-primary {
  color: #fff3d7;
  border: 1px solid rgba(255, 193, 84, 0.78);
  background: linear-gradient(180deg, #c66c11, #8c3d07);
  box-shadow: 0 0 36px rgba(243, 154, 32, 0.34), inset 0 0 34px rgba(255, 214, 116, 0.16);
}

.button-ghost {
  color: #eaf4f4;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.035);
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.proof-row article {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 6px 10px;
  align-items: start;
  padding-right: 18px;
  border-right: 1px solid var(--line-soft);
}

.proof-row article:last-child {
  border-right: 0;
}

.proof-row strong,
.friction-grid strong {
  font-size: 0.88rem;
}

.proof-row small,
.friction-grid small {
  grid-column: 2;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.proof-icon,
.mini-icon {
  position: relative;
  display: block;
  width: 26px;
  height: 26px;
  border: 1px solid var(--green);
  border-radius: 50%;
}

.proof-icon::after,
.mini-icon::after {
  position: absolute;
  inset: 7px;
  content: "";
  border-radius: inherit;
  background: var(--green);
}

.hero-visual {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(920px, 62vw);
  margin: 0;
  overflow: hidden;
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 14, 18, 0.96) 0%, rgba(5, 14, 18, 0.5) 17%, rgba(5, 14, 18, 0.02) 46%),
    linear-gradient(180deg, transparent 72%, rgba(5, 14, 18, 0.88) 100%);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.9;
  filter: saturate(1.05) contrast(1.05);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) 1.35fr;
  gap: 1px;
  border-bottom: 1px solid var(--line-soft);
  background: var(--line-soft);
}

.metrics div {
  min-height: 95px;
  padding: 24px 36px;
  background: rgba(4, 14, 18, 0.92);
}

.metrics strong {
  display: block;
  color: var(--cyan);
  font-size: 1.55rem;
  line-height: 1;
}

.metrics span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.86rem;
}

.metrics .status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 18px 38px;
  min-height: 0;
  padding: 0;
  border: 1px solid rgba(84, 220, 237, 0.28);
  background: rgba(10, 24, 30, 0.76);
}

.metrics .status span,
.metrics .status strong {
  margin: 0;
  font-size: 0.74rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.metrics .status strong {
  position: relative;
  color: var(--green);
  padding-left: 18px;
}

.metrics .status strong::before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px rgba(102, 240, 138, 0.8);
  transform: translateY(-50%);
}

.problem,
.process,
.offers,
.lanes,
.membership,
.closing {
  padding: 70px 64px;
}

.problem {
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  min-height: 520px;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
  background:
    radial-gradient(circle at 86% 32%, rgba(84, 220, 237, 0.12), transparent 25rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent);
}

.launch-column {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 210px;
  opacity: 0.78;
  mask-image: linear-gradient(90deg, black 48%, transparent);
}

.launch-column img {
  width: 100%;
}

.problem-copy {
  position: relative;
  z-index: 1;
  max-width: 545px;
  padding-left: 74px;
}

.section-label {
  margin: 0 0 14px;
  color: var(--amber-2);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  font-size: clamp(2.35rem, 4.2vw, 4.25rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.problem-copy > p:not(.section-label),
.membership > p {
  max-width: 620px;
  margin: 24px 0 0;
  color: #cfdada;
  font-size: 1.08rem;
  line-height: 1.7;
}

.friction-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.friction-grid article {
  min-height: 115px;
  padding-right: 24px;
  border-right: 1px solid var(--line-soft);
}

.friction-grid article:last-child {
  border-right: 0;
}

.mini-icon {
  margin-bottom: 14px;
  border-color: var(--amber);
}

.mini-icon::after {
  background: var(--amber);
}

.radar-panel {
  align-self: center;
  border: 1px solid rgba(84, 220, 237, 0.32);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(5, 17, 22, 0.78);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.36);
}

.radar-panel img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 34px;
}

.process,
.offers,
.lanes,
.membership,
.closing {
  border-bottom: 1px solid var(--line-soft);
}

.process-rail,
.offer-board,
.lane-list {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line-soft);
}

.process-rail {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-rail article,
.offer-card,
.lane-list span {
  background: rgba(255, 255, 255, 0.038);
}

.process-rail article {
  min-height: 225px;
  padding: 26px;
}

.process-rail span,
.offer-card span {
  color: var(--amber-2);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.16em;
}

.process-rail h3 {
  margin: 58px 0 10px;
  font-size: 1.8rem;
}

.process-rail p {
  color: var(--muted);
  line-height: 1.5;
}

.offer-board {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.offer-card {
  min-height: 190px;
  padding: 22px;
  border: 0;
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

.offer-card.is-active,
.offer-card:hover,
.offer-card:focus-visible {
  outline: 1px solid var(--cyan);
  background: rgba(84, 220, 237, 0.08);
}

.offer-card strong {
  display: block;
  margin-top: 42px;
  font-size: 1.05rem;
  line-height: 1.2;
}

.offer-card small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.offer-output {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  margin-top: 16px;
  padding: 28px;
  border: 1px solid rgba(243, 154, 32, 0.38);
  border-radius: var(--radius);
  background: rgba(243, 154, 32, 0.055);
}

.offer-output > span {
  color: var(--amber-2);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.offer-output h3 {
  grid-column: 1;
  margin: 0;
  font-size: 2.25rem;
}

.offer-output p {
  grid-column: 1;
  max-width: 760px;
  margin: 0;
  color: #dbe4e4;
  line-height: 1.58;
}

.offer-output dl {
  grid-column: 2;
  grid-row: 1 / span 3;
  display: flex;
  gap: 1px;
  margin: 0;
  border: 1px solid var(--line-soft);
  background: var(--line-soft);
}

.offer-output dl div {
  min-width: 160px;
  padding: 18px;
  background: rgba(2, 10, 13, 0.82);
}

.offer-output dt {
  color: var(--faint);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.offer-output dd {
  margin: 8px 0 0;
  font-weight: 900;
}

.lane-list {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.lane-list span {
  min-height: 112px;
  padding: 22px;
  color: var(--muted);
  line-height: 1.45;
}

.lane-list b {
  display: block;
  color: var(--text);
}

.membership {
  background: linear-gradient(135deg, rgba(84, 220, 237, 0.07), transparent 52%);
}

.closing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-bottom: 0;
}

.closing h2 {
  max-width: 900px;
}

@media (max-width: 1100px) {
  .site-frame {
    width: calc(100vw - 24px);
    max-width: 370px;
    margin: 22px 12px 28px;
  }

  .site-nav {
    grid-template-columns: 1fr auto;
    min-height: 66px;
    padding: 16px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .brand {
    font-size: 0.82rem;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding: 44px 16px 0;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-copy h1 {
    font-size: clamp(2.05rem, 8.2vw, 2.55rem);
    line-height: 1.06;
  }

  .hero-copy p {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    margin-top: 26px;
  }

  .button {
    width: 100%;
  }

  .proof-row {
    display: none;
  }

  .hero-visual {
    position: relative;
    top: auto;
    right: auto;
    width: calc(100% + 32px);
    height: 220px;
    margin: 28px -16px 0;
    border-top: 1px solid var(--line-soft);
  }

  .hero-visual::after {
    background: linear-gradient(180deg, rgba(5, 14, 18, 0.06), rgba(5, 14, 18, 0.82));
  }

  .metrics {
    grid-template-columns: repeat(3, 1fr);
  }

  .metrics div {
    min-height: auto;
    padding: 18px 16px;
  }

  .metrics strong {
    font-size: 1.15rem;
  }

  .metrics span {
    font-size: 0.72rem;
  }

  .metrics .status {
    grid-column: 1 / -1;
    margin: 0;
    min-height: 74px;
  }

  .problem,
  .process,
  .offers,
  .lanes,
  .membership,
  .closing {
    padding: 56px 16px;
  }

  .problem {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .launch-column,
  .radar-panel {
    display: none;
  }

  .problem-copy {
    padding-left: 0;
  }

  h2 {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }

  .friction-grid,
  .process-rail,
  .offer-board,
  .lane-list {
    grid-template-columns: 1fr;
  }

  .friction-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .friction-grid article:last-child {
    border-bottom: 0;
  }

  .offer-output {
    grid-template-columns: 1fr;
  }

  .offer-output dl {
    grid-column: auto;
    grid-row: auto;
    flex-direction: column;
  }

  .closing {
    flex-direction: column;
    align-items: stretch;
  }
}

/* Taste refactor pass — responsive polish */
section[id] {
  scroll-margin-top: 96px;
}

@media (max-width: 1100px) {
  :root {
    --shell: min(100vw - 16px, 760px);
  }

  body {
    background:
      radial-gradient(circle at 50% -8%, rgba(84, 220, 237, 0.16), transparent 18rem),
      radial-gradient(circle at 8% 38%, rgba(243, 154, 32, 0.08), transparent 20rem),
      linear-gradient(180deg, #02070a 0%, #071116 52%, #040708 100%);
  }

  body::before {
    background-size: 58px 58px;
    opacity: 0.72;
  }

  .site-frame {
    width: calc(100vw - 14px);
    max-width: none;
    margin: max(8px, env(safe-area-inset-top)) 7px max(18px, env(safe-area-inset-bottom));
    border-radius: 14px;
  }

  .site-nav {
    position: sticky;
    top: 0;
    z-index: 30;
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: auto;
    padding: 13px 14px 12px;
    background: rgba(3, 11, 15, 0.91);
  }

  .brand {
    gap: 10px;
    font-size: 0.72rem;
    letter-spacing: 0.095em;
  }

  .bolt {
    width: 34px;
    height: 34px;
  }

  .nav-links {
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    overflow-x: auto;
    padding: 1px 1px 7px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    flex: 0 0 auto;
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.035);
    color: #e9f1f1;
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }

  .menu-button {
    display: none;
  }

  .hero {
    padding: 34px 18px 0;
    gap: 24px;
  }

  .hero-copy h1 {
    max-width: 12ch;
    font-size: clamp(2.45rem, 11vw, 4.2rem);
    line-height: 0.96;
    letter-spacing: -0.045em;
  }

  .hero-copy p {
    max-width: 36rem;
    margin-top: 17px;
    color: #edf5f4;
    font-size: clamp(1rem, 4.1vw, 1.12rem);
    line-height: 1.52;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 24px;
  }

  .button {
    min-height: 52px;
    padding: 0 18px;
    border-radius: 10px;
  }

  .hero-visual {
    width: calc(100% + 36px);
    height: clamp(260px, 74vw, 430px);
    margin: 4px -18px 0;
  }

  .hero-visual img {
    object-position: 58% center;
    opacity: 1;
    filter: saturate(1.14) contrast(1.08) brightness(1.05);
  }

  .metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metrics div {
    min-height: 98px;
    padding: 18px 15px;
  }

  .metrics strong {
    font-size: clamp(1.25rem, 6vw, 1.7rem);
  }

  .metrics span {
    max-width: 12rem;
    color: #d2dddd;
    font-size: 0.78rem;
    line-height: 1.32;
  }

  .metrics .status {
    grid-column: 1 / -1;
    min-height: 62px;
    margin: 0;
  }

  .problem,
  .process,
  .offers,
  .lanes,
  .membership,
  .closing {
    padding: 48px 18px;
  }

  h2 {
    font-size: clamp(2rem, 9vw, 3.05rem);
    line-height: 1.02;
    letter-spacing: -0.035em;
  }

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

  .section-label {
    margin-bottom: 11px;
    font-size: 0.7rem;
  }

  .problem-copy > p:not(.section-label),
  .membership > p {
    margin-top: 16px;
    color: #dce6e4;
    font-size: 1rem;
    line-height: 1.58;
  }

  .friction-grid {
    gap: 1px;
    margin-top: 26px;
    border: 1px solid var(--line-soft);
    border-radius: 10px;
    overflow: hidden;
    background: var(--line-soft);
  }

  .friction-grid article {
    min-height: auto;
    padding: 18px;
    border: 0;
    background: rgba(255, 255, 255, 0.04);
  }

  .process-rail article {
    min-height: auto;
    padding: 19px 18px 20px;
  }

  .process-rail h3 {
    margin: 22px 0 7px;
    font-size: 1.45rem;
  }

  .process-rail p {
    margin: 0;
    color: #d2dddd;
    font-size: 0.95rem;
  }

  .offer-card {
    min-height: auto;
    padding: 18px;
  }

  .offer-card strong {
    margin-top: 18px;
    font-size: 1rem;
  }

  .offer-card small {
    color: #d2dddd;
    font-size: 0.82rem;
    line-height: 1.42;
  }

  .offer-output {
    gap: 14px;
    padding: 20px 18px;
    border-radius: 10px;
  }

  .offer-output h3 {
    font-size: clamp(1.55rem, 7vw, 2.15rem);
    line-height: 1.05;
  }

  .offer-output p {
    color: #e1eaea;
    font-size: 0.98rem;
  }

  .offer-output dl {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .offer-output dl div {
    min-width: 0;
    padding: 14px;
  }

  .lane-list span {
    min-height: auto;
    padding: 17px 18px;
    color: #d4dddd;
  }

  .closing {
    gap: 22px;
    padding-bottom: calc(54px + env(safe-area-inset-bottom));
  }

  .closing h2 {
    font-size: clamp(2rem, 8.8vw, 2.95rem);
  }
}

@media (max-width: 430px) {
  .site-frame {
    width: 100vw;
    margin: 0;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .site-nav {
    padding-left: 15px;
    padding-right: 15px;
  }

  .hero,
  .problem,
  .process,
  .offers,
  .lanes,
  .membership,
  .closing {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-copy h1 {
    max-width: 11ch;
    font-size: clamp(2.35rem, 12vw, 3.25rem);
  }

  .hero-visual {
    width: calc(100% + 32px);
    margin-left: -16px;
    margin-right: -16px;
  }

  .metrics div {
    padding: 16px 14px;
  }

  .offer-output dl {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1101px) {
  .site-nav {
    position: sticky;
    top: 10px;
    z-index: 20;
  }

  .nav-links a,
  .button,
  .offer-card,
  .lane-list span,
  .process-rail article {
    will-change: transform;
  }
}

/* Mobile overflow fix pass */
.site-frame,
.site-nav,
.hero,
.hero-copy,
.problem,
.process,
.offers,
.lanes,
.membership,
.closing,
.metrics,
.section-heading,
.offer-output,
.process-rail,
.offer-board,
.lane-list,
.friction-grid {
  min-width: 0;
}

@media (max-width: 1100px) {
  .site-frame {
    overflow-x: hidden;
  }

  .site-nav {
    overflow: hidden;
  }

  .nav-links {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero-copy h1 {
    max-width: 100%;
    overflow-wrap: normal;
    word-break: normal;
  }

  .hero-copy p,
  .section-heading,
  .problem-copy,
  .membership,
  .closing h2 {
    max-width: 100%;
  }
}

@media (max-width: 430px) {
  body {
    width: 100%;
    max-width: 100%;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.12rem, 10.7vw, 2.85rem);
    letter-spacing: -0.055em;
  }

  .hero-copy p {
    font-size: 0.98rem;
  }

  .nav-links a {
    font-size: 0.58rem;
    padding: 7px 9px;
  }
}

/* Hard mobile containment: no clipped primary copy */
@media (max-width: 430px) {
  html,
  body {
    overflow-x: hidden;
  }

  .site-frame {
    width: 100%;
    max-width: 100%;
  }

  .hero,
  .hero-copy,
  .hero-copy h1,
  .hero-copy p,
  .button,
  .metrics,
  .metrics div,
  .problem-copy,
  .section-heading,
  .offer-card,
  .offer-output,
  .lane-list span,
  .membership,
  .closing {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-copy h1 {
    width: 100%;
    font-size: clamp(2rem, 9.8vw, 2.55rem);
    line-height: 1;
  }

  .hero-copy h1 span {
    display: inline;
  }

  .hero-actions,
  .button {
    min-width: 0;
  }

  .button {
    white-space: normal;
    text-align: center;
  }

  .metrics {
    width: 100%;
  }

  .metrics div {
    min-width: 0;
  }

  .metrics span {
    overflow-wrap: anywhere;
  }

  .nav-links {
    max-width: calc(100vw - 30px);
  }
}

/* Mobile nav should feel intentional, not clipped */
@media (max-width: 430px) {
  .nav-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    max-width: 100%;
    overflow: visible;
    padding: 0;
  }

  .nav-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 32px;
    padding: 7px 5px;
    text-align: center;
    white-space: normal;
    line-height: 1.05;
  }
}

/* ===== Enhanced mobile + tablet fixes ===== */
@media (max-width: 768px) {
  .site-nav {
    grid-template-columns: auto auto;
    gap: 12px;
    padding: 12px 16px;
    min-height: auto;
  }

  .site-nav .nav-links {
    display: none;
  }

  .site-nav .nav-cta {
    display: none;
  }

  .menu-button {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 16px;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 10vw, 2.8rem);
    line-height: 1.1;
  }

  .hero-copy p {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
  }

  .hero-actions .button {
    width: 100%;
    justify-content: center;
  }

  .proof-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .metrics {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 16px;
  }

  .metrics div {
    padding: 12px 10px;
  }

  .metrics strong {
    font-size: 1.4rem;
  }

  .problem,
  .process,
  .offers,
  .lanes,
  .membership,
  .closing {
    padding: 24px 16px;
  }

  .friction-grid {
    grid-template-columns: 1fr;
  }

  .process-rail {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .offer-board {
    grid-template-columns: 1fr;
  }

  .lane-list {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .closing h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 380px) {
  .hero-copy h1 {
    font-size: 1.8rem;
  }

  .metrics {
    grid-template-columns: 1fr 1fr;
  }

  .metrics .status {
    grid-column: span 2;
  }
}

/* Cross-surface taste polish — preserve homepage art, refine UI chrome */
:root {
  --radius: 12px;
}

.site-frame {
  border-color: rgba(124, 225, 238, 0.24);
  box-shadow: 0 32px 120px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255,255,255,.035);
}

.site-nav {
  background: rgba(3, 11, 15, 0.82);
}

.nav-links a {
  position: relative;
  transition: color 180ms ease, opacity 180ms ease;
}

.nav-links a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  content: "";
  background: var(--cyan);
  opacity: 0;
  transform: scaleX(.4);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  opacity: .9;
  transform: scaleX(1);
}

.nav-cta,
.button {
  border-radius: 999px;
}

.nav-cta {
  padding: 12px 18px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.button-primary {
  background: linear-gradient(180deg, #b96110, #8c3d07);
  box-shadow: 0 16px 42px -28px rgba(243, 154, 32, 0.9), inset 0 1px 0 rgba(255,255,255,.16);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.proof-row article,
.friction-grid article,
.process-rail article,
.offer-card,
.lane-list span,
.metrics div {
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
}

.offer-card {
  transition: background 180ms ease, outline-color 180ms ease, transform 180ms ease;
}

.offer-card:hover,
.offer-card:focus-visible {
  transform: translateY(-1px);
}

.closing .button + .button {
  margin-left: 0 !important;
}

.closing {
  flex-wrap: wrap;
}

@media (min-width: 1101px) {
  .hero {
    padding-top: 46px;
    padding-bottom: 28px;
  }

  .hero-actions,
  .closing {
    align-items: center;
  }

  .closing .button {
    flex: 0 0 auto;
  }
}

@media (max-width: 768px) {
  .site-frame {
    border-color: rgba(124, 225, 238, 0.2);
  }

  .hero {
    padding-top: 32px;
  }

  .button {
    min-height: 50px;
  }
}


/* Final consistency pass: preserve art, prevent visual collisions */
.problem {
  isolation: isolate;
}

.launch-column {
  z-index: 0;
  pointer-events: none;
  opacity: 0.34;
}

.problem-copy,
.radar-panel {
  position: relative;
  z-index: 1;
}

.metrics,
.metrics div,
.metrics span,
.metrics strong {
  min-width: 0;
  overflow-wrap: anywhere;
}

@media (min-width: 1101px) {
  .launch-column {
    width: 170px;
    opacity: 0.24;
  }

  .problem-copy {
    padding-left: 52px;
  }
}

@media (max-width: 768px) {
  .metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0;
    gap: 1px;
  }

  .metrics div {
    width: 100%;
  }
}


/* Conservative mobile safety + remove stray problem overlay */
.launch-column { display: none !important; }

@media (max-width: 430px) {
  .hero,
  .problem,
  .process,
  .offers,
  .lanes,
  .membership,
  .closing {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-copy h1 {
    font-size: clamp(1.86rem, 8.6vw, 2.35rem) !important;
    line-height: 1.05 !important;
    letter-spacing: -0.035em !important;
  }

  .hero-copy p,
  .problem-copy > p:not(.section-label),
  .membership > p,
  .offer-output p,
  .process-rail p,
  .offer-card small {
    font-size: 0.94rem !important;
    line-height: 1.55 !important;
  }

  .hero-actions {
    width: 100%;
  }

  .button {
    width: 100%;
    max-width: 100%;
    padding-left: 14px;
    padding-right: 14px;
  }

  .metrics {
    grid-template-columns: 1fr;
  }

  .metrics .status {
    grid-column: auto;
  }
}


/* Extra narrow-phone breathing room */
@media (max-width: 430px) {
  .hero-copy h1 { max-width: 13.5ch !important; }
  .hero-copy p { max-width: 31ch !important; }
  .metrics span { max-width: 24ch; }
}


/* Closing CTA stack alignment */
.closing {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  align-items: end;
  gap: clamp(24px, 4vw, 56px);
}

.closing h2 {
  display: grid;
  gap: 0.12em;
  max-width: 760px;
}

.closing h2 span {
  display: block;
}

.closing-actions {
  display: grid;
  justify-items: end;
  align-content: end;
  gap: 10px;
  width: 100%;
}

.closing-actions .button {
  width: fit-content;
  min-width: 0;
  white-space: nowrap;
}

.closing-actions .button:nth-child(1) { width: 100%; }
.closing-actions .button:nth-child(2) { width: 78%; }
.closing-actions .button:nth-child(3) { width: 58%; }

@media (max-width: 768px) {
  .closing {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .closing-actions {
    justify-items: stretch;
  }

  .closing-actions .button,
  .closing-actions .button:nth-child(1),
  .closing-actions .button:nth-child(2),
  .closing-actions .button:nth-child(3) {
    width: 100%;
  }
}

/* Closing CTA mobile cleanup — compact buttons, cleaner headline wrap */
@media (max-width: 768px) {
  .closing {
    gap: 18px;
  }

  .closing h2 {
    font-size: clamp(1.38rem, 7.05vw, 1.52rem) !important;
    line-height: 1.04 !important;
    letter-spacing: -0.035em !important;
    max-width: 100%;
  }

  .closing h2 span {
    white-space: nowrap;
  }

  .closing-actions {
    justify-items: start;
    align-content: start;
    gap: 8px;
    width: fit-content;
    max-width: 100%;
  }

  .closing-actions .button,
  .closing-actions .button:nth-child(1),
  .closing-actions .button:nth-child(2),
  .closing-actions .button:nth-child(3) {
    width: fit-content;
    min-height: 40px;
    padding: 10px 15px;
    font-size: 0.78rem;
    line-height: 1.1;
    justify-content: flex-start;
  }
}

@media (max-width: 340px) {
  .closing h2 {
    font-size: 1.32rem !important;
  }

  .closing-actions .button,
  .closing-actions .button:nth-child(1),
  .closing-actions .button:nth-child(2),
  .closing-actions .button:nth-child(3) {
    font-size: 0.74rem;
    padding-inline: 13px;
  }
}
