:root {
  --bg: #020818;
  --bg-2: #07122b;
  --bg-3: #101641;
  --ink: #fff8ea;
  --muted: #c8d2e8;
  --soft: rgba(255, 248, 234, 0.76);
  --line: rgba(216, 170, 82, 0.28);
  --gold: #d8aa52;
  --gold-2: #ffe1a1;
  --blue: #65d7ff;
  --violet: #9b6cff;
  --magenta: #e156c5;
  --panel: rgba(7, 18, 43, 0.72);
  --panel-strong: rgba(8, 14, 34, 0.9);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  --max: 1180px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 78% 12%, rgba(101, 215, 255, 0.22), transparent 27rem),
    radial-gradient(circle at 8% 36%, rgba(225, 86, 197, 0.14), transparent 23rem),
    linear-gradient(180deg, #020818 0%, #07122b 42%, #020818 100%);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 70%);
  z-index: -1;
}

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

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

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

button {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  transform: translateY(-140%);
  background: var(--gold-2);
  color: #07122b;
  border-radius: 6px;
  font-weight: 800;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: linear-gradient(180deg, rgba(2, 8, 24, 0.88), rgba(2, 8, 24, 0.38));
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(2, 8, 24, 0.82);
  border-color: rgba(216, 170, 82, 0.18);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(var(--max), calc(100% - 2rem));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.brand-mark {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--gold-2) 0 10%, transparent 12%),
    conic-gradient(from 0deg, transparent 0 18%, var(--gold) 19% 21%, transparent 22% 48%, var(--blue) 49% 51%, transparent 52% 100%);
  box-shadow: 0 0 26px rgba(216, 170, 82, 0.35);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 248, 234, 0.86);
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-menu a {
  padding: 0.65rem 0.25rem;
}

.nav-menu a:hover {
  color: var(--gold-2);
}

.nav-cta {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.72rem 1rem !important;
  color: var(--gold-2) !important;
  box-shadow: inset 0 0 0 1px rgba(255, 225, 161, 0.05);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 7rem 0 4rem;
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  object-position: 63% center;
  z-index: -3;
}

.hero-shade {
  z-index: -2;
  background:
    radial-gradient(circle at 76% 36%, rgba(2, 8, 24, 0.08), rgba(2, 8, 24, 0.54) 38%, rgba(2, 8, 24, 0.92) 74%),
    linear-gradient(90deg, rgba(2, 8, 24, 0.95) 0%, rgba(2, 8, 24, 0.78) 42%, rgba(2, 8, 24, 0.28) 100%),
    linear-gradient(180deg, rgba(2, 8, 24, 0.2), rgba(2, 8, 24, 1));
}

.hero-inner,
.section-shell {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.hero-inner {
  max-width: 760px;
  margin-left: max(1rem, calc((100% - var(--max)) / 2));
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--gold-2);
  text-transform: uppercase;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 0.98;
  font-family: var(--font-display);
  font-weight: 700;
}

h1 {
  max-width: 10ch;
  font-size: clamp(4rem, 12vw, 9.8rem);
  text-shadow: 0 0 38px rgba(216, 170, 82, 0.22);
}

h1 span {
  display: block;
}

h2 {
  font-size: clamp(2.4rem, 6vw, 5.4rem);
  max-width: 11ch;
}

h3 {
  font-size: clamp(1.65rem, 2.6vw, 2.4rem);
}

.hero-subtitle {
  max-width: 620px;
  margin: 1.1rem 0 0;
  color: var(--ink);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.45;
}

.hero-guide {
  max-width: 650px;
  color: var(--soft);
  font-size: 1.03rem;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 2rem 0;
  border: 1px solid var(--line);
  background: rgba(216, 170, 82, 0.15);
  box-shadow: var(--shadow);
}

.hero-facts div {
  min-width: 0;
  padding: 1rem;
  background: rgba(2, 8, 24, 0.74);
}

.hero-facts span,
.price-data span,
.bank-card span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
}

.hero-facts strong,
.price-data strong,
.bank-card strong {
  display: block;
  margin-top: 0.25rem;
  color: var(--gold-2);
  font-size: 0.98rem;
  line-height: 1.3;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
  margin: 2rem 0 1.2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 6px;
  padding: 0.9rem 1.1rem;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

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

.button-primary {
  color: #07122b;
  background: linear-gradient(135deg, var(--gold-2), var(--gold) 52%, #a7792b);
  box-shadow: 0 18px 42px rgba(216, 170, 82, 0.28);
}

.button-ghost {
  border: 1px solid rgba(255, 248, 234, 0.26);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.04);
}

.button-copy {
  width: 100%;
  color: var(--ink);
  background: rgba(101, 215, 255, 0.14);
  border: 1px solid rgba(101, 215, 255, 0.38);
}

.button-receipt {
  width: 100%;
  color: #020818;
  background: linear-gradient(135deg, #8ff0ff, #65d7ff 45%, #ffe1a1);
}

.hero-note {
  max-width: 540px;
  color: var(--soft);
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.25;
}

.countdown-band {
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(216, 170, 82, 0.12), transparent 38%, rgba(101, 215, 255, 0.12)),
    rgba(2, 8, 24, 0.82);
}

.countdown-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: 2rem;
  align-items: center;
  padding: 2rem 0;
}

.countdown-shell h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  max-width: none;
}

.countdown-shell p {
  margin: 0.5rem 0 0;
  color: var(--muted);
}

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

.countdown div {
  min-height: 104px;
  display: grid;
  place-items: center;
  padding: 0.85rem 0.5rem;
  border: 1px solid rgba(216, 170, 82, 0.3);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.countdown strong {
  color: var(--gold-2);
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.8vw, 4rem);
  line-height: 0.8;
}

.countdown span {
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
}

.section {
  position: relative;
  padding: clamp(4.8rem, 9vw, 8rem) 0;
}

.section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: min(760px, 70%);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.two-column,
.split-panel,
.guide-layout,
.return-layout,
.payment-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.section-copy p,
.section-heading p,
.story-flow p,
.guide-copy p,
.payment-copy p,
.include-item p,
.question-card p,
.chapter-card p,
.responsible-note p {
  color: var(--muted);
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-heading h2 {
  max-width: 13ch;
  margin: 0 auto;
}

.section-heading p {
  max-width: 720px;
  margin: 1rem auto 0;
}

.story-flow {
  padding-left: clamp(1rem, 3vw, 2.5rem);
  border-left: 1px solid var(--line);
}

.story-flow p {
  margin: 0 0 1.1rem;
  font-size: 1.05rem;
}

.large-line {
  color: var(--ink) !important;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.3rem) !important;
  line-height: 1.1 !important;
}

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

.question-card,
.include-item,
.chapter-card,
.syllabus-level,
.bank-card,
.price-panel,
.visual-band {
  border: 1px solid rgba(216, 170, 82, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.015)),
    var(--panel);
  box-shadow: var(--shadow);
}

.question-card,
.include-item {
  min-height: 190px;
  padding: 1.3rem;
}

.question-card h3,
.include-item h3 {
  margin-bottom: 0.8rem;
  font-size: 1.65rem;
}

.responsible-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  margin-top: 1.6rem;
  padding: 1rem 0 0;
}

.responsible-note p {
  max-width: 680px;
  margin: 0;
}

.check-list {
  display: grid;
  gap: 0.75rem;
}

.check-list p,
.check-list strong {
  position: relative;
  margin: 0;
  padding: 0.9rem 1rem 0.9rem 2.6rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
}

.check-list p::before,
.check-list strong::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 1.34rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-2);
  box-shadow: 0 0 18px rgba(255, 225, 161, 0.75);
}

.check-list strong {
  color: var(--gold-2);
}

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

.chapter-card {
  position: relative;
  min-height: 360px;
  padding: clamp(1.3rem, 4vw, 2rem);
  overflow: hidden;
}

.chapter-card::after {
  content: "";
  position: absolute;
  right: -4rem;
  bottom: -4rem;
  width: 15rem;
  height: 15rem;
  border: 1px solid rgba(101, 215, 255, 0.2);
  border-radius: 50%;
  box-shadow: inset 0 0 60px rgba(101, 215, 255, 0.1);
}

.chapter-number {
  display: block;
  margin-bottom: 2rem;
  color: rgba(255, 225, 161, 0.2);
  font-family: var(--font-display);
  font-size: clamp(5rem, 11vw, 10rem);
  line-height: 0.8;
}

.chapter-card h3 {
  max-width: 11ch;
  margin-bottom: 1rem;
}

.syllabus-level {
  padding: clamp(1.2rem, 3vw, 2rem);
}

.syllabus-level h3 {
  margin-bottom: 1.1rem;
}

.syllabus-level ol {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding-left: 1.4rem;
  color: var(--muted);
}

.syllabus-level li::marker {
  color: var(--gold-2);
  font-weight: 800;
}

.center-cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.practice-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.practice-cloud span,
.guide-tags span,
.mini-list span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border: 1px solid rgba(101, 215, 255, 0.24);
  border-radius: 999px;
  padding: 0.62rem 0.92rem;
  color: var(--ink);
  background: rgba(101, 215, 255, 0.08);
}

.visual-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr);
  gap: 2rem;
  align-items: center;
  padding: clamp(1.5rem, 4vw, 2.4rem);
  background:
    radial-gradient(circle at 12% 16%, rgba(225, 86, 197, 0.18), transparent 22rem),
    radial-gradient(circle at 82% 68%, rgba(101, 215, 255, 0.16), transparent 20rem),
    var(--panel-strong);
}

.visual-band h2 {
  max-width: 15ch;
}

.mini-list {
  display: grid;
  gap: 0.75rem;
}

.mini-list span {
  border-radius: var(--radius);
}

.guide-image {
  position: relative;
  max-width: 430px;
  margin-inline: auto;
}

.guide-image::before {
  content: "";
  position: absolute;
  inset: 1rem -1rem -1rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  z-index: -1;
}

.guide-image img,
.return-image img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid rgba(216, 170, 82, 0.28);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.guide-image img {
  aspect-ratio: 9 / 14;
  object-position: center;
}

.guide-copy .button {
  margin-top: 1.3rem;
}

.guide-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.2rem;
}

.return-image {
  margin: 0;
}

.return-image img {
  max-height: 620px;
  object-position: center top;
}

.price-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  padding: clamp(1.3rem, 4vw, 2.4rem);
}

.price-panel h2 {
  max-width: none;
}

.price-data {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(216, 170, 82, 0.16);
  border: 1px solid rgba(216, 170, 82, 0.22);
}

.price-data div {
  min-width: 0;
  padding: 1rem;
  background: rgba(2, 8, 24, 0.72);
}

.price-data .price-amount strong {
  font-size: 1.5rem;
}

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

.bank-card {
  padding: clamp(1.2rem, 4vw, 2rem);
}

.bank-card > div {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bank-card > div:first-child {
  padding-top: 0;
}

.card-number {
  overflow-wrap: anywhere;
  font-size: clamp(1.35rem, 4vw, 2.2rem) !important;
  letter-spacing: 0.04em;
}

.copy-status {
  min-height: 1.5rem;
  margin: 0.7rem 0 0.8rem;
  color: var(--blue);
  font-weight: 800;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid rgba(216, 170, 82, 0.22);
}

.faq-item {
  border-bottom: 1px solid rgba(216, 170, 82, 0.22);
}

.faq-item button {
  width: 100%;
  min-height: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border: 0;
  padding: 1rem 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-weight: 800;
}

.faq-item button::after {
  content: "+";
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold-2);
}

.faq-item button[aria-expanded="true"]::after {
  content: "-";
}

.faq-answer {
  padding: 0 3rem 1.2rem 0;
  color: var(--muted);
}

.site-footer {
  padding: 3rem 0 6rem;
  border-top: 1px solid var(--line);
  background: #020612;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1fr;
  gap: 2rem;
}

.footer-grid strong {
  color: var(--ink);
}

.footer-grid a {
  color: var(--gold-2);
  font-weight: 800;
}

.whatsapp-float {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 45;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #07122b;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 18px 42px rgba(216, 170, 82, 0.36);
  font-weight: 900;
  letter-spacing: 0;
  font-size: 0.82rem;
}

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

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

@media (max-width: 1060px) {
  .nav-menu {
    gap: 0.55rem;
    font-size: 0.82rem;
  }

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

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

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: fixed;
    left: 1rem;
    right: 1rem;
    top: 82px;
    display: grid;
    gap: 0.2rem;
    padding: 0.85rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(2, 8, 24, 0.96);
    box-shadow: var(--shadow);
    transform-origin: top;
    transform: scaleY(0.95);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .nav-menu.is-open {
    opacity: 1;
    transform: scaleY(1);
    pointer-events: auto;
  }

  .nav-menu a {
    padding: 0.8rem !important;
  }

  .hero {
    min-height: auto;
    padding-top: 7.5rem;
  }

  .hero-bg {
    object-position: 68% center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(2, 8, 24, 0.62), rgba(2, 8, 24, 0.9) 42%, #020818 100%),
      linear-gradient(90deg, rgba(2, 8, 24, 0.9), rgba(2, 8, 24, 0.48));
  }

  .hero-inner {
    width: min(var(--max), calc(100% - 2rem));
    margin: 0 auto;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(3rem, 12vw, 5.2rem);
    line-height: 0.94;
  }

  h2 {
    max-width: 12ch;
  }

  .countdown-shell,
  .two-column,
  .split-panel,
  .guide-layout,
  .return-layout,
  .payment-layout,
  .visual-band,
  .chapter-grid,
  .syllabus-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .story-flow {
    padding-left: 1rem;
  }

  .responsible-note {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .nav {
    width: min(var(--max), calc(100% - 1.25rem));
  }

  .brand span:last-child {
    max-width: 13ch;
    line-height: 1.1;
  }

  .hero-inner,
  .section-shell {
    width: calc(100% - 1.25rem);
    max-width: calc(100% - 1.25rem);
  }

  h1 {
    font-size: clamp(2.65rem, 10.5vw, 3.55rem);
  }

  .hero-subtitle,
  .hero-guide,
  .hero-note {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .hero-subtitle {
    font-size: 1.08rem;
  }

  .hero-facts,
  .question-grid,
  .include-grid,
  .price-data {
    grid-template-columns: 1fr;
  }

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

  .countdown div {
    min-height: 92px;
  }

  .section {
    padding: 4.2rem 0;
  }

  .question-card,
  .include-item {
    min-height: auto;
  }

  .whatsapp-float {
    width: 58px;
    height: 58px;
    bottom: max(0.75rem, env(safe-area-inset-bottom));
  }
}

@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;
  }

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