/* style.css */
:root {
  --green-950: #041f10;
  --green-900: #063316;
  --green-800: #09501f;
  --green-700: #0d6b2e;
  --green-500: #20b857;
  --lime: #a7ff4f;
  --orange: #ff8a00;
  --orange-2: #ffc247;
  --white: #ffffff;
  --cream: #f7fff4;
  --dark: #09140d;
  --text: #102016;
  --muted: #68756d;
  --glass: rgba(255, 255, 255, 0.14);
  --line: rgba(255, 255, 255, 0.22);
  --shadow-green: 0 28px 90px rgba(7, 89, 37, 0.35);
  --shadow-orange: 0 24px 70px rgba(255, 138, 0, 0.35);
  --radius-xl: 38px;
  --radius-lg: 28px;
  --radius-md: 18px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, Arial, sans-serif;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 138, 0, 0.22), transparent 26%),
    radial-gradient(
      circle at 80% 20%,
      rgba(167, 255, 79, 0.16),
      transparent 26%
    ),
    linear-gradient(180deg, #041f10 0%, #083619 42%, #f5fff2 42%, #ffffff 100%);
  color: var(--text);
  overflow-x: hidden;
}

body.locked {
  overflow: hidden;
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  z-index: 100;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 38px 38px;
  mix-blend-mode: overlay;
}

.cursor-glow {
  position: fixed;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle, rgba(255, 138, 0, 0.24), transparent 62%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  width: min(1180px, calc(100% - 30px));
  height: 76px;
  transform: translateX(-50%);
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(4, 31, 16, 0.72);
  backdrop-filter: blur(24px);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.3);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
  font-weight: 950;
  letter-spacing: -0.03em;
}

.brand-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--green-500), var(--lime));
  box-shadow: 0 12px 28px rgba(32, 184, 87, 0.35);
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  padding: 12px 15px;
  border-radius: 999px;
  transition: 0.28s ease;
}

.nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.download-btn {
  min-width: 132px;
  height: 50px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: var(--dark);
  font-weight: 950;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: 0 18px 45px rgba(255, 138, 0, 0.35);
  transition: 0.28s ease;
}

.download-btn:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 24px 65px rgba(255, 138, 0, 0.48);
}

.menu-btn {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-size: 24px;
}

.hero {
  min-height: 100vh;
  position: relative;
  padding: 150px 7vw 95px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 62px;
  color: var(--white);
  overflow: hidden;
}

.hero-field {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background:
    linear-gradient(
      90deg,
      transparent 49.8%,
      rgba(255, 255, 255, 0.35) 50%,
      transparent 50.2%
    ),
    radial-gradient(
      circle at 50% 50%,
      transparent 0 125px,
      rgba(255, 255, 255, 0.28) 126px 128px,
      transparent 129px
    ),
    linear-gradient(rgba(255, 255, 255, 0.15) 2px, transparent 2px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.13) 2px, transparent 2px);
  background-size:
    100% 100%,
    100% 100%,
    180px 180px,
    180px 180px;
  animation: fieldMove 18s linear infinite;
}

.floating-ball {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 50%;
  filter: drop-shadow(0 24px 45px rgba(0, 0, 0, 0.28));
  animation: floatBall 5s ease-in-out infinite;
}

.ball-a {
  top: 20%;
  right: 8%;
  font-size: 72px;
}

.ball-b {
  bottom: 16%;
  left: 5%;
  font-size: 54px;
  animation-delay: -1.4s;
}

.ball-c {
  top: 18%;
  left: 38%;
  font-size: 42px;
  animation-delay: -2.2s;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--orange-2);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 950;
}

.hero h1 {
  margin-top: 24px;
  max-width: 850px;
  font-size: clamp(54px, 8vw, 112px);
  line-height: 0.88;
  letter-spacing: -0.08em;
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.32);
}

.hero p {
  margin-top: 28px;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 21px;
  line-height: 1.65;
}

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

.btn {
  min-height: 62px;
  padding: 0 30px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 16px;
  font-weight: 950;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-primary {
  color: #120b00;
  background: linear-gradient(135deg, var(--orange), #ffd34f);
  box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 32px 95px rgba(255, 138, 0, 0.52);
}

.btn-glass {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(20px);
}

.btn-glass:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.2);
}

.hero-metrics {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 630px;
  gap: 14px;
}

.hero-metrics div {
  padding: 24px 22px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
}

.hero-metrics b {
  display: block;
  color: var(--orange-2);
  font-size: 38px;
  line-height: 1;
}

.hero-metrics span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 750;
}

.phone-wrap {
  display: flex;
  justify-content: center;
  perspective: 1200px;
}

.phone {
  width: min(390px, 100%);
  padding: 14px;
  border-radius: 54px;
  background: linear-gradient(145deg, #0a0f0c, #203425);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 44px 120px rgba(0, 0, 0, 0.48),
    0 0 80px rgba(255, 138, 0, 0.14);
  transform: rotateY(-10deg) rotateX(4deg);
}

.phone-speaker {
  width: 110px;
  height: 18px;
  margin: 5px auto 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.phone-screen {
  min-height: 640px;
  padding: 28px 22px 18px;
  border-radius: 42px;
  background:
    linear-gradient(180deg, rgba(13, 107, 46, 0.94), rgba(4, 31, 16, 0.94)),
    radial-gradient(circle at 60% 10%, rgba(255, 138, 0, 0.2), transparent 30%);
  overflow: hidden;
  color: var(--white);
}

.mini-top {
  display: flex;
  justify-content: space-between;
  font-weight: 900;
  font-size: 20px;
}

.progress-line {
  margin: 22px 0;
  height: 10px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.25);
  overflow: hidden;
}

.progress-line span {
  display: block;
  width: 34%;
  height: 100%;
  background: var(--orange);
  border-radius: inherit;
}

.mini-card,
.mini-grid div {
  border-radius: 24px;
  background: var(--white);
  color: var(--text);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.16);
}

.mini-card {
  padding: 22px;
  margin-bottom: 18px;
}

.mini-card.large {
  margin-top: 22px;
}

.mini-card strong {
  display: block;
  font-size: 21px;
}

.mini-card p {
  margin-top: 8px;
  color: #4e5d53;
  font-size: 15px;
}

.mini-progress {
  margin-top: 14px;
  height: 10px;
  border-radius: 99px;
  background: #e5e5e5;
}

.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 18px;
}

.mini-grid div {
  padding: 20px;
}

.mini-grid span {
  font-size: 26px;
}

.mini-grid b {
  display: block;
  margin-top: 8px;
  font-size: 22px;
}

.mini-grid small {
  color: #68756d;
}

.mini-nav {
  position: absolute;
  left: 35px;
  right: 35px;
  bottom: 32px;
  height: 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  place-items: center;
  border-radius: 30px;
  background: rgba(245, 255, 242, 0.92);
  color: #213326;
  font-size: 22px;
}

.ticker {
  overflow: hidden;
  padding: 20px 0;
  background: #03150b;
  border-block: 1px solid rgba(255, 255, 255, 0.12);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 24s linear infinite;
}

.ticker span {
  color: var(--orange-2);
  padding: 0 30px;
  font-weight: 1000;
  letter-spacing: 0.18em;
}

.section {
  padding: 110px 7vw;
  position: relative;
}

.section-title {
  max-width: 860px;
  margin-bottom: 46px;
}

.section-title h2,
.challenge-copy h2,
.timer-info h2,
.final-cta h2 {
  margin-top: 18px;
  font-size: clamp(42px, 6vw, 86px);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.section-title p,
.challenge-copy p,
.timer-info p,
.final-cta p {
  margin-top: 20px;
  max-width: 720px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.65;
}

.about {
  background: linear-gradient(180deg, #f5fff2, #ffffff);
}

.about .eyebrow,
.challenge-zone .eyebrow,
.timer-section .eyebrow,
.screens-section .eyebrow,
.final-cta .eyebrow {
  background: rgba(13, 107, 46, 0.08);
  border-color: rgba(13, 107, 46, 0.14);
  color: var(--green-700);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.wow-card {
  position: relative;
  min-height: 290px;
  padding: 34px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.94),
      rgba(255, 255, 255, 0.72)
    ),
    radial-gradient(circle at 20% 0%, rgba(255, 138, 0, 0.12), transparent 35%);
  border: 1px solid rgba(13, 107, 46, 0.14);
  box-shadow: 0 24px 75px rgba(7, 89, 37, 0.12);
  overflow: hidden;
  transition: 0.35s ease;
}

.wow-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(
    135deg,
    transparent,
    rgba(255, 138, 0, 0.28),
    transparent
  );
  opacity: 0;
  transition: 0.35s ease;
}

.wow-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-green);
}

.wow-card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  color: white;
  font-size: 34px;
  box-shadow: 0 20px 42px rgba(13, 107, 46, 0.3);
}

.wow-card h3,
.belt-card h3 {
  margin-top: 32px;
  font-size: 28px;
  letter-spacing: -0.03em;
}

.wow-card p,
.belt-card p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.65;
  font-size: 17px;
}

.challenge-zone {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(255, 138, 0, 0.14),
      transparent 30%
    ),
    linear-gradient(180deg, #ffffff, #f7fff4);
}

.skill-pills {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.skill-pills button {
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid rgba(13, 107, 46, 0.18);
  border-radius: 999px;
  background: white;
  color: var(--green-800);
  font-weight: 950;
  cursor: pointer;
  transition: 0.28s ease;
}

.skill-pills button:hover,
.skill-pills button.active {
  color: white;
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  transform: translateY(-3px);
  box-shadow: 0 16px 42px rgba(13, 107, 46, 0.24);
}

.challenge-preview {
  min-height: 460px;
  padding: 38px;
  border-radius: 44px;
  background:
    linear-gradient(145deg, rgba(4, 31, 16, 0.96), rgba(13, 107, 46, 0.94)),
    radial-gradient(circle at 80% 5%, rgba(255, 138, 0, 0.28), transparent 34%);
  color: white;
  box-shadow: var(--shadow-green);
  position: relative;
  overflow: hidden;
}

.challenge-preview::after {
  content: '';
  position: absolute;
  width: 360px;
  height: 360px;
  right: -160px;
  bottom: -160px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, 0.22);
  animation: rotate 18s linear infinite;
}

.preview-head {
  display: flex;
  gap: 18px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.preview-head > span {
  width: 82px;
  height: 82px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.14);
  display: grid;
  place-items: center;
  font-size: 36px;
}

.preview-head h3 {
  font-size: 32px;
}

.preview-head p {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.7);
}

.challenge-preview > p {
  position: relative;
  z-index: 2;
  margin-top: 42px;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 21px;
  line-height: 1.65;
}

.preview-footer {
  position: relative;
  z-index: 2;
  margin-top: 50px;
  padding: 18px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.preview-footer b {
  color: var(--orange-2);
}

.timer-section {
  background: linear-gradient(180deg, #f7fff4, #ffffff);
}

.timer-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
  padding: 52px;
  border-radius: 52px;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 138, 0, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(245, 255, 242, 0.9));
  border: 1px solid rgba(13, 107, 46, 0.14);
  box-shadow: 0 28px 90px rgba(7, 89, 37, 0.13);
}

.timer-ring {
  width: min(360px, 100%);
  aspect-ratio: 1;
  margin: auto;
  position: relative;
  display: grid;
  place-items: center;
}

.timer-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.timer-ring circle {
  fill: none;
  stroke-width: 18;
}

.timer-ring circle:first-child {
  stroke: rgba(13, 107, 46, 0.11);
}

#timerCircle {
  stroke: url(#none);
  stroke: var(--orange);
  stroke-linecap: round;
  stroke-dasharray: 590;
  stroke-dashoffset: 590;
  transition: 0.4s ease;
}

.timer-center {
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, #ffffff 0%, #f7fff4 70%);
  display: grid;
  place-items: center;
  text-align: center;
  box-shadow: inset 0 0 40px rgba(255, 138, 0, 0.13);
}

.timer-center strong {
  display: block;
  color: var(--green-950);
  font-size: 50px;
}

.timer-center span {
  color: var(--muted);
  margin-top: -34px;
}

.timer-actions {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.timer-actions .btn-glass {
  color: var(--green-800);
  background: white;
  border: 1px solid rgba(13, 107, 46, 0.2);
}

/* replace old .screens-section / .screens-grid styles with this */

.screens-section {
  overflow: hidden;
  background:
    radial-gradient(
      circle at 12% 12%,
      rgba(255, 138, 0, 0.22),
      transparent 28%
    ),
    radial-gradient(
      circle at 82% 20%,
      rgba(32, 184, 87, 0.18),
      transparent 32%
    ),
    linear-gradient(180deg, #ffffff 0%, #f3fff0 100%);
}

.premium-carousel {
  position: relative;
  min-height: 740px;
  display: grid;
  place-items: center;
  perspective: 1500px;
}

.premium-carousel::before {
  content: '';
  position: absolute;
  width: min(920px, 90vw);
  height: 420px;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255, 138, 0, 0.28), transparent 58%),
    radial-gradient(circle at 70% 40%, rgba(32, 184, 87, 0.24), transparent 60%);
  filter: blur(26px);
  transform: translateY(70px);
  opacity: 0.9;
}

.carousel-stage {
  position: relative;
  width: min(980px, 92vw);
  height: 660px;
  transform-style: preserve-3d;
}

.shot-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 280px;
  height: 590px;
  border-radius: 42px;
  padding: 10px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.95),
      rgba(255, 255, 255, 0.66)
    ),
    radial-gradient(circle at 20% 0%, rgba(255, 138, 0, 0.28), transparent 38%);
  border: 1px solid rgba(13, 107, 46, 0.16);
  box-shadow:
    0 28px 90px rgba(7, 89, 37, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.72);
  transition:
    transform 0.75s cubic-bezier(0.2, 0.9, 0.18, 1),
    opacity 0.55s ease,
    filter 0.55s ease;
}

.shot-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 34px;
}

.shot-card::before {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.74)),
    linear-gradient(120deg, rgba(255, 255, 255, 0.24), transparent 34%);
  opacity: 0.75;
  pointer-events: none;
}

.shot-card::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 42px;
  border: 2px solid rgba(255, 138, 0, 0);
  box-shadow: 0 0 0 rgba(255, 138, 0, 0);
  transition: 0.5s ease;
  pointer-events: none;
}

.shot-card.active::after {
  border-color: rgba(255, 138, 0, 0.7);
  box-shadow:
    0 0 34px rgba(255, 138, 0, 0.45),
    0 0 90px rgba(32, 184, 87, 0.22);
}

.shot-card.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 5;
  filter: blur(0);
  transform: translate(-50%, -50%) translateZ(160px) scale(1) rotateY(0deg);
}

.shot-card.prev-1 {
  opacity: 0.82;
  z-index: 4;
  filter: blur(0.2px) saturate(0.9);
  transform: translate(-92%, -50%) translateZ(40px) scale(0.84) rotateY(18deg);
}

.shot-card.next-1 {
  opacity: 0.82;
  z-index: 4;
  filter: blur(0.2px) saturate(0.9);
  transform: translate(-8%, -50%) translateZ(40px) scale(0.84) rotateY(-18deg);
}

.shot-card.prev-2 {
  opacity: 0.36;
  z-index: 3;
  filter: blur(2px) saturate(0.7);
  transform: translate(-128%, -50%) translateZ(-120px) scale(0.7) rotateY(28deg);
}

.shot-card.next-2 {
  opacity: 0.36;
  z-index: 3;
  filter: blur(2px) saturate(0.7);
  transform: translate(28%, -50%) translateZ(-120px) scale(0.7) rotateY(-28deg);
}

.shot-caption {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 24px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: white;
}

.shot-caption span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: #141006;
  font-weight: 1000;
  box-shadow: 0 14px 35px rgba(255, 138, 0, 0.38);
}

.shot-caption b {
  font-size: 20px;
  text-align: right;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.38);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(13, 107, 46, 0.16);
  border-radius: 24px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.96),
    rgba(255, 255, 255, 0.7)
  );
  color: var(--green-900);
  font-size: 54px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 24px 70px rgba(7, 89, 37, 0.16);
  backdrop-filter: blur(18px);
  transition: 0.28s ease;
}

.carousel-btn:hover {
  transform: translateY(-50%) scale(1.08);
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: #120b00;
  box-shadow: 0 28px 85px rgba(255, 138, 0, 0.34);
}

.carousel-btn.prev {
  left: max(20px, calc(50% - 570px));
  transform: translateY(-50%);
}

.carousel-btn.next {
  right: max(20px, calc(50% - 570px));
  transform: translateY(-50%);
}

.carousel-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  z-index: 12;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(4, 31, 16, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: 0.3s ease;
}

.carousel-dots button.active {
  width: 34px;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: 0 0 18px rgba(255, 138, 0, 0.48);
}

@media (max-width: 820px) {
  .premium-carousel {
    min-height: 660px;
  }

  .carousel-stage {
    height: 590px;
  }

  .shot-card {
    width: 245px;
    height: 520px;
    border-radius: 36px;
  }

  .shot-card img,
  .shot-card::before {
    border-radius: 28px;
  }

  .shot-card.prev-1 {
    transform: translate(-82%, -50%) translateZ(20px) scale(0.76) rotateY(18deg);
  }

  .shot-card.next-1 {
    transform: translate(-18%, -50%) translateZ(20px) scale(0.76)
      rotateY(-18deg);
  }

  .shot-card.prev-2,
  .shot-card.next-2 {
    opacity: 0;
  }

  .carousel-btn {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    font-size: 42px;
  }

  .carousel-btn.prev {
    left: 10px;
  }

  .carousel-btn.next {
    right: 10px;
  }
}
/* replace old .screens-section / .screens-grid styles with this */

.screens-section {
  overflow: hidden;
  background:
    radial-gradient(
      circle at 12% 12%,
      rgba(255, 138, 0, 0.22),
      transparent 28%
    ),
    radial-gradient(
      circle at 82% 20%,
      rgba(32, 184, 87, 0.18),
      transparent 32%
    ),
    linear-gradient(180deg, #ffffff 0%, #f3fff0 100%);
}

.premium-carousel {
  position: relative;
  min-height: 740px;
  display: grid;
  place-items: center;
  perspective: 1500px;
}

.premium-carousel::before {
  content: '';
  position: absolute;
  width: min(920px, 90vw);
  height: 420px;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255, 138, 0, 0.28), transparent 58%),
    radial-gradient(circle at 70% 40%, rgba(32, 184, 87, 0.24), transparent 60%);
  filter: blur(26px);
  transform: translateY(70px);
  opacity: 0.9;
}

.carousel-stage {
  position: relative;
  width: min(980px, 92vw);
  height: 660px;
  transform-style: preserve-3d;
}

.shot-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 280px;
  height: 590px;
  border-radius: 42px;
  padding: 10px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.95),
      rgba(255, 255, 255, 0.66)
    ),
    radial-gradient(circle at 20% 0%, rgba(255, 138, 0, 0.28), transparent 38%);
  border: 1px solid rgba(13, 107, 46, 0.16);
  box-shadow:
    0 28px 90px rgba(7, 89, 37, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.72);
  transition:
    transform 0.75s cubic-bezier(0.2, 0.9, 0.18, 1),
    opacity 0.55s ease,
    filter 0.55s ease;
}

.shot-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 34px;
}

.shot-card::before {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.74)),
    linear-gradient(120deg, rgba(255, 255, 255, 0.24), transparent 34%);
  opacity: 0.75;
  pointer-events: none;
}

.shot-card::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 42px;
  border: 2px solid rgba(255, 138, 0, 0);
  box-shadow: 0 0 0 rgba(255, 138, 0, 0);
  transition: 0.5s ease;
  pointer-events: none;
}

.shot-card.active::after {
  border-color: rgba(255, 138, 0, 0.7);
  box-shadow:
    0 0 34px rgba(255, 138, 0, 0.45),
    0 0 90px rgba(32, 184, 87, 0.22);
}

.shot-card.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 5;
  filter: blur(0);
  transform: translate(-50%, -50%) translateZ(160px) scale(1) rotateY(0deg);
}

.shot-card.prev-1 {
  opacity: 0.82;
  z-index: 4;
  filter: blur(0.2px) saturate(0.9);
  transform: translate(-92%, -50%) translateZ(40px) scale(0.84) rotateY(18deg);
}

.shot-card.next-1 {
  opacity: 0.82;
  z-index: 4;
  filter: blur(0.2px) saturate(0.9);
  transform: translate(-8%, -50%) translateZ(40px) scale(0.84) rotateY(-18deg);
}

.shot-card.prev-2 {
  opacity: 0.36;
  z-index: 3;
  filter: blur(2px) saturate(0.7);
  transform: translate(-128%, -50%) translateZ(-120px) scale(0.7) rotateY(28deg);
}

.shot-card.next-2 {
  opacity: 0.36;
  z-index: 3;
  filter: blur(2px) saturate(0.7);
  transform: translate(28%, -50%) translateZ(-120px) scale(0.7) rotateY(-28deg);
}

.shot-caption {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 24px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: white;
}

.shot-caption span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: #141006;
  font-weight: 1000;
  box-shadow: 0 14px 35px rgba(255, 138, 0, 0.38);
}

.shot-caption b {
  font-size: 20px;
  text-align: right;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.38);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(13, 107, 46, 0.16);
  border-radius: 24px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.96),
    rgba(255, 255, 255, 0.7)
  );
  color: var(--green-900);
  font-size: 54px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 24px 70px rgba(7, 89, 37, 0.16);
  backdrop-filter: blur(18px);
  transition: 0.28s ease;
}

.carousel-btn:hover {
  transform: translateY(-50%) scale(1.08);
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: #120b00;
  box-shadow: 0 28px 85px rgba(255, 138, 0, 0.34);
}

.carousel-btn.prev {
  left: max(20px, calc(50% - 570px));
  transform: translateY(-50%);
}

.carousel-btn.next {
  right: max(20px, calc(50% - 570px));
  transform: translateY(-50%);
}

.carousel-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  z-index: 12;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(4, 31, 16, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: 0.3s ease;
}

.carousel-dots button.active {
  width: 34px;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: 0 0 18px rgba(255, 138, 0, 0.48);
}

@media (max-width: 820px) {
  .premium-carousel {
    min-height: 660px;
  }

  .carousel-stage {
    height: 590px;
  }

  .shot-card {
    width: 245px;
    height: 520px;
    border-radius: 36px;
  }

  .shot-card img,
  .shot-card::before {
    border-radius: 28px;
  }

  .shot-card.prev-1 {
    transform: translate(-82%, -50%) translateZ(20px) scale(0.76) rotateY(18deg);
  }

  .shot-card.next-1 {
    transform: translate(-18%, -50%) translateZ(20px) scale(0.76)
      rotateY(-18deg);
  }

  .shot-card.prev-2,
  .shot-card.next-2 {
    opacity: 0;
  }

  .carousel-btn {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    font-size: 42px;
  }

  .carousel-btn.prev {
    left: 10px;
  }

  .carousel-btn.next {
    right: 10px;
  }
}

.screens-grid img:hover {
  transform: translateY(-12px) scale(1.025);
  box-shadow: 0 34px 95px rgba(255, 138, 0, 0.25);
}

.feature-belt {
  background: linear-gradient(180deg, #f5fff2, #ffffff);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.belt-card {
  padding: 30px;
  border-radius: 30px;
  background: white;
  border: 1px solid rgba(13, 107, 46, 0.14);
  box-shadow: 0 22px 65px rgba(7, 89, 37, 0.1);
}

.belt-card span {
  color: var(--orange);
  font-weight: 1000;
  letter-spacing: 0.12em;
}

.final-cta {
  margin: 40px 7vw 110px;
  padding: 82px 42px;
  position: relative;
  overflow: hidden;
  border-radius: 56px;
  text-align: center;
  color: white;
  background:
    radial-gradient(
      circle at 50% -20%,
      rgba(255, 138, 0, 0.45),
      transparent 35%
    ),
    linear-gradient(135deg, var(--green-950), var(--green-700));
  box-shadow: var(--shadow-green);
}

.final-cta .eyebrow {
  color: var(--orange-2);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.final-cta p {
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.75);
}

.final-cta .btn {
  margin-top: 32px;
}

.cta-orbit {
  position: absolute;
  width: 520px;
  height: 520px;
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  top: -260px;
  left: 50%;
  transform: translateX(-50%);
  animation: rotate 22s linear infinite;
}

.footer {
  padding: 42px 7vw;
  color: white;
  background: #03150b;
  display: flex;
  justify-content: space-between;
  gap: 28px;
}

.footer b {
  font-size: 22px;
}

.footer p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.58);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.footer-links a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.16);
}

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

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

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

@keyframes fieldMove {
  from {
    background-position:
      0 0,
      0 0,
      0 0,
      0 0;
  }
  to {
    background-position:
      0 0,
      0 0,
      180px 180px,
      180px 180px;
  }
}

@keyframes floatBall {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-24px) rotate(9deg);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1100px) {
  .hero,
  .challenge-zone,
  .timer-card {
    grid-template-columns: 1fr;
  }

  .phone {
    transform: none;
  }

  .about-grid,
  .feature-belt {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 820px) {
  .site-header {
    height: 68px;
  }

  .nav {
    position: fixed;
    top: 82px;
    left: 15px;
    right: 15px;
    display: none;
    flex-direction: column;
    padding: 18px;
    border-radius: 28px;
    background: rgba(4, 31, 16, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
  }

  .nav.open {
    display: flex;
  }

  .download-btn {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .brand span:last-child {
    display: none;
  }

  .hero {
    padding-top: 120px;
  }

  .hero-metrics,
  .about-grid,
  .feature-belt,
  .screens-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 58px;
  }

  .timer-card {
    padding: 28px;
    border-radius: 36px;
  }

  .final-cta {
    padding: 58px 24px;
  }

  .footer {
    flex-direction: column;
  }
}
