:root {
  --midnight: #0e1328;
  --midnight-2: #121935;
  --charcoal: #1a1d29;
  --ink: #11131b;
  --gold: #d8b56a;
  --gold-soft: #f0d795;
  --white: #ffffff;
  --mist: #f6f3ea;
  --muted: #adb4c7;
  --line: rgba(216, 181, 106, 0.28);
  --glass: rgba(255, 255, 255, 0.08);
  --shadow: 0 28px 80px rgba(7, 10, 25, 0.34);
  --headline-font: "Century Gothic", "Questrial", "Avenir Next", "Avenir", "Trebuchet MS", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--mist);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.constellation-canvas {
  position: fixed;
  inset: 0;
  z-index: 12;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  opacity: 0.95;
  mix-blend-mode: screen;
}

.topbar {
  position: fixed;
  inset: 18px max(6vw, 28px) auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: none;
  margin: 0;
  padding: 12px 14px 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(14, 19, 40, 0.76);
  color: var(--white);
  backdrop-filter: blur(18px);
  left: max(6vw, 28px);
  right: max(6vw, 28px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
  transform: translateY(-18px);
  opacity: 0;
  transition:
    opacity 760ms ease,
    transform 760ms ease,
    background 180ms ease;
}

.topbar.is-scrolled {
  background: rgba(14, 19, 40, 0.9);
}

body.is-loaded .topbar {
  opacity: 1;
  transform: translateY(0);
}

.brand,
.nav,
.hero-actions,
.button,
.price-card ul,
.step-card ul,
.audience-list,
.faq-list,
.footer-nav {
  display: flex;
}

.brand {
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-logo {
  width: clamp(138px, 14vw, 178px);
  height: auto;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.28));
}

.nav {
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.nav a:hover,
.nav-cta:hover {
  color: var(--gold-soft);
}

.nav-cta {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--gold-soft);
  font-weight: 700;
}

.section-dark {
  position: relative;
  color: var(--white);
  background:
    radial-gradient(circle at 25% 10%, rgba(216, 181, 106, 0.18), transparent 28%),
    linear-gradient(135deg, var(--midnight), var(--charcoal));
}

.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: 56px;
  padding: 104px max(6vw, 28px) 28px;
  overflow: hidden;
}

.hero::after,
.process::after,
.final-cta::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 181, 106, 0.5), transparent);
}

.stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.65) 1px, transparent 1.5px),
    radial-gradient(circle, rgba(216, 181, 106, 0.4) 1px, transparent 1.5px);
  background-position: 0 0, 34px 48px;
  background-size: 92px 92px, 132px 132px;
  opacity: 0.28;
  animation: drift 22s linear infinite;
}

.stars-soft {
  opacity: 0.16;
}

.constellation {
  position: absolute;
  width: 220px;
  height: 180px;
  border-top: 1px solid rgba(216, 181, 106, 0.28);
  border-left: 1px solid rgba(216, 181, 106, 0.18);
  transform: rotate(-16deg);
  opacity: 0.55;
}

.constellation::before,
.constellation::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-soft);
  box-shadow: 90px 58px 0 rgba(255, 255, 255, 0.72), 164px 12px 0 rgba(216, 181, 106, 0.72);
}

.constellation-a {
  left: 7vw;
  top: 22vh;
}

.hero-content,
.hero-visual,
.section-heading,
.split,
.steps,
.knowledge-grid,
.pricing-grid,
.chat-window,
.founder,
.faq-list,
.final-cta > * {
  position: relative;
  z-index: 3;
}

.hero-content .eyebrow,
.hero-copy,
.hero-subcopy,
.hero-actions,
.hero-visual,
.floating-panel {
  opacity: 0;
  transform: translateY(24px);
}

.hero-title {
  overflow: hidden;
}

.hero-title span {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.72em);
}

body.is-loaded .hero-content .eyebrow {
  animation: riseIn 760ms ease 140ms forwards;
}

body.is-loaded .hero-title span {
  animation: titleRise 900ms cubic-bezier(0.2, 0.78, 0.22, 1) forwards;
}

body.is-loaded .hero-title span:nth-child(1) {
  animation-delay: 240ms;
}

body.is-loaded .hero-title span:nth-child(2) {
  animation-delay: 360ms;
}

body.is-loaded .hero-title span:nth-child(3) {
  animation-delay: 480ms;
}

body.is-loaded .hero-title span:nth-child(4) {
  animation-delay: 600ms;
}

body.is-loaded .hero-copy {
  animation: riseIn 820ms ease 780ms forwards;
}

body.is-loaded .hero-subcopy {
  animation: riseIn 820ms ease 900ms forwards;
}

body.is-loaded .hero-actions {
  animation: riseIn 820ms ease 1040ms forwards;
}

body.is-loaded .hero-visual {
  animation: visualIn 1000ms cubic-bezier(0.2, 0.78, 0.22, 1) 360ms forwards;
}

body.is-loaded .floating-panel {
  animation: floatPanelIn 820ms ease forwards;
}

body.is-loaded .chart-panel {
  animation-delay: 1080ms;
}

body.is-loaded .chat-panel {
  animation-delay: 1220ms;
}

.eyebrow,
.section-kicker,
.price-label,
.message span {
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2 {
  font-family: var(--headline-font);
  font-weight: 400;
  line-height: 1.07;
}

h1 {
  max-width: 610px;
  margin-top: 18px;
  font-size: clamp(3rem, 5.55vw, 4.9rem);
  text-transform: none;
}

h2 {
  font-size: clamp(2.3rem, 4.8vw, 4.7rem);
}

h3 {
  font-family: var(--headline-font);
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.24;
}

.hero-copy {
  max-width: 670px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.04rem, 1.45vw, 1.24rem);
  line-height: 1.58;
}

.hero-subcopy {
  max-width: 560px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.button {
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 7px;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

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

.button-primary:hover {
  box-shadow: 0 20px 46px rgba(216, 181, 106, 0.34);
}

.button-secondary:hover {
  border-color: rgba(216, 181, 106, 0.44);
  background: rgba(255, 255, 255, 0.1);
}

.button-primary {
  color: #17140d;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 16px 36px rgba(216, 181, 106, 0.24);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.hero-visual {
  min-height: 500px;
  align-self: stretch;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
  filter: saturate(0.96) contrast(1.04);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(216, 181, 106, 0.22);
  border-radius: 8px;
  pointer-events: none;
}

.floating-panel {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(14, 19, 40, 0.64);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.hero-visual:hover .floating-panel {
  border-color: rgba(216, 181, 106, 0.42);
  background: rgba(14, 19, 40, 0.72);
}

.chart-panel {
  left: clamp(18px, 7%, 48px);
  bottom: clamp(24px, 9%, 70px);
  width: 178px;
  padding: 14px;
}

.chart-panel span,
.chat-panel span {
  color: var(--gold-soft);
  font-size: 0.74rem;
  font-weight: 800;
}

.orbit-map {
  position: relative;
  height: 116px;
  margin-top: 10px;
  border: 1px solid rgba(216, 181, 106, 0.42);
  border-radius: 50%;
}

.orbit-map::before,
.orbit-map::after,
.orbit-map i {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.orbit-map::before {
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.orbit-map::after {
  inset: 42px;
  background: rgba(216, 181, 106, 0.22);
}

.orbit-map i {
  width: 8px;
  height: 8px;
  background: var(--gold-soft);
}

.orbit-map i:nth-child(1) {
  left: 26px;
  top: 32px;
}

.orbit-map i:nth-child(2) {
  right: 20px;
  top: 54px;
}

.orbit-map i:nth-child(3) {
  left: 74px;
  bottom: 18px;
}

.chat-panel {
  right: clamp(18px, 6%, 42px);
  top: auto;
  bottom: clamp(118px, 22%, 190px);
  max-width: 250px;
  padding: 16px;
  transform: translateX(6px);
}

.hero-visual:hover .chat-panel {
  transform: translateX(0) translateY(-3px);
}

.hero-visual:hover .chart-panel {
  transform: translateY(-3px);
}

.chat-panel p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  line-height: 1.55;
}

.intro-section,
.intelligence,
.audience,
.conversation,
.faq {
  padding: 112px max(6vw, 28px);
  background: var(--mist);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.72fr);
  gap: 70px;
  max-width: 1180px;
  margin: 0 auto;
}

.section-kicker {
  display: block;
  max-width: 1180px;
  margin: 0 auto 18px;
  color: #9c7b35;
}

.copy-stack {
  display: grid;
  gap: 20px;
  color: #4b5060;
  font-size: 1.08rem;
  line-height: 1.75;
}

.process,
.pricing,
.founder,
.final-cta {
  padding: 112px max(6vw, 28px);
}

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

.section-heading.narrow {
  max-width: 780px;
}

.section-heading h2 {
  margin-top: 12px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.step-card,
.price-card,
.chat-window,
.faq details {
  border: 1px solid rgba(14, 19, 40, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 54px rgba(20, 23, 34, 0.08);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.section-dark .step-card,
.section-dark .price-card {
  border-color: rgba(255, 255, 255, 0.15);
  background: var(--glass);
  backdrop-filter: blur(16px);
}

.step-card {
  padding: 26px;
}

.step-card:hover,
.price-card:hover,
.chat-window:hover,
.faq details:hover,
.knowledge-grid div:hover {
  transform: translateY(-5px);
  border-color: rgba(216, 181, 106, 0.42);
  box-shadow: 0 24px 68px rgba(20, 23, 34, 0.14);
}

.section-dark .step-card:hover,
.section-dark .price-card:hover {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.22);
}

.step-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold-soft);
  font-weight: 800;
}

.step-card p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.65;
}

.step-card ul,
.price-card ul,
.audience-list {
  flex-direction: column;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.step-card li,
.price-card li,
.audience-list li {
  position: relative;
  padding-left: 24px;
  line-height: 1.48;
}

.step-card li::before,
.price-card li::before,
.audience-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-soft);
  font-weight: 900;
}

.knowledge-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(140px, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.knowledge-grid div {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 18px;
  border-top: 1px solid rgba(156, 123, 53, 0.42);
  background: #ffffff;
  color: #3d4252;
  font-weight: 800;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.knowledge-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(216, 181, 106, 0.42);
  border-radius: 50%;
  color: #b68a35;
  background: rgba(216, 181, 106, 0.08);
}

.knowledge-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.audience {
  background: #ffffff;
}

.audience-list {
  color: #3d4252;
  font-size: 1.05rem;
}

.audience-list li::before {
  color: #9c7b35;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
}

.price-card {
  padding: 30px;
}

.price-card.featured {
  border-color: rgba(216, 181, 106, 0.5);
  background: rgba(255, 255, 255, 0.12);
}

.price-card h3 {
  margin-top: 12px;
  color: var(--white);
  font-family: var(--headline-font);
  font-size: 2.85rem;
  font-weight: 400;
}

.price-card h3 span {
  color: var(--muted);
  font-family: "Inter", sans-serif;
  font-size: 1rem;
}

.price-card .muted,
.price-card li {
  color: rgba(255, 255, 255, 0.76);
}

.price-card .muted {
  margin-top: 6px;
}

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

.conversation {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(246, 243, 234, 1)),
    var(--mist);
}

.chat-window {
  max-width: 820px;
  margin: 0 auto;
  padding: 28px;
  background: #ffffff;
}

.message {
  max-width: 680px;
  padding: 20px;
  border-radius: 8px;
}

.message + .message {
  margin-top: 18px;
}

.message p {
  margin-top: 8px;
  line-height: 1.7;
}

.user-message {
  margin-left: auto;
  background: #eef0f5;
}

.ai-message {
  background: var(--midnight);
  color: var(--white);
}

.founder {
  display: grid;
  grid-template-columns: 320px minmax(0, 650px);
  align-items: center;
  justify-content: center;
  gap: 64px;
}

.founder-portrait {
  width: 320px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(216, 181, 106, 0.28), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.05);
}

.founder-logo {
  width: min(82%, 250px);
  height: auto;
  filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.3));
}

.founder-copy p:not(.eyebrow) {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.7;
}

.faq-list {
  flex-direction: column;
  gap: 12px;
  max-width: 840px;
  margin: 0 auto;
}

.faq details {
  padding: 22px 24px;
  background: #ffffff;
}

.faq details[open] {
  border-color: rgba(156, 123, 53, 0.34);
}

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

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

.reveal-group > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 640ms ease, transform 640ms ease;
}

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

.reveal-group.is-visible > *:nth-child(2) {
  transition-delay: 90ms;
}

.reveal-group.is-visible > *:nth-child(3) {
  transition-delay: 180ms;
}

.reveal-group.is-visible > *:nth-child(4) {
  transition-delay: 270ms;
}

.reveal-group.is-visible > *:nth-child(5) {
  transition-delay: 360ms;
}

.reveal.is-visible.chat-window:hover,
.reveal-group.is-visible > .step-card:hover,
.reveal-group.is-visible > .price-card:hover,
.reveal-group.is-visible > .faq details:hover,
.reveal-group.is-visible > div:hover {
  transform: translateY(-5px);
}

.faq summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 800;
}

.faq summary::marker {
  color: #9c7b35;
}

.faq details p {
  margin-top: 12px;
  color: #535968;
  line-height: 1.65;
}

.final-cta {
  min-height: 520px;
  display: grid;
  place-items: center;
  text-align: center;
}

.final-cta h2,
.final-cta p {
  max-width: 860px;
}

.final-cta p {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
  line-height: 1.75;
}

.final-cta .button {
  margin-top: 34px;
}

.site-footer {
  padding: 46px max(6vw, 28px);
  color: rgba(255, 255, 255, 0.76);
  background: #080c1b;
}

.footer-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(180px, 240px) minmax(240px, 1fr) minmax(220px, 360px);
  align-items: center;
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
}

.footer-logo {
  width: min(220px, 100%);
  height: auto;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.28));
}

.footer-nav {
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
}

.footer-nav a:hover {
  color: var(--gold-soft);
}

.site-footer p {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.9rem;
  line-height: 1.55;
  text-align: right;
}

@keyframes drift {
  from {
    background-position: 0 0, 34px 48px;
  }

  to {
    background-position: 92px 92px, 166px 180px;
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes titleRise {
  from {
    opacity: 0;
    transform: translateY(0.72em);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes visualIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes floatPanelIn {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 126px;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 460px;
  }

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

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

@media (max-width: 820px) {
  .topbar {
    inset: 10px 10px auto;
    gap: 12px;
  }

  .nav {
    display: none;
  }

  .nav-cta {
    padding: 9px 11px;
    font-size: 0.88rem;
  }

  .brand-logo {
    width: 132px;
  }

  .hero,
  .intro-section,
  .process,
  .intelligence,
  .audience,
  .pricing,
  .conversation,
  .founder,
  .faq,
  .final-cta {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 58px;
    text-align: center;
  }

  .hero-content {
    align-items: center;
  }

  .hero-content .eyebrow,
  .hero-copy,
  .hero-subcopy {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.3rem, 10.5vw, 3.6rem);
  }

  .hero-title {
    overflow-wrap: break-word;
    hyphens: auto;
  }

  h2 {
    font-size: clamp(2.2rem, 11vw, 3.5rem);
  }

  .split,
  .founder {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }

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

  .hero-visual {
    min-height: 440px;
  }

  .hero-visual img {
    min-height: 440px;
  }

  .floating-panel {
    display: none;
  }

  .steps,
  .pricing-grid,
  .knowledge-grid {
    grid-template-columns: 1fr;
  }

  .founder-portrait {
    width: min(100%, 320px);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo-link {
    justify-self: center;
  }

  .site-footer p {
    text-align: center;
  }

  .chat-window {
    padding: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .constellation-canvas {
    display: none;
  }

  .topbar,
  .hero-content .eyebrow,
  .hero-copy,
  .hero-subcopy,
  .hero-actions,
  .hero-visual,
  .floating-panel,
  .hero-title span {
    opacity: 1 !important;
    transform: none !important;
  }

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