:root {
  --bg: #f4ede4;
  --bg-soft: #e8dfd4;
  --surface: rgba(244, 237, 228, 0.95);
  --surface-strong: #ddd2c5;
  --text: #2a2a2a;
  --text-muted: rgba(42, 42, 42, 0.78);
  --text-dim: rgba(42, 42, 42, 0.55);
  --line: rgba(0, 0, 0, 0.08);
  --line-strong: rgba(255, 109, 46, 0.15);
  --accent: #ff6d2e;
  --accent-soft: rgba(255, 109, 46, 0.12);
  --secondary: #b8734a;
  --tertiary: #3d3a36;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
  --shadow-strong: 0 30px 100px rgba(0, 0, 0, 0.52);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --max-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Manrope", system-ui, sans-serif;
  line-height: 1.5;
  background:
    radial-gradient(circle at 8% 0%, rgba(214, 69, 32, 0.08), transparent 26%),
    radial-gradient(circle at 84% 12%, rgba(214, 69, 32, 0.05), transparent 22%),
    linear-gradient(180deg, #faf6f1 0%, var(--bg) 50%, #ebe3d8 100%);
  text-rendering: optimizeLegibility;
}

img,
video {
  display: block;
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

::selection {
  background: var(--accent);
  color: white;
}

.page-shell {
  position: relative;
  overflow: hidden;
}

.bg-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(62, 45, 30, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(62, 45, 30, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at center, black, transparent 122%);
}

.site-header,
.section,
.site-footer,
.checkout-main {
  width: min(var(--max-width), calc(100vw - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
  backdrop-filter: blur(18px);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  margin-inline: calc((100vw - min(var(--max-width), calc(100vw - 2rem))) / -2);
  background: rgba(244, 237, 228, 0.92);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  z-index: -1;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-logo {
  width: clamp(8.5rem, 16vw, 14rem);
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.4));
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
}

.brand-copy strong,
.section-heading h2,
.hero-copy h1,
.checkout-hero h1,
.price,
.price-card h3,
.contact-card h3,
.about-panel strong,
.quote-card p,
.video-frame strong,
.video-card strong,
.social-card strong,
.portrait-copy strong,
.checkout-summary h2,
.step-card h3 {
  font-family: "Bricolage Grotesque", sans-serif;
}

.brand-copy strong {
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.brand-copy span {
  font-size: 0.84rem;
  color: var(--text-muted);
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.1rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.site-nav a,
.footer-links a {
  transition: color 180ms ease;
}

.site-nav a:hover,
.footer-links a:hover {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--line);
  background: rgba(62, 45, 30, 0.04);
  border-radius: 999px;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 1rem;
  height: 1px;
  margin: 0.32rem auto;
  border-radius: 999px;
  background: var(--text);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.95rem 1.3rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.header-cta,
.button-primary {
  background: linear-gradient(145deg, var(--accent), var(--secondary));
  color: white;
  box-shadow: 0 14px 34px rgba(214, 69, 32, 0.2);
}

.button-secondary {
  background: rgba(214, 69, 32, 0.08);
  border-color: rgba(214, 69, 32, 0.3);
  color: var(--accent);
}

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

.button.is-disabled {
  pointer-events: none;
  opacity: 0.62;
}

.section {
  padding: clamp(4rem, 6vw, 7rem) 0;
}

.home-page .site-header {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  grid-template-columns: auto 1fr auto;
  backdrop-filter: none;
}

.home-page .site-header::before {
  background: transparent;
  border-bottom: 0;
}

.home-page .brand-logo {
  width: clamp(7rem, 12vw, 10rem);
}

.home-page .brand-copy {
  display: none;
}

.home-page .header-cta {
  display: none;
}

.home-page .site-nav {
  justify-content: flex-end;
  color: rgba(42, 42, 42, 0.84);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.hero-cinematic {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 0 1rem;
  overflow: hidden;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    radial-gradient(circle at 74% 36%, rgba(42, 109, 247, 0.18), transparent 18%),
    radial-gradient(circle at 22% 68%, rgba(62, 45, 30, 0.08), transparent 20%),
    linear-gradient(180deg, rgba(7, 13, 24, 0.04), rgba(7, 13, 24, 0.3)),
    linear-gradient(120deg, #0b0f17 0%, #08101b 38%, #faf6f1 100%);
  transform: scale(1.03);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 12, 0.18), rgba(5, 7, 12, 0.04)),
    radial-gradient(circle at 50% 88%, rgba(62, 45, 30, 0.08), transparent 30%);
}

.hero-shade {
  background:
    linear-gradient(180deg, rgba(4, 6, 10, 0.12), rgba(4, 6, 10, 0.34) 56%, rgba(4, 6, 10, 0.82) 100%);
}

.hero-stage {
  position: relative;
  z-index: 1;
  width: min(100%, 74rem);
  margin-top: 7rem;
  display: grid;
  align-items: center;
}

.hero-stage-split {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(1.4rem, 4vw, 4rem);
}

.hero-stage h1 {
  margin: 0;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(3.4rem, 7vw, 6.2rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  max-width: 10ch;
}

.hero-subhead {
  max-width: 34rem;
  margin: 1.3rem 0 0;
  font-size: 1.02rem;
}

.hero-actions-ghost {
  margin-top: 2.2rem;
}

.hero-portrait-frame {
  margin: 0;
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(62, 45, 30, 0.08);
  box-shadow: var(--shadow-strong);
  min-height: 38rem;
  background:
    radial-gradient(circle at top center, rgba(42, 109, 247, 0.2), transparent 22%),
    #faf6f1;
}

.hero-portrait-frame::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 22%;
  background: linear-gradient(180deg, transparent, rgba(62, 45, 30, 0.55));
}

.hero-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
  filter: grayscale(1) contrast(1.02);
  transform: scale(1.22);
  transform-origin: center;
}

.hero-copy-block {
  display: grid;
  justify-items: start;
}

.button-ghost {
  min-width: 13.5rem;
  background: rgba(5, 7, 12, 0.28);
  color: white;
  border-color: rgba(62, 45, 30, 0.4);
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.button-ghost:hover {
  background: rgba(62, 45, 30, 0.08);
}

.scroll-cue {
  width: 1.8rem;
  height: 1.8rem;
  margin-top: 4.5rem;
  border-right: 2px solid rgba(62, 45, 30, 0.9);
  border-bottom: 2px solid rgba(62, 45, 30, 0.9);
  transform: rotate(45deg);
  opacity: 0.92;
}

.hero {
  padding-top: clamp(3rem, 6vw, 6rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: center;
}

.hero-copy h1,
.checkout-hero h1 {
  margin: 0;
  font-size: clamp(3rem, 6.8vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  max-width: 10ch;
}

.hero-logo {
  width: min(100%, 760px);
  height: auto;
  margin-bottom: 1rem;
  filter: drop-shadow(0 20px 48px rgba(0, 0, 0, 0.48));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  color: #2a2a2a;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.76rem;
  font-weight: 800;
}

.subhead,
.section-lead,
.about-copy p,
.price-intro,
.result-copy p,
.quote-card footer span,
.contact-card p,
.signup-panel p,
.checkout-hero p,
.checkout-note p,
.fine-print,
.step-card p,
.portrait-card li,
.panel-title span,
.panel-kicker,
.panel-stat-grid span,
.feature-list,
.checkout-features,
.contact-card ul,
.social-card span {
  color: var(--text-muted);
}

.subhead {
  max-width: 58ch;
  margin: 1.3rem 0 0;
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 0;
}

.trust-row li,
.panel-badge,
.tier,
.checkout-summary .tier,
.step-card span {
  width: fit-content;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(62, 45, 30, 0.09);
  background: rgba(62, 45, 30, 0.04);
  color: rgba(42, 42, 42, 0.84);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-panel {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.panel-card {
  border: 1px solid rgba(62, 45, 30, 0.08);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.panel-card-main {
  min-height: 24rem;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: white;
  background:
    linear-gradient(180deg, rgba(4, 8, 16, 0.06), rgba(4, 8, 16, 0.62)),
    radial-gradient(circle at 20% 20%, rgba(42, 109, 247, 0.7), transparent 24%),
    radial-gradient(circle at 88% 12%, rgba(62, 45, 30, 0.15), transparent 20%),
    linear-gradient(145deg, #07101f, #12203a 65%, #1b4fb6);
  position: relative;
}

.panel-card-main::before {
  content: "";
  position: absolute;
  inset: 1.1rem;
  border-radius: calc(var(--radius-xl) - 10px);
  border: 1px solid rgba(62, 45, 30, 0.14);
}

.panel-card-main::after {
  content: "";
  position: absolute;
  inset: auto -12% -28% auto;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(62, 45, 30, 0.15), transparent 60%);
  filter: blur(18px);
}

.panel-title {
  position: relative;
  z-index: 1;
}

.panel-title strong {
  display: block;
  margin-top: 0.7rem;
  font-size: clamp(1.8rem, 3vw, 2.9rem);
  line-height: 0.98;
  max-width: 10.5ch;
}

.panel-stat-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.panel-stat-grid div,
.about-points article,
.portrait-card,
.quote-card,
.result-card,
.video-feature,
.video-card,
.social-card,
.signup-panel,
.contact-card,
.checkout-summary,
.checkout-form,
.step-card {
  border: 1px solid rgba(62, 45, 30, 0.08);
  background: rgba(244, 237, 228, 0.84);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.panel-stat-grid div {
  padding: 0.95rem;
}

.panel-stat-grid strong {
  display: block;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.6rem;
  color: #2a2a2a;
}

.panel-card-secondary {
  padding: 1.3rem;
  background: rgba(62, 45, 30, 0.03);
}

.panel-card-secondary ul,
.feature-list,
.contact-card ul,
.checkout-features {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--text-muted);
}

.section-heading {
  max-width: 58rem;
  margin-bottom: 1.75rem;
}

.section-heading h2,
.checkout-summary h2,
.contact-card h3,
.signup-panel h2,
.portrait-copy strong,
.step-card h3 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.section-lead {
  max-width: 58ch;
  margin: 1rem 0 0;
}

.split-layout,
.video-layout,
.contact-layout,
.checkout-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.about-copy {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.about-copy p {
  margin: 0;
  max-width: 60ch;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0.4rem;
}

.about-points article {
  padding: 1.2rem;
}

.about-points strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.portrait-card {
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  background:
    radial-gradient(circle at top right, rgba(42, 109, 247, 0.16), transparent 28%),
    rgba(244, 237, 228, 0.88);
}

.story-card {
  padding: 1.45rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  border: 1px solid rgba(62, 45, 30, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(244, 237, 228, 0.88);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.story-card ul {
  display: grid;
  gap: 0.95rem;
  padding-left: 1.15rem;
  color: var(--text-muted);
}

.portrait-copy p {
  margin: 0 0 0.5rem;
  color: #2a2a2a;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 800;
}

.portrait-card ul,
.checkout-features {
  display: grid;
  gap: 0.8rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.benefit-card {
  padding: 1.2rem;
  border: 1px solid rgba(62, 45, 30, 0.08);
  background: rgba(244, 237, 228, 0.84);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.benefit-card strong {
  display: block;
  margin-bottom: 0.45rem;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.2rem;
}

.benefit-card p {
  margin: 0;
  color: var(--text-muted);
}

.step-card {
  padding: 1.35rem;
  display: grid;
  gap: 0.9rem;
  min-height: 14rem;
}

.step-card h3 {
  font-size: 1.6rem;
}

.step-card span {
  color: #2a2a2a;
  border-color: rgba(42, 109, 247, 0.22);
  background: rgba(42, 109, 247, 0.12);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.price-card {
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: calc(var(--radius-xl) + 2px);
  background: rgba(244, 237, 228, 0.84);
  border: 1px solid rgba(214, 69, 32, 0.15);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.price-badge {
  align-self: flex-start;
  margin: 0;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-card.featured {
  transform: translateY(-0.45rem);
  background:
    linear-gradient(180deg, rgba(214, 69, 32, 0.1), rgba(244, 237, 228, 0.92)),
    rgba(244, 237, 228, 0.84);
  border-color: rgba(214, 69, 32, 0.3);
}

.price-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.price {
  margin: 0;
  display: inline-flex;
  flex-direction: column;
  gap: 0.2rem;
  line-height: 1;
  color: var(--text);
}

.price-amount {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 2.7rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}

.price-period {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.price-head .price {
  align-items: flex-end;
  text-align: right;
}

.checkout-price {
  align-items: flex-start;
  margin-top: 0.5rem;
}

.feature-list {
  display: grid;
  gap: 0.55rem;
}

.subscribe-link {
  margin-top: auto;
}

.price-best-for {
  margin: 0;
  color: var(--text-muted);
}

.price-best-for strong {
  color: var(--text);
}

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

.journey-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1rem;
  align-items: start;
}

.journey-card,
.journey-copy {
  border: 1px solid rgba(62, 45, 30, 0.08);
  background: rgba(244, 237, 228, 0.84);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.journey-card {
  padding: 1.2rem;
  display: grid;
  gap: 1rem;
}

.journey-frames {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.journey-frame {
  min-height: 24rem;
  border-radius: 28px;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(62, 45, 30, 0.1);
  overflow: hidden;
  position: relative;
}

.journey-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(62, 45, 30, 0.45)),
    radial-gradient(circle at 50% 18%, rgba(62, 45, 30, 0.16), transparent 22%);
}

.journey-frame-before {
  background:
    linear-gradient(180deg, rgba(62, 45, 30, 0.04), rgba(62, 45, 30, 0.12)),
    linear-gradient(145deg, #c4957a, #8b5e48 58%, #5a3a2a);
}

.journey-frame-after {
  background:
    linear-gradient(180deg, rgba(255, 109, 46, 0.1), rgba(62, 45, 30, 0.08)),
    linear-gradient(145deg, #6d645d, #252b32 52%, #1a1a1a);
}

.journey-frame span,
.journey-frame strong,
.journey-frame p {
  position: relative;
  z-index: 1;
  margin: 0;
}

.journey-frame span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.journey-frame strong {
  margin-top: 0.5rem;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 0.9;
}

.journey-frame p {
  margin-top: 0.3rem;
  color: #2a2a2a;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.journey-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: center;
  padding: 0 0.15rem;
}

.journey-meta strong,
.journey-copy h3 {
  font-family: "Bricolage Grotesque", sans-serif;
}

.journey-meta strong {
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  letter-spacing: -0.04em;
}

.journey-meta span {
  color: #2a2a2a;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.journey-copy {
  padding: 1.4rem;
  display: grid;
  align-content: center;
  gap: 1rem;
}

.journey-copy h3 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.journey-copy p {
  margin: 0;
  color: var(--text-muted);
}

.result-card {
  overflow: hidden;
}

.result-image {
  min-height: 16rem;
  position: relative;
  background:
    linear-gradient(180deg, rgba(7, 16, 31, 0.12), rgba(7, 16, 31, 0.5)),
    linear-gradient(135deg, rgba(42, 109, 247, 0.22), rgba(62, 45, 30, 0.12));
}

.result-image::after {
  content: "";
  position: absolute;
  inset: 10% 12%;
  border-radius: 24px;
  border: 1px dashed rgba(62, 45, 30, 0.18);
  background:
    linear-gradient(90deg, transparent 49%, rgba(62, 45, 30, 0.16) 50%, transparent 51%),
    radial-gradient(circle at 25% 30%, rgba(255, 255, 255, 0.34), transparent 18%),
    radial-gradient(circle at 72% 64%, rgba(62, 45, 30, 0.14), transparent 18%);
}

.result-image-before {
  background:
    linear-gradient(180deg, rgba(7, 16, 31, 0.08), rgba(7, 16, 31, 0.42)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.48), rgba(42, 109, 247, 0.2));
}

.result-image-after {
  background:
    linear-gradient(180deg, rgba(7, 16, 31, 0.08), rgba(7, 16, 31, 0.42)),
    linear-gradient(135deg, rgba(42, 109, 247, 0.34), rgba(62, 45, 30, 0.14));
}

.result-copy {
  padding: 1rem 1.1rem 1.2rem;
}

.result-copy span {
  color: #2a2a2a;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.result-copy strong {
  display: block;
  margin: 0.35rem 0 0.45rem;
  font-size: 1.35rem;
}

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

.quote-card {
  padding: 1.45rem;
  display: grid;
  gap: 1rem;
  background:
    radial-gradient(circle at top center, rgba(214, 69, 32, 0.08), transparent 22%),
    rgba(244, 237, 228, 0.88);
  border: 1px solid rgba(214, 69, 32, 0.15);
}

.quote-card:first-child {
  grid-column: 1 / -1;
}

.quote-logo {
  width: 5.2rem;
  margin: 0 auto;
  opacity: 0.96;
}

.quote-card p {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.55;
  color: var(--text);
  text-align: center;
}

.quote-card:first-child p {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  max-width: 34ch;
  margin-inline: auto;
}

.quote-card footer {
  margin-top: 1.1rem;
  color: var(--text-muted);
  text-align: center;
}

.quote-card footer strong {
  color: #2a2a2a;
  font-size: 1.2rem;
}

.video-feature {
  padding: 1rem;
}

.video-frame {
  min-height: 28rem;
  border-radius: calc(var(--radius-xl) - 4px);
  border: 1px solid rgba(62, 45, 30, 0.12);
  background:
    linear-gradient(180deg, rgba(4, 8, 15, 0.04), rgba(4, 8, 15, 0.62)),
    radial-gradient(circle at 14% 18%, rgba(42, 109, 247, 0.65), transparent 22%),
    radial-gradient(circle at 82% 20%, rgba(255, 255, 255, 0.28), transparent 20%),
    linear-gradient(135deg, #0b1628, #13243e 60%, #1f4ea8);
  display: grid;
  place-items: end start;
  padding: 1.2rem;
  position: relative;
  overflow: hidden;
}

.video-frame::before {
  content: "";
  position: absolute;
  inset: 10% 14%;
  border-radius: 32px;
  border: 1px solid rgba(62, 45, 30, 0.14);
  background:
    linear-gradient(135deg, rgba(62, 45, 30, 0.08), transparent 52%),
    linear-gradient(90deg, transparent 0 49%, rgba(62, 45, 30, 0.12) 50%, transparent 51%);
  transform: rotate(-6deg);
}

.play-button {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  margin-bottom: 0.6rem;
  position: relative;
  background: white;
  box-shadow: 0 16px 42px rgba(62, 45, 30, 0.16);
}

.play-button::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-left: 13px solid #0b1628;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  left: 0.12rem;
}

.video-stack {
  display: grid;
  gap: 1rem;
}

.video-card {
  display: grid;
  grid-template-columns: 9rem 1fr;
  gap: 1rem;
  padding: 0.95rem;
  align-items: center;
}

.video-thumb {
  min-height: 6.8rem;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(42, 109, 247, 0.24), rgba(62, 45, 30, 0.08)),
    linear-gradient(180deg, rgba(62, 45, 30, 0.06), rgba(255, 255, 255, 0.02));
  position: relative;
  overflow: hidden;
}

.video-thumb::after {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 14px;
  border: 1px dashed rgba(62, 45, 30, 0.18);
}

.social-section {
  padding-bottom: 0;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.social-card {
  padding: 1.2rem;
  display: grid;
  gap: 0.6rem;
}

.social-icon {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 1rem;
  display: inline-grid;
  place-items: center;
  background: rgba(42, 109, 247, 0.12);
  border: 1px solid rgba(42, 109, 247, 0.16);
  position: relative;
}

.social-icon::before,
.social-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
}

.social-instagram::before {
  width: 1.35rem;
  height: 1.35rem;
  border: 2px solid var(--accent);
  border-radius: 0.4rem;
}

.social-instagram::after {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  border: 2px solid var(--accent);
}

.social-tiktok::before {
  width: 0.8rem;
  height: 1.4rem;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: skewY(-18deg);
}

.social-youtube::before {
  width: 1.45rem;
  height: 1rem;
  border-radius: 0.55rem;
  background: var(--accent);
}

.social-youtube::after {
  border-left: 0.5rem solid white;
  border-top: 0.32rem solid transparent;
  border-bottom: 0.32rem solid transparent;
  left: 0.45rem;
  width: 0;
  height: 0;
}

.signup-panel {
  padding: 1.4rem;
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr auto;
  align-items: end;
}

.lead-form,
.contact-form,
.checkout-form {
  display: grid;
  gap: 1rem;
}

.lead-form {
  align-items: end;
}

.lead-form label,
.contact-form label,
.checkout-form label {
  display: grid;
  gap: 0.45rem;
}

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

.lead-form span,
.contact-form span,
.checkout-form span,
.checkbox-row span {
  font-size: 0.88rem;
  color: var(--text-muted);
}

input,
select,
textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(62, 45, 30, 0.1);
  background: rgba(62, 45, 30, 0.04);
  color: var(--text);
  padding: 0.95rem 1rem;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

input::placeholder,
textarea::placeholder {
  color: rgba(42, 42, 42, 0.4);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(42, 109, 247, 0.4);
  box-shadow: 0 0 0 4px rgba(42, 109, 247, 0.08);
  background: rgba(62, 45, 30, 0.06);
}

textarea {
  resize: vertical;
}

.contact-layout {
  align-items: start;
}

.contact-form,
.checkout-form {
  padding: 1.4rem;
}

.contact-card,
.checkout-summary {
  padding: 1.4rem;
  display: grid;
  gap: 1rem;
}

.contact-card {
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(42, 109, 247, 0.2), transparent 28%),
    linear-gradient(160deg, #08111f, #0f1c32);
  border-color: rgba(62, 45, 30, 0.1);
}

.contact-card .fine-print {
  color: rgba(42, 42, 42, 0.68);
}

.contact-card ul {
  display: grid;
  gap: 0.5rem;
}

.fine-print {
  font-size: 0.82rem;
  line-height: 1.5;
}

.form-status {
  margin: 0;
}

.form-status[data-tone="success"] {
  color: #8ee6b0;
}

.form-status[data-tone="error"] {
  color: #ff9da3;
}

.checkout-shell {
  padding-bottom: 2.5rem;
}

.checkout-header {
  position: relative;
  top: 0;
}

.checkout-main {
  padding-bottom: 4rem;
}

.checkout-hero {
  padding: 3rem 0 1.5rem;
  max-width: 56rem;
}

.checkout-layout {
  align-items: start;
}

.checkout-summary {
  position: sticky;
  top: 6.8rem;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(42, 109, 247, 0.14), transparent 30%),
    linear-gradient(160deg, #08111f, #111f38);
  border-color: rgba(62, 45, 30, 0.1);
}

.checkout-summary .tier,
.checkout-summary .price span,
.checkout-summary .feature-list,
.checkout-summary .checkout-note p,
.checkout-summary .fine-print {
  color: rgba(42, 42, 42, 0.72);
}

.checkout-price {
  font-size: 3.8rem;
}

.checkout-price strong {
  font-size: 1em;
}

.checkout-button {
  width: 100%;
  background: white;
  color: #08111f;
}

.checkout-note {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(62, 45, 30, 0.06);
  border: 1px solid rgba(62, 45, 30, 0.1);
}

.contract-note {
  padding-top: 1.15rem;
}

.contract-list {
  margin: 0.8rem 0 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.55rem;
  color: rgba(42, 42, 42, 0.72);
}

.form-section {
  display: grid;
  gap: 1rem;
  padding: 1.1rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(62, 45, 30, 0.08);
  background: rgba(62, 45, 30, 0.03);
}

.form-section-head {
  display: grid;
  gap: 0.4rem;
}

.form-section-head h3 {
  margin: 0;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.35rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.field-stack {
  display: grid;
  gap: 1rem;
}

.checkbox-row {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.checkbox-row input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.2rem;
  accent-color: var(--accent);
}

.site-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem 0 3rem;
  border-top: 1px solid rgba(62, 45, 30, 0.08);
}

.site-footer p {
  margin: 0.4rem 0 0;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-end;
  color: var(--text-muted);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.2, 0.7, 0.1, 1);
}

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

.hero-copy.reveal.is-visible,
.hero-panel.reveal.is-visible {
  transition-delay: 80ms;
}

.hero-panel.reveal.is-visible {
  transition-delay: 180ms;
}

@media (max-width: 1120px) {
  .hero-stage-split,
  .journey-layout,
  .hero-grid,
  .split-layout,
  .pricing-grid,
  .results-grid,
  .video-layout,
  .contact-layout,
  .checkout-layout,
  .steps-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .about-points,
  .social-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    margin-top: 6rem;
  }

  .hero-copy-block {
    justify-items: center;
    text-align: center;
  }

  .hero-subhead {
    margin-inline: auto;
  }

  .scroll-cue {
    margin-inline: auto;
  }

  .signup-panel {
    grid-template-columns: 1fr;
  }

  .checkout-summary {
    position: static;
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    grid-template-areas:
      "brand brand menu"
      "nav nav nav"
      "cta cta cta";
  }

  .brand {
    grid-area: brand;
  }

  .nav-toggle {
    display: inline-block;
    grid-area: menu;
    justify-self: end;
  }

  .site-nav {
    grid-area: nav;
    display: none;
    justify-content: flex-start;
    padding: 0.8rem 0 0.2rem;
  }

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

  .header-cta {
    grid-area: cta;
    width: 100%;
  }

  .home-page .header-cta {
    display: none;
  }

  .home-page .site-nav {
    color: rgba(42, 42, 42, 0.88);
  }

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

  .hero-portrait-frame {
    min-height: 28rem;
  }

  .journey-frames {
    grid-template-columns: 1fr;
  }

  .video-card {
    grid-template-columns: 1fr;
  }

  .video-thumb {
    min-height: 10rem;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .site-header,
  .section,
  .site-footer,
  .checkout-main {
    width: min(calc(100vw - 1.2rem), var(--max-width));
  }

  .hero-copy h1,
  .checkout-hero h1 {
    max-width: 100%;
    font-size: clamp(2.65rem, 15vw, 4.25rem);
  }

  .hero-stage h1 {
    font-size: clamp(2.9rem, 14vw, 4.6rem);
  }

  .hero-stage {
    margin-top: 5.2rem;
  }

  .hero-portrait-frame {
    min-height: 24rem;
    border-radius: 28px;
  }

  .hero-portrait {
    transform: scale(1.12);
  }

  .button-ghost {
    min-width: 11.5rem;
  }

  .panel-stat-grid {
    grid-template-columns: 1fr;
  }

  .video-frame {
    min-height: 20rem;
  }

  .price,
  .checkout-price {
    font-size: 2.4rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

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

/* Airy homepage redesign */
body.home-page {
  color: #eef4ff;
  background:
    radial-gradient(circle at 50% 0%, rgba(38, 84, 150, 0.16), transparent 22%),
    linear-gradient(180deg, #05070d 0%, #07101a 34%, #09131f 62%, #04070d 100%);
}

.home-page .bg-noise {
  opacity: 0.03;
  mask-image: none;
}

.home-page .site-header,
.home-page .section,
.home-page .site-footer {
  width: min(1280px, calc(100vw - 2.6rem));
}

.home-page .site-header {
  position: absolute;
  inset: 0 0 auto;
  align-items: center;
  padding: 1.4rem 0;
}

.home-page .brand {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  border: none;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.home-page .brand-logo {
  width: clamp(5.8rem, 8vw, 7.6rem);
}

.home-page .site-nav {
  gap: 1.5rem;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.18em;
  font-size: 0.74rem;
}

.hero-airy {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 0 1.4rem;
  overflow: hidden;
  color: white;
}

.hero-airy-media,
.hero-airy-shade {
  position: absolute;
  inset: 0;
}

.hero-airy-media {
  background:
    radial-gradient(circle at 50% 34%, rgba(62, 45, 30, 0.03), transparent 18%),
    linear-gradient(180deg, rgba(244, 237, 228, 0.03), rgba(60, 50, 40, 0.05)),
    url("maxrawfitness-hero.jpg") center / cover no-repeat,
    #faf6f1;
  transform: scale(1);
}

.hero-airy-shade {
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.02), transparent 24%),
    linear-gradient(90deg, rgba(62, 58, 54, 0.25), rgba(62, 58, 54, 0.08) 30%, rgba(62, 58, 54, 0.08) 70%, rgba(62, 58, 54, 0.25)),
    linear-gradient(180deg, rgba(62, 58, 54, 0.1), rgba(62, 58, 54, 0.12) 58%, rgba(62, 58, 54, 0.3) 100%);
}

.hero-airy-content {
  position: relative;
  z-index: 1;
  width: min(100%, 58rem);
  padding-top: 20rem;
  text-align: center;
  text-shadow: 0 18px 40px rgba(0, 0, 0, 0.38);
}

.hero-airy-kicker {
  margin: 0;
  color: rgba(62, 45, 30, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  font-weight: 700;
}

.hero-airy-content h1 {
  margin: 1.35rem 0 0;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(4rem, 9vw, 7.35rem);
  line-height: 0.94;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}

.hero-airy-content h1 span {
  display: block;
}

.hero-airy-subhead {
  max-width: 42rem;
  margin: 1.45rem auto 0;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.84);
}

.hero-airy-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.2rem;
}

.button-hero {
  min-width: 16rem;
  border-radius: 2px;
  padding: 1.05rem 1.5rem;
  background: rgba(62, 45, 30, 0.06);
  border: 1px solid rgba(62, 45, 30, 0.4);
  box-shadow: none;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  backdrop-filter: blur(12px);
}

.button-hero-dark {
  background: rgba(7, 15, 28, 0.58);
}

.button-hero:hover {
  background: rgba(62, 45, 30, 0.14);
}

.hero-airy-scroll {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 2rem;
  width: 1.9rem;
  height: 1.9rem;
  margin-left: -0.95rem;
  border-right: 2px solid rgba(62, 45, 30, 0.9);
  border-bottom: 2px solid rgba(62, 45, 30, 0.9);
  transform: rotate(45deg);
}

.home-page .section {
  position: relative;
  padding: clamp(4.4rem, 7vw, 7.4rem) 0;
}

.home-page .section-heading {
  max-width: 48rem;
  margin-inline: auto;
  text-align: center;
}

.home-page .section-heading h2,
.home-page .about-editorial-copy h2,
.steps-editorial .step-card h3,
.packages-editorial .price-card h3,
.packages-editorial .price,
.packages-editorial .tier,
.about-editorial-card figcaption {
  color: #2a2a2a;
}

.home-page .section-lead,
.home-page .about-editorial-copy p,
.steps-editorial .step-card p,
.packages-editorial .price-intro,
.packages-editorial .feature-list {
  color: rgba(42, 42, 42, 0.72);
}

.about-editorial {
  padding-top: 5rem;
}

.about-editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(1.4rem, 4vw, 2.8rem);
  align-items: center;
}

.about-editorial-copy h2 {
  margin: 0;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(2.4rem, 4.6vw, 4.6rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.home-page .about-editorial-copy p {
  margin: 1rem 0 0;
  max-width: 62ch;
  font-size: 1.02rem;
}

.about-editorial-card {
  margin: 0;
  padding: 1rem;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(62, 45, 30, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(8, 14, 24, 0.9);
  border: 1px solid rgba(62, 45, 30, 0.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.26);
}

.about-editorial-photo {
  width: 100%;
  max-height: 36rem;
  object-fit: cover;
  object-position: center 32%;
  border-radius: 26px;
  filter: grayscale(1);
}

.about-editorial-card figcaption {
  margin-top: 0.9rem;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.steps-editorial .steps-grid,
.packages-editorial .pricing-grid {
  gap: 1.25rem;
}

.steps-editorial .step-card {
  min-height: 0;
  padding: 1.55rem;
  border-radius: 28px;
  border: 1px solid rgba(62, 45, 30, 0.08);
  background:
    linear-gradient(180deg, rgba(62, 45, 30, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(8, 14, 24, 0.88);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.packages-editorial .price-card {
  border-radius: 30px;
  border: 1px solid rgba(214, 69, 32, 0.12);
  background:
    linear-gradient(180deg, rgba(214, 69, 32, 0.04), rgba(244, 237, 228, 0.97)),
    rgba(244, 237, 228, 0.95);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07);
}

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

.packages-editorial .price-card.featured {
  transform: none;
  background:
    linear-gradient(180deg, rgba(214, 69, 32, 0.12), rgba(236, 224, 212, 0.98)),
    rgba(244, 237, 228, 0.98);
  border-color: rgba(214, 69, 32, 0.3);
}

.packages-editorial .tier {
  background: rgba(214, 69, 32, 0.1);
  border-color: rgba(214, 69, 32, 0.15);
}

.packages-editorial .button-primary {
  background: linear-gradient(145deg, #d64520, #e8663d);
}

.packages-editorial .button-secondary {
  background: #3d3a36;
  border-color: #3d3a36;
  color: #f4ede4;
}

.packages-editorial .price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
  margin: 0;
  text-align: right;
}

.packages-editorial .price-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: start;
}

.packages-editorial .price-head > div {
  display: grid;
  gap: 0.9rem;
}

.packages-editorial .price-amount {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 3.3rem;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.88;
  color: #2a2a2a;
}

.packages-editorial .price-period {
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(244, 248, 255, 0.78);
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.results-editorial,
.testimonials-editorial,
.social-section,
.signup-section,
.contact-section,
.home-page .site-footer {
  color: #2a2a2a;
}

.results-editorial .section-heading h2,
.testimonials-editorial .section-heading h2,
.social-section .section-heading h2,
.signup-section .signup-panel h2,
.contact-section .section-heading h2,
.home-page .site-footer strong {
  color: #2a2a2a;
}

.results-editorial .journey-card,
.results-editorial .journey-copy,
.testimonials-editorial .quote-card,
.home-page .video-feature,
.home-page .video-card,
.home-page .social-card,
.home-page .signup-panel,
.home-page .contact-form,
.home-page .contact-card {
  border-color: rgba(214, 69, 32, 0.12);
  background: rgba(244, 237, 228, 0.9);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07);
}

.results-editorial .journey-copy p,
.home-page .video-card p,
.home-page .video-frame p,
.home-page .social-card span,
.home-page .signup-panel p,
.home-page .contact-card p,
.home-page .contact-card ul,
.home-page .contact-form span {
  color: rgba(42, 42, 42, 0.72);
}

.results-editorial .journey-meta strong,
.results-editorial .journey-copy h3,
.testimonials-editorial .quote-card footer strong {
  color: #2a2a2a;
}

.testimonials-editorial .quote-card {
  background:
    linear-gradient(180deg, rgba(214, 69, 32, 0.04), rgba(244, 237, 228, 0.96)),
    rgba(244, 237, 228, 0.92);
}

.home-page input,
.home-page select,
.home-page textarea {
  background: rgba(62, 45, 30, 0.06);
  border-color: rgba(62, 45, 30, 0.12);
}

.home-page .site-footer {
  padding-top: 1rem;
  border-top-color: rgba(62, 45, 30, 0.08);
}

.home-page .site-footer p,
.home-page .footer-links {
  color: rgba(255, 255, 255, 0.68);
}

@media (max-width: 1120px) {
  .about-editorial-grid {
    grid-template-columns: 1fr;
  }

  .hero-airy-media {
    background:
      radial-gradient(circle at 50% 34%, rgba(62, 45, 30, 0.08), transparent 18%),
      linear-gradient(180deg, rgba(60, 50, 40, 0.05), rgba(60, 50, 40, 0.08)),
      url("maxrawfitness-hero.jpg") center 6% / clamp(26rem, 64vw, 44rem) auto no-repeat,
      #faf6f1;
  }
}

@media (max-width: 860px) {
  .home-page .site-header {
    grid-template-areas:
      "brand menu menu"
      "nav nav nav";
  }

  .home-page .site-nav {
    padding-top: 1rem;
    justify-content: flex-start;
  }

  .hero-airy-content {
    padding-top: 6rem;
  }

  .button-hero {
    min-width: 13rem;
  }
}

@media (max-width: 640px) {
  .home-page .site-header,
  .home-page .section,
  .home-page .site-footer {
    width: min(calc(100vw - 1.2rem), 1280px);
  }

  .hero-airy-content h1 {
    font-size: clamp(2.9rem, 16vw, 4.8rem);
  }

  .hero-airy-subhead {
    font-size: 0.96rem;
  }

  .hero-airy-media {
    background:
      radial-gradient(circle at 50% 34%, rgba(62, 45, 30, 0.08), transparent 18%),
      linear-gradient(180deg, rgba(60, 50, 40, 0.05), rgba(60, 50, 40, 0.08)),
      url("maxrawfitness-hero.jpg") center 6% / clamp(22rem, 88vw, 32rem) auto no-repeat,
      #faf6f1;
  }

  .hero-airy-actions {
    flex-direction: column;
    align-items: center;
  }

  .button-hero {
    width: min(100%, 18rem);
  }

  .about-editorial-card {
    padding: 0.75rem;
    border-radius: 24px;
  }

  .about-editorial-photo {
    border-radius: 18px;
  }
}

/* ============================================================
   About Ben credibility section
   ============================================================ */
.about-credibility {
  padding-top: 4.5rem;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.stat-card {
  padding: 1.5rem 1.3rem;
  border-radius: 26px;
  text-align: center;
  border: 1px solid rgba(214, 69, 32, 0.15);
  background:
    linear-gradient(180deg, rgba(214, 69, 32, 0.08), rgba(232, 220, 208, 0.9)),
    rgba(244, 237, 228, 0.95);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.stat-card strong {
  display: block;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(2.1rem, 4vw, 3rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: #d64520;
}

.stat-card span {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.9rem;
  color: rgba(42, 42, 42, 0.7);
}

.credibility-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.credibility-card {
  padding: 1.4rem;
  border-radius: 26px;
  border: 1px solid rgba(214, 69, 32, 0.12);
  background:
    linear-gradient(180deg, rgba(214, 69, 32, 0.05), rgba(244, 237, 228, 0.95)),
    rgba(244, 237, 228, 0.9);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.credibility-card strong {
  display: block;
  margin-bottom: 0.5rem;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.18rem;
  letter-spacing: -0.02em;
  color: #2a2a2a;
}

.credibility-card p {
  margin: 0;
  color: rgba(42, 42, 42, 0.72);
  font-size: 0.95rem;
}

.story-phases {
  margin-top: 2.2rem;
}

/* ============================================================
   Before / After galleries (Ben + clients)
   ============================================================ */
.spine-showcase {
  margin: 0 auto 2.4rem;
  max-width: 920px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1.8rem;
  align-items: center;
  padding: 1rem;
  border-radius: 28px;
  border: 1px solid rgba(62, 45, 30, 0.08);
  background:
    linear-gradient(180deg, rgba(62, 45, 30, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(8, 14, 24, 0.9);
}

.spine-frame {
  border-radius: 20px;
  overflow: hidden;
  background: #f0e8dc;
  border: 1px solid rgba(62, 45, 30, 0.06);
  aspect-ratio: 1 / 1;
}

.spine-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.spine-showcase figcaption {
  display: grid;
  gap: 0.7rem;
}

.spine-showcase figcaption strong {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.5rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #eef4ff;
}

.spine-showcase figcaption > span {
  color: rgba(238, 244, 255, 0.7);
  font-size: 1rem;
  line-height: 1.55;
}

.spine-showcase figcaption b {
  color: #2a2a2a;
}

.spine-stats {
  list-style: none;
  margin: 0.4rem 0 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.spine-stats li {
  display: grid;
  text-align: center;
  line-height: 1.1;
}

.spine-stats li strong {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.6rem;
}

.spine-stats li span {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(238, 244, 255, 0.5);
}

.spine-stats .spine-arrow strong,
.spine-stats .spine-arrow {
  font-size: 1.4rem;
  color: rgba(238, 244, 255, 0.4);
}

.spine-stats .spine-delta strong {
  color: #2fbf71;
}

/* Before / after comparison */
/* Premium minimal before/after layout */
.transformation-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto 2rem;
}

.transformation-column {
  display: flex;
  flex-direction: column;
}

.transformation-label {
  margin: 0 0 1.2rem 0;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #eef4ff;
  line-height: 1;
}

.transformation-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.transformation-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #f0e8dc;
  border: 1px solid rgba(62, 45, 30, 0.06);
  aspect-ratio: auto;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
}

.transformation-frame img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.transformation-frame .ba-slice {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
}

/* Slice the collage into uniform cells */
.ba-slice {
  width: 100%;
  height: 100%;
  background-image: url("bt-transformations.png");
  background-size: 200% 200%;
  background-repeat: no-repeat;
}

.ba-slice-tl {
  background-position: left top;
}

.ba-slice-tr {
  background-position: right top;
}

.ba-slice-bl {
  background-position: left bottom;
}

.ba-slice-br {
  background-position: right bottom;
}

.transformation-caption {
  display: grid;
  gap: 0.4rem;
  text-align: center;
}

.transformation-caption strong {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  color: #eef4ff;
}

.transformation-caption span {
  color: rgba(238, 244, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Client transformation cards */
.client-transformation {
  margin-bottom: 2.4rem;
}

/* Supporting angle strip */
.ba-angles {
  margin: 0 auto 1.8rem;
  max-width: 920px;
}

.ba-angles-label {
  margin: 0 0 0.7rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(238, 244, 255, 0.5);
}

/* Spine X-ray comparison */
.spine-showcase {
  margin: 0 auto 1.8rem;
  max-width: 920px;
  display: grid;
  gap: 1rem;
}

.spine-comparison-frame {
  border-radius: 18px;
  overflow: hidden;
  background: #f0e8dc;
  border: 1px solid rgba(62, 45, 30, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.spine-comparison-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.spine-showcase figcaption {
  display: grid;
  gap: 0.3rem;
  margin-top: 1rem;
}

.spine-showcase figcaption strong {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: #eef4ff;
}

.spine-showcase figcaption span {
  color: rgba(238, 244, 255, 0.62);
  font-size: 0.97rem;
  line-height: 1.55;
}

/* Max's transformation grid (multiple angles) */
.max-transformations {
  display: grid;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.max-transformations .ba-compare {
  margin: 0;
}

.ba-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ba-angles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 460px;
}

.client-collage-frame {
  border-radius: 18px;
  overflow: hidden;
  background: #f0e8dc;
  border: 1px solid rgba(62, 45, 30, 0.06);
}

.client-collage-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.bt-before-card figcaption,
.client-collage figcaption {
  margin-top: 0.95rem;
  display: grid;
  gap: 0.3rem;
}

.bt-before-card figcaption strong,
.client-collage figcaption strong {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: #eef4ff;
}

.bt-before-card figcaption span,
.client-collage figcaption span {
  color: rgba(238, 244, 255, 0.62);
  font-size: 0.95rem;
  line-height: 1.5;
}

.ba-gallery {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr);
  justify-content: center;
}

.transformation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.ba-pair {
  margin: 0;
  padding: 0.8rem;
  border-radius: 26px;
  border: 1px solid rgba(62, 45, 30, 0.08);
  background:
    linear-gradient(180deg, rgba(62, 45, 30, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(8, 14, 24, 0.9);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.ba-frame {
  position: relative;
  min-height: 18rem;
  border-radius: 18px;
  border: 1px solid rgba(62, 45, 30, 0.1);
  overflow: hidden;
}

.ba-frame span {
  position: absolute;
  z-index: 1;
  top: 0.7rem;
  left: 0.7rem;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: white;
  background: rgba(62, 45, 30, 0.35);
  border: 1px solid rgba(62, 45, 30, 0.12);
}

.ba-frame::after {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 12px;
  border: 1px dashed rgba(62, 45, 30, 0.12);
}

.ba-before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(62, 45, 30, 0.28)),
    linear-gradient(145deg, #c4957a, #8b5e48 58%, #5a3a2a);
}

.ba-after {
  background:
    linear-gradient(180deg, rgba(42, 109, 247, 0.16), rgba(62, 45, 30, 0.22)),
    linear-gradient(145deg, #d64520, #a83410 52%, #6b2010);
}

.ba-pair figcaption {
  grid-column: 1 / -1;
  margin-top: 0.3rem;
  padding: 0 0.2rem;
  display: grid;
  gap: 0.2rem;
}

.ba-pair figcaption strong {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
  color: #2a2a2a;
}

.ba-pair figcaption span {
  font-size: 0.9rem;
  color: rgba(42, 42, 42, 0.72);
}

/* Star ratings */
.stars {
  margin: 0;
  text-align: center;
  letter-spacing: 0.25em;
  color: #ffce5a;
  font-size: 1.05rem;
}

/* Direct contact card */
.contact-direct {
  align-content: start;
}

.contact-email {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  letter-spacing: -0.03em;
  color: #2a2a2a;
  word-break: break-word;
}

.contact-email:hover {
  text-decoration: underline;
}

/* ============================================================
   Checkout wizard: stepper, steps, calendar, confirmation
   ============================================================ */
.stepper {
  list-style: none;
  margin: 1.8rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.4rem;
}

.stepper-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(246, 248, 255, 0.55);
  font-weight: 700;
  font-size: 0.9rem;
}

.stepper-index {
  display: grid;
  place-items: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  border: 1px solid rgba(62, 45, 30, 0.12);
  background: rgba(62, 45, 30, 0.04);
  font-size: 0.82rem;
}

.stepper-item.is-current {
  color: #2a2a2a;
}

.stepper-item.is-current .stepper-index {
  background: linear-gradient(145deg, #d64520, #f5ede3);
  border-color: transparent;
  color: white;
  box-shadow: 0 10px 24px rgba(42, 109, 247, 0.32);
}

.stepper-item.is-done {
  color: rgba(142, 230, 176, 0.9);
}

.stepper-item.is-done .stepper-index {
  background: rgba(142, 230, 176, 0.16);
  border-color: rgba(142, 230, 176, 0.4);
  color: #8ee6b0;
}

.checkout-wizard {
  padding: 1.5rem;
  border: 1px solid rgba(62, 45, 30, 0.08);
  background: rgba(244, 237, 228, 0.84);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.wizard-step {
  display: none;
}

.wizard-step.is-active {
  display: block;
  animation: wizardFade 320ms ease;
}

@keyframes wizardFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wizard-form {
  margin-top: 1.1rem;
  padding: 0;
}

.wizard-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}

.wizard-actions .button {
  flex: 1 1 auto;
}

.form-error {
  margin: 0.4rem 0 0;
  color: #ff9da3;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Calendar */
.booking-sync {
  margin-top: 0.4rem;
  color: rgba(246, 248, 255, 0.6);
}

.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.2rem 0 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.calendar-legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  display: inline-block;
}

.dot-available {
  background: #2fbf71;
}

.dot-booked {
  background: #e2575f;
}

.dot-selected {
  background: #d64520;
}

.calendar-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 1.1rem 0 1rem;
}

.calendar-heading {
  text-align: center;
  flex: 1;
}

.calendar-month {
  margin: 0;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: #eef4ff;
}

.calendar-range {
  margin: 0.15rem 0 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(238, 244, 255, 0.62);
}

.calendar-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 50%;
  border: 1px solid rgba(62, 45, 30, 0.14);
  background: rgba(62, 45, 30, 0.04);
  color: #eef4ff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.calendar-arrow:hover:not(:disabled) {
  background: rgba(42, 109, 247, 0.18);
  border-color: rgba(42, 109, 247, 0.5);
  transform: translateY(-1px);
}

.calendar-arrow:disabled {
  opacity: 0.32;
  cursor: not-allowed;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.calendar-date {
  display: block;
  margin: -0.5rem 0 0.8rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(238, 244, 255, 0.55);
}

.calendar-day {
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(62, 45, 30, 0.08);
  background: rgba(62, 45, 30, 0.03);
}

.calendar-day h4 {
  margin: 0 0 0.8rem;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.slot-list {
  display: grid;
  gap: 0.5rem;
}

.slot {
  width: 100%;
  padding: 0.7rem 0.6rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.slot.is-available {
  color: #b8f2d2;
  border: 1px solid rgba(47, 191, 113, 0.4);
  background: rgba(47, 191, 113, 0.12);
}

.slot.is-available:hover {
  transform: translateY(-1px);
  background: rgba(47, 191, 113, 0.2);
}

.slot.is-booked {
  color: rgba(255, 157, 163, 0.85);
  border: 1px solid rgba(226, 87, 95, 0.34);
  background: rgba(226, 87, 95, 0.12);
  text-decoration: line-through;
  cursor: not-allowed;
}

.slot.is-selected {
  color: white;
  border-color: transparent;
  background: linear-gradient(145deg, #d64520, #f5ede3);
  box-shadow: 0 12px 28px rgba(42, 109, 247, 0.32);
}

.selected-slot {
  margin: 1rem 0 0;
  font-weight: 700;
  color: #2a2a2a;
}

/* Payment review */
.review-card {
  margin-top: 1.1rem;
  display: grid;
  gap: 0.2rem;
  border-radius: 18px;
  border: 1px solid rgba(62, 45, 30, 0.08);
  background: rgba(62, 45, 30, 0.03);
  overflow: hidden;
}

.review-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid rgba(62, 45, 30, 0.06);
}

.review-row:last-child {
  border-bottom: 0;
}

.review-row span {
  color: var(--text-muted);
}

.review-row strong {
  text-align: right;
  color: var(--text);
}

.checkout-pay {
  background: white;
  color: #08111f;
}

/* Confirmation */
.confirmation-panel {
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 0.7rem;
  padding: 1.5rem 0.5rem;
}

.confirm-check {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: rgba(47, 191, 113, 0.16);
  border: 1px solid rgba(47, 191, 113, 0.4);
  position: relative;
  margin-bottom: 0.5rem;
}

.confirm-check::after {
  content: "";
  position: absolute;
  left: 1.35rem;
  top: 0.85rem;
  width: 1rem;
  height: 1.7rem;
  border-right: 3px solid #2fbf71;
  border-bottom: 3px solid #2fbf71;
  transform: rotate(45deg);
}

.confirmation-panel h3 {
  margin: 0;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: -0.04em;
}

.confirmation-panel p {
  margin: 0;
  max-width: 42ch;
  color: var(--text-muted);
}

.confirm-actions {
  margin-top: 1rem;
  justify-content: center;
}

.confirm-actions .button {
  flex: 0 1 auto;
}

@media (max-width: 1120px) {
  .stat-grid,
  .credibility-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .ba-gallery {
    grid-template-columns: 1fr;
  }

  .spine-showcase {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

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

@media (max-width: 640px) {
  .stat-grid,
  .credibility-grid,
  .calendar-grid {
    grid-template-columns: 1fr;
  }

  .ba-pair {
    grid-template-columns: 1fr 1fr;
  }

  /* Keep before/after pairs side-by-side, just tighten the framing */
  .ba-compare-grid,
  .ba-angles-grid {
    gap: 0.6rem;
  }

  .ba-tag {
    top: 0.5rem;
    left: 0.5rem;
    padding: 0.2rem 0.55rem;
    font-size: 0.62rem;
  }

  .ba-compare-caption strong {
    font-size: 1.15rem;
  }

  .ba-compare-caption span {
    font-size: 0.9rem;
  }

  .wizard-actions .button {
    flex: 1 1 100%;
  }

  /* Responsive before/after layout */
  .transformation-showcase {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .transformation-label {
    margin-bottom: 0.9rem;
    font-size: 0.85rem;
  }

  .transformation-grid {
    gap: 0.9rem;
  }

  .transformation-frame {
    border-radius: 12px;
    aspect-ratio: 3 / 4;
  }

  .transformation-caption strong {
    font-size: 1.1rem;
  }

  .transformation-caption span {
    font-size: 0.9rem;
  }
}
