:root {
  --bg: #050505;
  --bg-soft: #0b0b0b;
  --bg-panel: #121212;
  --paper: #f4f1e9;
  --paper-strong: #ebe4d7;
  --ink: #111111;
  --ink-soft: #625d55;
  --text: #f6f1e7;
  --text-soft: rgba(246, 241, 231, 0.76);
  --accent: #ef6a2e;
  --accent-deep: #bd4317;
  --accent-fade: rgba(239, 106, 46, 0.2);
  --line: rgba(255, 255, 255, 0.12);
  --paper-line: rgba(17, 17, 17, 0.1);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
  --shadow-soft: 0 18px 38px rgba(0, 0, 0, 0.1);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.modal-open {
  overflow: hidden;
}

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

figure {
  margin: 0;
}

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

.mobile-only {
  display: none;
}

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.hero .container,
.section-dark .container {
  position: relative;
  z-index: 1;
}

.top-strip {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 14px 16px;
  background: linear-gradient(90deg, #7d140b 0%, #aa230f 52%, #7d140b 100%);
  color: #fff9f4;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section {
  position: relative;
  padding: clamp(78px, 8vw, 124px) 0;
}

.section-paper {
  background: var(--paper);
  color: var(--ink);
}

.section-dark,
.hero {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(circle at 10% 10%, rgba(239, 106, 46, 0.18), transparent 24%),
    radial-gradient(circle at 85% 86%, rgba(239, 106, 46, 0.12), transparent 20%),
    linear-gradient(180deg, #050505 0%, #090909 100%);
}

.section-dark::before,
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      146deg,
      transparent 0 92px,
      rgba(255, 255, 255, 0.03) 92px 128px,
      transparent 128px 220px
    );
  opacity: 0.34;
  pointer-events: none;
}

.method-symbol {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.2;
  mix-blend-mode: screen;
  filter: saturate(0.92) brightness(1.02);
}

.method-symbol::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 26%, rgba(5, 5, 5, 0.78) 100%);
}

.method-symbol img {
  display: block;
  width: 100%;
  height: auto;
}

.method-symbol--canvas {
  top: -40px;
  right: -280px;
  width: min(54vw, 820px);
  opacity: 0.18;
  transform: rotate(-7deg);
}

.method-symbol--architecture {
  left: -340px;
  bottom: 40px;
  width: min(58vw, 900px);
  opacity: 0.14;
  transform: rotate(-5deg);
}

.method-symbol--overview {
  right: -320px;
  bottom: -70px;
  width: min(56vw, 860px);
  opacity: 0.16;
  transform: rotate(4deg);
}

.method-symbol--bridge {
  right: -120px;
  bottom: -120px;
  width: min(48vw, 720px);
  opacity: 0.12;
  transform: rotate(6deg);
}

.hero {
  padding: clamp(44px, 6vw, 72px) 0 clamp(96px, 10vw, 150px);
}

.hero-noise {
  position: absolute;
  inset: auto -6vw -8vw auto;
  width: min(54vw, 860px);
  height: min(54vw, 860px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 106, 46, 0.16), transparent 68%);
  filter: blur(20px);
  pointer-events: none;
}

.hero-grid,
.systems-layout,
.mentor-grid,
.offer-grid,
.final-grid,
.bridge-grid,
.case-study,
.story-layout {
  display: grid;
  gap: clamp(30px, 5vw, 76px);
}

.hero-grid,
.mentor-grid,
.offer-grid,
.final-grid {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  align-items: start;
}

.hero-grid {
  grid-template-areas:
    "copy media"
    "promises media";
}

.story-layout,
.systems-layout,
.bridge-grid,
.case-study {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

h1 {
  max-width: 9.6ch;
  font-size: clamp(44px, 4.9vw, 72px);
}

h2 {
  font-size: clamp(32px, 4vw, 58px);
}

h3 {
  font-size: clamp(24px, 2.4vw, 36px);
}

p {
  margin: 0;
  line-height: 1.75;
}

.hero-copy {
  grid-area: copy;
  max-width: 600px;
  padding-top: clamp(10px, 1.2vw, 18px);
}

.hero-subtitle,
.section-intro,
.story-step p,
.bridge-body p,
.mentor-copy p,
.offer-item p,
.support-block p,
.faq-list p,
.timeline-row p:last-child,
.case-study-copy p,
.testimonial-card p {
  font-size: 17px;
}

.hero-subtitle {
  max-width: 36rem;
  margin-top: 22px;
  color: var(--text);
}

.hero-actions {
  display: grid;
  gap: 16px;
  max-width: 360px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

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

.button-primary {
  color: #fff8f3;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  box-shadow: 0 18px 36px rgba(189, 67, 23, 0.24);
}

.button-secondary {
  color: var(--ink);
  border-color: rgba(239, 106, 46, 0.3);
  background: rgba(239, 106, 46, 0.08);
}

.button-secondary-strong {
  color: #fff8f3;
  border-color: rgba(239, 106, 46, 0.82);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  box-shadow: 0 16px 34px rgba(189, 67, 23, 0.22);
}

.progress-meta {
  display: grid;
  gap: 9px;
}

.progress-meta p {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.progress-meta-card p,
.section-paper .progress-meta p {
  color: var(--ink-soft);
}

.progress-track {
  width: 100%;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.section-paper .progress-track {
  background: rgba(17, 17, 17, 0.1);
}

.progress-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #f8a65f 0%, var(--accent) 100%);
  box-shadow: 0 0 16px rgba(239, 106, 46, 0.3);
}

.hero-promises {
  grid-area: promises;
  max-width: 560px;
  display: grid;
  gap: 14px;
  margin: -6px 0 0;
  padding: 0;
  list-style: none;
}

.hero-promises li {
  position: relative;
  padding-left: 28px;
  color: var(--text-soft);
  line-height: 1.58;
}

.hero-promises li::before {
  content: "✕";
  position: absolute;
  left: 0;
  top: 0;
  color: #ff4d3c;
  font-size: 15px;
  font-weight: 800;
}

.hero-media {
  grid-area: media;
  position: relative;
}

.story-media,
.systems-media {
  align-self: start;
  position: sticky;
  top: 92px;
}

.hero-media-sticky,
.story-media-sticky,
.systems-media-sticky {
  position: relative;
  top: auto;
}

.hero-frame,
.mentor-photo,
.systems-figure,
.story-photo-stack,
.bridge-card,
.price-card,
.support-block,
.case-study,
.featured-quote,
.testimonial-card,
.collage-shell,
.final-photo {
  border-radius: var(--radius-xl);
}

.hero-frame,
.story-photo-stack,
.systems-figure,
.mentor-photo,
.bridge-figure,
.case-study-visual,
.final-photo {
  overflow: hidden;
}

.hero-frame picture {
  display: block;
  width: 100%;
}

.hero-frame {
  position: relative;
  padding: 14px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
  box-shadow: 0 34px 88px rgba(0, 0, 0, 0.2);
}

.hero-frame::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.hero-photo,
.systems-figure img,
.story-photo img,
.mentor-photo img,
.bridge-figure img,
.case-study-visual img,
.final-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo {
  aspect-ratio: 0.82;
  border-radius: 26px;
  object-position: center 20%;
}

.hero-signature {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.hero-signature-overlay {
  display: none;
}

.hero-signature strong,
.hero-proof strong,
.offer-item strong,
.support-strong,
.mentor-stats strong,
.case-study-stats strong,
.testimonial-card strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-weight: 600;
}

.hero-signature strong {
  font-size: 24px;
}

.hero-signature p {
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.hero-identity-mobile-break {
  display: none;
}

.hero-reveal-signature.reveal {
  transition-delay: 120ms;
}

.hero-reveal-proof.reveal {
  transition-delay: 220ms;
}

.hero-proof,
.mentor-stats,
.case-study-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

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

.section-paper .mentor-stats,
.section-paper .case-study-stats {
  border-top-color: var(--paper-line);
}

.hero-proof article > span,
.mentor-stats article > span,
.case-study-stats article > span {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.58;
  color: var(--text-soft);
}

.section-paper .mentor-stats article > span,
.section-paper .case-study-stats article > span {
  color: var(--ink-soft);
}

.mobile-hero-bar {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 60;
  display: none;
  gap: 10px;
  padding: 10px 10px 12px;
  border-radius: 18px;
  background: rgba(8, 8, 8, 0.9);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22);
  opacity: 0;
  transform: translateY(24px);
  pointer-events: none;
  transition: opacity 240ms ease, transform 240ms ease;
}

.mobile-hero-bar.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.progress-meta-compact p {
  font-size: 11px;
}

.section-heading {
  max-width: 860px;
  margin: 0 auto 58px;
  text-align: center;
}

.section-heading-light {
  color: var(--text);
}

.section-eyebrow,
.timeline-day,
.price-tag {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-intro {
  max-width: 780px;
  margin: 18px auto 0;
  color: var(--text-soft);
}

.section-paper .section-intro {
  color: var(--ink-soft);
}

.section-cta {
  margin-top: 44px;
  text-align: center;
}

.story-media-sticky,
.systems-media-sticky {
  display: grid;
  gap: 16px;
}

.story-photo-stack {
  position: relative;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: var(--shadow-soft);
}

.story-photo-stack--mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 0;
  aspect-ratio: auto;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

.story-project-photo {
  overflow: hidden;
  border-radius: 0;
  background: #ece4db;
}

.story-project-photo--tile-a,
.story-project-photo--tile-b,
.story-project-photo--tile-c,
.story-project-photo--tile-d,
.story-project-photo--tile-e,
.story-project-photo--tile-f {
  aspect-ratio: 0.88;
}

.story-project-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-project-photo--tile-a img {
  object-position: center 48%;
}

.story-project-photo--tile-b img {
  object-position: center 52%;
}

.story-project-photo--tile-c img {
  object-position: center 44%;
}

.story-project-photo--tile-d img {
  object-position: center 52%;
}

.story-project-photo--tile-e img {
  object-position: center 52%;
}

.story-project-photo--tile-f img {
  object-position: center 44%;
}

.story-photo {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 420ms ease, transform 420ms ease;
}

.story-photo.is-active {
  opacity: 1;
  transform: scale(1);
}

.story-inline-photo {
  display: none;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.story-inline-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-chip {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: min(70%, 280px);
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(9, 9, 9, 0.82);
  color: #fff7f0;
  font-family: "Sora", sans-serif;
  font-size: 16px;
  line-height: 1.35;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 320ms ease, transform 320ms ease;
}

.story-chip.is-active {
  opacity: 1;
  transform: translateY(0);
}

.story-steps {
  display: grid;
  gap: 24px;
}

.story-step {
  min-height: 62vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 28px 0;
  border-top: 1px solid var(--paper-line);
}

.story-step.is-active {
  opacity: 1;
}

.pull-quote {
  margin: 4px 0;
  padding-left: 22px;
  border-left: 2px solid var(--accent);
  font-family: "Sora", sans-serif;
  font-size: clamp(32px, 3.5vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 700;
}

.story-emphasis {
  font-family: "Sora", sans-serif;
  font-size: clamp(24px, 2.7vw, 34px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.story-proof-card {
  appearance: none;
  width: 100%;
  margin: 10px 0 0;
  padding: 14px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9));
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.08);
  text-align: left;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.story-proof-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(239, 106, 46, 0.22);
}

.story-proof-media {
  border-radius: 18px;
}

.story-proof-body {
  margin-top: 14px;
}

.story-proof-quote {
  color: var(--accent);
  font-family: "Sora", sans-serif;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.16;
  letter-spacing: -0.03em;
}

.story-proof-body footer {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 14px;
}

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

.systems-media-sticky {
  gap: 0;
}

.systems-figure {
  position: relative;
  aspect-ratio: 0.82;
  box-shadow: 0 26px 62px rgba(0, 0, 0, 0.2);
}

.systems-chip {
  position: absolute;
  left: 18px;
  bottom: 18px;
  max-width: min(74%, 292px);
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(9, 9, 9, 0.84);
  color: var(--text);
  font-family: "Sora", sans-serif;
  font-size: 17px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
}

.systems-track {
  display: grid;
  gap: 26px;
}

.system-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.system-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 6, 6, 0.92), rgba(6, 6, 6, 0.94)),
    url("./assets/method-symbols/card-sketch-01.png") center / cover no-repeat;
  opacity: 0.32;
  pointer-events: none;
  z-index: -1;
}

.system-card:nth-child(2)::before {
  background:
    linear-gradient(180deg, rgba(6, 6, 6, 0.92), rgba(6, 6, 6, 0.94)),
    url("./assets/method-symbols/card-sketch-02.png") center / cover no-repeat;
  opacity: 0.32;
}

.system-card:nth-child(3)::before {
  background:
    linear-gradient(180deg, rgba(6, 6, 6, 0.92), rgba(6, 6, 6, 0.94)),
    url("./assets/method-symbols/card-sketch-03.png") center / cover no-repeat;
  opacity: 0.32;
}

.system-card > * {
  position: relative;
  z-index: 1;
}

.system-index {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.system-card p {
  color: var(--text-soft);
}

.system-card h3 + p {
  margin-top: 16px;
}

.system-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.system-list li {
  position: relative;
  padding-left: 18px;
  line-height: 1.56;
}

.system-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.collage-shell {
  padding: clamp(18px, 3vw, 30px);
  background: linear-gradient(180deg, #efe8db 0%, #e8decd 100%);
  box-shadow: var(--shadow-soft);
}

.photo-collage {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 8px 10px 12px;
  align-items: start;
}

.photo-collage__item {
  position: relative;
  display: block;
  width: 100%;
  margin: var(--lift, 0px) 0 0;
  padding: 10px 10px 14px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
  transform: translateX(var(--shift-x)) rotate(var(--rotate));
}

.photo-collage__item::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 50%;
  width: 66px;
  height: 18px;
  border-radius: 4px;
  background: rgba(245, 231, 202, 0.8);
  transform: translateX(-50%) rotate(var(--tape));
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.photo-collage__item img {
  width: 100%;
  aspect-ratio: var(--aspect, 3 / 4);
  border-radius: 12px;
  object-fit: cover;
  object-position: center 50%;
}

.testimonials-grid,
.offer-support {
  display: grid;
  gap: 22px;
}

.testimonials-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 44px;
}

.testimonial-card {
  padding: 30px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(17, 17, 17, 0.06);
  box-shadow: var(--shadow-soft);
}

.testimonial-card p {
  color: var(--ink);
}

.testimonial-card strong {
  margin-top: 18px;
  font-size: 18px;
}

.testimonial-card span {
  display: block;
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 14px;
}

.video-proof {
  margin-top: 34px;
  padding: clamp(24px, 4vw, 34px);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #f8f3ea 0%, #efe6d7 100%);
  border: 1px solid rgba(17, 17, 17, 0.06);
  box-shadow: var(--shadow-soft);
}

.video-proof-header {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
}

.video-proof-header h3 {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.video-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}

.video-proof-list {
  display: contents;
}

.video-proof-feature,
.video-proof-card {
  appearance: none;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 12px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.08);
  text-align: left;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.video-proof-feature:hover,
.video-proof-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(239, 106, 46, 0.22);
}

.video-proof-media {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #0c0c0c;
  aspect-ratio: 16 / 9;
}

.video-proof-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-proof-duration {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(7, 7, 7, 0.78);
  color: #fff7f0;
  font-family: "Sora", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-proof-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: rgba(7, 7, 7, 0.68);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.video-proof-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 53%;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid #fff6ef;
  transform: translate(-50%, -50%);
}

.video-proof-body {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  align-content: start;
  flex: 1;
}

.video-proof-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.video-proof-body strong {
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.05;
}

.video-proof-card .video-proof-body strong {
  font-size: 19px;
}

.video-proof-quote {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-proof-body p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.56;
}

.video-proof-quote {
  color: var(--ink);
  font-size: 18px;
  font-style: italic;
  letter-spacing: -0.01em;
  line-height: 1.5;
}

.featured-quote {
  margin-top: 34px;
  padding: clamp(34px, 5vw, 52px) clamp(22px, 5vw, 48px);
  background:
    radial-gradient(circle at 50% 0%, rgba(239, 106, 46, 0.18), transparent 40%),
    linear-gradient(180deg, #061225 0%, #02101d 100%);
  color: var(--text);
  text-align: center;
}

.featured-quote p {
  max-width: 760px;
  margin: 0 auto;
  font-family: "Sora", sans-serif;
  font-size: clamp(24px, 2.8vw, 38px);
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.featured-quote footer {
  margin-top: 18px;
  color: rgba(246, 241, 231, 0.72);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-study {
  margin-top: 34px;
  padding: clamp(28px, 5vw, 42px);
  background: linear-gradient(180deg, #ffffff 0%, #f4ece0 100%);
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: var(--shadow-soft);
}

.case-study-copy {
  max-width: 560px;
}

.case-study-copy h3 + p {
  margin-top: 26px;
}

.case-study-copy p:not(.section-eyebrow) {
  color: var(--ink);
}

.case-study-copy p + p {
  margin-top: 18px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
  color: var(--accent-deep);
  font-weight: 800;
}

.text-link::after {
  content: "→";
  margin-left: 10px;
}

.case-study-aside {
  display: grid;
  gap: 22px;
  align-content: start;
}

.case-study-stats-inline {
  margin-top: 24px;
}

.case-study-visual {
  min-height: 360px;
  box-shadow: var(--shadow-soft);
}

.case-study-action {
  padding-top: 22px;
  border-top: 1px solid var(--paper-line);
}

.case-study-action-inline {
  margin-top: 26px;
}

.timeline-shell {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
}

.timeline-shell::before {
  content: "";
  position: absolute;
  left: 174px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(239, 106, 46, 0), rgba(239, 106, 46, 0.7), rgba(239, 106, 46, 0));
}

.timeline-row {
  display: grid;
  grid-template-columns: 146px 30px minmax(220px, 260px) 1fr;
  gap: 22px;
  align-items: start;
  padding: 30px 0;
}

.timeline-dot {
  width: 14px;
  height: 14px;
  margin-top: 4px;
  border-radius: 50%;
  border: 3px solid rgba(239, 106, 46, 0.32);
  background: var(--accent);
  box-shadow: 0 0 0 10px rgba(239, 106, 46, 0.08);
}

.timeline-day {
  margin: 0;
}

.timeline-row p:last-child {
  color: var(--text-soft);
}

.mentor-photo {
  box-shadow: var(--shadow);
}

.mentor-photo img {
  aspect-ratio: 0.88;
}

.mentor-content {
  display: grid;
  gap: 26px;
  align-content: start;
}

.mentor-header {
  max-width: none;
  margin: 0;
  text-align: left;
}

.mentor-header .section-intro {
  max-width: none;
  margin: 18px 0 0;
}

.mentor-copy p + p {
  margin-top: 18px;
}

.operations-label {
  margin-top: clamp(52px, 6vw, 72px);
  text-align: center;
}

.operations-label .section-eyebrow {
  font-size: clamp(24px, 2.4vw, 34px);
  letter-spacing: 0.12em;
}

.snapshot-board {
  column-count: 3;
  column-gap: 18px;
  margin-top: 28px;
}

.snapshot {
  position: relative;
  display: inline-block;
  width: 100%;
  overflow: hidden;
  margin: 0 0 18px;
  padding: 10px 10px 14px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.1);
  break-inside: avoid;
  transform: rotate(var(--rotate, 0deg));
}

.snapshot::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 50%;
  width: 64px;
  height: 18px;
  border-radius: 4px;
  background: rgba(244, 228, 197, 0.82);
  transform: translateX(-50%) rotate(var(--tape, 0deg));
}

.snapshot img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  aspect-ratio: var(--snapshot-aspect, 1 / 1.08);
  object-position: center 52%;
}

.snapshot-a {
  --rotate: -0.8deg;
  --tape: -2deg;
  --snapshot-aspect: 1 / 1.02;
}

.snapshot-b {
  --rotate: 0.6deg;
  --tape: 1deg;
  --snapshot-aspect: 1 / 1;
}

.snapshot-c {
  --rotate: -0.6deg;
  --tape: 1deg;
  --snapshot-aspect: 1 / 1.06;
}

.snapshot-d {
  --rotate: 0.8deg;
  --tape: -2deg;
  --snapshot-aspect: 1 / 1;
}

.snapshot-e {
  --rotate: -0.5deg;
  --tape: 2deg;
  --snapshot-aspect: 1 / 1.05;
}

.snapshot-f {
  --rotate: 0.7deg;
  --tape: -1deg;
  --snapshot-aspect: 1 / 1;
}

.bridge-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02));
}

.bridge-card-text {
  display: flex;
}

.bridge-figure img {
  aspect-ratio: 16 / 10;
}

.bridge-body {
  padding: 28px 30px 32px;
}

.bridge-body h2 {
  max-width: 14ch;
  margin-bottom: 16px;
  font-size: clamp(28px, 3.1vw, 42px);
}

.bridge-body p:not(.section-eyebrow) {
  color: var(--text-soft);
}

.bridge-body p + p {
  margin-top: 16px;
}

.offer-grid {
  align-items: start;
}

.offer-copy {
  max-width: none;
  padding-top: 34px;
}

.offer-flow {
  display: grid;
  gap: 28px;
}

.offer-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.offer-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 24px 26px;
  border-radius: 28px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background:
    radial-gradient(circle at top right, rgba(239, 106, 46, 0.08), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7f0e6 100%);
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.08);
}

.offer-item > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 8px 18px;
}

.offer-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(239, 106, 46, 0.12);
  color: var(--accent-deep);
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.offer-item strong {
  grid-column: 1;
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.offer-item p {
  margin-top: 0;
  color: var(--ink-soft);
  grid-column: 1;
  max-width: 78ch;
}

.offer-value {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  justify-self: end;
  min-width: 132px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(239, 106, 46, 0.1);
  color: var(--accent-deep);
  font-family: "Sora", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: center;
}

.offer-summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 24px;
  border-radius: 22px;
  border: 1px solid rgba(239, 106, 46, 0.18);
  background: linear-gradient(180deg, rgba(239, 106, 46, 0.08), rgba(239, 106, 46, 0.03));
  color: var(--ink-soft);
}

.offer-summary span,
.offer-summary strong {
  font-family: "Sora", sans-serif;
}

.offer-summary span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer-summary strong {
  color: var(--ink);
  font-size: 26px;
  letter-spacing: -0.03em;
}

.offer-bonus-block {
  display: grid;
  gap: 24px;
  padding-top: 12px;
}

.offer-bonus-header {
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
}

.offer-bonus-header h3 {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.price-card {
  margin-top: 28px;
  max-width: none;
  padding: clamp(28px, 4vw, 36px);
  background:
    radial-gradient(circle at top right, rgba(239, 106, 46, 0.12), transparent 38%),
    linear-gradient(180deg, #fffdf9 0%, #f4ece2 100%);
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 24px 60px rgba(17, 17, 17, 0.1);
  color: var(--ink);
}

.price-compare,
.price-caption,
.price-value {
  margin-top: 10px;
}

.price-compare {
  color: #8d7568;
  text-decoration: line-through;
}

.price-caption {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-value {
  font-family: "Sora", sans-serif;
  font-size: clamp(58px, 6vw, 90px);
  line-height: 0.95;
  letter-spacing: -0.06em;
  color: var(--accent-deep);
}

.price-note {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.45;
}

.price-card .button {
  width: 100%;
  margin-top: 24px;
}

.progress-meta-card {
  margin-top: 18px;
}

.price-card-details {
  display: grid;
  gap: 6px;
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.5;
}

@media (min-width: 981px) {
  #oferta .offer-grid {
    display: block;
  }

  #oferta .offer-copy {
    max-width: 920px;
    margin: 0 auto;
    padding-top: 16px;
  }

  #oferta .section-heading {
    margin-bottom: 34px;
  }

  #oferta .offer-list--core,
  #oferta .offer-list--bonus {
    position: relative;
    gap: 0;
  }

  #oferta .offer-list--core::before,
  #oferta .offer-list--bonus::before {
    content: "";
    position: absolute;
    left: 25px;
    top: 12px;
    bottom: 12px;
    width: 1px;
    background: linear-gradient(180deg, rgba(239, 106, 46, 0), rgba(239, 106, 46, 0.6), rgba(239, 106, 46, 0));
  }

  #oferta .offer-item {
    grid-template-columns: 52px minmax(0, 1fr) auto;
    gap: 18px;
    padding: 0 0 28px;
    border: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
  }

  #oferta .offer-item:last-child {
    padding-bottom: 0;
  }

  #oferta .offer-item > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  #oferta .offer-item strong {
    font-size: clamp(28px, 2.3vw, 34px);
  }

  #oferta .offer-item p {
    max-width: 72ch;
  }

  #oferta .offer-number {
    position: relative;
    z-index: 1;
    background: #f4ece2;
    border: 1px solid rgba(239, 106, 46, 0.24);
  }

  #oferta .offer-value {
    grid-column: 3;
    grid-row: 1 / span 2;
    align-self: center;
    justify-self: end;
    min-width: 144px;
    padding: 0;
    border-radius: 0;
    background: none;
    text-align: right;
    font-size: 16px;
  }

  #oferta .offer-summary {
    max-width: 360px;
    margin: 0 auto;
    padding: 12px 18px;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    background: none;
  }

  #oferta .offer-bonus-block {
    gap: 28px;
    margin-top: 10px;
    padding: 36px 48px 42px;
    border-top: 1px solid rgba(239, 106, 46, 0.22);
    border-bottom: 1px solid rgba(239, 106, 46, 0.22);
    background:
      radial-gradient(circle at top center, rgba(239, 106, 46, 0.08), transparent 42%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(244, 236, 226, 0.52));
  }

  #oferta .offer-item--bonus strong {
    font-size: clamp(24px, 2vw, 30px);
  }

  #oferta .price-card {
    max-width: 560px;
    margin: 36px auto 0;
    text-align: center;
  }

  #oferta .progress-meta-card,
  #oferta .price-card-details {
    justify-items: center;
  }
}

.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 18px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.checkout-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.checkout-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 6, 6, 0.72);
  backdrop-filter: blur(14px);
}

.checkout-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  padding: clamp(26px, 4vw, 34px);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(239, 106, 46, 0.2), transparent 42%),
    linear-gradient(180deg, rgba(22, 22, 22, 0.98), rgba(10, 10, 10, 0.98));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
}

.checkout-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.checkout-form {
  display: grid;
  gap: 16px;
  margin-top: 0;
}

.checkout-form__field {
  display: grid;
  gap: 8px;
}

.checkout-form__field span {
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.checkout-form__field input {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.checkout-form__field input::placeholder {
  color: rgba(246, 241, 231, 0.38);
}

.checkout-form__field input:focus {
  outline: none;
  border-color: rgba(246, 166, 95, 0.82);
  box-shadow: 0 0 0 4px rgba(239, 106, 46, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.checkout-form .button {
  width: 100%;
  margin-top: 6px;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 125;
  display: grid;
  place-items: center;
  padding: 18px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.video-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(12px);
}

.video-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  padding: clamp(18px, 3vw, 24px);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(239, 106, 46, 0.2), transparent 42%),
    linear-gradient(180deg, rgba(18, 18, 18, 0.98), rgba(7, 7, 7, 0.98));
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.36);
}

.video-modal__dialog.is-portrait {
  width: min(100%, 460px);
}

.video-modal__header {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}

.video-modal__eyebrow {
  margin: 0 0 10px;
  color: #f6a361;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.video-modal__title {
  margin: 0;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.04;
}

.video-modal__close {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.video-modal__frame {
  overflow: hidden;
  width: 100%;
  border-radius: 24px;
  background: #000;
  aspect-ratio: var(--video-ratio, 16 / 9);
}

.video-modal__dialog.is-portrait .video-modal__frame {
  margin-inline: auto;
}

.video-modal__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.offer-support {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 36px;
}

.support-block {
  padding: clamp(28px, 4vw, 36px);
  background: linear-gradient(180deg, #efe7d9 0%, #f5efe5 100%);
  border: 1px solid rgba(17, 17, 17, 0.06);
}

.support-block h3 {
  margin-bottom: 16px;
  font-size: clamp(24px, 2.8vw, 34px);
}

.support-block p {
  color: var(--ink);
}

.support-block p + p {
  margin-top: 16px;
}

.faq-list {
  max-width: 940px;
  margin: 0 auto;
  border-top: 1px solid var(--paper-line);
}

.faq-list details {
  padding: 24px 0;
  border-bottom: 1px solid var(--paper-line);
}

.faq-list summary {
  position: relative;
  padding-right: 44px;
  cursor: pointer;
  list-style: none;
  font-family: "Sora", sans-serif;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.2;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: -4px;
  right: 0;
  color: var(--accent);
  font-size: 32px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list p {
  margin-top: 14px;
  color: var(--ink-soft);
}

.section-final {
  padding-bottom: clamp(88px, 10vw, 132px);
}

.final-copy {
  max-width: 620px;
}

.final-copy p:not(.section-eyebrow) {
  color: var(--text-soft);
}

.final-copy p + p {
  margin-top: 18px;
}

.final-copy .button {
  margin-top: 26px;
}

.final-photo {
  box-shadow: var(--shadow);
}

.final-photo img {
  aspect-ratio: 0.92;
}

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

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

@media (max-width: 1180px) {
  .hero-grid,
  .story-layout,
  .systems-layout,
  .mentor-grid,
  .offer-grid,
  .final-grid,
  .bridge-grid,
  .case-study {
    grid-template-columns: 1fr;
  }

  .hero-media-sticky,
  .story-media,
  .systems-media,
  .story-media-sticky,
  .systems-media-sticky {
    position: static;
  }

  .hero-grid {
    grid-template-areas:
      "copy"
      "media"
      "promises";
  }

  .timeline-shell::before {
    left: 15px;
  }

  .timeline-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-left: 34px;
  }

  .timeline-dot {
    position: absolute;
    left: 8px;
    margin-top: 8px;
  }

  .timeline-row {
    position: relative;
  }

  .method-symbol--canvas {
    right: -300px;
    width: min(72vw, 760px);
    opacity: 0.15;
  }

  .method-symbol--architecture {
    left: -320px;
    width: min(78vw, 820px);
    opacity: 0.12;
  }

  .method-symbol--overview {
    right: -300px;
    width: min(76vw, 780px);
    opacity: 0.13;
  }

  .method-symbol--bridge {
    right: -180px;
    bottom: -90px;
    width: min(62vw, 700px);
    opacity: 0.1;
  }
}

@media (min-width: 981px) and (max-width: 1180px) {
  #diagnostico .story-layout,
  #metodologia .systems-layout {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: 42px;
  }

  #diagnostico .story-media-sticky,
  #metodologia .systems-media-sticky {
    position: relative;
    top: auto;
  }

  #diagnostico .story-media,
  #metodologia .systems-media {
    align-self: start;
    position: sticky;
    top: 92px;
  }
}

@media (max-width: 900px) {
  :root {
    --container: min(100% - 30px, 100%);
  }

  .hero-proof,
  .mentor-stats,
  .case-study-stats,
  .offer-list,
  .offer-support,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

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

  .video-proof-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .video-proof-card--wide {
    grid-column: 1 / -1;
  }

  .photo-collage {
    display: block;
    column-count: 3;
    column-gap: 18px;
  }

  .photo-collage__item {
    display: inline-block;
    margin: var(--lift, 0px) 0 18px;
    break-inside: avoid;
  }

  .snapshot-board {
    column-count: 2;
    column-gap: 14px;
  }

  .snapshot,
  .snapshot-a,
  .snapshot-b,
  .snapshot-c,
  .snapshot-d,
  .snapshot-e,
  .snapshot-f {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: inline;
  }

  body {
    padding-bottom: 104px;
  }

  .top-strip {
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .hero {
    padding-bottom: 54px;
  }

  .hero-grid {
    gap: 22px;
  }

  .hero-copy {
    padding-right: 6px;
  }

  h1 {
    max-width: none;
    font-size: clamp(24px, 6.6vw, 33px);
    text-wrap: initial;
  }

  h2 {
    font-size: clamp(28px, 8vw, 40px);
  }

  h3 {
    font-size: clamp(22px, 7vw, 28px);
  }

  .hero-subtitle,
  .section-intro,
  .story-step p,
  .bridge-body p,
  .mentor-copy p,
  .offer-item p,
  .support-block p,
  .faq-list p,
  .timeline-row p:last-child,
  .case-study-copy p,
  .testimonial-card p {
    font-size: 16px;
  }

  .hero-actions {
    display: none;
  }

  .mobile-hero-bar {
    display: grid;
  }

  .mobile-hero-bar .button {
    min-height: 54px;
    font-size: 12px;
  }

  .hero-media {
    margin-inline: calc(50% - 50vw);
    width: 100vw;
  }

  .hero-media-sticky {
    position: relative;
    top: auto;
    width: 100%;
  }

  .hero-frame {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
  }

  .hero-frame::after {
    display: none;
  }

  .hero-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(5, 5, 5, 0.96) 0%,
      rgba(5, 5, 5, 0.45) 12%,
      rgba(5, 5, 5, 0) 28%,
      rgba(5, 5, 5, 0) 62%,
      rgba(5, 5, 5, 0.38) 76%,
      rgba(5, 5, 5, 0.84) 92%,
      #050505 100%
    );
    z-index: 1;
    pointer-events: none;
  }

  .hero-photo {
    border-radius: 0;
    height: auto;
    aspect-ratio: 1.18;
    object-position: center 82%;
  }

  .hero-signature-desktop {
    display: none;
  }

  .hero-signature-overlay {
    display: grid;
    position: absolute;
    right: 14px;
    bottom: 6px;
    left: 14px;
    z-index: 2;
    gap: 4px;
    margin-top: 0;
    padding: 13px 16px 14px;
    border-top: 0;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.18), rgba(10, 10, 10, 0.58));
    backdrop-filter: blur(18px);
  }

  .hero-signature-overlay strong {
    font-size: 26px;
  }

  .hero-signature-overlay p {
    letter-spacing: 0.03em;
    text-transform: none;
    font-size: 13px;
    line-height: 1.45;
    color: rgba(246, 241, 231, 0.82);
  }

  .hero-identity-mobile-break {
    display: block;
  }

  .hero-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 14px 12px 0;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    overflow: visible;
  }

  .hero-proof article {
    min-width: 0;
    padding: 0;
    border: 0;
    background: none;
    box-shadow: none;
  }

  .hero-proof strong {
    font-size: clamp(15px, 4.2vw, 18px);
    line-height: 1.04;
  }

  .hero-proof article > span {
    margin-top: 4px;
    font-size: 11px;
    line-height: 1.3;
  }

  .hero-promises {
    margin-top: 6px;
  }

  .hero-promises li {
    padding-left: 22px;
  }

  .method-symbol {
    opacity: 0.1;
    filter: saturate(0.88) brightness(1);
  }

  .method-symbol::after {
    background: radial-gradient(circle at center, transparent 20%, rgba(5, 5, 5, 0.88) 100%);
  }

  .method-symbol--canvas {
    top: -20px;
    right: -208px;
    width: 118vw;
    opacity: 0.12;
    transform: rotate(-5deg);
  }

  .method-symbol--architecture {
    left: -250px;
    bottom: 80px;
    width: 120vw;
    transform: rotate(-4deg);
  }

  .method-symbol--overview {
    right: -210px;
    bottom: -54px;
    width: 112vw;
    opacity: 0.09;
    transform: rotate(3deg);
  }

  .method-symbol--bridge {
    display: none;
  }

  #diagnostico.section {
    padding-top: 34px;
  }

  #diagnostico .section-heading {
    margin-bottom: 26px;
  }

  #diagnostico .story-layout {
    display: block;
    position: relative;
  }

  #diagnostico .story-media {
    position: static;
    top: auto;
    z-index: auto;
    margin: 0 -15px 18px;
  }

  #diagnostico .story-media-sticky {
    position: static;
  }

  #diagnostico .story-photo-stack {
    border: 0;
    border-radius: 0;
    box-shadow: none;
    aspect-ratio: auto;
  }

  #diagnostico .story-photo-stack--mosaic {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    padding: 0;
    background: none;
  }

  #diagnostico .story-project-photo {
    border-radius: 0;
    box-shadow: none;
  }

  #diagnostico .story-project-photo--tile-a,
  #diagnostico .story-project-photo--tile-b,
  #diagnostico .story-project-photo--tile-c,
  #diagnostico .story-project-photo--tile-d,
  #diagnostico .story-project-photo--tile-e,
  #diagnostico .story-project-photo--tile-f {
    aspect-ratio: 0.88;
  }

  #diagnostico .story-project-photo img {
    border-radius: 0;
  }

  #diagnostico .story-chip {
    display: none;
  }

  #diagnostico .story-step {
    min-height: auto;
    justify-content: flex-start;
    gap: 14px;
    padding: 24px 0 28px;
  }

  #diagnostico .story-step:first-child {
    border-top: 0;
  }

  #diagnostico .story-inline-photo-mobile {
    display: block;
    margin: 4px -15px 8px;
    border-radius: 0;
    box-shadow: none;
  }

  #diagnostico .story-inline-photo-mobile img {
    border-radius: 0;
    aspect-ratio: 1 / 0.96;
  }

  #diagnostico .story-inline-photo--method {
    margin: 8px 0 14px;
    padding: 12px;
    border-radius: 24px;
    background:
      linear-gradient(180deg, rgba(17, 17, 17, 0.96), rgba(27, 21, 16, 0.98)),
      radial-gradient(circle at top left, rgba(239, 106, 46, 0.22), transparent 44%);
    box-shadow: 0 18px 42px rgba(17, 17, 17, 0.16);
  }

  #diagnostico .story-inline-photo--method img {
    border-radius: 16px;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: center;
  }

  .pull-quote {
    font-size: clamp(30px, 8vw, 42px);
  }

  .story-emphasis {
    font-size: clamp(25px, 6.2vw, 32px);
    line-height: 1.14;
  }

  .story-proof-card {
    padding: 12px;
    border-radius: 22px;
  }

  .story-proof-body {
    margin-top: 12px;
  }

  .story-proof-quote {
    font-size: clamp(22px, 5.7vw, 28px);
    line-height: 1.18;
  }

  .story-step {
    min-height: auto;
  }

  .video-proof {
    padding-left: 18px;
    padding-right: 18px;
  }

  .video-proof-header {
    margin-bottom: 24px;
    text-align: left;
  }

  .video-proof-list {
    display: grid;
    grid-template-columns: 1fr;
  }

  .video-proof-feature,
  .video-proof-card {
    padding: 10px;
    border-radius: 20px;
  }

  .video-proof-play {
    width: 62px;
    height: 62px;
  }

  .video-proof-body {
    gap: 6px;
    margin-top: 12px;
  }

  .video-proof-card .video-proof-body strong {
    font-size: 18px;
  }

  .video-modal {
    padding: 12px;
  }

  .video-modal__dialog {
    padding: 16px;
    border-radius: 24px;
  }

  .video-modal__header {
    margin-bottom: 14px;
  }

  .video-modal__close {
    width: 40px;
    height: 40px;
    font-size: 28px;
  }

  #prova-social .collage-shell {
    margin-inline: calc(50% - 50vw);
    width: 100vw;
    padding: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
  }

  #prova-social .photo-collage {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
    padding: 0;
  }

  #prova-social .photo-collage__item {
    margin: 0;
    padding: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
    transform: none;
  }

  #prova-social .photo-collage__item::before {
    display: none;
  }

  #prova-social .photo-collage__item img {
    aspect-ratio: 1 / 1;
    border-radius: 0;
  }

  .bridge-body,
  .price-card,
  .support-block,
  .testimonial-card,
  .featured-quote,
  .case-study {
    padding-left: 22px;
    padding-right: 22px;
  }

  .bridge-body h2 {
    max-width: none;
  }

  .case-study-visual {
    display: none;
  }

  .case-study-aside {
    gap: 0;
  }

  .case-study-action {
    padding-top: 18px;
    border-top: 0;
  }

  .checkout-modal {
    padding: 12px;
  }

  .checkout-modal__dialog {
    padding: 24px 18px 20px;
    border-radius: 24px;
  }

  .checkout-modal__close {
    top: 10px;
    right: 10px;
  }

  .snapshot-board {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 12px;
    gap: 12px;
  }

  .snapshot {
    display: block;
    width: 100%;
    margin: 0;
  }

  .final-photo {
    display: none;
  }

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

  .offer-copy {
    padding-top: 0;
  }

  #oferta .offer-flow {
    gap: 30px;
  }

  #oferta .offer-list--core,
  #oferta .offer-list--bonus {
    position: relative;
    gap: 28px;
  }

  #oferta .offer-list--core::before,
  #oferta .offer-list--bonus::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 10px;
    bottom: 10px;
    width: 1px;
    background: linear-gradient(180deg, rgba(239, 106, 46, 0), rgba(239, 106, 46, 0.5), rgba(239, 106, 46, 0));
  }

  #oferta .offer-item {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
  }

  #oferta .offer-item > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  #oferta .offer-item strong {
    font-size: 20px;
  }

  #oferta .offer-number {
    position: relative;
    z-index: 1;
    width: 42px;
    height: 42px;
    background: #f4ece2;
    border: 1px solid rgba(239, 106, 46, 0.24);
  }

  #oferta .offer-value {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
    min-width: 0;
    padding: 0;
    border-radius: 0;
    background: none;
    font-size: 14px;
    text-align: left;
  }

  #oferta .offer-summary {
    max-width: 280px;
    margin: 0 auto;
    padding: 12px 14px;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    background: none;
  }

  #oferta .offer-summary strong {
    font-size: 22px;
  }

  #oferta .offer-bonus-block {
    gap: 30px;
    padding: 32px 0 0;
    border-top: 1px solid rgba(239, 106, 46, 0.18);
    border-bottom: 0;
    background: none;
  }

  #oferta .offer-bonus-header {
    gap: 14px;
  }

  #oferta .offer-bonus-header h3 {
    max-width: 14ch;
    font-size: clamp(24px, 7vw, 30px);
  }

  #oferta .price-card {
    max-width: 420px;
    margin: 18px auto 0;
    text-align: center;
  }

  #oferta .progress-meta-card,
  #oferta .price-card-details {
    justify-items: center;
  }

  .price-note,
  .price-card-details {
    font-size: 13px;
  }
}

@keyframes photo-collage-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - (var(--carousel-gap, 8px) / 2)));
  }
}

@media (max-width: 520px) {
  .hero-proof,
  .mentor-stats,
  .case-study-stats {
    gap: 16px;
  }

  .hero-proof {
    margin-right: 12px;
    margin-left: 12px;
    gap: 10px;
  }

  .progress-meta p,
  .progress-meta-compact p {
    letter-spacing: 0.05em;
  }

  .timeline-shell::before {
    left: 12px;
  }

  .timeline-row {
    padding-left: 28px;
  }

  .timeline-dot {
    left: 5px;
  }
}
