:root {
  --black: #080808;
  --black-soft: #0d0d0d;
  --charcoal: #121212;
  --charcoal-2: #181818;
  --paper: #f5f2ed;
  --muted: #b7b0aa;
  --muted-2: #8e8883;
  --line: rgba(245, 242, 237, 0.13);
  --line-strong: rgba(245, 242, 237, 0.22);
  --red: #971c18;
  --red-bright: #cf3229;
  --red-deep: #5f1110;
  --shadow: 0 28px 70px rgba(0,0,0,.38);
  --radius: 22px;
  --radius-sm: 14px;
  --max: 1180px;
  --header-h: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 18px); }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--black);
  color: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { background: rgba(207,50,41,.48); color: #fff; }

.wrap { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.section { padding: clamp(74px, 8vw, 126px) 0; }
.section-tight { padding: clamp(58px, 6vw, 90px) 0; }
.surface { background: var(--black-soft); border-block: 1px solid var(--line); }
.eyebrow {
  margin: 0 0 14px;
  color: var(--red-bright);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.kicker { color: var(--red-bright); font-weight: 900; }
.muted { color: var(--muted); }
.lead { color: var(--muted); font-size: clamp(1rem, 1.45vw, 1.13rem); }
.max-copy { max-width: 700px; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
h1 {
  margin-bottom: 22px;
  font-size: clamp(3.55rem, 8.7vw, 8.3rem);
  line-height: .86;
  letter-spacing: -.045em;
  text-transform: uppercase;
}
h2 {
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 5.1vw, 5.1rem);
  line-height: .93;
  letter-spacing: -.035em;
  text-transform: uppercase;
}
h3 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2.2vw, 2.15rem);
  line-height: 1.02;
  letter-spacing: -.02em;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  min-height: var(--header-h);
  border-bottom: 1px solid transparent;
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.site-header.scrolled,
.site-header.menu-open {
  background: rgba(8,8,8,.94);
  border-color: var(--line);
  box-shadow: 0 12px 40px rgba(0,0,0,.22);
  backdrop-filter: blur(16px);
}
.header-inner {
  width: min(1320px, calc(100% - 36px));
  min-height: var(--header-h);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: auto; height: 52px; filter: drop-shadow(0 8px 20px rgba(0,0,0,.28)); }
.nav { display: flex; align-items: center; gap: clamp(12px, 1.6vw, 24px); }
.nav a {
  color: rgba(245,242,237,.78);
  font-size: .83rem;
  font-weight: 850;
  letter-spacing: .01em;
  transition: color .18s ease;
}
.nav a:hover, .nav a:focus-visible, .nav a[aria-current="page"] { color: #fff; }
.nav .nav-rebuild { color: #fff; position: relative; }
.nav .nav-rebuild::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 2px; background: var(--red-bright);
}
.nav .cta-link {
  padding: 10px 16px;
  border: 1px solid rgba(245,242,237,.28);
  border-radius: 999px;
  color: #fff;
  background: rgba(8,8,8,.28);
}
.menu-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(8,8,8,.5);
  align-items: center; justify-content: center;
  cursor: pointer;
}
.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 20px; height: 2px;
  background: #fff;
  transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle span { margin: 4px 0; }
.menu-toggle[aria-expanded="true"] span { opacity: 0; }
.menu-toggle[aria-expanded="true"]::before { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"]::after { transform: translateY(-6px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 96svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute; inset: 0; z-index: -2;
  background: url("hero.jpg") center 36% / cover no-repeat;
  transform: scale(1.015);
}
.hero::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(4,4,4,.90) 0%, rgba(4,4,4,.72) 38%, rgba(4,4,4,.18) 74%, rgba(4,4,4,.58) 100%),
    linear-gradient(0deg, rgba(8,8,8,.98) 0%, rgba(8,8,8,.15) 43%, rgba(8,8,8,.65) 100%);
}
.hero-inner { padding: 150px 0 68px; }
.hero-copy { max-width: 660px; margin-bottom: 0; color: rgba(245,242,237,.86); font-size: clamp(1.05rem, 1.8vw, 1.3rem); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 30px; }
.button {
  min-height: 50px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { color: #fff; background: var(--red); border-color: var(--red); }
.button.primary:hover { background: var(--red-bright); border-color: var(--red-bright); }
.button.secondary { color: #fff; border-color: rgba(245,242,237,.28); background: rgba(8,8,8,.35); }
.button.secondary:hover { border-color: rgba(245,242,237,.48); background: rgba(245,242,237,.08); }
.button.ghost-red { color: #fff; border-color: rgba(207,50,41,.5); background: rgba(151,28,24,.12); }
.button.ghost-red:hover { background: rgba(151,28,24,.26); }

.hero-meta {
  max-width: 850px;
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  margin-top: 52px;
  border-block: 1px solid var(--line);
}
.hero-meta div { padding: 18px 22px 18px 0; border-right: 1px solid var(--line); }
.hero-meta div + div { padding-left: 22px; }
.hero-meta div:last-child { border-right: 0; padding-right: 0; }
.hero-meta strong { display: block; margin-bottom: 2px; font-size: .92rem; text-transform: uppercase; }
.hero-meta span { color: var(--muted); font-size: .9rem; }

.section-head {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(280px,.52fr);
  align-items: end;
  gap: clamp(30px, 5vw, 70px);
  margin-bottom: 46px;
}
.section-head h2 { margin-bottom: 0; }
.section-head p { margin-bottom: 0; color: var(--muted); font-size: 1.03rem; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  border-block: 1px solid var(--line);
}
.service-card {
  min-width: 0;
  padding: 32px 28px;
  min-height: 320px;
  display: flex; flex-direction: column;
  border-right: 1px solid var(--line);
  transition: background .2s ease, transform .2s ease;
}
.service-card:last-child { border-right: 0; }
.service-card:hover { background: rgba(255,255,255,.035); transform: translateY(-3px); }
.service-number { color: var(--red-bright); font-size: .8rem; font-weight: 900; letter-spacing: .14em; }
.service-card h3 { margin-top: auto; text-transform: uppercase; }
.service-card p { color: var(--muted); margin-bottom: 0; }

.rebuild-home {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 20%, rgba(151,28,24,.18), transparent 34%),
    linear-gradient(180deg,#0b0b0b,#090909);
  border-block: 1px solid var(--line);
}
.rebuild-home-grid {
  display: grid;
  grid-template-columns: minmax(0,.95fr) minmax(430px,1.05fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
}
.rebuild-home-copy h2 span, .rebuild-title span { color: var(--red-bright); }
.rebuild-home-copy p { max-width: 650px; color: var(--muted); }
.rebuild-price-line { display: flex; flex-wrap: wrap; gap: 12px 18px; align-items: baseline; margin: 26px 0 0; }
.rebuild-price { font-size: clamp(2.2rem,4.2vw,4rem); font-weight: 950; line-height: 1; }
.rebuild-price-note { color: var(--muted); font-size: .92rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.check-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px 18px; margin: 26px 0 0; padding: 0; list-style: none; }
.check-grid li { position: relative; padding-left: 22px; color: rgba(245,242,237,.88); font-weight: 750; }
.check-grid li::before { content: "✓"; position: absolute; left: 0; color: var(--red-bright); font-weight: 950; }

.product-stage { position: relative; min-height: 540px; }
.product-photo {
  position: absolute;
  right: 0; top: 0;
  width: 72%; height: 70%;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #151515;
}
.product-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 53% 50%; }
.product-stack {
  position: absolute;
  left: 0; bottom: 0;
  width: 78%;
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(12,12,12,.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}
.product-stack img {
  width: 100%;
  aspect-ratio: 8.5 / 11;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.11);
}

.pricing-section {
  background: linear-gradient(180deg, rgba(151,28,24,.12), rgba(8,8,8,0) 42%), var(--black-soft);
  border-block: 1px solid var(--line);
}
.pricing-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.price-card {
  min-width: 0;
  min-height: 420px;
  display: flex; flex-direction: column;
  padding: clamp(28px,4vw,42px);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.028);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.price-card:hover { transform: translateY(-3px); border-color: rgba(207,50,41,.42); background: rgba(255,255,255,.04); }
.plan-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 16px; }
.plan-top h3 { margin-bottom: 0; text-transform: uppercase; }
.tag { flex: 0 0 auto; border: 1px solid rgba(207,50,41,.45); border-radius: 999px; padding: 7px 10px; color: var(--red-bright); font-size: .7rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.price-lead { color: var(--muted); margin-bottom: 26px; }
.main-price { margin-bottom: 22px; color: #fff; font-size: clamp(2.25rem,4vw,3.8rem); font-weight: 950; line-height: .95; }
.main-price span { color: var(--muted); font-size: .88rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.price-list, .feature-list { margin: auto 0 0; padding: 0; list-style: none; display: grid; gap: 0; }
.price-list li, .feature-list li { min-width: 0; padding: 12px 0; border-top: 1px solid var(--line); }
.price-list li { display: flex; justify-content: space-between; gap: 20px; font-weight: 800; }
.price-list li span:last-child { color: var(--muted); text-align: right; font-weight: 700; }
.feature-list li { color: rgba(245,242,237,.88); font-weight: 750; }

.coaching-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 18px; align-items: stretch; }
.coaching-copy { min-height: 610px; display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(32px,5vw,62px); background: var(--charcoal); border-radius: var(--radius); }
.coaching-copy p:last-child { margin-bottom: 0; color: var(--muted); max-width: 560px; }
.coaching-media { display: grid; grid-template-rows: 1fr .72fr; gap: 18px; min-height: 610px; }
.photo { overflow: hidden; background: #161616; border-radius: var(--radius); box-shadow: var(--shadow); }
.photo img { width: 100%; height: 100%; object-fit: cover; }
.photo.coaching img { object-position: center 45%; }
.photo.form img { object-position: center 38%; }
.wide-photo { margin-top: 18px; height: clamp(420px,52vw,720px); overflow: hidden; border-radius: var(--radius); background: #161616; }
.wide-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 45%; }

.process-section { background: var(--black-soft); border-block: 1px solid var(--line); }
.steps { border-top: 1px solid var(--line); }
.step { display: grid; grid-template-columns: 120px minmax(220px,.6fr) minmax(0,1fr); gap: 26px; align-items: start; padding: 26px 0; border-bottom: 1px solid var(--line); }
.step span { color: var(--red-bright); font-weight: 900; }
.step h3 { margin: 0; text-transform: uppercase; }
.step p { margin: 0; color: var(--muted); }

.about-grid { display: grid; grid-template-columns: minmax(300px,.72fr) minmax(0,1fr); gap: clamp(34px,6vw,78px); align-items: center; }
.portrait { aspect-ratio: 6/7; overflow: hidden; border-radius: var(--radius); background: #151515; box-shadow: var(--shadow); }
.portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center 34%; }
.about-copy p { color: var(--muted); max-width: 720px; font-size: 1.04rem; }
.credentials { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.credentials span { padding: 9px 13px; border: 1px solid var(--line); border-radius: 999px; color: rgba(245,242,237,.88); font-size: .84rem; font-weight: 800; }

.testimonials-section { background: linear-gradient(180deg,rgba(151,28,24,.11),transparent 55%),var(--black-soft); border-block: 1px solid var(--line); }
.testimonial-layout { display: grid; grid-template-columns: minmax(0,1.45fr) minmax(280px,.55fr); gap: 18px; align-items: stretch; }
.testimonial-carousel, .review-card { min-width: 0; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.028); box-shadow: var(--shadow); }
.testimonial-carousel { overflow: hidden; touch-action: pan-y; }
.testimonial-track { display: flex; transition: transform .5s ease; will-change: transform; }
.testimonial-slide { flex: 0 0 100%; padding: clamp(28px,4vw,46px); }
.testimonial-card { min-height: 270px; display: flex; flex-direction: column; justify-content: space-between; }
.testimonial-card blockquote { margin: 0 0 28px; color: rgba(245,242,237,.93); font-size: clamp(1.22rem,2vw,1.9rem); line-height: 1.32; font-weight: 760; }
.testimonial-meta { display: flex; flex-wrap: wrap; gap: 9px 12px; align-items: center; color: var(--muted); font-weight: 780; }
.testimonial-meta strong { color: #fff; letter-spacing: .06em; text-transform: uppercase; }
.testimonial-stars { color: #f4a62a; letter-spacing: .06em; }
.testimonial-controls { display: flex; justify-content: space-between; align-items: center; gap: 14px; padding: 0 clamp(20px,3vw,36px) clamp(20px,3vw,30px); }
.testimonial-dots { display: flex; flex-wrap: wrap; gap: 7px; }
.testimonial-dot { width: 9px; height: 9px; border: 0; border-radius: 999px; padding: 0; background: rgba(255,255,255,.25); cursor: pointer; }
.testimonial-dot.active { width: 26px; background: var(--red-bright); }
.testimonial-buttons { display: flex; gap: 8px; }
.testimonial-button { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.04); color: #fff; cursor: pointer; font-size: 1.2rem; font-weight: 900; }
.review-card { display: flex; flex-direction: column; justify-content: space-between; gap: 28px; padding: clamp(28px,4vw,42px); background: var(--charcoal); }
.review-card p { color: var(--muted); }
.review-card .button { width: 100%; }

.final-cta { position: relative; min-height: 600px; display: grid; place-items: center; overflow: hidden; isolation: isolate; text-align: center; }
.final-cta::before { content: ""; position: absolute; inset: 0; z-index: -2; background: url("spot.jpg") center 48% / cover no-repeat; }
.final-cta::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg,rgba(8,8,8,.94),rgba(8,8,8,.54)); }
.final-cta-inner { padding: 92px 0; }
.final-cta h2 { margin-inline: auto; }
.final-cta p { max-width: 700px; margin: 0 auto 28px; color: rgba(245,242,237,.84); font-size: 1.08rem; }
.final-cta .actions { justify-content: center; margin-top: 0; }
.contact-options { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px 18px; margin-top: 18px; color: var(--muted); font-size: .9rem; font-weight: 700; }
.contact-options a:hover { color: #fff; }

.site-footer { border-top: 1px solid var(--line); background: #070707; }
.footer-inner { width: min(1320px, calc(100% - 36px)); margin-inline: auto; min-height: 98px; display: grid; grid-template-columns: auto 1fr auto; gap: 22px; align-items: center; }
.footer-brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 850; letter-spacing: .05em; text-transform: uppercase; }
.footer-brand img { width: 76px; opacity: .8; }
.footer-copy { color: var(--muted-2); font-size: .86rem; text-align: center; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px 18px; color: var(--muted); font-size: .86rem; font-weight: 700; }
.footer-links a:hover { color: #fff; }

/* REBUILD sales page */
.rebuild-hero { padding: calc(var(--header-h) + 70px) 0 78px; background: radial-gradient(circle at 72% 22%, rgba(151,28,24,.20), transparent 35%), linear-gradient(180deg,#101010,#080808); border-bottom: 1px solid var(--line); }
.rebuild-hero-grid { display: grid; grid-template-columns: minmax(0,.92fr) minmax(450px,1.08fr); gap: clamp(36px,6vw,86px); align-items: center; }
.rebuild-title { font-size: clamp(4.4rem,9vw,8.8rem); margin-bottom: 16px; }
.rebuild-subtitle { max-width: 680px; color: rgba(245,242,237,.88); font-size: clamp(1.16rem,2vw,1.45rem); font-weight: 750; }
.rebuild-hero-copy .lead { max-width: 670px; }
.price-chip { display: inline-flex; gap: 10px; align-items: center; margin-top: 16px; padding: 8px 12px; border: 1px solid rgba(207,50,41,.4); border-radius: 999px; color: #fff; background: rgba(151,28,24,.14); font-size: .82rem; font-weight: 850; }
.sales-visual { position: relative; min-height: 610px; }
.sales-photo { position: absolute; inset: 0 0 auto auto; width: 76%; height: 68%; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line-strong); box-shadow: var(--shadow); }
.sales-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 54% 48%; }
.sales-books { position: absolute; left: 0; bottom: 0; width: 84%; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 10px; padding: 14px; border: 1px solid var(--line-strong); border-radius: var(--radius); background: rgba(11,11,11,.95); box-shadow: var(--shadow); }
.sales-books img { width: 100%; aspect-ratio: 8.5/11; object-fit: cover; border-radius: 8px; border: 1px solid rgba(255,255,255,.11); }

.value-strip { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); border-block: 1px solid var(--line); }
.value-item { padding: 26px; border-right: 1px solid var(--line); }
.value-item:last-child { border-right: 0; }
.value-item strong { display: block; margin-bottom: 4px; color: #fff; text-transform: uppercase; font-size: .92rem; }
.value-item span { color: var(--muted); font-size: .9rem; }

.included-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.included-card { min-width: 0; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: rgba(255,255,255,.028); }
.included-card img { width: 100%; aspect-ratio: 8.5/11; object-fit: cover; border-radius: 10px; border: 1px solid var(--line); margin-bottom: 20px; }
.included-card h3 { text-transform: uppercase; font-size: 1.28rem; }
.included-card p { color: var(--muted); margin-bottom: 0; }

.split-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(320px,.8fr); gap: clamp(32px,6vw,76px); align-items: center; }
.split-photo { overflow: hidden; border-radius: var(--radius); min-height: 520px; background: #151515; box-shadow: var(--shadow); }
.split-photo img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; object-position: center 40%; }
.bullet-list { display: grid; gap: 13px; margin: 26px 0 0; padding: 0; list-style: none; }
.bullet-list li { position: relative; padding: 13px 0 13px 28px; border-top: 1px solid var(--line); color: rgba(245,242,237,.9); font-weight: 760; }
.bullet-list li::before { content: "✓"; position: absolute; left: 0; color: var(--red-bright); font-weight: 950; }

.timeline { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); border-block: 1px solid var(--line); }
.timeline-card { padding: 30px 28px; border-right: 1px solid var(--line); }
.timeline-card:last-child { border-right: 0; }
.timeline-card .num { display: block; margin-bottom: 46px; color: var(--red-bright); font-weight: 900; letter-spacing: .12em; }
.timeline-card h3 { text-transform: uppercase; }
.timeline-card p { color: var(--muted); margin-bottom: 0; }

.faq { display: grid; gap: 10px; }
.faq details { border: 1px solid var(--line); border-radius: var(--radius-sm); background: rgba(255,255,255,.025); }
.faq summary { cursor: pointer; list-style: none; padding: 20px 22px; font-weight: 850; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--red-bright); font-size: 1.2rem; }
.faq details[open] summary::after { content: "−"; }
.faq details p { padding: 0 22px 20px; margin: 0; color: var(--muted); }

.checkout-card { max-width: 900px; margin-inline: auto; padding: clamp(30px,5vw,56px); border: 1px solid rgba(207,50,41,.42); border-radius: var(--radius); background: linear-gradient(135deg,rgba(151,28,24,.18),rgba(255,255,255,.025)); text-align: center; box-shadow: var(--shadow); }
.checkout-card h2 { margin-inline: auto; }
.checkout-card p { max-width: 690px; margin-inline: auto; color: var(--muted); }
.checkout-card .actions { justify-content: center; }
.placeholder-note { margin-top: 14px; color: var(--muted-2); font-size: .83rem; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  .nav { gap: 14px; }
  .nav a { font-size: .8rem; }
  .service-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .service-card:nth-child(2) { border-right: 0; }
  .service-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .rebuild-home-grid, .rebuild-hero-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .product-stage, .sales-visual { min-height: 520px; }
  .testimonial-layout { grid-template-columns: 1fr; }
  .review-card { min-height: 260px; }
}

@media (max-width: 860px) {
  :root { --header-h: 68px; }
  .wrap { width: min(var(--max), calc(100% - 32px)); }
  .header-inner { width: calc(100% - 28px); }
  .brand img { height: 44px; }
  .menu-toggle { display: inline-flex; flex-direction: column; }
  .nav {
    position: absolute;
    top: calc(var(--header-h) - 1px);
    left: 0; right: 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 10px 16px 18px;
    background: rgba(8,8,8,.97);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 50px rgba(0,0,0,.38);
  }
  .nav.open { display: grid; }
  .nav a { padding: 13px 10px; border-bottom: 1px solid rgba(245,242,237,.08); font-size: .95rem; }
  .nav a:last-child { border-bottom: 0; }
  .nav .nav-rebuild::after { display: none; }
  .nav .cta-link { margin-top: 8px; text-align: center; }

  .hero { min-height: 760px; }
  .hero::before { background-position: 64% 38%; }
  .hero::after { background: linear-gradient(0deg,rgba(8,8,8,.98) 0%,rgba(8,8,8,.58) 54%,rgba(8,8,8,.48) 100%); }
  .hero-inner { padding: 136px 0 46px; }
  h1 { font-size: clamp(3rem,16vw,5.4rem); }
  h2 { font-size: clamp(2.25rem,10vw,4rem); }
  .hero-meta, .section-head, .rebuild-home-grid, .pricing-grid, .coaching-grid, .step, .about-grid, .rebuild-hero-grid, .split-grid { grid-template-columns: 1fr; }
  .section-head { gap: 16px; margin-bottom: 34px; }
  .hero-meta div, .hero-meta div:last-child { padding: 15px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .hero-meta div + div { padding-left: 0; }
  .hero-meta div:last-child { border-bottom: 0; }
  .rebuild-home-copy { order: 1; }
  .product-stage { order: 0; min-height: 480px; max-width: 650px; width: 100%; margin-inline: auto; }
  .product-photo { width: 76%; height: 68%; }
  .product-stack { width: 82%; }
  .price-card { min-height: 0; }
  .coaching-copy { min-height: 0; }
  .coaching-media { min-height: 580px; }
  .step { gap: 10px; }
  .about-grid { gap: 34px; }
  .portrait { width: min(100%, 560px); }
  .footer-inner { grid-template-columns: 1fr; justify-items: center; padding: 26px 0; }
  .footer-copy { order: 3; }
  .footer-links { justify-content: center; }
  .rebuild-hero { padding-top: calc(var(--header-h) + 46px); }
  .sales-visual { min-height: 500px; order: -1; max-width: 650px; width: 100%; margin-inline: auto; }
  .value-strip { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .value-item:nth-child(2) { border-right: 0; }
  .value-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .included-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .timeline { grid-template-columns: 1fr; }
  .timeline-card { border-right: 0; border-bottom: 1px solid var(--line); }
  .timeline-card:last-child { border-bottom: 0; }
  .timeline-card .num { margin-bottom: 20px; }
}

@media (max-width: 560px) {
  .wrap { width: min(var(--max), calc(100% - 28px)); }
  .section { padding: 68px 0; }
  .section-tight { padding: 52px 0; }
  .hero { min-height: 700px; }
  .hero::before { background-position: 68% 42%; }
  .hero-copy { font-size: 1.03rem; }
  .actions { align-items: stretch; }
  .actions .button { width: 100%; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 230px; border-right: 0; border-bottom: 1px solid var(--line); padding: 26px 20px; }
  .service-card:nth-child(2) { border-right: 0; }
  .service-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .service-card:last-child { border-bottom: 0; }
  .check-grid { grid-template-columns: 1fr; }
  .product-stage { min-height: 405px; }
  .product-photo { width: 83%; height: 66%; }
  .product-stack { width: 92%; padding: 9px; gap: 6px; }
  .plan-top { display: grid; }
  .tag { justify-self: start; }
  .price-list li { display: grid; gap: 4px; }
  .price-list li span:last-child { text-align: left; }
  .coaching-media { min-height: 500px; }
  .photo { border-radius: 16px; }
  .wide-photo { height: 420px; border-radius: 16px; }
  .testimonial-slide { padding: 24px 20px; }
  .testimonial-card { min-height: 310px; }
  .testimonial-controls { padding-inline: 20px; }
  .testimonial-dots { max-width: 150px; }
  .final-cta { min-height: 560px; }
  .contact-options { display: grid; gap: 8px; }
  .rebuild-hero { padding-bottom: 60px; }
  .rebuild-title { font-size: clamp(4rem,20vw,6rem); }
  .sales-visual { min-height: 410px; }
  .sales-photo { width: 84%; height: 65%; }
  .sales-books { width: 94%; padding: 9px; gap: 6px; }
  .value-strip, .included-grid { grid-template-columns: 1fr; }
  .value-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .value-item:last-child { border-bottom: 0; }
  .included-card { padding: 18px; }
  .split-photo, .split-photo img { min-height: 400px; }
  .checkout-card { border-radius: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 1ms !important; transition-duration: 1ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
