:root {
  color-scheme: light;
  --ink: #101713;
  --ink-soft: #233127;
  --muted: #647267;
  --line: rgba(16, 23, 19, 0.12);
  --paper: #f8f6ef;
  --paper-deep: #eee9da;
  --surface: #ffffff;
  --lime: #c7f24d;
  --green: #1e8f5f;
  --green-dark: #0f4f36;
  --orange: #ff8b4a;
  --rose: #ee6f75;
  --blue: #7bc7ff;
  --shadow: 0 28px 80px rgba(16, 23, 19, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background:
    radial-gradient(ellipse 620px 460px at 88% 8%, rgba(199, 242, 77, 0.38), transparent 72%),
    radial-gradient(ellipse 540px 420px at 10% 2%, rgba(123, 199, 255, 0.2), transparent 70%),
    radial-gradient(ellipse 760px 520px at 78% 58%, rgba(255, 139, 74, 0.13), transparent 74%),
    linear-gradient(135deg, #f8f6ef 0%, #f2f0e6 46%, #edf6dc 100%);
  font-family: Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(116deg, transparent 5%, rgba(30, 143, 95, 0.055) 5.6%, transparent 22%),
    linear-gradient(128deg, transparent 58%, rgba(199, 242, 77, 0.14) 58.5%, transparent 77%),
    radial-gradient(ellipse 520px 220px at 18% 78%, rgba(255, 255, 255, 0.76), transparent 70%),
    radial-gradient(ellipse 440px 260px at 92% 34%, rgba(15, 79, 54, 0.08), transparent 68%);
  mask-image: linear-gradient(to bottom, #000, rgba(0, 0, 0, 0.8) 58%, transparent 96%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.52;
  background:
    radial-gradient(ellipse 22rem 7rem at 24% 24%, rgba(255, 255, 255, 0.72), transparent 72%),
    radial-gradient(ellipse 18rem 5rem at 70% 18%, rgba(255, 255, 255, 0.56), transparent 72%),
    radial-gradient(ellipse 20rem 6rem at 62% 78%, rgba(255, 255, 255, 0.5), transparent 72%);
  filter: blur(1px);
}

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

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

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 20;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--ink);
}

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

.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  margin: 14px auto 0;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius);
  background: rgba(248, 246, 239, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 40px rgba(16, 23, 19, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(248, 246, 239, 0.94);
  box-shadow: 0 22px 48px rgba(16, 23, 19, 0.1);
}

.brand,
.nav,
.hero-actions,
.hero-proof,
.ticker-track,
.phone-status,
.phone-caption,
.floating-card,
.price-head,
.footer,
.footer nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 50px;
  height: 38px;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--lime);
  font-family: Unbounded, Manrope, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0;
  box-shadow: inset 0 -8px 20px rgba(16, 23, 19, 0.08);
}

.nav {
  justify-content: center;
  gap: 28px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav a,
.footer a {
  transition: color 160ms ease;
}

.nav a:hover,
.footer a:hover {
  color: var(--green);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.header-cta {
  min-height: 42px;
  color: #fff;
  background: var(--ink);
}

.button-primary {
  color: var(--ink);
  background: var(--lime);
  box-shadow: 0 20px 44px rgba(103, 143, 0, 0.2);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(16, 23, 19, 0.16);
}

.button-light {
  color: var(--ink);
  background: #fff;
}

.button.wide {
  width: 100%;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.78fr);
  align-items: center;
  gap: 84px;
  min-height: min(760px, calc(100svh - 82px));
  padding: 58px 0 64px;
}

.hero h1,
.section-heading h2,
.route-copy h2,
.fit-copy h2,
.guide-panel h2,
.price-copy h2,
.final-inner h2 {
  font-family: Unbounded, Manrope, sans-serif;
  letter-spacing: 0;
}

.hero-copy,
.hero-visual {
  min-width: 0;
}

.hero h1 {
  max-width: 660px;
  font-size: clamp(2.8rem, 4.7vw, 5.05rem);
  line-height: 0.96;
}

.lead {
  max-width: 710px;
  margin-top: 28px;
  color: var(--ink-soft);
  font-size: clamp(1.13rem, 2vw, 1.42rem);
  font-weight: 600;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-proof {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-proof span {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(16, 23, 19, 0.12);
  border-radius: var(--radius);
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  perspective: 1100px;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(16, 23, 19, 0.14);
  border-radius: 999px;
  animation: pulse 5.4s ease-in-out infinite;
}

.orbit-one {
  inset: 34px 10px 78px 12px;
}

.orbit-two {
  inset: 118px -18px 18px 78px;
  animation-delay: 900ms;
}

.phone-frame {
  position: relative;
  z-index: 2;
  width: min(100%, 430px);
  margin: 18px auto 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(238, 233, 218, 0.92)),
    #fff;
  box-shadow:
    0 38px 90px rgba(16, 23, 19, 0.26),
    inset 0 0 0 1px rgba(16, 23, 19, 0.08);
  transform: rotateZ(-5deg) rotateY(-10deg) rotateX(4deg);
}

.phone-status {
  justify-content: space-between;
  gap: 10px;
  padding: 8px 8px 14px;
}

.phone-status span {
  width: 34px;
  height: 10px;
  border-radius: 999px;
  background: var(--ink);
}

.phone-status strong {
  font-size: 0.84rem;
}

.phone-status small {
  color: var(--green);
  font-weight: 900;
}

.hero-video {
  display: block;
  width: 100%;
  aspect-ratio: 53 / 29;
  border: 1px solid rgba(16, 23, 19, 0.12);
  border-radius: 18px;
  background: var(--ink);
  object-fit: cover;
}

.phone-caption {
  justify-content: space-between;
  gap: 14px;
  padding: 14px 8px 4px;
}

.phone-caption strong {
  font-size: 0.95rem;
}

.phone-caption span {
  max-width: 150px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  text-align: right;
}

.floating-card {
  display: none;
}

.floating-card span {
  display: grid;
  flex: 0 0 42px;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: var(--lime);
}

.floating-card strong,
.floating-card small {
  display: block;
}

.floating-card strong {
  font-size: 0.94rem;
  line-height: 1.1;
}

.floating-card small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
}

.floating-card-top {
  top: 98px;
  left: -18px;
  transform: rotate(-4deg);
}

.floating-card-bottom {
  right: -10px;
  bottom: 92px;
  transform: rotate(5deg);
}

.ticker {
  overflow: hidden;
  border-block: 1px solid rgba(16, 23, 19, 0.1);
  background: var(--ink);
  color: #fff;
}

.ticker-track {
  width: max-content;
  gap: 48px;
  padding: 18px 0;
  animation: ticker 26s linear infinite;
}

.ticker-track span {
  color: rgba(255, 255, 255, 0.82);
  font-family: Unbounded, Manrope, sans-serif;
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  white-space: nowrap;
}

.ticker-track span::before {
  content: "•";
  margin-right: 48px;
  color: var(--lime);
}

.start-section,
.route-section,
.guides-section,
.reviews-section,
.faq {
  padding: 104px 0;
}

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

.section-label {
  margin-bottom: 14px;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.section-heading h2,
.route-copy h2,
.fit-copy h2,
.guide-panel h2,
.price-copy h2,
.final-inner h2 {
  font-size: clamp(2rem, 4.4vw, 4.6rem);
  line-height: 1.02;
}

.section-heading > p:not(.section-label),
.route-copy p,
.guide-panel > p,
.price-copy p {
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.13rem;
  font-weight: 600;
}

.start-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 16px;
  margin-top: 44px;
}

.start-card {
  min-height: 310px;
  padding: 26px;
  border: 1px solid rgba(16, 23, 19, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 60px rgba(16, 23, 19, 0.06);
}

.workout-card {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(16, 23, 19, 0.86), rgba(15, 79, 54, 0.9)),
    var(--green-dark);
}

.card-index {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--lime);
  font-family: Unbounded, Manrope, sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
}

.start-card h3,
.route-item h3,
.system-card h3,
.fit-point strong,
.review-card p {
  font-size: 1.18rem;
  line-height: 1.24;
}

.start-card h3 {
  margin-top: 34px;
}

.start-card p {
  margin-top: 14px;
  color: var(--muted);
  font-weight: 600;
}

.workout-card p {
  color: rgba(255, 255, 255, 0.76);
}

.start-card a {
  display: inline-flex;
  margin-top: 26px;
  color: var(--lime);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.route-section {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 56px;
  align-items: start;
}

.route-copy {
  position: sticky;
  top: 116px;
}

.route-list {
  display: grid;
  gap: 14px;
}

.route-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(16, 23, 19, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.66);
}

.route-item span {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--green);
  font-family: Unbounded, Manrope, sans-serif;
  font-weight: 700;
}

.route-item:nth-child(even) span {
  color: var(--ink);
  background: var(--orange);
}

.route-item p,
.system-card p,
.fit-point p {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 600;
}

.system-section {
  padding: 108px 0;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(16, 23, 19, 0.96), rgba(15, 79, 54, 0.96)),
    var(--ink);
}

.system-section .section-label {
  color: var(--lime);
}

.system-section .section-heading > p:not(.section-label) {
  color: rgba(255, 255, 255, 0.72);
}

.system-inner {
  display: grid;
  gap: 46px;
}

.system-board {
  display: grid;
  grid-template-columns: 1.08fr 0.96fr 0.96fr;
  gap: 16px;
}

.system-card {
  min-height: 330px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  color: var(--ink);
  background: #fff;
}

.system-card-dark {
  color: #fff;
  background:
    radial-gradient(circle at 12% 14%, rgba(199, 242, 77, 0.34), transparent 12rem),
    #17231b;
}

.system-card span {
  display: inline-flex;
  margin-bottom: 88px;
  padding: 8px 10px;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--lime);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.system-card-dark p {
  color: rgba(255, 255, 255, 0.72);
}

.guide-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 38px;
  align-items: end;
}

.guide-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.guide-links a {
  display: grid;
  min-height: 250px;
  padding: 24px;
  border: 1px solid rgba(16, 23, 19, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 50px rgba(16, 23, 19, 0.06);
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.guide-links a:hover {
  transform: translateY(-6px);
  background: #fff;
  box-shadow: 0 28px 70px rgba(16, 23, 19, 0.12);
}

.guide-links span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--ink);
  font-family: Unbounded, Manrope, sans-serif;
  font-size: 0.82rem;
}

.guide-links strong {
  align-self: end;
  margin-top: 60px;
  font-size: 1.24rem;
  line-height: 1.2;
}

.guide-links small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.fit-section {
  padding: 104px 0;
  background:
    linear-gradient(180deg, rgba(238, 233, 218, 0.9), rgba(248, 246, 239, 0.95)),
    var(--paper-deep);
}

.fit-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
}

.fit-points {
  display: grid;
  gap: 12px;
}

.fit-point {
  padding: 22px;
  border: 1px solid rgba(16, 23, 19, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.review-card {
  min-height: 250px;
  padding: 24px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--ink);
}

.review-card:nth-child(2) {
  color: var(--ink);
  background: var(--lime);
}

.review-card:nth-child(3) {
  background: var(--green-dark);
}

.review-card span {
  display: block;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.86rem;
  font-weight: 800;
}

.review-card:nth-child(2) span {
  color: rgba(16, 23, 19, 0.64);
}

.price-section {
  padding: 104px 0;
  background: var(--paper);
}

.price-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 52px;
  align-items: start;
}

.price-box {
  padding: 30px;
  border: 1px solid rgba(16, 23, 19, 0.12);
  border-radius: var(--radius);
  color: #fff;
  background:
    radial-gradient(circle at 100% 0%, rgba(199, 242, 77, 0.32), transparent 12rem),
    var(--ink);
  box-shadow: var(--shadow);
}

.price-head {
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.price-head span {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 900;
}

.price-head strong {
  color: var(--lime);
  font-family: Unbounded, Manrope, sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.9rem);
  line-height: 1;
}

.price-box ul {
  display: grid;
  gap: 12px;
  margin: 26px 0 30px;
}

.price-box li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.price-box li::before {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--lime);
  content: "✓";
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 38px;
}

details {
  border: 1px solid rgba(16, 23, 19, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  font-size: 1.04rem;
  font-weight: 900;
}

details p {
  padding: 0 22px 22px;
  color: var(--muted);
  font-weight: 600;
}

details a {
  color: var(--green);
  font-weight: 900;
}

.final-cta {
  padding: 82px 0;
  color: #fff;
  background:
    radial-gradient(circle at 12% 0%, rgba(199, 242, 77, 0.34), transparent 18rem),
    linear-gradient(135deg, #0f4f36, #101713);
}

.final-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
}

.final-inner p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.13rem;
  font-weight: 600;
}

.footer {
  justify-content: space-between;
  gap: 28px;
  padding: 34px 0 42px;
  color: var(--muted);
}

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

.footer p {
  margin-top: 4px;
}

.creator-credit {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-items: center;
  color: rgba(100, 114, 103, 0.86);
  font-size: 0.9rem;
}

.creator-credit a {
  color: var(--ink);
  font-weight: 900;
}

.footer nav {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  font-weight: 800;
}

.reveal {
  transform: none;
  opacity: 1;
  transition: opacity 620ms ease, transform 620ms ease;
}

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

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.74;
  }
  50% {
    transform: scale(1.03);
    opacity: 0.32;
  }
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero,
  .route-section,
  .guide-panel,
  .fit-grid,
  .price-grid,
  .final-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 58px;
  }

  .route-copy {
    position: static;
  }

  .start-grid,
  .system-board,
  .guide-links,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .system-card,
  .start-card,
  .guide-links a,
  .review-card {
    min-height: auto;
  }

  .system-card span,
  .guide-links strong {
    margin-top: 0;
    margin-bottom: 44px;
  }

  .price-grid {
    gap: 34px;
  }
}

@media (max-width: 680px) {
  .section-shell,
  .site-header {
    width: min(100% - 24px, 1180px);
  }

  .site-header {
    top: 10px;
    margin-top: 10px;
    padding: 9px;
  }

  .brand {
    font-size: 0.92rem;
  }

  .brand-mark {
    width: 44px;
    height: 34px;
    font-size: 0.7rem;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.88rem;
  }

  .hero {
    gap: 36px;
    padding: 42px 0 48px;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 10.5vw, 3rem);
  }

  .lead {
    margin-top: 22px;
    font-size: 1.02rem;
  }

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

  .hero-proof {
    display: none;
  }

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

  .phone-frame {
    width: min(100%, 320px);
    margin-top: 8px;
    transform: rotateZ(-4deg);
  }

  .floating-card {
    width: 180px;
    padding: 11px;
  }

  .floating-card-top {
    left: 0;
    top: 16px;
  }

  .floating-card-bottom {
    right: 0;
    bottom: 24px;
  }

  .ticker-track {
    gap: 28px;
    animation-duration: 18s;
  }

  .ticker-track span::before {
    margin-right: 28px;
  }

  .start-section,
  .route-section,
  .guides-section,
  .reviews-section,
  .faq,
  .system-section,
  .fit-section,
  .price-section {
    padding: 70px 0;
  }

  .section-heading h2,
  .route-copy h2,
  .fit-copy h2,
  .guide-panel h2,
  .price-copy h2,
  .final-inner h2 {
    font-size: clamp(1.85rem, 9vw, 3rem);
  }

  .start-card,
  .system-card,
  .guide-links a,
  .review-card,
  .price-box,
  .fit-point,
  .route-item {
    padding: 22px;
  }

  .route-item {
    grid-template-columns: 50px 1fr;
    gap: 14px;
  }

  .route-item span {
    width: 50px;
    height: 50px;
  }

  .price-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .final-inner .button {
    justify-self: start;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 420px) {
  .phone-caption {
    align-items: flex-start;
    flex-direction: column;
  }

  .phone-caption span {
    max-width: none;
    text-align: left;
  }

  .floating-card {
    display: none;
  }

  .hero-visual {
    min-height: auto;
  }
}

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

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