:root {
  --navy: #001a2f;
  --navy-2: #05253e;
  --wine: #7c1520;
  --cream: #fff5ee;
  --cream-2: #f6e5d7;
  --paper: #fffaf5;
  --ink: #25140f;
  --muted: #705f57;
  --copper: #bd7c4d;
  --gold: #d8a968;
  --line: rgba(121, 70, 43, 0.22);
  --line-dark: rgba(255, 229, 201, 0.24);
  --shadow: 0 24px 70px rgba(30, 15, 8, 0.16);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Inter", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
}

.top-strip {
  display: grid;
  place-items: center;
  min-height: 38px;
  padding: 8px 18px;
  color: #fff4ec;
  background: linear-gradient(90deg, #6a111b, #8b1b27 52%, #68111a);
  font-size: clamp(0.78rem, 2vw, 0.95rem);
  font-weight: 800;
  text-align: center;
}

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

.narrow {
  width: min(840px, calc(100% - 40px));
}

.section {
  padding: clamp(54px, 8vw, 92px) 0;
}

.section-soft {
  background:
    radial-gradient(circle at 92% 0, rgba(216, 169, 104, 0.13), transparent 30rem),
    linear-gradient(180deg, #fff9f4, var(--cream));
}

.section-dark {
  color: #fff6ee;
  background:
    radial-gradient(circle at 88% 16%, rgba(216, 169, 104, 0.15), transparent 24rem),
    linear-gradient(135deg, var(--navy), #001425 52%, #062b45);
}

.hero {
  --hero-image: url("./img/foto1.jpg");
  position: relative;
  min-height: calc(100svh - 38px);
  display: grid;
  align-items: center;
  color: #fff8ef;
  background:
    linear-gradient(90deg, rgba(0, 13, 25, 0.1), rgba(0, 13, 25, 0.08)),
    var(--hero-image) center right / cover no-repeat,
    linear-gradient(135deg, #00101f, var(--navy) 45%, #082f4b);
  overflow: visible;
}

@supports (background-image: image-set(url("./img/foto1.webp") type("image/webp"))) {
  .hero {
    --hero-image: image-set(
      url("./img/foto1.webp") type("image/webp"),
      url("./img/foto1.jpg") type("image/jpeg")
    );
  }
}

.hero-inner {
  width: 100%;
  min-height: calc(100svh - 38px);
  display: flex;
  align-items: center;
  padding: clamp(34px, 4.4vw, 58px) 7%;
}

.hero-copy {
  width: min(75%, 920px);
}

.hero-portrait {
  display: none;
}

.brand {
  display: inline-grid;
  gap: 2px;
  margin-bottom: 18px;
  color: #f7d9ad;
  font-family: var(--serif);
  text-transform: uppercase;
}

.brand span {
  font-size: clamp(2.25rem, 4vw, 3.55rem);
  letter-spacing: -0.03em;
  line-height: 0.92;
}

.brand small {
  color: rgba(255, 245, 235, 0.82);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.event-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.event-pills span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 6px 12px;
  border: 1px solid rgba(216, 169, 104, 0.66);
  border-radius: 999px;
  color: #f7dfbd;
  background: rgba(0, 10, 20, 0.24);
  font-size: 0.78rem;
  font-weight: 800;
}

.event-pills span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(216, 169, 104, 0.12);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.03;
}

.hero h1 {
  max-width: min(720px, 72vw);
  font-size: clamp(2.5rem, 3.2vw, 4.35rem);
  letter-spacing: -0.04em;
}

.hero p {
  max-width: 650px;
  margin: 16px 0 20px;
  color: rgba(255, 250, 244, 0.84);
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  line-height: 1.5;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 0;
  border-radius: 8px;
  padding: 14px 26px;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
  isolation: isolate;
  transition: transform 220ms ease, filter 220ms ease, box-shadow 220ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  filter: saturate(1.05) brightness(1.03);
}

.btn-primary {
  color: #fff7ed;
  background: linear-gradient(180deg, #e1a569, #b87345 52%, #9d5b34);
  box-shadow: 0 16px 34px rgba(145, 75, 38, 0.28);
}

.offer-cta {
  overflow: visible;
  border: 1px solid rgba(255, 228, 190, 0.38);
  padding: 0 22px;
  white-space: nowrap;
  box-shadow:
    0 16px 34px rgba(145, 75, 38, 0.28),
    inset 0 1px 0 rgba(255, 241, 220, 0.36);
}

.offer-cta::before {
  content: "";
  position: absolute;
  inset: -10px -14px;
  z-index: -1;
  border-radius: 14px;
  background:
    radial-gradient(circle at 18% 50%, rgba(255, 226, 176, 0.5), transparent 34%),
    linear-gradient(90deg, transparent, rgba(255, 205, 133, 0.42), transparent);
  filter: blur(14px);
  opacity: 0.42;
  transform: translateX(-8px) scale(0.98);
  animation: ctaGlow 3.8s ease-in-out infinite;
}

.offer-cta::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 7px;
  background: linear-gradient(110deg, transparent 0 28%, rgba(255, 255, 255, 0.26) 45%, transparent 62%);
  opacity: 0;
  transform: translateX(-30%);
  transition: opacity 220ms ease, transform 520ms ease;
}

.offer-cta:hover::after {
  opacity: 1;
  transform: translateX(34%);
}

.play-dot {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.play-dot::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 3px;
  border-block: 8px solid transparent;
  border-left: 12px solid var(--gold);
}

.hero-vsl {
  position: relative;
  z-index: 4;
  width: min(920px, 88%);
  margin: -36px auto -250px;
  transform: translateY(50%);
}

.hero-vsl-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(235, 195, 131, 0.52);
  border-radius: 12px;
  background: #06111a;
  box-shadow:
    0 26px 70px rgba(0, 10, 18, 0.42),
    0 0 0 5px rgba(255, 248, 238, 0.08);
}

.hero-vsl-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}

.hero-vsl-frame.is-playing iframe {
  pointer-events: auto;
}

.inline-video-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 10px;
  border: 0;
  color: #fff8ef;
  background: linear-gradient(180deg, rgba(0, 18, 31, 0.04), rgba(0, 12, 22, 0.42));
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 220ms ease;
}

.inline-video-play:hover {
  background: linear-gradient(180deg, rgba(0, 18, 31, 0), rgba(0, 12, 22, 0.28));
}

.inline-video-play[hidden] {
  display: none;
}

.inline-video-play .play-dot {
  width: 58px;
  height: 58px;
  border-color: #f5c779;
  background: rgba(0, 20, 34, 0.74);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.hero-vsl .hero-cta {
  width: min(420px, 100%);
  min-height: 56px;
  margin: 16px auto 0;
  color: #f7fff9;
  background: linear-gradient(180deg, #2f9f65, #167447 58%, #0e5d37);
  border-color: rgba(188, 255, 215, 0.5);
  box-shadow:
    0 18px 38px rgba(8, 92, 51, 0.3),
    inset 0 1px 0 rgba(225, 255, 237, 0.34);
}

.hero-vsl .hero-cta::before {
  background:
    radial-gradient(circle at 18% 50%, rgba(122, 241, 167, 0.42), transparent 34%),
    linear-gradient(90deg, transparent, rgba(65, 197, 119, 0.36), transparent);
}

.after-hero {
  padding-top: clamp(310px, 27vw, 390px);
}

@media (min-width: 641px) {
  .hero-vsl .hero-cta {
    display: flex;
    margin: 30px auto 0;
  }
}

@keyframes ctaGlow {
  0%,
  100% {
    opacity: 0.32;
    transform: translateX(-8px) scale(0.98);
  }

  50% {
    opacity: 0.68;
    transform: translateX(8px) scale(1.02);
  }
}

@media (min-width: 1600px) {
  .hero h1 {
    max-width: min(860px, 72vw);
  }
}

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

.soft-panel,
.fit article,
.mini-card,
.day-card,
.price-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 252, 248, 0.72);
  box-shadow: 0 16px 50px rgba(63, 32, 16, 0.06);
}

.soft-panel,
.fit article {
  padding: clamp(24px, 3.4vw, 36px);
}

.soft-panel h2,
.fit h2 {
  margin-bottom: 18px;
  color: #4a2a1c;
  font-size: clamp(1.9rem, 3vw, 3rem);
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #3f332f;
  font-size: 0.98rem;
  line-height: 1.48;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  top: 0.05em;
  left: 0;
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  border: 1px solid rgba(189, 124, 77, 0.45);
  border-radius: 50%;
  color: var(--copper);
  font-size: 0.72rem;
  font-weight: 900;
}

.check-list-negative li::before {
  content: "×";
  color: #a4473b;
  border-color: rgba(164, 71, 59, 0.42);
  font-size: 0.9rem;
  line-height: 1;
}

.story-grid,
.discovery-grid,
.schedule-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: center;
}

.story h2,
.schedule h2 {
  color: #f0c28a;
  font-size: clamp(2.2rem, 4.2vw, 4.2rem);
}

.story p {
  max-width: 610px;
  margin: 13px 0 0;
  color: rgba(255, 247, 237, 0.8);
  line-height: 1.66;
}

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

.photo-grid picture {
  display: block;
  width: 100%;
  aspect-ratio: 1.28 / 1;
  overflow: hidden;
  border: 1px solid rgba(255, 224, 190, 0.18);
  border-radius: 12px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.photo-grid .carousel-clone-wrap {
  display: none;
}

.photo-carousel {
  min-width: 0;
}

.carousel-clone {
  display: none;
}

.photo-grid img,
.feature-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-photo {
  width: 100%;
  max-width: 560px;
  margin: 0;
}

.feature-photo picture {
  display: block;
  width: 100%;
  aspect-ratio: 1.28 / 1;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 18px 50px rgba(63, 32, 16, 0.12);
}

.feature-photo img {
  object-position: center 38%;
}

.discovery h2 {
  margin-bottom: 22px;
  color: #4a2a1c;
  font-size: clamp(2.15rem, 4vw, 4rem);
}

.compact {
  gap: 10px;
}

.promise {
  text-align: center;
  background:
    radial-gradient(circle at 50% 0, rgba(216, 169, 104, 0.16), transparent 28rem),
    linear-gradient(180deg, #fff8f1, #fff1e6);
}

.promise .narrow p {
  margin: 0 auto 16px;
  max-width: 860px;
  color: var(--muted);
  line-height: 1.7;
}

.promise h2 {
  margin: 18px auto;
  max-width: 960px;
  color: #3a1d14;
  font-size: clamp(2.2rem, 4.4vw, 4.6rem);
}

.card-grid {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

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

.mini-card {
  min-height: 150px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 12px;
  padding: 22px;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.mini-card:hover {
  transform: translateY(-4px);
  border-color: rgba(189, 124, 77, 0.4);
  background: rgba(255, 252, 248, 0.95);
}

.mini-card p {
  margin: 0;
  color: #4b3c36;
  font-weight: 650;
  line-height: 1.38;
}

.line-icon {
  width: 42px;
  height: 42px;
  display: block;
  color: var(--copper);
  background:
    linear-gradient(currentColor, currentColor) center / 54% 2px no-repeat,
    radial-gradient(circle, transparent 46%, currentColor 48% 52%, transparent 54%);
  opacity: 0.9;
}

.person { border-radius: 50%; box-shadow: inset 0 0 0 2px currentColor; }
.alert { clip-path: polygon(50% 5%, 96% 86%, 4% 86%); background: currentColor; opacity: 0.65; }
.diamond { transform: rotate(45deg); border: 2px solid currentColor; background: none; }
.balance { border-bottom: 2px solid currentColor; border-top: 2px solid currentColor; background: none; }
.chip { border: 2px solid currentColor; border-radius: 8px; background: none; }
.network { border: 2px solid currentColor; border-radius: 50% 50% 12px 12px; background: none; }
.hidden { border: 2px solid currentColor; border-radius: 50%; background: none; }
.target { border-radius: 50%; box-shadow: inset 0 0 0 2px currentColor, inset 0 0 0 12px rgba(189, 124, 77, 0.08); }
.star { clip-path: polygon(50% 0,61% 35%,98% 35%,68% 56%,79% 91%,50% 70%,21% 91%,32% 56%,2% 35%,39% 35%); background: currentColor; opacity: 0.7; }
.clarity { border: 2px solid currentColor; border-radius: 8px; background: none; }
.people { border-radius: 999px; box-shadow: inset 0 0 0 2px currentColor; background: none; }
.crown { clip-path: polygon(7% 84%,16% 28%,38% 56%,50% 15%,62% 56%,84% 28%,93% 84%); background: currentColor; opacity: 0.72; }

.outcome {
  margin-top: 36px;
}

.outcome h3 {
  margin-bottom: 20px;
  color: #3a1d14;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

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

.outcome-row .mini-card {
  min-height: 142px;
  padding: 16px 14px;
}

.outcome-row .mini-card p {
  font-size: 0.88rem;
}

.closing-line {
  margin: 22px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.promise-ref {
  position: relative;
  overflow: hidden;
  padding: clamp(58px, 7vw, 90px) 0 clamp(50px, 6vw, 78px);
  text-align: center;
  background:
    linear-gradient(168deg, rgba(255, 255, 255, 0.42) 0 13%, transparent 13.2%),
    linear-gradient(12deg, rgba(255, 255, 255, 0.5) 0 15%, transparent 15.2%),
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.78), transparent 21rem),
    radial-gradient(circle at 83% 3%, rgba(216, 169, 104, 0.18), transparent 28rem),
    linear-gradient(180deg, #fff8f1, #f3e4d8);
}

.promise-shell {
  width: min(1360px, calc(100% - 48px));
  margin-inline: auto;
}

.promise-badge {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 auto 24px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  padding: 12px 22px;
  color: #7d4a2e;
  background: rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(14px) saturate(1.08);
  -webkit-backdrop-filter: blur(14px) saturate(1.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 16px 44px rgba(63, 32, 16, 0.06);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.promise-badge span:first-child::before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-right: 9px;
  border: 1px solid currentColor;
  border-radius: 3px;
  box-shadow: inset 0 4px 0 rgba(125, 74, 46, 0.16);
  vertical-align: -2px;
}

.promise-badge i {
  width: 1px;
  height: 18px;
  background: rgba(125, 74, 46, 0.36);
}

.promise-heading {
  width: min(940px, 100%);
  margin-inline: auto;
}

.promise-heading h2 {
  margin: 0 auto 18px;
  max-width: 900px;
  color: #2f1b14;
  font-size: clamp(2.35rem, 3.15vw, 3rem);
  letter-spacing: -0.025em;
  line-height: 1.04;
}

.promise-heading h2 em {
  color: #8d5b32;
  font-style: normal;
}

.promise-heading p {
  margin: 0 auto 18px;
  max-width: 820px;
  color: #6f5a4f;
  font-size: 1rem;
  line-height: 1.6;
}

.promise-grid {
  width: min(1040px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 34px auto 34px;
}

.promise-card {
  min-height: 134px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 18px;
  padding: 24px 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(255, 247, 240, 0.25)),
    rgba(255, 250, 245, 0.3);
  backdrop-filter: blur(18px) saturate(1.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 14px 36px rgba(48, 25, 13, 0.055);
  transition:
    transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 320ms ease,
    background 320ms ease,
    box-shadow 320ms ease;
}

.promise-card:hover,
.outcome-item:hover {
  transform: translateY(-2px);
  border-color: rgba(189, 124, 77, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(255, 247, 240, 0.3)),
    rgba(255, 250, 245, 0.36);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 18px 44px rgba(48, 25, 13, 0.085);
}

.promise-card p,
.outcome-item p {
  margin: 0;
  color: #382720;
  font-size: 1rem;
  line-height: 1.45;
}

.promise-card strong {
  font-weight: 900;
}

.promise-card p::after {
  content: "";
  display: block;
  width: 34px;
  height: 1px;
  margin: 14px auto 0;
  background: rgba(141, 91, 50, 0.55);
}

.promise-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(141, 91, 50, 0.26);
  border-radius: 50%;
  color: #8d5b32;
  background: rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 0 0 7px rgba(141, 91, 50, 0.04);
}

.promise-icon::before {
  font-size: 1.55rem;
  line-height: 1;
}

.icon-profile::before { content: "♙"; }
.icon-alert::before { content: "!"; font-family: var(--serif); font-weight: 700; }
.icon-gem::before { content: "◇"; }
.icon-shield::before { content: "♢"; }
.icon-spark::before { content: "✦"; }
.icon-position::before { content: "⌾"; }
.icon-eye::before { content: "◉"; }
.icon-target::before { content: "◎"; }
.icon-star::before { content: "☆"; }
.icon-pin::before { content: "⌖"; }
.icon-people::before { content: "♁"; }
.icon-crown::before { content: "♕"; }

.outcome-ref {
  width: min(1040px, 100%);
  margin: 22px auto 0;
}

.outcome-ref h3 {
  margin-bottom: 20px;
  color: #342018;
  font-family: var(--serif);
  line-height: 1;
  text-transform: uppercase;
}

.outcome-ref h3 small {
  display: block;
  margin-bottom: 4px;
  color: #3a2a23;
  font-size: clamp(0.95rem, 1.25vw, 1.12rem);
  font-weight: 500;
  letter-spacing: 0.06em;
}

.outcome-ref h3 span {
  color: #8d5b32;
  font-size: clamp(2.15rem, 3.15vw, 3rem);
  letter-spacing: 0.01em;
}

.outcome-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 32px;
  background: rgba(255, 250, 245, 0.34);
  backdrop-filter: blur(18px) saturate(1.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 14px 36px rgba(48, 25, 13, 0.055);
}

.outcome-item {
  min-height: 156px;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 12px;
  padding: 24px 18px 18px;
  border-right: 1px solid rgba(141, 91, 50, 0.14);
  transition:
    transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 320ms ease,
    background 320ms ease;
}

.outcome-item:last-child {
  border-right: 0;
}

.outcome-item .promise-icon {
  width: 42px;
  height: 42px;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.outcome-item .promise-icon::before {
  font-size: 2rem;
}

.outcome-item p {
  font-size: 0.92rem;
}

.promise-ref .closing-line {
  margin-top: 22px;
  color: #7b665b;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}

.schedule-grid {
  grid-template-columns: 0.68fr 1.32fr;
}

.event-pills.vertical {
  display: grid;
  justify-content: start;
  margin-top: 26px;
}

.day-stack {
  display: grid;
  gap: 18px;
}

.day-card {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 18px;
  padding: clamp(22px, 3vw, 30px);
  color: #452518;
  background: rgba(255, 247, 239, 0.97);
}

.day-card > span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(189, 124, 77, 0.42);
  border-radius: 50%;
  color: var(--copper);
  font-family: var(--serif);
  font-size: 1.6rem;
}

.day-card h3 {
  margin-bottom: 10px;
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
}

.day-card ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 18px;
}

.day-card li {
  line-height: 1.42;
}

.fit {
  align-items: start;
}

.fit article {
  height: 100%;
  background: transparent;
  box-shadow: none;
}

.offer {
  padding: clamp(58px, 7vw, 92px) 0;
  background:
    radial-gradient(circle at 72% 18%, rgba(216, 169, 104, 0.12), transparent 28rem),
    linear-gradient(135deg, #050d12, #001a2f 62%, #06131b);
}

.offer-v2 {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.85fr);
  gap: clamp(34px, 5vw, 62px);
  align-items: start;
}

.offer-left h2 {
  color: #f5c583;
  max-width: 760px;
  font-size: clamp(2.45rem, 3.55vw, 4.45rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.offer-left h2 em {
  font-style: italic;
}

.offer-left > p {
  max-width: 650px;
  margin: 22px 0 42px;
  color: rgba(255, 246, 237, 0.88);
  font-size: clamp(1.12rem, 1.7vw, 1.45rem);
  line-height: 1.58;
}

.offer-benefits {
  display: grid;
  gap: 22px;
}

.offer-benefits article,
.offer-bonus,
.offer-proof,
.offer-card-v2,
.countdown-box {
  border: 1px solid rgba(216, 169, 104, 0.28);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    rgba(0, 11, 18, 0.28);
  backdrop-filter: blur(14px) saturate(1.08);
  -webkit-backdrop-filter: blur(14px) saturate(1.08);
}

.offer-benefits article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: center;
  border: 0;
  background: transparent;
}

.offer-benefits span,
.offer-bonus > span,
.offer-proof > article > span:not(.avatar-stack) {
  position: relative;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(216, 169, 104, 0.7);
  border-radius: 50%;
  color: #f5c583;
  font-size: 0;
  overflow: hidden;
  transition: border-color 240ms ease, background 240ms ease, transform 240ms ease;
}

.offer-icon svg,
.proof-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: #f5c583;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 10px rgba(245, 197, 131, 0.16));
}

.offer-benefits article:hover span,
.offer-bonus:hover > span {
  transform: translateY(-1px);
  border-color: rgba(255, 218, 159, 0.9);
  background: rgba(216, 169, 104, 0.08);
}

.offer-benefits h3,
.offer-bonus h3,
.offer-proof h3 {
  margin: 0 0 5px;
  color: #fff6ed;
  font-family: var(--sans);
  font-size: 0.96rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.offer-benefits p,
.offer-bonus p,
.offer-proof p {
  margin: 0;
  color: rgba(255, 246, 237, 0.78);
  line-height: 1.48;
}

.offer-bonus {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 38px;
  border-radius: 10px;
  padding: 20px 24px;
}

.offer-bonus h3,
.offer-proof h3 {
  color: #f5c583;
}

.offer-card-v2 {
  position: relative;
  display: grid;
  justify-items: center;
  border-color: rgba(216, 169, 104, 0.48);
  border-radius: 16px;
  padding: 58px clamp(30px, 4vw, 48px) 32px;
  background:
    radial-gradient(circle at 50% 35%, rgba(216, 169, 104, 0.08), transparent 16rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.008)),
    rgba(2, 9, 13, 0.52);
  text-align: center;
  box-shadow:
    inset 0 1px 0 rgba(255, 224, 178, 0.08),
    0 26px 70px rgba(0, 0, 0, 0.22);
}

.offer-ribbon {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  min-width: min(290px, 78%);
  border: 1px solid rgba(255, 230, 183, 0.65);
  border-radius: 7px;
  padding: 9px 18px;
  color: #180d08;
  background: linear-gradient(180deg, #f3c982, #bd7c3f);
  box-shadow:
    inset 0 1px 0 rgba(255, 245, 220, 0.5),
    0 10px 28px rgba(216, 169, 104, 0.14);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.investment-label {
  margin: 0 0 16px;
  color: #f5c583;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.48em;
  text-transform: uppercase;
}

.offer-price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  color: #f5c583;
  font-family: var(--serif);
  font-size: clamp(5.7rem, 8.2vw, 8.1rem);
  line-height: 0.8;
}

.offer-price span {
  margin-top: 0.12em;
  margin-right: 14px;
  font-size: 0.42em;
}

.offer-condition {
  margin: 16px 0 26px;
  color: rgba(255, 246, 237, 0.8);
  font-size: 0.92rem;
}

.offer-cta {
  width: min(100%, 390px);
  min-height: 58px;
  color: #140b07;
  border-radius: 7px;
  font-size: 0.9rem;
  font-weight: 850;
  letter-spacing: 0.035em;
  gap: 14px;
}

.offer-trust {
  width: 100%;
  display: grid;
  grid-template-columns: 0.9fr 1.25fr 0.95fr;
  gap: 14px;
  margin: 26px 0 26px;
}

.offer-trust span {
  display: flex;
  gap: 9px;
  align-items: center;
  color: rgba(255, 246, 237, 0.88);
  font-size: 0.63rem;
  font-weight: 650;
  letter-spacing: 0.045em;
  line-height: 1.22;
  text-align: left;
  text-transform: uppercase;
}

.offer-trust i {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  color: #f5c583;
}

.offer-trust svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.countdown-box {
  width: 100%;
  border-color: rgba(216, 169, 104, 0.22);
  border-radius: 9px;
  padding: 17px 18px 15px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.008)),
    rgba(0, 10, 16, 0.22);
}

.countdown-box p {
  margin: 0 0 10px;
  color: rgba(255, 246, 237, 0.82);
  font-size: 0.74rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.countdown-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 8px;
}

.countdown-grid strong {
  display: block;
  color: #f5c583;
  font-family: var(--serif);
  font-size: clamp(2.05rem, 3.25vw, 3.15rem);
  font-weight: 500;
  line-height: 1;
}

.countdown-grid small {
  display: block;
  color: rgba(255, 246, 237, 0.72);
  font-size: 0.62rem;
  font-weight: 650;
  text-transform: uppercase;
}

.countdown-grid i {
  color: #f5c583;
  font-family: var(--serif);
  font-size: 2.1rem;
  font-style: normal;
}

.offer-proof {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 28px;
  align-items: center;
  border-color: rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 22px clamp(24px, 4vw, 52px);
}

.offer-proof article {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 18px;
  align-items: center;
}

.offer-proof article:nth-child(2) {
  grid-template-columns: 108px 1fr;
}

.offer-proof article:nth-child(2) h3 {
  letter-spacing: 0.06em;
}

.offer-proof article + article {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  padding-left: 28px;
}

.avatar-stack {
  display: flex;
  align-items: center;
  min-width: 88px;
}

.avatar-stack i {
  position: relative;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-left: -8px;
  border: 1px solid rgba(245, 197, 131, 0.86);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(245, 197, 131, 0.16), rgba(245, 197, 131, 0.04));
  box-shadow:
    0 0 0 2px #001a2f,
    0 10px 22px rgba(0, 0, 0, 0.14);
}

.avatar-stack i::before,
.avatar-stack i::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 1.5px;
  border-radius: 999px;
  background: #f5c583;
}

.avatar-stack i::after {
  transform: rotate(90deg);
}

.avatar-stack i:first-child {
  margin-left: 0;
}

.faq-section {
  background:
    radial-gradient(circle at 20% 0, rgba(216, 169, 104, 0.13), transparent 25rem),
    linear-gradient(180deg, #fff7f0, #f5e7dc);
}

.faq-wrap {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 28px;
}

.faq-heading p {
  margin: 0 0 12px;
  color: #8d5b32;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.faq-heading h2 {
  max-width: 430px;
  color: #2f1b14;
  font-size: clamp(2.25rem, 4vw, 4.1rem);
  letter-spacing: -0.03em;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(255, 247, 240, 0.24)),
    rgba(255, 250, 245, 0.3);
  backdrop-filter: blur(16px) saturate(1.06);
  -webkit-backdrop-filter: blur(16px) saturate(1.06);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 14px 34px rgba(48, 25, 13, 0.055);
  overflow: hidden;
  transition: border-color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.faq-item:hover {
  transform: translateY(-1px);
  border-color: rgba(141, 91, 50, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 18px 42px rgba(48, 25, 13, 0.075);
}

.faq-item summary {
  position: relative;
  display: block;
  padding: 22px 58px 22px 24px;
  color: #321e16;
  font-family: var(--serif);
  font-size: clamp(1.22rem, 1.65vw, 1.58rem);
  line-height: 1.2;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 24px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border: 1px solid rgba(141, 91, 50, 0.24);
  border-radius: 50%;
  color: #8d5b32;
  font-family: var(--sans);
  font-size: 1.1rem;
}

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

.faq-item p {
  margin: -4px 58px 24px 24px;
  color: #6d5a50;
  font-size: 1rem;
  line-height: 1.7;
}

.site-footer {
  padding: 30px 0 calc(60px + env(safe-area-inset-bottom, 0px));
  color: rgba(255, 246, 237, 0.64);
  background: #001a2f;
  border-top: 1px solid rgba(216, 169, 104, 0.16);
}

.footer-wrap {
  display: grid;
  gap: 12px;
  text-align: center;
}

.footer-wrap p {
  width: min(980px, 100%);
  margin: 0 auto;
  font-size: 0.72rem;
  line-height: 1.65;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links span {
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 420ms ease, transform 420ms ease;
}

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

.delay-1 {
  transition-delay: 60ms;
}

.delay-2 {
  transition-delay: 120ms;
}

@media (max-width: 980px) {
  .hero {
    min-height: calc(100svh - 38px);
    background:
      linear-gradient(90deg, rgba(0, 13, 25, 0.18), rgba(0, 13, 25, 0.24)),
      var(--hero-image) center right / cover no-repeat,
      linear-gradient(135deg, #00101f, var(--navy) 45%, #082f4b);
  }

  .story-grid,
  .discovery-grid,
  .schedule-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    width: min(75%, 760px);
  }

  .two-panels,
  .six,
  .outcome-row,
  .promise-grid,
  .price-card {
    grid-template-columns: 1fr;
  }

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

  .outcome-strip {
    border-radius: 22px;
  }

  .outcome-item {
    border-right: 1px solid rgba(141, 91, 50, 0.14);
    border-bottom: 1px solid rgba(141, 91, 50, 0.14);
  }

  .outcome-item:nth-child(2n) {
    border-right: 0;
  }

  .outcome-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .price {
    border-left: 0;
    border-top: 1px solid rgba(216, 169, 104, 0.42);
    padding: 24px 0 0;
  }

  .offer-v2,
  .offer-proof {
    grid-template-columns: 1fr;
  }

  .offer-left h2 {
    font-size: clamp(2.1rem, 6.6vw, 3.4rem);
  }

  .offer-card-v2 {
    margin-top: 14px;
  }

  .offer-proof article + article {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    padding: 22px 0 0;
  }

  .faq-wrap {
    grid-template-columns: 1fr;
  }

  .faq-heading {
    position: static;
    text-align: center;
  }

  .faq-heading h2 {
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  .container,
  .narrow {
    width: min(100% - 28px, 1120px);
  }

  .section {
    padding: 44px 0;
  }

  .hero-inner {
    min-height: auto;
    align-items: start;
    padding: 25px 7% 0;
  }

  .hero {
    min-height: auto;
    background:
      radial-gradient(circle at 82% 20%, rgba(199, 157, 101, 0.13), transparent 16rem),
      radial-gradient(circle at 15% 52%, rgba(43, 100, 126, 0.16), transparent 19rem),
      linear-gradient(145deg, #001526, #011d31 52%, #092a3c);
    overflow: visible;
  }

  .hero-copy {
    width: 100%;
    text-align: center;
  }

  .brand {
    justify-items: center;
    margin-inline: auto;
    margin-bottom: 8px;
  }

  .event-pills {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 0;
    margin: 8px 0 14px;
    border: 1px solid rgba(216, 169, 104, 0.58);
    border-radius: 999px;
    padding: 6px 10px;
  }

  .brand span {
    font-size: clamp(1.95rem, 9.4vw, 2.4rem);
  }

  .brand small {
    font-size: 0.66rem;
    letter-spacing: 0.08em;
  }

  .hero-portrait {
    display: block;
    width: calc(100% + 22px);
    margin: 0 -11px 17px;
    overflow: hidden;
    border: 1px solid rgba(229, 194, 142, 0.28);
    border-radius: 8px;
    background: #071827;
    box-shadow: 0 20px 46px rgba(0, 8, 17, 0.28);
  }

  .hero-portrait img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 8.4;
    object-fit: cover;
    object-position: center;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 1.76rem;
    line-height: 1.02;
    letter-spacing: -0.025em;
    margin-bottom: 22px;
  }

  .hero p {
    max-width: 100%;
    margin: 0 auto;
    font-size: 0.84rem;
    line-height: 1.45;
  }

  .event-pills.vertical {
    display: grid;
  }

  .event-pills span {
    width: auto;
    justify-content: center;
    min-height: 0;
    border: 0;
    border-radius: 0;
    padding: 0;
    color: #f3d7ae;
    font-size: clamp(0.58rem, 2.7vw, 0.68rem);
    white-space: nowrap;
  }

  .event-pills span::before {
    display: none;
  }

  .event-pills span + span::before {
    content: "|";
    display: inline;
    width: auto;
    height: auto;
    margin: 0 8px;
    border-radius: 0;
    background: none;
    box-shadow: none;
    color: rgba(239, 198, 139, 0.72);
  }

  .hero-vsl {
    width: calc(100% - 30px);
    margin: 25px auto -140px;
    transform: translateY(50%);
  }

  .hero-vsl-frame {
    border-radius: 8px;
    box-shadow:
      0 22px 52px rgba(0, 8, 16, 0.38),
      0 0 0 4px rgba(255, 248, 238, 0.08);
  }

  .inline-video-play {
    gap: 7px;
    font-size: 0.7rem;
  }

  .inline-video-play .play-dot {
    width: 48px;
    height: 48px;
  }

  .hero-vsl .hero-cta {
    min-height: 52px;
    margin-top: 12px;
    font-size: 0.82rem;
  }

  .after-hero {
    padding-top: 175px;
  }

  .photo-grid,
  .outcome-row,
  .outcome-strip {
    grid-template-columns: 1fr;
  }

  .soft-panel h2,
  .fit h2 {
    text-align: center;
  }

  .story-copy {
    text-align: center;
  }

  .story h2 {
    margin-inline: auto;
    font-size: clamp(2rem, 8vw, 2.55rem);
    line-height: 1.05;
  }

  .story p {
    margin-inline: auto;
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .story .photo-carousel {
    display: none;
  }

  .promise-ref {
    padding: 46px 0;
  }

  .promise-shell {
    width: min(100% - 28px, 1120px);
  }

  .promise-badge {
    width: 100%;
    justify-content: center;
    gap: 10px;
    padding: 11px 14px;
    font-size: 0.64rem;
    letter-spacing: 0.16em;
  }

  .promise-heading h2 {
    font-size: clamp(2rem, 7.2vw, 2.65rem);
  }

  .promise-grid {
    gap: 12px;
  }

  .promise-card {
    min-height: 132px;
    border-radius: 14px;
    padding: 22px 18px;
  }

  .outcome-ref h3 span {
    font-size: clamp(1.9rem, 7vw, 2.55rem);
  }

  .outcome-strip {
    border-radius: 18px;
  }

  .outcome-item,
  .outcome-item:nth-child(2n),
  .outcome-item:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid rgba(141, 91, 50, 0.14);
  }

  .outcome-item:last-child {
    border-bottom: 0;
  }

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

  .discovery h2,
  .schedule-lead,
  .offer-left {
    text-align: center;
  }

  .discovery h2 {
    margin-inline: auto;
  }

  .schedule-grid {
    gap: 28px;
  }

  .schedule-lead h2 {
    margin-inline: auto;
  }

  .schedule-lead .event-pills.vertical {
    display: grid;
    width: 100%;
    gap: 10px;
    justify-content: center;
    justify-items: center;
    margin-top: 16px;
    margin-bottom: 2px;
    border: 0;
    border-radius: 0;
    padding: 0;
  }

  .schedule-lead .event-pills span {
    width: min(100%, 260px);
    min-height: 29px;
    padding: 5px 12px;
    border: 1px solid rgba(216, 169, 104, 0.66);
    border-radius: 999px;
    font-size: 0.72rem;
  }

  .schedule-lead .event-pills span::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    margin: 0;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 4px rgba(216, 169, 104, 0.12);
  }

  .schedule-lead .event-pills span + span::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    margin: 0;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 4px rgba(216, 169, 104, 0.12);
  }

  .day-card > span {
    margin-inline: auto;
    width: 50px;
    height: 50px;
  }

  .soft-panel,
  .fit article,
  .mini-card,
  .price-card {
    border-radius: 8px;
  }

  .price strong {
    font-size: 4rem;
  }

  .offer {
    padding: 48px 0;
  }

  .offer-left h2 {
    margin-inline: auto;
    font-size: clamp(2rem, 8vw, 2.7rem);
  }

  .offer-left > p {
    margin-inline: auto;
  }

  .offer-benefits article,
  .offer-bonus,
  .offer-proof article {
    grid-template-columns: 44px 1fr;
    gap: 14px;
  }

  .offer-proof article:nth-child(2) {
    grid-template-columns: 92px 1fr;
  }

  .offer-benefits span,
  .offer-bonus > span,
  .offer-proof > article > span:not(.avatar-stack) {
    width: 42px;
    height: 42px;
    font-size: 0;
  }

  .offer-benefits h3,
  .offer-bonus h3,
  .offer-proof h3 {
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    line-height: 1.28;
    overflow-wrap: anywhere;
  }

  .offer-benefits p,
  .offer-bonus p,
  .offer-proof p {
    font-size: 0.92rem;
  }

  .offer-cta {
    min-height: 60px;
    white-space: normal;
  }

  .offer-card-v2 {
    padding: 58px 18px 24px;
    border-radius: 14px;
  }

  .offer-ribbon {
    width: min(300px, 88%);
    padding: 10px 14px;
    font-size: 0.72rem;
  }

  .offer-trust {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .countdown-grid {
    gap: 4px;
  }

  .countdown-grid strong {
    font-size: 2.1rem;
  }

  .offer-proof {
    padding: 20px;
  }

  .faq-item summary {
    padding: 19px 54px 19px 18px;
    font-size: 1.18rem;
  }

  .faq-item summary::after {
    right: 18px;
  }

  .faq-item p {
    margin: -2px 18px 20px;
    font-size: 0.94rem;
  }

  .footer-wrap p {
    font-size: 0.68rem;
  }
}

@keyframes photoCarousel {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 6px));
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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