:root {
  --bg: #0a0a0a;
  --bg-card: #111111;
  --bg-card-2: #161616;
  --gold: #d4af37;
  --gold-light: #f0d060;
  --gold-dark: #b8860b;
  --green: #3dff6a;
  --green-dim: #2ecc71;
  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.72);
  --border-gold: rgba(212, 175, 55, 0.45);
  --container: 1180px;
  --radius: 10px;
  --font-body: "IBM Plex Sans", system-ui, sans-serif;
  --font-display: "Anton SC", sans-serif;
  --text-scale: 1.15;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: calc(16px * var(--text-scale));
  background: var(--bg);
  color: var(--text);
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

.hero__badge,
.hero__title,
.hero__subtitle,
.access-panel__label,
.access-panel__stat-title,
.access-panel__stat-num,
.access-panel__timer-label,
.form-card__title,
.form-card__subtitle,
.steps-card__title,
.why-card__title,
.step-item__num,
.results__title,
.final-cta__title,
.btn-gold {
  font-family: var(--font-display);
  font-weight: 400;
}

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

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

button,
input {
  font-family: inherit;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.gold {
  color: var(--gold);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 100%;
  padding: 16px 22px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    var(--gold-light) 0%,
    var(--gold) 45%,
    var(--gold-dark) 100%
  );
  color: #111;
  font-size: 16px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.35);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.btn-gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(212, 175, 55, 0.45);
}

.btn-gold .fas {
  font-size: 15px;
}

.btn-gold-sub {
  display: block;
  margin-top: 8px;
  font-family: var(--font-body);
  font-size: calc(11px * var(--text-scale));
  font-weight: 600;
  color: rgba(0, 0, 0, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
}

.hero {
  position: relative;
  padding: 48px 0 64px;
  text-align: center;
  overflow: hidden;
  background: var(--bg);
  z-index: 1;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--bg);
}

.hero__bg-track {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr);
}

.hero__bg-cell {
  position: relative;
  overflow: hidden;
  min-height: 100%;
}

.hero__bg-cell img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.hero__bg-cell--bridge img {
  object-position: center 42%;
}

.hero__bg-cell--chart img {
  object-position: center center;
}

.hero__bg-cell--bridge::after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: min(32%, 180px);
  background: linear-gradient(
    270deg,
    rgba(10, 10, 10, 0.95) 0%,
    rgba(10, 10, 10, 0.35) 45%,
    transparent 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero__bg-cell--chart::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: min(26%, 150px);
  background: linear-gradient(
    90deg,
    var(--bg) 0%,
    rgba(10, 10, 10, 0.75) 40%,
    transparent 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.78) 0%,
    rgba(10, 10, 10, 0.5) 30%,
    rgba(10, 10, 10, 0.28) 55%,
    rgba(10, 10, 10, 0.45) 78%,
    var(--bg) 100%
  );
  pointer-events: none;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero__badge {
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.hero__title {
  margin: 0 0 16px;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero__subtitle {
  margin: 0 auto;
  max-width: 720px;
  font-size: clamp(
    calc(17px * var(--text-scale)),
    calc(2.2vw * var(--text-scale)),
    calc(21px * var(--text-scale))
  );
  line-height: 1.25;
  letter-spacing: 0;
  color: var(--text-muted);
}

.main-grid {
  padding: 0 0 28px;
  margin-top: -20px;
  position: relative;
  z-index: 2;
}

.main-grid__inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  grid-template-areas:
    "video panel"
    "form form";
  gap: 20px;
  align-items: start;
  isolation: isolate;
}

.main-grid__video {
  grid-area: video;
  min-width: 0;
  position: relative;
  z-index: 10;
}

.form-section {
  grid-area: form;
}

.access-panel {
  grid-area: panel;
  position: relative;
  z-index: 10;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #141414 0%, #0c0c0c 100%);
  padding: 22px 20px;
  text-align: center;
}

.access-panel__label {
  margin: 0 0 18px;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--gold);
}

.access-panel__stat-title {
  margin: 0 0 8px;
  font-size: 13px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.35;
}

.access-panel__stat-num {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
  margin: 0 0 22px;
  font-size: clamp(42px, 5.5vw, 54px);
  color: var(--green);
  line-height: 1;
  letter-spacing: 0;
  min-height: 1em;
}

.odometer-digit {
  display: inline-block;
  height: 1em;
  overflow: hidden;
  vertical-align: top;
}

.odometer-digit__reel {
  display: flex;
  flex-direction: column;
  will-change: transform;
}

.odometer-digit__char {
  height: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0.55em;
}

.odometer-sep {
  display: inline-flex;
  align-items: center;
  padding: 0 1px;
  line-height: 1;
}

#accessCountdown.is-urgent .timer-block__box {
  color: #ff4545;
  border-color: rgba(255, 69, 69, 0.55);
  box-shadow: 0 0 12px rgba(255, 69, 69, 0.2);
  transition:
    color 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.access-panel__timer-label {
  margin: 0 0 12px;
  font-size: 13px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.access-panel__cta {
  margin-top: 4px;
}

.access-panel__cta .btn-gold-sub {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: calc(10px * var(--text-scale));
  letter-spacing: 0.1em;
}

.timer-blocks {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 22px;
}

.timer-block {
  flex: 1;
  max-width: 88px;
}

.timer-block__digits {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin-bottom: 6px;
}

.timer-block__box {
  min-width: 36px;
  padding: 10px 6px;
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  background: #0a0a0a;
  font-size: 22px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: var(--text);
  transition:
    color 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.timer-block__unit {
  font-size: calc(9px * var(--text-scale));
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-section {
  padding: 0 0 8px;
  min-width: 0;
}

.form-section.hide {
  display: none !important;
}

.form-section.form-reveal-animate {
  animation: formReveal 0.65s ease forwards;
}

@keyframes formReveal {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes formGlowPulse {
  0%,
  100% {
    opacity: 0.885;
    filter: blur(calc(var(--glow-blur, 90px) - 4px));
    border-radius: 47% 53% 51.5% 48.5% / 51.5% 48.5% 52.5% 47.5%;
  }
  33% {
    opacity: 1;
    filter: blur(calc(var(--glow-blur, 90px) + 6px));
    border-radius: 53% 47% 48.5% 51.5% / 48.5% 51.5% 47.5% 53%;
  }
  66% {
    opacity: 0.931;
    filter: blur(calc(var(--glow-blur, 90px) - 2px));
    border-radius: 50% 50% 52.5% 47.5% / 52.5% 47.5% 50% 52.5%;
  }
}

@keyframes formGlowRipple {
  0%,
  100% {
    opacity: calc(0.8 + var(--spot-glow, 0) * 0.08);
    filter: blur(21px);
    border-radius: 53% 47% 50% 50% / 47% 53% 50% 50%;
  }
  50% {
    opacity: calc(0.94 + var(--spot-glow, 0) * 0.06);
    filter: blur(29px);
    border-radius: 47% 53% 47% 53% / 53% 47% 53% 47%;
  }
}

.form-card {
  max-width: 520px;
  margin: 0 auto;
  padding: 28px 24px 32px;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  background: linear-gradient(160deg, #161616 0%, #0d0d0d 100%);
  transition:
    box-shadow 0.45s ease,
    border-color 0.45s ease;
}

.form-card.is-focused {
  border-color: rgba(212, 175, 55, 0.9);
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.5),
    0 0 28px rgba(212, 175, 55, 0.55),
    0 0 48px rgba(212, 175, 55, 0.25);
}

.form-card__title {
  margin: 0 0 8px;
  font-size: 24px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1.1;
}

.form-card__subtitle {
  margin: 0 0 22px;
  font-size: calc(15px * var(--text-scale));
  text-align: center;
  letter-spacing: 0;
  line-height: 1.25;
  color: var(--text-muted);
}

.form-card__fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-card input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: #0a0a0a;
  color: #fff;
  font-size: calc(15px * var(--text-scale));
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.form-card input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-card input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.25);
}

@keyframes formBtnPulse {
  0%,
  100% {
    box-shadow:
      0 4px 16px rgba(212, 175, 55, 0.32),
      0 0 10px rgba(212, 175, 55, 0.1);
    filter: brightness(1);
  }
  50% {
    box-shadow:
      0 6px 24px rgba(212, 175, 55, 0.46),
      0 0 22px rgba(212, 175, 55, 0.26);
    filter: brightness(1.06);
  }
}

@keyframes formBtnShine {
  0%,
  100% {
    opacity: 0.15;
  }
  50% {
    opacity: 0.65;
  }
}

.form-card .btn-gold {
  position: relative;
  z-index: 0;
  margin-top: 8px;
  overflow: visible;
  animation: formBtnPulse 2.8s ease-in-out infinite;
}

.form-card .btn-gold::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255, 236, 170, 0.5) 0%,
    rgba(212, 175, 55, 0.2) 45%,
    transparent 72%
  );
  opacity: 0.2;
  animation: formBtnShine 2.8s ease-in-out infinite;
}

.form-card .btn-gold:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
  box-shadow:
    0 8px 28px rgba(212, 175, 55, 0.52),
    0 0 26px rgba(212, 175, 55, 0.32);
}

@media (prefers-reduced-motion: reduce) {
  .form-card .btn-gold,
  .form-card .btn-gold::before {
    animation: none;
  }

  .form-card .btn-gold::before {
    opacity: 0;
  }
}

@media (min-width: 1200px) {
  .form-section:not(.hide) {
    position: relative;
    z-index: 0;
    display: flex;
    justify-content: center;
    padding: 40px 0 32px;
    overflow: visible;
  }

  .form-glow {
    display: none;
  }

  .form-section:not(.hide) {
    --spot-x: 50%;
    --spot-y: 52%;
    --spot-glow: 0;
    --glow-skew-x: 0deg;
    --glow-skew-y: 0deg;
    --glow-tilt-x: 0deg;
    --glow-tilt-y: 0deg;
    --glow-stretch-x: 1;
    --glow-stretch-y: 1;
    --glow-blur: 90px;
    --shadow-ox: 0px;
    --shadow-oy: 0px;
  }

  .form-section:not(.hide) .form-glow {
    display: block;
    position: absolute;
    left: 50%;
    top: 52%;
    width: min(110%, 1100px);
    height: 480px;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: -1;
  }

  .form-glow__warp {
    position: absolute;
    inset: 0;
    transform: perspective(900px) rotateX(var(--glow-tilt-y, 0deg))
      rotateY(var(--glow-tilt-x, 0deg)) skewX(var(--glow-skew-x, 0deg))
      skewY(var(--glow-skew-y, 0deg))
      scale(var(--glow-stretch-x, 1), var(--glow-stretch-y, 1));
    transform-origin: center center;
    will-change: transform;
  }

  .form-glow__layer {
    position: absolute;
    border-radius: 50%;
    transform-origin: center center;
  }

  .form-glow__layer--primary {
    inset: 0;
    background:
      radial-gradient(
        ellipse 40% 36% at var(--spot-x, 50%) var(--spot-y, 52%),
        rgba(212, 175, 55, calc(0.22 + var(--spot-glow, 0) * 0.22)) 0%,
        rgba(61, 255, 106, calc(0.04 + var(--spot-glow, 0) * 0.05)) 38%,
        transparent 68%
      ),
      radial-gradient(
        ellipse at center,
        rgba(212, 175, 55, 0.276) 0%,
        rgba(212, 175, 55, 0.115) 28%,
        rgba(61, 255, 106, 0.058) 48%,
        transparent 78%
      );
    filter: blur(var(--glow-blur, 90px));
    will-change: opacity, filter;
    animation: formGlowPulse 8s ease-in-out infinite;
  }

  .form-glow__layer--secondary {
    left: 7.5%;
    right: 7.5%;
    top: 12.5%;
    bottom: 12.5%;
    border: 1px solid rgba(212, 175, 55, 0.092);
    box-shadow:
      var(--shadow-ox, 0) var(--shadow-oy, 0) 100px
        rgba(212, 175, 55, calc(0.1 + var(--spot-glow, 0) * 0.14)),
      inset 0 0 80px rgba(212, 175, 55, 0.035);
    filter: blur(24px);
    will-change: opacity, filter;
    animation: formGlowRipple 10s ease-in-out infinite;
  }

  @media (prefers-reduced-motion: reduce) {
    .form-glow__warp {
      transform: none;
    }

    .form-glow__layer--primary,
    .form-glow__layer--secondary {
      animation: none;
    }
  }

  .form-section:not(.hide) .form-card {
    position: relative;
    z-index: 1;
  }
}

.ticker {
  padding: 16px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ticker__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.ticker__users {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: stretch;
}

.ticker-slot {
  --ticker-slot-h: 52px;
  --ticker-slot-w: 220px;
  position: relative;
  overflow: hidden;
  width: var(--ticker-slot-w);
  height: var(--ticker-slot-h);
  flex: 0 0 var(--ticker-slot-w);
  flex-shrink: 0;
}

.ticker-slot .ticker-pill {
  position: absolute;
  inset: 0;
  width: 100%;
  height: var(--ticker-slot-h);
  margin: 0;
  box-sizing: border-box;
  transition:
    transform 0.4s cubic-bezier(0.33, 1, 0.45, 1),
    opacity 0.4s cubic-bezier(0.33, 1, 0.45, 1);
  will-change: transform, opacity;
}

.ticker-pill.is-exit {
  transform: translateY(-115%);
  opacity: 0;
}

.ticker-pill.is-enter {
  transform: translateY(115%);
  opacity: 0;
}

.ticker-pill.is-enter.is-active {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 1023px) {
  .ticker__total {
    flex-direction: column;
    align-items: flex-start;
    align-self: center;
    margin-inline: auto;
    width: max-content;
    max-width: min(100%, 340px);
    gap: 6px;
    text-align: left;
  }

  .ticker__total .fas {
    font-size: 20px;
    line-height: 1;
  }

  .ticker__total span {
    line-height: 1.35;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .ticker__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .ticker__users {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
}

@media (min-width: 1024px) {
  .ticker__inner {
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: nowrap;
    gap: 12px;
  }

  .ticker__users {
    display: contents;
  }

  .ticker-slot {
    flex: 0 0 var(--ticker-slot-w);
  }

  .ticker__total {
    flex-direction: row;
    align-items: center;
    align-self: auto;
    margin-inline: 0;
    width: auto;
    max-width: 240px;
    flex-shrink: 0;
    text-align: left;
    gap: 10px;
  }

  .ticker__total .fas {
    font-size: 18px;
  }
}

.ticker-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px 8px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-width: 0;
}

.ticker-pill__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.ticker-pill__text {
  flex: 1;
  min-width: 0;
  font-size: calc(12px * var(--text-scale));
  line-height: 1.25;
  overflow: hidden;
}

.ticker-pill__name {
  display: block;
  font-weight: 700;
  color: var(--green);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ticker-pill__action {
  display: block;
  color: var(--text-muted);
  font-size: calc(11px * var(--text-scale));
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ticker__total {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: calc(12px * var(--text-scale));
  font-weight: 600;
  max-width: 280px;
}

.ticker__total .fas {
  font-size: 18px;
  color: var(--green);
}

.ticker__total span {
  color: var(--green);
}

.info-grid {
  padding: 36px 0;
}

.info-grid__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.quote-card {
  position: relative;
  display: flex;
  gap: 18px;
  padding: 20px 22px 12px 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: var(--bg-card);
  align-items: flex-end;
  overflow: visible;
  min-height: 200px;
}

.quote-card:nth-child(1) {
  overflow: hidden;
}

.quote-card__media {
  position: absolute;
  bottom: 30px;
  left: -17px;
  max-width: 220px;
  flex: 0 0 clamp(88px, 24%, 112px);
  align-self: flex-end;
  margin: 0 0 -32px -10px;
  z-index: 2;
  pointer-events: none;
  overflow: visible;
}

.quote-card__photo {
  display: block;
  width: 100%;
  height: auto;
  max-height: clamp(220px, 34vw, 300px);
  object-fit: contain;
  object-position: center bottom;
  clip-path: inset(0 15% 0 15%);
  transform: scale(1.72);
  transform-origin: center bottom;
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.55));
}

.quote-card__body {
  flex: 1;
  min-width: 0;
  padding: 6px 4px 10px 180px;
}

.quote-card__text {
  margin: 0 0 12px;
  font-size: calc(13px * var(--text-scale));
  color: var(--text);
  line-height: 1.5;
}

.quote-card__author {
  margin: 0;
  font-size: calc(13px * var(--text-scale));
  font-weight: 800;
  color: var(--gold);
  padding-left: 30px;
}

.quote-card__role {
  margin: 4px 0 0;
  font-size: calc(11px * var(--text-scale));
  color: var(--text-muted);
  padding-left: 30px;
}

.steps-card,
.why-card {
  padding: 22px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: var(--bg-card);
}

.steps-card__title,
.why-card__title {
  margin: 0 0 20px;
  text-align: center;
  font-size: 19px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.1;
}

.step-item {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
}

.step-item:last-child {
  margin-bottom: 0;
}

.step-item__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--border-gold);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.2);
  position: relative;
}

.step-item__icon-img {
  display: block;
  width: 60%;
  height: 60%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.step-item__num {
  margin: 0 0 4px;
  font-size: 15px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1.1;
}

.step-item__desc {
  margin: 0;
  font-size: calc(12px * var(--text-scale));
  color: var(--text-muted);
  line-height: 1.4;
}

.why-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.why-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: calc(12px * var(--text-scale));
  line-height: 1.4;
}

.why-list li:last-child {
  margin-bottom: 0;
}

.why-list .fas {
  color: var(--green);
  margin-top: 2px;
  flex-shrink: 0;
}

.results-cta {
  padding: 20px 0 48px;
}

.results-cta__inner {
  display: grid;
  grid-template-columns: 1.22fr 0.72fr;
  gap: 20px;
  align-items: stretch;
}

.results__title {
  margin: 0 0 20px;
  font-size: clamp(22px, 2.8vw, 30px);
  text-transform: uppercase;
  line-height: 1.08;
  letter-spacing: 0;
}

.results__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.result-card {
  display: flex;
  gap: 12px;
  padding: 12px 14px;
  margin-bottom: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: var(--bg-card-2);
  align-items: flex-start;
  min-width: 0;
  overflow: hidden;
}

.result-card__photo {
  width: 52px;
  height: 68px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}

.result-card > div {
  flex: 1;
  min-width: 0;
}

.result-card__name {
  margin: 0 0 4px;
  font-size: calc(13px * var(--text-scale));
  font-weight: 700;
  line-height: 1.3;
}

.result-card__meta {
  margin: 0 0 8px;
  font-size: calc(12px * var(--text-scale));
  color: var(--text-muted);
  line-height: 1.3;
}

.result-card__profit-label {
  margin: 0;
  font-size: calc(11px * var(--text-scale));
  color: var(--text-muted);
  line-height: 1.25;
}

.result-card__profit {
  margin: 4px 0 0;
  font-size: 18px;
  font-weight: 800;
  color: var(--green);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

@media (min-width: 1024px) {
  .results__cards {
    gap: 14px;
  }

  .result-card {
    padding: 16px 18px;
    gap: 16px;
  }

  .result-card__photo {
    width: 72px;
    height: 92px;
  }

  .result-card__name {
    font-size: calc(15px * var(--text-scale));
    margin-bottom: 6px;
  }

  .result-card__meta {
    font-size: calc(13px * var(--text-scale));
    margin-bottom: 10px;
  }

  .result-card__profit-label {
    font-size: calc(12px * var(--text-scale));
  }

  .result-card__profit {
    font-size: 24px;
    margin-top: 6px;
  }
}

.results__disclaimer {
  margin: 14px auto 0;
  font-size: calc(10px * var(--text-scale));
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.45;
}

.final-cta {
  padding: 20px 16px;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  background: linear-gradient(160deg, #141414 0%, #0a0a0a 100%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  height: 100%;
  box-sizing: border-box;
}

@media (min-width: 1024px) {
  .results-cta__inner {
    align-items: stretch;
  }

  .final-cta {
    padding: 28px 22px;
    min-height: 0;
  }

  .final-cta__title {
    margin-bottom: 22px;
  }

  .final-cta__badges {
    margin-top: 14px;
  }
}

.final-cta__title {
  margin: 0 0 18px;
  font-size: clamp(19px, 2.1vw, 24px);
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: 0;
}

.final-cta .btn-gold {
  padding: 13px 16px;
  font-size: 15px;
}

.final-cta__badges {
  margin: 10px 0 0;
  font-size: calc(9px * var(--text-scale));
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.35;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .main-grid__inner {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
    grid-template-areas:
      "video video"
      "form panel";
  }

  .main-grid__inner:not(:has(.form-section:not(.hide))) {
    grid-template-columns: 1fr;
    grid-template-areas:
      "video"
      "panel";
  }

  .main-grid__inner:not(:has(.form-section:not(.hide))) .access-panel {
    max-width: 420px;
    justify-self: center;
    width: 100%;
  }

  .form-section:not(.hide) .form-card {
    max-width: none;
    margin: 0;
  }

  .main-grid__inner:has(.form-section:not(.hide)) .access-panel {
    max-width: none;
    margin: 0;
    align-self: stretch;
  }
}

@media (max-width: 1199px) {
  .info-grid__inner {
    grid-template-columns: 1fr 1fr;
  }

  .quote-card {
    grid-column: 1 / -1;
    gap: 22px;
    padding: 22px 28px 16px 4px;
    min-height: 220px;
  }

  .quote-card__media {
    flex: 0 0 clamp(100px, 14vw, 130px);
    margin: 0 0 -36px -8px;
    max-width: 180px;
  }

  .quote-card__photo {
    max-height: clamp(260px, 38vw, 340px);
    transform: scale(1.85);
  }

  .quote-card__body {
    padding-left: 140px;
  }

  .results-cta__inner {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .final-cta {
    height: auto;
  }
}

@media (max-width: 767px) {
  .hero {
    padding: 36px 0 40px;
  }

  .hero__bg-track {
    display: none;
  }

  .hero__bg::after {
    display: none;
  }

  .main-grid {
    margin-top: -12px;
  }

  .main-grid__inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "video"
      "panel"
      "form";
  }

  .access-panel {
    max-width: none;
    margin: 0;
    width: 100%;
  }

  .form-section {
    width: 100%;
  }

  .form-section .form-card {
    max-width: none;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
  }

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

  .ticker__users {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .ticker-slot {
    --ticker-slot-w: 100%;
    width: 100%;
    max-width: 360px;
    flex: 0 0 auto;
    margin-inline: auto;
  }

  .info-grid__inner {
    grid-template-columns: 1fr;
  }

  .quote-card {
    flex-direction: row;
    align-items: flex-end;
    gap: 14px;
    padding: 18px 18px 12px 0;
    min-height: 0;
  }

  .quote-card__media {
    flex: 0 0 78px;
    margin: 0 0 -20px -10px;
    max-width: 150px;
  }

  .quote-card__photo {
    max-height: 200px;
    transform: scale(1.55);
  }

  .quote-card__body {
    padding-left: 120px;
  }

  .timer-blocks {
    gap: 6px;
  }

  .timer-block__box {
    min-width: 30px;
    font-size: 18px;
    padding: 8px 4px;
  }

  .form-card {
    padding: 22px 16px;
  }

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

  .final-cta {
    height: auto;
  }
}
