@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("assets/plus-jakarta-sans.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 200 800;
}

@font-face {
  font-family: "Sora";
  src: url("assets/sora.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 200 800;
}

:root {
  --cream: #f8f4ed;
  --cream-strong: #efe6da;
  --sand: #e8dbcd;
  --paper: #fffdf9;
  --ink: #1d1714;
  --ink-soft: #312722;
  --muted: #71645c;
  --line: #d9cec2;
  --flame: #f05a28;
  --flame-dark: #b93a12;
  --flame-deep: #8f2c0e;
  --flame-soft: #ffdfd2;
  --night: #17110f;
  --night-soft: #241b17;
  --lime: #d8ff67;
  --violet: #8557ff;
  --violet-light: #b5a0ff;
  --white: #ffffff;
  --shadow-sm: 0 10px 35px rgba(40, 24, 15, 0.08);
  --shadow-lg: 0 35px 90px rgba(25, 12, 7, 0.22);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --font-body: "Plus Jakarta Sans", Arial, sans-serif;
  --font-display: "Sora", "Plus Jakarta Sans", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

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

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

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 999;
  transform: translateY(-150%);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  padding: 10px 18px;
  font-weight: 800;
  transition: transform 160ms ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-top: 3px solid var(--flame);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(23, 17, 15, 0.74);
  color: var(--white);
  backdrop-filter: blur(18px);
  transition: background 220ms ease, box-shadow 220ms ease, color 220ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  border-bottom-color: rgba(57, 36, 24, 0.12);
  background: rgba(248, 244, 237, 0.95);
  color: var(--ink);
  box-shadow: 0 12px 40px rgba(30, 18, 11, 0.08);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.brand img {
  width: auto;
  height: 38px;
  object-fit: contain;
}

.brand > span > span {
  color: var(--flame);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 32px);
  margin-left: auto;
  font-size: 15px;
  font-weight: 650;
}

.desktop-nav a {
  position: relative;
  padding-block: 26px;
  transition: color 160ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  background: var(--flame);
  content: "";
  transition: transform 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--flame);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 14px 24px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease,
    box-shadow 160ms ease;
}

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

.button-primary {
  background: var(--flame-dark);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(240, 90, 40, 0.28);
}

.button-primary:hover {
  background: var(--flame-deep);
  box-shadow: 0 18px 36px rgba(240, 90, 40, 0.34);
}

.button-compact {
  min-height: 44px;
  padding: 11px 18px;
  font-size: 14px;
}

.button-ghost-light {
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(16, 8, 5, 0.2);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.button-ghost-light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.button-ghost-dark {
  border-color: rgba(255, 255, 255, 0.28);
  background: transparent;
  color: var(--white);
}

.button-ghost-dark:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button-outline {
  border-color: var(--ink);
  color: var(--ink);
}

.button-outline:hover {
  background: var(--ink);
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

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

.mobile-menu {
  position: fixed;
  inset: 79px 0 auto;
  max-height: calc(100vh - 79px);
  overflow-y: auto;
  border-bottom: 1px solid var(--line);
  background: var(--cream);
  color: var(--ink);
  padding: 18px 24px 28px;
  box-shadow: var(--shadow-lg);
}

.mobile-menu a:not(.button) {
  display: block;
  border-bottom: 1px solid var(--line);
  padding: 13px 2px;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
}

.mobile-menu .button {
  width: 100%;
  margin-top: 22px;
}

.hero {
  position: relative;
  display: flex;
  min-height: 870px;
  align-items: center;
  overflow: hidden;
  background: var(--night);
  color: var(--white);
  isolation: isolate;
}

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

.hero-media {
  z-index: -3;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 30%;
  filter: saturate(0.88) contrast(1.05);
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(21, 13, 9, 0.98) 0%, rgba(21, 13, 9, 0.86) 35%, rgba(21, 13, 9, 0.32) 70%, rgba(21, 13, 9, 0.22) 100%),
    linear-gradient(0deg, rgba(21, 13, 9, 0.96) 0%, rgba(21, 13, 9, 0.08) 55%);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(rgba(255, 255, 255, 0.13) 0.75px, transparent 0.75px);
  background-size: 5px 5px;
  content: "";
  opacity: 0.2;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 720px) 1fr;
  padding-top: 118px;
  padding-bottom: 172px;
}

.hero-copy h1 {
  max-width: 800px;
  margin-bottom: 28px;
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.99;
}

.hero-copy h1 em {
  position: relative;
  color: var(--flame);
  font-style: normal;
}

.hero-copy h1 em::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 6px;
  border-top: 3px solid var(--flame);
  border-radius: 50%;
  content: "";
  opacity: 0.7;
}

.hero-lead {
  max-width: 640px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 1.65vw, 21px);
  line-height: 1.62;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--flame-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 22px;
  height: 2px;
  background: currentColor;
}

.eyebrow-light {
  color: #ff9a71;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.hero-note {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  font-weight: 650;
}

.proof-bar {
  position: absolute;
  right: 0;
  bottom: 26px;
  left: 0;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: var(--radius-md);
  background: rgba(12, 7, 5, 0.52);
  backdrop-filter: blur(18px);
}

.proof-item {
  display: flex;
  min-height: 108px;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  padding: 20px 30px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.35;
}

.proof-item + .proof-item {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.proof-review {
  transition: background 160ms ease;
}

.proof-review:hover {
  background: rgba(255, 255, 255, 0.06);
}

.proof-value {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 750;
  letter-spacing: -0.03em;
}

.stars {
  color: #ffb229;
  font-size: 0.65em;
  letter-spacing: 0.03em;
  vertical-align: 0.15em;
}

.section {
  padding-block: 112px;
}

.section-heading {
  max-width: 700px;
}

.section-heading-wide {
  max-width: 880px;
  margin-bottom: 54px;
}

.section-heading h2,
.transformation-copy h2,
.brisa-copy h2,
.final-cta h2 {
  margin-bottom: 20px;
  font-size: clamp(38px, 4.4vw, 62px);
  font-weight: 750;
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.section-heading > p:last-child,
.process-intro > p,
.faq-intro > p {
  color: var(--muted);
  font-size: 18px;
}

.pain-section {
  position: relative;
  background: var(--cream);
}

.pain-section::after {
  position: absolute;
  top: 80px;
  right: -110px;
  width: 300px;
  height: 300px;
  border: 1px solid var(--sand);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 42px rgba(232, 219, 205, 0.22), 0 0 0 84px rgba(232, 219, 205, 0.12);
  pointer-events: none;
}

.pain-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.pain-card {
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 249, 0.76);
  padding: 32px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.pain-card:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 90, 40, 0.55);
  box-shadow: var(--shadow-sm);
}

.card-number {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 40px;
  place-items: center;
  border-radius: 50%;
  background: var(--flame-soft);
  color: var(--flame-dark);
  font-size: 13px;
  font-weight: 800;
}

.pain-card h3 {
  max-width: 440px;
  margin-bottom: 12px;
  font-size: clamp(22px, 2vw, 27px);
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.pain-card p {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.pain-answer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 26px;
  border-radius: var(--radius-md);
  background: var(--flame-dark);
  color: var(--white);
  padding: 28px 34px;
}

.pain-answer p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(21px, 2.5vw, 30px);
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.pain-answer span {
  max-width: 430px;
  color: var(--white);
  font-size: 16px;
  line-height: 1.5;
}

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

.process-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(48px, 7vw, 100px);
  align-items: start;
}

.process-intro {
  position: sticky;
  top: 120px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  border-bottom: 2px solid var(--flame);
  padding-bottom: 4px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
}

.text-link span {
  color: var(--flame);
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-block: 36px;
}

.process-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.process-number {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
}

.process-list h3 {
  margin-bottom: 10px;
  font-size: clamp(24px, 2.4vw, 32px);
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.process-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.transformation-section {
  overflow: hidden;
  background: var(--night);
  color: var(--white);
}

.transformation-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(44px, 7vw, 100px);
  align-items: center;
}

.transformation-photo {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--night-soft);
  box-shadow: var(--shadow-lg);
}

.transformation-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(16, 8, 5, 0.8), transparent 48%);
  content: "";
}

.transformation-photo img {
  width: 100%;
  height: 100%;
  min-height: 610px;
  object-fit: cover;
  object-position: 50% 28%;
}

.photo-caption {
  position: absolute;
  z-index: 1;
  right: 30px;
  bottom: 30px;
  left: 30px;
  display: flex;
  flex-direction: column;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

.photo-caption strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -0.04em;
}

.transformation-copy h2 em {
  color: var(--flame);
  font-style: normal;
}

.check-list {
  display: grid;
  gap: 15px;
  margin: 34px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

.check-list span {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  background: var(--flame);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
}

.result-note {
  border-left: 2px solid var(--flame);
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  padding-left: 18px;
  font-size: 15px;
}

.world-section {
  position: relative;
  min-height: 170vh;
  overflow: clip;
  background:
    radial-gradient(circle at 76% 42%, rgba(240, 90, 40, 0.16), transparent 28%),
    radial-gradient(circle at 18% 78%, rgba(216, 255, 103, 0.08), transparent 24%),
    #0d0a08;
  color: var(--white);
}

.world-section::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 68px 68px;
  content: "";
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}

.world-sticky {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  min-height: 100vh;
  align-items: center;
  padding-block: 104px 72px;
}

.world-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(40px, 6vw, 92px);
  align-items: center;
}

.world-copy {
  position: relative;
  z-index: 3;
  max-width: 560px;
}

.world-copy h2 {
  margin: 18px 0 24px;
  font-size: clamp(42px, 4.4vw, 70px);
  letter-spacing: -0.055em;
  line-height: 1.01;
}

.world-lead {
  max-width: 54ch;
  margin-bottom: 27px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.world-proof {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 13px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  margin: 30px 0;
  padding-block: 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.world-proof strong {
  border-radius: 999px;
  background: rgba(216, 255, 103, 0.12);
  padding: 6px 10px;
  color: var(--lime);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.button-world {
  background: var(--flame-dark);
  color: var(--white);
}

.button-world:hover {
  background: var(--flame-deep);
}

.world-visual {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: clamp(24px, 3vw, 42px);
  background: #090706;
  box-shadow: 0 45px 120px rgba(0, 0, 0, 0.55);
  isolation: isolate;
}

.world-halo {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: 72%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(240, 90, 40, 0.28);
  filter: blur(80px);
}

.world-canvas,
.world-static-pair {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.world-canvas {
  z-index: 2;
  opacity: 0;
  transition: opacity 260ms ease;
}

.world-static-pair {
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  opacity: 1;
  transition: opacity 260ms ease;
}

.world-static-pair img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.world-section.is-sequence-ready .world-canvas {
  opacity: 1;
}

.world-section.is-sequence-ready .world-static-pair {
  opacity: 0;
}

.world-section.is-static .world-canvas {
  display: none;
}

.world-section.is-static .world-static-pair {
  opacity: 1;
}

.world-stage-labels {
  position: absolute;
  z-index: 4;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  pointer-events: none;
}

.formats-section {
  background: var(--cream);
}

.section-heading-row {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.65fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 52px;
}

.section-heading-row h2 {
  margin-bottom: 0;
}

.section-heading-row > p {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 17px;
}

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

.format-card {
  position: relative;
  display: flex;
  min-height: 410px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  padding: 30px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.format-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
}

.format-card-featured {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.format-card-featured .format-tag,
.format-card-featured p {
  color: rgba(255, 255, 255, 0.68);
}

.format-card-featured .text-link {
  color: var(--white);
}

.format-tag {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.format-icon {
  display: grid;
  width: 62px;
  height: 62px;
  margin: 62px 0 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--flame-soft);
  color: var(--flame-dark);
  font-family: var(--font-display);
  font-size: 28px;
}

.format-card h3 {
  margin-bottom: 10px;
  font-size: 30px;
  letter-spacing: -0.045em;
}

.format-card p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 17px;
}

.format-card .text-link {
  align-self: flex-start;
  margin-top: auto;
}

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

.brisa-card {
  display: grid;
  min-height: 680px;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  overflow: hidden;
  border-radius: 40px;
  background:
    radial-gradient(circle at 15% 25%, rgba(133, 87, 255, 0.28), transparent 28%),
    radial-gradient(circle at 95% 100%, rgba(216, 255, 103, 0.12), transparent 30%), var(--night);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.brisa-visual {
  position: relative;
  display: grid;
  min-height: 680px;
  place-items: end center;
  overflow: hidden;
}

.brisa-visual::before {
  position: absolute;
  inset: 12% 4% -32%;
  border-radius: 50%;
  background: rgba(133, 87, 255, 0.2);
  filter: blur(14px);
  content: "";
}

.brisa-visual img {
  position: relative;
  z-index: 2;
  width: min(72%, 360px);
  max-height: 610px;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.34));
}

.brisa-orbit {
  position: absolute;
  border: 1px solid rgba(181, 160, 255, 0.26);
  border-radius: 50%;
}

.orbit-one {
  width: 430px;
  height: 430px;
  top: 100px;
  left: 20px;
}

.orbit-two {
  width: 300px;
  height: 300px;
  top: 165px;
  left: 85px;
}

.brisa-bubble {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
  padding: 9px 14px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.bubble-one {
  top: 140px;
  left: 32px;
}

.bubble-two {
  right: 22px;
  bottom: 140px;
}

.brisa-copy {
  align-self: center;
  padding: 64px clamp(42px, 6vw, 80px) 64px 30px;
}

.eyebrow-brisa {
  color: var(--lime);
}

.brisa-copy h2 {
  max-width: 600px;
  font-size: clamp(40px, 4.4vw, 64px);
}

.brisa-copy > p:not(.eyebrow):not(.brisa-note) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.brisa-list {
  display: grid;
  gap: 12px;
  margin: 30px 0 34px;
  padding: 0;
  list-style: none;
}

.brisa-list li {
  display: grid;
  grid-template-columns: 25px 1fr;
  gap: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
}

.brisa-list span {
  color: var(--lime);
  font-weight: 800;
}

.button-brisa {
  background: var(--lime);
  color: #182006;
  box-shadow: 0 14px 35px rgba(216, 255, 103, 0.18);
}

.button-brisa:hover {
  background: #e3ff91;
}

.brisa-note {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
  font-weight: 650;
}

.featured-story-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 46%, rgba(240, 90, 40, 0.18), transparent 34%),
    var(--night);
  color: var(--white);
}

.featured-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(48px, 8vw, 112px);
  align-items: center;
}

.featured-story-copy h2 {
  max-width: 820px;
  margin: 18px 0 22px;
  font-size: clamp(40px, 5vw, 70px);
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.featured-story-copy > p:not(.eyebrow) {
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.76);
  font-size: 19px;
}

.featured-story-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  align-items: center;
  margin-top: 32px;
}

.text-link-light {
  border-color: var(--flame-soft);
  color: var(--white);
}

.text-link-light span {
  color: var(--flame-soft);
}

.featured-story-video {
  width: min(100%, 360px);
  justify-self: end;
}

.featured-story-video .video-shell {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.45);
}

.stories-section {
  background: var(--cream);
}

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

.story-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  box-shadow: 0 12px 45px rgba(39, 24, 15, 0.04);
}

.video-shell {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: var(--night);
}

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

.video-poster {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 0;
  background: var(--night);
  color: var(--white);
  cursor: pointer;
}

.video-poster::before,
.video-poster::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.video-poster::before {
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 48%, rgba(11, 7, 5, 0.68) 100%);
}

.video-poster::after {
  inset: 0;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: inherit;
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.video-poster:hover .video-thumbnail {
  transform: scale(1.05);
}

.play-button {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 72px;
  height: 72px;
  transform: translate(-50%, -50%);
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-size: 23px;
  text-indent: 4px;
  backdrop-filter: blur(10px);
  transition: transform 180ms ease, background 180ms ease;
}

.video-poster:hover .play-button {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--flame);
}

.video-duration {
  position: absolute;
  z-index: 2;
  right: 15px;
  bottom: 15px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.5);
  padding: 5px 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 700;
}

.story-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 25px 25px 28px;
}

.story-copy > span {
  color: var(--flame-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-copy h3 {
  margin: 8px 0 9px;
  font-size: 21px;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.story-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
}

.noscript-videos {
  margin-top: 20px;
}

.noscript-videos a {
  color: var(--flame-dark);
  text-decoration: underline;
}

.review-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 28px;
  border-radius: var(--radius-md);
  background: var(--paper);
  padding: 28px 32px;
  box-shadow: var(--shadow-sm);
}

.review-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.review-score strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: -0.045em;
}

.review-score .stars {
  font-size: 18px;
}

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

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 120px;
}

.faq-list details {
  border-top: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr 32px;
  gap: 24px;
  align-items: center;
  padding-block: 26px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.35;
  list-style: none;
}

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

.faq-list summary span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: var(--cream-strong);
  color: var(--flame-dark);
  font-family: var(--font-body);
  font-size: 22px;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
  background: var(--flame-dark);
  color: var(--white);
}

.faq-list details p {
  max-width: 680px;
  margin: -5px 48px 25px 0;
  color: var(--muted);
  font-size: 17px;
}

.final-cta {
  background: var(--flame-dark);
  color: var(--white);
  padding-block: 90px;
}

.final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 70px;
  align-items: center;
}

.final-cta h2 {
  max-width: 760px;
  margin-bottom: 16px;
}

.final-cta p:not(.eyebrow) {
  max-width: 710px;
  margin-bottom: 0;
  color: var(--white);
}

.final-cta .eyebrow {
  color: var(--white);
}

.final-actions {
  display: flex;
  min-width: 286px;
  flex-direction: column;
  gap: 12px;
}

.final-cta .button-primary {
  background: var(--white);
  color: var(--flame-dark);
  box-shadow: 0 18px 40px rgba(93, 27, 4, 0.22);
}

.final-cta .button-primary:hover {
  background: var(--cream);
}

.site-footer {
  background: #0f0b09;
  color: rgba(255, 255, 255, 0.68);
  padding: 72px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 0.75fr 0.75fr;
  gap: 48px;
}

.brand-footer {
  margin-bottom: 18px;
  color: var(--white);
}

.footer-brand p {
  max-width: 320px;
  font-size: 16px;
}

.footer-grid h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-grid a,
.footer-link-button {
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  line-height: 1.45;
  transition: color 150ms ease;
}

.footer-grid a:hover,
.footer-link-button:hover {
  color: var(--white);
}

.footer-link-button {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  text-align: left;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-top: 54px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
}

.mobile-sticky-cta {
  display: none;
}

.consent-banner {
  position: fixed;
  z-index: 300;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: grid;
  grid-template-columns: minmax(240px, 1.1fr) minmax(280px, 1fr) auto;
  max-width: 1180px;
  align-items: center;
  gap: 28px;
  margin-inline: auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(23, 17, 15, 0.97);
  color: var(--white);
  padding: 20px 22px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
}

.consent-banner[hidden] {
  display: none;
}

.consent-banner strong {
  font-family: var(--font-display);
  font-size: 17px;
}

.consent-banner p {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.45;
}

.consent-banner p a {
  color: var(--white);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.consent-options {
  display: grid;
  gap: 8px;
}

.consent-options label {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  cursor: pointer;
}

.consent-options input {
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
  accent-color: var(--flame-dark);
}

.consent-options input:disabled {
  cursor: not-allowed;
}

.consent-options label > span {
  display: grid;
  gap: 1px;
}

.consent-options strong {
  font-family: var(--font-body);
  font-size: 14px;
}

.consent-options small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.35;
}

.consent-actions {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  gap: 10px;
}

.consent-actions .button {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 14px;
}

.button-consent-secondary {
  border-color: rgba(255, 255, 255, 0.3);
  background: transparent;
  color: var(--white);
}

.legal-page {
  min-height: 100vh;
  background: var(--paper);
}

.legal-header {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.94);
}

.legal-header-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.legal-header .brand {
  color: var(--ink);
}

.legal-main {
  padding-block: 72px 110px;
}

.legal-hero {
  max-width: 860px;
  margin-bottom: 54px;
}

.legal-hero h1 {
  margin: 16px 0 22px;
  font-size: clamp(42px, 6vw, 76px);
  letter-spacing: -0.06em;
  line-height: 1;
}

.legal-hero > p:not(.eyebrow) {
  max-width: 70ch;
  color: var(--muted);
}

.legal-content {
  display: grid;
  grid-template-columns: minmax(200px, 0.32fr) minmax(0, 1fr);
  gap: clamp(42px, 7vw, 90px);
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: 32px;
  display: grid;
  gap: 10px;
  border-left: 2px solid var(--line);
  padding-left: 20px;
}

.legal-nav a {
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.legal-nav a:hover {
  color: var(--flame-dark);
}

.legal-sections {
  max-width: 820px;
  min-width: 0;
}

.legal-section {
  scroll-margin-top: 24px;
  border-top: 1px solid var(--line);
  padding-block: 34px;
}

.legal-section:first-child {
  border-top: 0;
  padding-top: 0;
}

.legal-section h2 {
  margin-bottom: 14px;
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: -0.04em;
}

.legal-section h3 {
  margin: 24px 0 8px;
  font-size: 20px;
}

.legal-section p,
.legal-section li {
  color: var(--muted);
  font-size: 16px;
}

.legal-section a {
  color: var(--flame-dark);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-section ul {
  padding-left: 22px;
}

.legal-table-wrap {
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
  margin-block: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
  background: var(--white);
}

.legal-table th,
.legal-table td {
  border-bottom: 1px solid var(--line);
  padding: 15px 17px;
  text-align: left;
  vertical-align: top;
  font-size: 14px;
}

.legal-table th {
  background: var(--cream);
  color: var(--ink);
}

.legal-table td {
  color: var(--muted);
}

.legal-table tr:last-child td {
  border-bottom: 0;
}

.legal-callout {
  border-radius: var(--radius-md);
  background: var(--cream);
  padding: 26px;
}

body.reveal-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

body.reveal-enabled [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

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

  .menu-toggle {
    display: grid;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 720px);
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(21, 13, 9, 0.97) 0%, rgba(21, 13, 9, 0.78) 52%, rgba(21, 13, 9, 0.28) 100%),
      linear-gradient(0deg, rgba(21, 13, 9, 0.96) 0%, rgba(21, 13, 9, 0.08) 55%);
  }

  .brisa-card {
    grid-template-columns: 0.78fr 1.22fr;
  }

  .brisa-visual img {
    width: 78%;
  }

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

  .footer-grid {
    grid-template-columns: 1.25fr repeat(3, 1fr);
    gap: 28px;
  }

  .consent-banner {
    grid-template-columns: 1fr 1fr;
  }

  .consent-intro {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(100% - 36px, 720px);
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 930px;
  }

  .hero-media img {
    object-position: 65% 40%;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(21, 13, 9, 0.9), rgba(21, 13, 9, 0.55)),
      linear-gradient(0deg, rgba(21, 13, 9, 0.98) 0%, rgba(21, 13, 9, 0.25) 70%);
  }

  .hero-grid {
    padding-top: 132px;
    padding-bottom: 300px;
  }

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

  .proof-item {
    min-height: 74px;
    padding: 13px 22px;
  }

  .proof-item + .proof-item {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
  }

  .pain-grid,
  .featured-story-grid,
  .process-layout,
  .transformation-grid,
  .world-grid,
  .section-heading-row,
  .brisa-card,
  .faq-layout,
  .final-cta-inner {
    grid-template-columns: 1fr;
  }

  .process-intro,
  .faq-intro {
    position: static;
  }

  .transformation-photo {
    min-height: 500px;
  }

  .transformation-photo img {
    min-height: 500px;
  }

  .world-section {
    min-height: auto;
  }

  .world-sticky {
    position: relative;
    min-height: 0;
    padding-block: 96px;
  }

  .world-grid {
    gap: 38px;
  }

  .world-copy {
    max-width: 660px;
  }

  .world-visual {
    width: 100%;
  }

  .section-heading-row {
    gap: 18px;
  }

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

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

  .featured-story-video {
    justify-self: start;
  }

  .legal-content {
    grid-template-columns: 1fr;
  }

  .legal-nav {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .format-card {
    min-height: 340px;
  }

  .format-icon {
    margin-top: 38px;
  }

  .brisa-card {
    width: min(100% - 36px, 720px);
  }

  .brisa-visual {
    min-height: 520px;
  }

  .brisa-visual img {
    width: min(58%, 300px);
    max-height: 470px;
  }

  .brisa-copy {
    padding: 20px 34px 54px;
  }

  .video-grid {
    max-width: 720px;
    margin-inline: auto;
  }

  .review-banner {
    align-items: flex-start;
  }

  .final-cta-inner {
    gap: 34px;
  }

  .final-actions {
    min-width: 0;
    align-items: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 580px) {
  html {
    scroll-padding-top: 76px;
  }

  body {
    padding-bottom: 72px;
    font-size: 17px;
  }

  body.legal-page {
    padding-bottom: 0;
  }

  .container {
    width: min(100% - 28px, 520px);
  }

  .header-inner {
    min-height: 70px;
  }

  .brand {
    font-size: 19px;
  }

  .brand img {
    height: 34px;
  }

  .mobile-menu {
    inset: 71px 0 auto;
    max-height: calc(100vh - 71px);
  }

  .hero {
    min-height: 920px;
  }

  .hero-media img {
    object-position: 68% 46%;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(21, 13, 9, 1) 0%, rgba(21, 13, 9, 0.83) 54%, rgba(21, 13, 9, 0.42) 100%),
      linear-gradient(90deg, rgba(21, 13, 9, 0.35), rgba(21, 13, 9, 0.08));
  }

  .hero-grid {
    align-self: start;
    padding-top: 124px;
    padding-bottom: 310px;
  }

  .hero-copy h1 {
    font-size: clamp(42px, 13vw, 62px);
    letter-spacing: -0.062em;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero .button-row,
  .hero .button {
    width: 100%;
  }

  .hero-note {
    font-size: 13px;
  }

  .proof-bar {
    bottom: 18px;
  }

  .proof-item {
    min-height: 70px;
    padding: 12px 18px;
  }

  .proof-value {
    font-size: 18px;
  }

  .section {
    padding-block: 78px;
  }

  .section-heading-wide {
    margin-bottom: 36px;
  }

  .section-heading h2,
  .transformation-copy h2,
  .world-copy h2,
  .brisa-copy h2,
  .final-cta h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .pain-grid {
    gap: 12px;
  }

  .pain-card {
    min-height: 0;
    padding: 25px;
  }

  .card-number {
    margin-bottom: 28px;
  }

  .pain-answer {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    padding: 25px;
  }

  .process-layout {
    gap: 34px;
  }

  .process-list li {
    grid-template-columns: 48px 1fr;
    gap: 16px;
    padding-block: 28px;
  }

  .process-number {
    width: 44px;
    height: 44px;
    font-size: 17px;
  }

  .transformation-photo,
  .transformation-photo img {
    min-height: 420px;
  }

  .transformation-photo {
    border-radius: var(--radius-md);
  }

  .transformation-photo img {
    object-position: 50% 24%;
  }

  .photo-caption {
    right: 22px;
    bottom: 22px;
    left: 22px;
  }

  .check-list li {
    font-size: 17px;
  }

  .world-sticky {
    padding-block: 78px;
  }

  .world-copy h2 {
    margin-top: 14px;
  }

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

  .world-visual {
    border-radius: var(--radius-md);
  }

  .world-stage-labels {
    right: 12px;
    bottom: 12px;
    left: 12px;
    font-size: 9px;
  }

  .video-grid {
    max-width: 370px;
    grid-template-columns: 1fr;
  }

  .format-card {
    min-height: 330px;
    padding: 25px;
  }

  .brisa-card {
    width: min(100% - 20px, 540px);
    border-radius: 28px;
  }

  .brisa-visual {
    min-height: 430px;
  }

  .brisa-visual img {
    width: min(64%, 265px);
    max-height: 390px;
  }

  .orbit-one {
    top: 55px;
    left: 50%;
    width: 340px;
    height: 340px;
    transform: translateX(-50%);
  }

  .orbit-two {
    top: 105px;
    left: 50%;
    width: 240px;
    height: 240px;
    transform: translateX(-50%);
  }

  .bubble-one {
    top: 80px;
    left: 16px;
  }

  .bubble-two {
    right: 12px;
    bottom: 90px;
  }

  .brisa-copy {
    padding: 8px 24px 38px;
  }

  .brisa-copy .button-row,
  .brisa-copy .button {
    width: 100%;
  }

  .story-copy {
    padding: 22px;
  }

  .review-banner {
    flex-direction: column;
    gap: 20px;
    padding: 25px;
  }

  .review-banner .button {
    width: 100%;
  }

  .faq-layout {
    gap: 34px;
  }

  .faq-list summary {
    font-size: 18px;
  }

  .final-cta {
    padding-block: 72px;
  }

  .final-actions,
  .final-actions .button {
    width: 100%;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }

  .mobile-sticky-cta {
    position: fixed;
    z-index: 90;
    right: 12px;
    bottom: 10px;
    left: 12px;
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--flame-dark);
    color: var(--white);
    box-shadow: 0 14px 34px rgba(67, 24, 8, 0.32);
    font-size: 16px;
    font-weight: 800;
  }

  body.menu-open .mobile-sticky-cta {
    display: none;
  }

  .consent-banner {
    right: 10px;
    bottom: 72px;
    left: 10px;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 14px;
    padding: 18px;
  }

  .legal-page .consent-banner {
    bottom: 10px;
  }

  .consent-actions,
  .consent-actions .button {
    width: 100%;
  }


  .consent-intro {
    grid-column: auto;
  }

  .legal-header-inner {
    min-height: 72px;
  }

  .legal-header .button {
    min-height: 42px;
    padding: 10px 15px;
    font-size: 13px;
  }

  .legal-main {
    padding-block: 54px 90px;
  }

  .legal-nav {
    grid-template-columns: 1fr;
  }
}

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

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

  body.reveal-enabled [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
