:root {
  --forest: #237c35;
  --forest-dark: #0c3f1c;
  --leaf: #35cc43;
  --moss: #8fbf49;
  --sun: #ffd700;
  --cream: #fffcef;
  --paper: #fbfbf4;
  --white: #ffffff;
  --ink: #173b20;
  --muted: rgba(23, 59, 32, 0.68);
  --muted-soft: rgba(23, 59, 32, 0.45);
  --line: rgba(35, 124, 53, 0.16);
  --line-strong: rgba(35, 124, 53, 0.28);
  --shadow: 0 28px 90px rgba(18, 93, 39, 0.18);
  --shadow-strong: 0 44px 130px rgba(18, 93, 39, 0.26);
  --radius: 34px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background:
    radial-gradient(
      circle at 12% 10%,
      rgba(53, 204, 67, 0.22),
      transparent 34%
    ),
    radial-gradient(circle at 88% 3%, rgba(255, 215, 0, 0.22), transparent 30%),
    linear-gradient(180deg, #f7fff1 0%, #fffdf4 46%, #f3faea 100%);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  z-index: -1;
  background-image:
    linear-gradient(90deg, rgba(23, 59, 32, 0.25) 1px, transparent 1px),
    linear-gradient(rgba(23, 59, 32, 0.25) 1px, transparent 1px);
  background-size: 38px 38px;
}

.cursor-light {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(53, 204, 67, 0.2), transparent 64%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.nature-orb {
  position: fixed;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: -2;
}

.orb-one {
  background: rgba(53, 204, 67, 0.5);
  top: -180px;
  left: -200px;
}

.orb-two {
  background: rgba(255, 215, 0, 0.42);
  right: -220px;
  top: 180px;
}

.orb-three {
  background: rgba(143, 191, 73, 0.42);
  left: 22%;
  bottom: -260px;
}

.section {
  padding: 118px 6%;
}

.site-header {
  position: fixed;
  inset: 18px 0 auto;
  padding: 0 6%;
  z-index: 100;
  transition: transform 0.35s ease;
}

.nav {
  max-width: 1260px;
  min-height: 76px;
  margin: 0 auto;
  padding: 13px 15px 13px 18px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  backdrop-filter: blur(24px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 22px 70px rgba(18, 93, 39, 0.12);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Manrope', sans-serif;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--forest), var(--leaf));
  box-shadow: 0 18px 38px rgba(35, 124, 53, 0.3);
}

.nav-links {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.nav-links a {
  position: relative;
  transition: 0.25s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--forest);
  transition: width 0.25s ease;
}

.nav-links a:hover {
  color: var(--forest-dark);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta,
.primary-btn,
.secondary-btn,
.back-btn {
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  transition: 0.3s ease;
}

.nav-cta,
.primary-btn,
.back-btn {
  background: linear-gradient(135deg, var(--sun), #ffea58);
  color: var(--forest-dark);
  box-shadow: 0 18px 44px rgba(255, 215, 0, 0.26);
}

.primary-btn span {
  margin-left: 8px;
}

.nav-cta:hover,
.primary-btn:hover,
.back-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(255, 215, 0, 0.34);
}

.secondary-btn {
  color: var(--forest-dark);
  border: 1px solid rgba(35, 124, 53, 0.18);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 14px 42px rgba(18, 93, 39, 0.08);
}

.secondary-btn:hover {
  transform: translateY(-4px);
  background: white;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 17px;
  background: rgba(35, 124, 53, 0.1);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--forest-dark);
  margin: 5px auto;
}

.hero {
  position: relative;
  min-height: 100vh;
  max-width: 1440px;
  margin: 0 auto;
  padding: 165px 6% 98px;
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  align-items: center;
  gap: 74px;
}

.leaf-layer {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(4px);
  opacity: 0.22;
}

.leaf-one {
  width: 320px;
  height: 320px;
  left: -110px;
  bottom: 8%;
  background: radial-gradient(circle, var(--leaf), transparent 70%);
  animation: breathe 7s ease-in-out infinite;
}

.leaf-two {
  width: 240px;
  height: 240px;
  right: 5%;
  top: 20%;
  background: radial-gradient(circle, var(--sun), transparent 72%);
  animation: breathe 8s ease-in-out infinite reverse;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--forest);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 900;
}

.eyebrow span {
  width: 38px;
  height: 2px;
  background: var(--sun);
  box-shadow: 0 0 18px rgba(255, 215, 0, 0.8);
}

h1,
.section-head h2,
.animal-copy h2,
.ticket-main h2,
.review-copy h2,
.cta-card h2,
.privacy-card h1 {
  font-family: 'Manrope', sans-serif;
  letter-spacing: -0.075em;
}

h1 {
  margin-top: 22px;
  max-width: 750px;
  font-size: clamp(50px, 8vw, 96px);
  line-height: 0.94;
  color: var(--forest-dark);
}

.hero-text {
  margin-top: 26px;
  max-width: 660px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.78;
}

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

.hero-stats {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.hero-stats div {
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 18px 48px rgba(18, 93, 39, 0.08);
}

.hero-stats strong {
  display: block;
  font-size: 22px;
  color: var(--forest-dark);
}

.hero-stats span {
  display: block;
  margin-top: 6px;
  color: var(--muted-soft);
  font-size: 13px;
}

.hero-visual {
  position: relative;
  min-height: 720px;
  perspective: 1200px;
}

.ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(35, 124, 53, 0.16);
  box-shadow: inset 0 0 70px rgba(35, 124, 53, 0.08);
}

.ring-one {
  width: 560px;
  height: 560px;
  animation: rotateRing 18s linear infinite;
}

.ring-two {
  width: 420px;
  height: 420px;
  animation: rotateRing 12s linear infinite reverse;
}

.phone {
  position: absolute;
  overflow: hidden;
  border-radius: 42px;
  background: white;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-strong);
  transform-style: preserve-3d;
}

.phone-main {
  width: 330px;
  left: 50%;
  top: 50%;
  z-index: 5;
  transform: translate(-50%, -50%);
  animation: floatMain 6s ease-in-out infinite;
}

.phone-left {
  width: 250px;
  left: 4%;
  top: 17%;
  z-index: 3;
  opacity: 0.76;
  transform: rotate(-10deg);
}

.phone-right {
  width: 250px;
  right: 0;
  bottom: 13%;
  z-index: 3;
  opacity: 0.8;
  transform: rotate(9deg);
}

.floating-card,
.panel-chip {
  position: absolute;
  padding: 16px 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 54px rgba(18, 93, 39, 0.13);
}

.floating-card small {
  display: block;
  color: var(--muted-soft);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 5px;
}

.floating-card strong {
  color: var(--forest-dark);
}

.float-one {
  top: 170px;
  left: 0;
}

.float-two {
  right: 24px;
  bottom: 160px;
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(16px);
}

.marquee-track {
  width: max-content;
  padding: 25px 0;
  display: flex;
  gap: 56px;
  animation: marquee 25s linear infinite;
}

.marquee-track span {
  font-family: 'Manrope', sans-serif;
  font-weight: 900;
  color: rgba(23, 59, 32, 0.55);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 14px;
}

.section-head {
  max-width: 830px;
  margin: 0 auto 62px;
  text-align: center;
}

.section-head h2,
.animal-copy h2,
.ticket-main h2,
.review-copy h2,
.cta-card h2 {
  margin-top: 16px;
  color: var(--forest-dark);
  font-size: clamp(36px, 5vw, 68px);
  line-height: 0.98;
}

.section-head p,
.animal-copy p,
.ticket-main p,
.review-copy p,
.cta-card p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.feature-grid {
  max-width: 1260px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card,
.mini-card,
.step,
.review-card,
.ticket-main {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: var(--radius);
  background:
    linear-gradient(
      155deg,
      rgba(255, 255, 255, 0.94),
      rgba(246, 255, 235, 0.72)
    ),
    rgba(255, 255, 255, 0.68);
  box-shadow: 0 22px 70px rgba(18, 93, 39, 0.1);
  overflow: hidden;
  transition: 0.38s ease;
}

.feature-card::before,
.mini-card::before,
.step::before,
.review-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at var(--mx, 50%) var(--my, 50%),
    rgba(53, 204, 67, 0.18),
    transparent 34%
  );
  opacity: 0;
  transition: opacity 0.25s ease;
}

.feature-card:hover::before,
.mini-card:hover::before,
.step:hover::before,
.review-card:hover::before {
  opacity: 1;
}

.feature-card:hover,
.mini-card:hover,
.step:hover,
.review-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
  border-color: rgba(35, 124, 53, 0.28);
}

.feature-card {
  min-height: 275px;
  padding: 32px;
}

.feature-card span {
  width: 60px;
  height: 60px;
  border-radius: 21px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--forest), var(--leaf));
  color: white;
  font-weight: 900;
  margin-bottom: 30px;
  box-shadow: 0 16px 36px rgba(35, 124, 53, 0.24);
}

.feature-card h3,
.mini-card h3,
.step h3 {
  position: relative;
  font-size: 24px;
  letter-spacing: -0.045em;
  color: var(--forest-dark);
}

.feature-card p,
.mini-card p,
.step p,
.review-card p {
  position: relative;
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.72;
}

.animal-grid,
.ticket-grid {
  max-width: 1260px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 74px;
  align-items: center;
}

.info-list {
  margin-top: 36px;
  display: grid;
  gap: 14px;
}

.info-list div {
  padding: 19px 21px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 15px 45px rgba(18, 93, 39, 0.08);
}

.info-list strong,
.info-list span {
  display: block;
}

.info-list span {
  margin-top: 7px;
  color: var(--muted-soft);
}

.animal-panel {
  position: relative;
  min-height: 700px;
  border-radius: 48px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  background:
    radial-gradient(
      circle at 50% 40%,
      rgba(53, 204, 67, 0.16),
      transparent 42%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.84),
      rgba(245, 255, 232, 0.58)
    );
  box-shadow: 0 24px 80px rgba(18, 93, 39, 0.1);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.panel-phone {
  width: 315px;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(255, 255, 255, 0.9);
  z-index: 3;
}

.panel-chip {
  color: var(--forest-dark);
  font-weight: 900;
}

.chip-a {
  left: 55px;
  top: 142px;
}

.chip-b {
  right: 56px;
  bottom: 148px;
}

.chip-c {
  left: 70px;
  bottom: 235px;
}

.showcase {
  max-width: 1080px;
  height: 740px;
  margin: 0 auto;
  position: relative;
  border-radius: 52px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  background:
    radial-gradient(
      circle at 50% 44%,
      rgba(53, 204, 67, 0.17),
      transparent 40%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.84),
      rgba(245, 255, 232, 0.62)
    );
  box-shadow: 0 24px 90px rgba(18, 93, 39, 0.1);
  overflow: hidden;
}

.showcase-stage {
  height: 100%;
  display: grid;
  place-items: center;
  perspective: 1100px;
}

.screen {
  position: absolute;
  width: 306px;
  border-radius: 40px;
  overflow: hidden;
  opacity: 0;
  transform: translateX(130px) scale(0.78) rotateY(-14deg);
  transition: 0.65s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.screen.active {
  opacity: 1;
  transform: translateX(0) scale(1) rotateY(0);
  z-index: 5;
}

.screen.prev-screen {
  opacity: 0.34;
  transform: translateX(-245px) scale(0.76) rotateY(18deg) rotate(-5deg);
}

.screen.next-screen {
  opacity: 0.34;
  transform: translateX(245px) scale(0.76) rotateY(-18deg) rotate(5deg);
}

.showcase-btn {
  position: absolute;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(18px);
  color: var(--forest-dark);
  font-size: 40px;
  cursor: pointer;
  box-shadow: 0 18px 44px rgba(18, 93, 39, 0.12);
  transition: 0.28s ease;
}

.showcase-btn:hover {
  background: var(--forest);
  color: white;
  transform: translateY(-50%) scale(1.08);
}

.prev {
  left: 30px;
}

.next {
  right: 30px;
}

.screen-label {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  min-width: 230px;
  padding: 15px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  text-align: center;
  box-shadow: 0 16px 44px rgba(18, 93, 39, 0.1);
}

.screen-label span {
  display: block;
  color: var(--muted-soft);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.screen-label strong {
  display: block;
  margin-top: 4px;
  color: var(--forest-dark);
}

.ticket-grid {
  grid-template-columns: 1.12fr 0.88fr;
}

.ticket-main {
  min-height: 445px;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    radial-gradient(
      circle at 18% 20%,
      rgba(255, 215, 0, 0.18),
      transparent 34%
    ),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(247, 255, 232, 0.7));
}

.ticket-types {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.ticket-types span {
  padding: 10px 15px;
  border-radius: 999px;
  background: rgba(255, 215, 0, 0.22);
  border: 1px solid rgba(255, 215, 0, 0.45);
  color: var(--forest-dark);
  font-weight: 900;
  font-size: 13px;
}

.ticket-cards {
  display: grid;
  gap: 24px;
}

.mini-card {
  padding: 30px;
}

.steps {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.step {
  padding: 30px;
  display: grid;
  grid-template-columns: 90px 280px 1fr;
  gap: 30px;
  align-items: center;
}

.step span {
  color: var(--forest);
  font-size: 32px;
  font-weight: 900;
}

.review-grid {
  max-width: 1260px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 22px;
}

.review-card {
  padding: 30px;
  min-height: 235px;
}

.review-card span {
  position: relative;
  display: block;
  margin-top: 22px;
  color: var(--forest);
  font-weight: 900;
}

.cta-card {
  max-width: 1260px;
  margin: 0 auto;
  padding: 60px;
  border-radius: 52px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background:
    radial-gradient(
      circle at 84% 22%,
      rgba(255, 215, 0, 0.22),
      transparent 34%
    ),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(246, 255, 232, 0.7));
  box-shadow: var(--shadow);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 38px;
}

.cta-card p {
  max-width: 740px;
}

.footer {
  padding: 76px 6% 32px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.48);
}

.footer-grid {
  max-width: 1260px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.7fr;
  gap: 44px;
}

.footer p {
  margin-top: 18px;
  max-width: 450px;
  color: var(--muted);
  line-height: 1.72;
}

.footer h4 {
  color: var(--forest-dark);
  margin-bottom: 16px;
}

.footer a:not(.brand) {
  display: block;
  margin: 10px 0;
  color: var(--muted);
  transition: 0.25s ease;
}

.footer a:hover {
  color: var(--forest);
}

.footer-bottom {
  max-width: 1260px;
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  color: var(--muted-soft);
}

.privacy-main {
  padding: 150px 6% 94px;
}

.privacy-card {
  max-width: 960px;
  margin: 0 auto;
  padding: 54px;
  border-radius: 46px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background:
    radial-gradient(circle at 92% 0%, rgba(53, 204, 67, 0.16), transparent 34%),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.94),
      rgba(247, 255, 232, 0.74)
    );
  box-shadow: var(--shadow);
}

.privacy-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.privacy-card h1 {
  margin-top: 14px;
  color: var(--forest-dark);
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.95;
}

.privacy-card h2 {
  margin-top: 34px;
  color: var(--forest-dark);
  font-size: 24px;
  letter-spacing: -0.03em;
}

.privacy-card p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.86;
  white-space: pre-line;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

@keyframes breathe {
  0%,
  100% {
    transform: scale(1) translateY(0);
  }
  50% {
    transform: scale(1.08) translateY(-10px);
  }
}

@keyframes rotateRing {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes floatMain {
  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-18px);
  }
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1120px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links.open {
    position: absolute;
    top: 82px;
    left: 6%;
    right: 6%;
    padding: 18px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(24px);
    box-shadow: var(--shadow);
    display: grid;
  }

  .nav-links.open a {
    padding: 16px;
  }

  .hero,
  .animal-grid,
  .ticket-grid,
  .review-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

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

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

@media (max-width: 720px) {
  .section {
    padding: 86px 5%;
  }

  .hero {
    padding: 142px 5% 72px;
  }

  .hero-stats,
  .feature-grid {
    grid-template-columns: 1fr;
  }

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

  .ring-one {
    width: 350px;
    height: 350px;
  }

  .ring-two {
    width: 280px;
    height: 280px;
  }

  .phone-main {
    width: 245px;
  }

  .phone-left,
  .phone-right {
    width: 180px;
    opacity: 0.3;
  }

  .floating-card,
  .panel-chip {
    display: none;
  }

  .animal-panel {
    min-height: 580px;
  }

  .panel-phone {
    width: 255px;
  }

  .showcase {
    height: 600px;
  }

  .screen {
    width: 250px;
  }

  .screen.prev-screen,
  .screen.next-screen {
    opacity: 0;
  }

  .showcase-btn {
    top: auto;
    bottom: 24px;
  }

  .prev {
    left: calc(50% - 74px);
  }

  .next {
    right: calc(50% - 74px);
  }

  .screen-label {
    display: none;
  }

  .ticket-main,
  .cta-card,
  .privacy-card {
    padding: 30px;
  }

  .privacy-top {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 14px;
  }
}
.marquee-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: marquee 18s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
