:root {
  --ink: #080a0a;
  --ink-soft: #101313;
  --panel: #151919;
  --line: #2a2f2f;
  --paper: #f3f4f0;
  --muted: #a5abaa;
  --yellow: #f6d21f;
  --yellow-deep: #d8b500;
  --max: 1200px;
  --header: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 20px);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--paper);
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    var(--ink);
  background-size: 48px 48px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

button,
select {
  cursor: pointer;
}

img,
svg {
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--yellow);
  transform: translateY(-150%);
}

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

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: var(--header);
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 10, 10, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 128px;
  height: 60px;
  overflow: hidden;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Center the artwork, leaving only the original empty black margins outside. */
  object-position: center 48%;
  mix-blend-mode: screen;
  filter: none;
  opacity: 1;
  transform: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: #d9ddda;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.045em;
}

.site-nav a:not(.nav-cta) {
  position: relative;
  padding: 8px 0;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 10px 18px;
  color: var(--ink);
  background: var(--yellow);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 12px 9px;
  border: 0;
  color: inherit;
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 26px;
  height: 2px;
  margin: 6px 0;
  background: currentColor;
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  padding-top: var(--header);
  overflow: hidden;
}

.hero::before {
  content: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.35fr);
  align-items: center;
  gap: 36px;
  width: min(var(--max), calc(100% - 48px));
  margin: auto;
}

.hero-copy {
  z-index: 3;
  padding: 60px 0 96px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--yellow);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-block;
  width: 38px;
  height: 3px;
  background: currentColor;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  margin-bottom: 24px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

h1 {
  max-width: 720px;
  font-size: clamp(4rem, 8.2vw, 8.4rem);
}

h1 em,
h2 em {
  display: block;
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 2px var(--yellow);
}

.hero-lead {
  max-width: 580px;
  margin-bottom: 32px;
  color: #c7ccca;
  font-size: 1.07rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 0.9rem;
  font-weight: 850;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

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

.button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.button-primary {
  color: var(--ink);
  background: var(--yellow);
}

.button-primary:hover {
  background: #ffe23b;
}

.button-ghost {
  color: var(--paper);
  border-color: #555d5b;
  background: rgba(8, 10, 10, 0.52);
}

.button-ghost:hover {
  color: var(--yellow);
  border-color: var(--yellow);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  padding: 30px 0 0;
  margin: 34px 0 0;
  border-top: 1px solid var(--line);
  color: #e1e4e1;
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  list-style: none;
  text-transform: uppercase;
}

.hero-points span {
  margin-right: 6px;
  color: var(--yellow);
  font-size: 0.67rem;
}

.hero-visual {
  position: relative;
  align-self: center;
  min-width: 0;
  margin: 48px 0 76px;
}

.transformation-labels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  font-size: 0.875rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
  color: #d7dad8;
  background: #101313;
  border-bottom: 1px solid #343a37;
}

.transformation-labels span {
  padding: 14px 10px;
  background: transparent;
}

.transformation-labels span:last-child {
  color: #e2ce79;
  border-left: 1px solid #343a37;
}

.hero-image-wrap {
  position: relative;
  background: var(--ink);
}

.hero-image-wrap::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  /* Apply the same subtle dark finish to both halves of the original comparison. */
  background: linear-gradient(180deg, rgba(8, 10, 10, 0.05), rgba(8, 10, 10, 0.14));
}

.hero-image-wrap img {
  width: 100%;
  height: auto;
  /* Preserve the full comparison and both original body proportions. */
  object-fit: contain;
}

.hero-caption {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  background: transparent;
}

.hero-stamp {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 13px;
  padding: 4px 0;
  color: #b9bfbc;
  background: transparent;
}

.hero-stamp strong {
  color: #e2ce79;
  font-family: Impact, sans-serif;
  font-size: 3rem;
  line-height: 1;
}

.hero-stamp span {
  padding-left: 12px;
  border-left: 1px solid #343a37;
  font-size: 0.65rem;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-quote {
  flex: 1 1 200px;
  max-width: 360px;
  margin: 0;
  color: #b9bfbc;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.065em;
  text-align: right;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  bottom: 24px;
  left: max(24px, calc((100vw - var(--max)) / 2));
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-cue svg {
  width: 18px;
  fill: none;
  stroke: var(--yellow);
  stroke-width: 2;
}

.section {
  width: min(var(--max), calc(100% - 48px));
  padding: 120px 0;
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  column-gap: 60px;
  align-items: end;
  margin-bottom: 54px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

h2 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.8rem);
}

.section-heading > p:last-child {
  max-width: 430px;
  margin-bottom: 7px;
  color: var(--muted);
}

.results {
  border-top: 1px solid var(--line);
}

.coach-journey {
  padding-top: 64px;
  padding-bottom: 72px;
  border-top: 1px solid var(--line);
}

.journey-heading {
  max-width: 900px;
  margin-bottom: 32px;
}

.journey-heading .eyebrow {
  color: #e2ce79;
}

.journey-heading h2 {
  font-family: inherit;
  font-size: clamp(1.75rem, 3.4vw, 3rem);
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: -0.025em;
  text-transform: none;
}

.coach-journey .result-card {
  flex-basis: calc((100% - 24px) / 2);
}

@media (max-width: 720px) {
  .coach-journey .result-card {
    flex-basis: 92%;
  }
}

.results .eyebrow {
  color: #e2ce79;
}

.results h2 em {
  -webkit-text-stroke-color: #e2ce79;
}

.results-grid {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: #756b42 #101313;
  padding-bottom: 16px;
}

.results-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.results-controls p {
  margin: 0;
  color: #b9bfbc;
  font-size: 0.875rem;
}

.results-arrows {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.results-arrow {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid #343a37;
  color: #e2ce79;
  background: #101313;
}

.results-arrow:hover:not(:disabled) {
  border-color: #e2ce79;
  background: #1a1e1c;
}

.results-arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

.results-arrow svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.result-card {
  flex: 0 0 calc((100% - 24px) / 2);
  min-width: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  background: #101313;
}

.result-card-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px 16px;
  padding: 20px;
}

.result-card-heading h3 {
  margin: 0;
  color: var(--paper);
  font-size: 1.125rem;
}

.result-card-heading > span {
  color: #aeb6b2;
  font-size: 0.875rem;
}

.result-card figure {
  min-width: 0;
  margin: 0;
}

.result-labels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  color: #d7dad8;
  border-top: 1px solid #2a302d;
  font-size: 0.875rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-align: center;
}

.result-labels span {
  padding: 10px;
}

.result-labels span:last-child {
  border-left: 1px solid #2a302d;
  color: #e2ce79;
}

.result-photo {
  display: block;
  width: 100%;
  height: auto;
}

/* Viewports isolate the original collage panels; no filters or retouching. */
svg.result-photo {
  overflow: hidden;
}

@media (max-width: 980px) {
  .site-nav {
    gap: 20px;
  }

}

@media (max-width: 720px) {
  .results-grid {
    gap: 16px;
  }

  .result-card {
    flex-basis: 92%;
  }
}

.plans {
  padding-top: 138px;
}

.plan-selector {
  display: grid;
  grid-template-columns: 210px 1fr;
  border: 1px solid var(--line);
  background: var(--ink-soft);
  box-shadow: 18px 18px 0 #050606;
}

.plan-tabs {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
}

.plan-tab {
  position: relative;
  display: flex;
  flex: 1;
  align-items: center;
  gap: 18px;
  min-height: 76px;
  padding: 18px 22px;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  background: transparent;
  font-weight: 850;
  letter-spacing: 0.055em;
  text-align: left;
  text-transform: uppercase;
  transition: color 160ms ease, background 160ms ease;
}

.plan-tab:last-child {
  border-bottom: 0;
}

.plan-tab span {
  color: #646b69;
  font-size: 0.65rem;
}

.plan-tab::after {
  position: absolute;
  top: 0;
  right: -1px;
  bottom: 0;
  width: 4px;
  content: "";
  background: var(--yellow);
  transform: scaleY(0);
  transition: transform 160ms ease;
}

.plan-tab:hover,
.plan-tab.is-active {
  color: var(--paper);
  background: #1b1f1f;
}

.plan-tab.is-active::after {
  transform: scaleY(1);
}

.plan-tab.is-active span {
  color: var(--yellow);
}

.plan-detail {
  min-width: 0;
}

.plan-intro {
  position: relative;
  padding: 48px 54px 42px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(246, 210, 31, 0.08), transparent 44%),
    repeating-linear-gradient(-55deg, transparent 0 24px, rgba(255, 255, 255, 0.018) 24px 26px);
}

.plan-intro::after {
  position: absolute;
  right: 26px;
  bottom: -55px;
  content: "77";
  color: transparent;
  font-family: Impact, sans-serif;
  font-size: 12rem;
  line-height: 1;
  -webkit-text-stroke: 1px rgba(246, 210, 31, 0.13);
}

.plan-kicker {
  margin-bottom: 6px;
  color: var(--yellow);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.plan-intro h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
  font-family: Impact, sans-serif;
  font-size: clamp(3rem, 6vw, 5.3rem);
  line-height: 1;
  letter-spacing: 0.02em;
}

.plan-intro > p:last-child {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0;
  color: var(--muted);
}

.plan-body {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1.22fr);
}

.feature-list {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 42px 48px;
  margin: 0;
  border-right: 1px solid var(--line);
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 29px;
  color: #d9ddda;
}

.feature-list li::before {
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 12px;
  height: 7px;
  border-bottom: 2px solid var(--yellow);
  border-left: 2px solid var(--yellow);
  content: "";
  transform: rotate(-45deg);
}

.price-block {
  padding: 38px 42px 42px;
}

.price-block > p {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.price-grid button {
  position: relative;
  min-height: 96px;
  padding: 17px 12px;
  border: 1px solid #323837;
  color: var(--paper);
  background: #0e1111;
  text-align: left;
}

.price-grid button:hover,
.price-grid button.is-selected {
  border-color: var(--yellow);
  background: rgba(246, 210, 31, 0.055);
}

.price-grid span,
.price-grid strong {
  display: block;
}

.price-grid span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 750;
  text-transform: uppercase;
}

.price-grid strong {
  margin-top: 4px;
  color: var(--yellow);
  font-size: 1.08rem;
}

.price-grid small {
  position: absolute;
  top: -10px;
  right: 7px;
  padding: 2px 7px;
  color: var(--ink);
  background: var(--yellow);
  font-size: 0.56rem;
  font-weight: 900;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.plan-cta {
  width: 100%;
}

.method {
  position: relative;
  width: 100%;
  padding-right: max(24px, calc((100vw - var(--max)) / 2));
  padding-left: max(24px, calc((100vw - var(--max)) / 2));
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0b0d0d;
}

.method.section {
  padding-top: 56px;
  padding-bottom: 56px;
}

.method .section-heading {
  display: block;
  margin-bottom: 28px;
}

.method .eyebrow {
  margin-bottom: 12px;
}

.method h2 {
  max-width: 100%;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.08;
}

.method h2 em {
  display: inline;
}

.method-rail {
  position: absolute;
  top: 26px;
  left: -20px;
  color: rgba(246, 210, 31, 0.055);
  font-family: Impact, sans-serif;
  font-size: clamp(5rem, 12vw, 11rem);
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.method .section-heading,
.steps {
  position: relative;
  z-index: 1;
  width: min(var(--max), 100%);
  margin-right: auto;
  margin-left: auto;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
  list-style: none;
}

.step {
  position: relative;
  min-width: 0;
  padding: 22px;
  border: 1px solid #343a32;
  border-top: 3px solid #d0b64f;
  background: linear-gradient(135deg, rgba(226, 206, 121, 0.07), transparent 70%), #101313;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .step.is-visible:hover {
    transform: translateY(-4px);
    border-color: #e2ce79;
    background-color: #191d17;
  }
}

.step-number {
  position: absolute;
  top: 22px;
  right: 20px;
  color: #e2ce79;
  font-family: Impact, sans-serif;
  font-size: 1.5rem;
}

.step-icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  place-items: center;
  color: var(--ink);
  background: var(--yellow);
}

.step-icon svg {
  width: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.step h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
  line-height: 1.2;
}

.step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.included.section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding-top: 56px;
  padding-bottom: 56px;
}

.included-lead {
  position: static;
  align-self: start;
}

.included-lead h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.08;
}

.included-lead h2 em {
  display: inline;
}

.included-lead .eyebrow {
  margin-bottom: 12px;
}

.included-lead > p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 14px;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  gap: 12px;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--yellow);
  font-weight: 800;
}

.text-link span {
  color: var(--yellow);
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  min-width: 0;
  padding: 22px;
  border: 1px solid #343a32;
  border-top: 3px solid #d0b64f;
  background: linear-gradient(135deg, rgba(226, 206, 121, 0.07), transparent 70%), #101313;
  transition: background-color 180ms ease, transform 180ms ease, border-color 180ms ease;
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .service-card.is-visible:hover {
    background-color: #191d17;
    border-color: #e2ce79;
    transform: translateY(-4px);
  }
}

@media (min-width: 1100px) {
  .included-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.service-card > span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  margin-bottom: 14px;
  color: var(--ink);
  background: var(--yellow);
  font-family: Impact, sans-serif;
  font-size: 1.1rem;
}

.service-card h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
  line-height: 1.22;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}

.manifesto {
  position: relative;
  display: grid;
  min-height: 400px;
  padding: 80px max(24px, calc((100vw - var(--max)) / 2));
  place-items: center;
  overflow: hidden;
  color: var(--ink);
  background: var(--yellow);
  text-align: center;
}

.manifesto::before,
.manifesto::after {
  position: absolute;
  width: 220px;
  height: 40px;
  content: "";
  background: var(--ink);
}

.manifesto::before {
  top: 28px;
  left: -50px;
  transform: rotate(-25deg);
}

.manifesto::after {
  right: -50px;
  bottom: 28px;
  transform: rotate(-25deg);
}

.manifesto p {
  max-width: 1050px;
  margin: 0;
  font-family: Impact, sans-serif;
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 1;
  text-transform: uppercase;
}

.manifesto p em {
  display: block;
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 2px var(--ink);
}

.manifesto > span {
  position: absolute;
  bottom: 26px;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.contact-copy {
  position: relative;
}

.contact-copy h2 {
  font-size: clamp(3.2rem, 5.7vw, 5.8rem);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 520px;
  color: var(--muted);
}

.contact-logo-lockup {
  position: relative;
  width: min(350px, 92%);
  margin: 18px auto -18px;
}

.contact-logo-lockup img {
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: screen;
  filter: saturate(0.84) contrast(1.04) brightness(0.97) drop-shadow(0 14px 24px rgba(0, 0, 0, 0.58));
  opacity: 0.96;
}

.contact-form {
  display: grid;
  gap: 23px;
  padding: 42px;
  border-top: 5px solid var(--yellow);
  background: var(--panel);
  box-shadow: 18px 18px 0 #030404;
}

.contact-form label > span {
  display: block;
  margin-bottom: 8px;
  color: #d4d8d6;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select {
  width: 100%;
  min-height: 54px;
  padding: 12px 14px;
  border: 1px solid #3b4240;
  border-radius: 0;
  color: var(--paper);
  background: #0c0e0e;
}

.contact-form input::placeholder {
  color: #6e7673;
}

.contact-form input:focus,
.contact-form select:focus {
  border-color: var(--yellow);
  outline: none;
  box-shadow: 0 0 0 2px rgba(246, 210, 31, 0.18);
}

.submit-button {
  width: 100%;
  border: 0;
}

.contact-form small {
  color: #777f7d;
  text-align: center;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--max), calc(100% - 48px));
  padding: 34px 0;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.8rem;
}

.footer-brand {
  width: 118px;
  height: 56px;
}

.site-footer p {
  margin: 0;
}

.site-footer > a:last-child {
  color: var(--paper);
  font-weight: 750;
}

.message-dialog {
  width: min(560px, calc(100% - 32px));
  padding: 38px;
  border: 1px solid #3a403f;
  border-top: 5px solid var(--yellow);
  color: var(--paper);
  background: var(--panel);
  box-shadow: 24px 24px 0 rgba(0, 0, 0, 0.55);
}

.message-dialog::backdrop {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.message-dialog h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 6vw, 3.4rem);
}

.dialog-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 0;
  color: var(--paper);
  background: transparent;
  font-size: 1.9rem;
}

.message-preview {
  padding: 18px;
  margin-bottom: 20px;
  border-left: 3px solid var(--yellow);
  color: #d8dcda;
  background: #0b0e0d;
  white-space: pre-line;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 0;
  }

  .hero-copy {
    width: min(680px, calc(100% - 48px));
    padding: 88px 0 40px;
    margin: 0 auto;
  }

  h1 {
    font-size: clamp(4rem, 13vw, 7rem);
  }

  .hero-visual {
    width: min(720px, calc(100% - 48px));
    margin: 0 auto;
  }

  .scroll-cue {
    display: none;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .section-heading > p:last-child {
    margin-top: 22px;
  }

  .plan-selector {
    grid-template-columns: 1fr;
  }

  .plan-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .plan-tab {
    justify-content: center;
    min-height: 66px;
    padding: 14px 10px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .plan-tab::after {
    top: auto;
    right: 0;
    left: 0;
    width: auto;
    height: 4px;
    transform: scaleX(0);
  }

  .plan-tab.is-active::after {
    transform: scaleX(1);
  }

  .plan-body {
    grid-template-columns: 1fr;
  }

  .feature-list {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .included,
  .contact {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .included-lead {
    position: static;
  }

  .contact-copy {
    max-width: 720px;
  }
}

@media (max-width: 720px) {
  :root {
    --header: 68px;
  }

  .site-header {
    padding: 0 20px;
  }

  .site-header .brand {
    width: 116px;
    height: 54px;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    top: var(--header);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 20px 28px;
    border-bottom: 1px solid var(--line);
    background: #0a0c0c;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 15px 8px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav .nav-cta {
    margin-top: 15px;
    text-align: center;
  }

  .hero-copy,
  .section,
  .site-footer {
    width: min(100% - 36px, var(--max));
  }

  .hero-copy {
    padding-top: 70px;
  }

  h1 {
    font-size: clamp(3.6rem, 18vw, 5.8rem);
  }

  h1 em,
  h2 em {
    -webkit-text-stroke-width: 1px;
  }

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

  .hero-points {
    display: grid;
    gap: 12px;
  }

  .hero-visual {
    width: calc(100% - 36px);
  }

  .hero-quote {
    max-width: none;
    text-align: left;
  }

  .section {
    padding: 88px 0;
  }

  h2 {
    font-size: clamp(2.8rem, 14vw, 4.5rem);
  }

  .plan-selector,
  .contact-form {
    box-shadow: 9px 9px 0 #030404;
  }

  .plan-tabs {
    grid-template-columns: repeat(2, 1fr);
  }

  .plan-tab {
    border-bottom: 1px solid var(--line);
  }

  .plan-intro,
  .feature-list,
  .price-block {
    padding: 32px 24px;
  }

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

  .price-grid button {
    min-height: 76px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .step {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    column-gap: 14px;
    padding: 16px;
  }

  .step-icon {
    grid-row: 1 / 3;
    width: 40px;
    height: 40px;
    margin: 0;
  }

  .step h3 {
    grid-column: 2;
    padding-right: 30px;
    font-size: 1.125rem;
  }

  .step p {
    grid-column: 2;
  }

  .step-number {
    top: 14px;
    right: 14px;
    font-size: 1rem;
  }

  .method.section {
    padding: 36px 18px;
  }

  .method .section-heading {
    margin-bottom: 20px;
  }

  .included-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .service-card {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    column-gap: 14px;
    padding: 16px;
  }

  .service-card > span {
    grid-row: 1 / 3;
    margin: 0;
  }

  .service-card h3,
  .service-card p {
    grid-column: 2;
  }

  .service-card h3 {
    font-size: 1.125rem;
  }

  .included.section {
    padding-top: 36px;
    padding-bottom: 36px;
    gap: 20px;
  }

  .manifesto {
    min-height: 330px;
  }

  .contact-form {
    padding: 30px 22px;
  }

  .contact-logo-lockup {
    width: min(305px, 92%);
    margin-bottom: -8px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .message-dialog {
    padding: 32px 22px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
