:root {
  --page: #f1f2f4;
  --surface: #ffffff;
  --surface-soft: #f6f7f9;
  --ink: #111214;
  --ink-soft: #2f3338;
  --muted: #606770;
  --line: #d8dde5;
  --line-strong: #c4ccd8;
  --brand: #c90d17;
  --brand-dark: #7f0710;
  --brand-soft: #fff1f2;
  --accent: #ffbd1a;
  --accent-dark: #c56b00;
  --success: #138a43;
  --wb: #6d28d9;
  --blue: #2463b8;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --shadow-sm: 0 2px 8px rgba(17, 18, 20, 0.08);
  --shadow-md: 0 8px 18px rgba(17, 18, 20, 0.14);
}

* {
  box-sizing: border-box;
}

[hidden],
.is-hidden {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  background: var(--page);
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, #e7e9ed 0, #f7f8fa 22%, #f7f8fa 78%, #e7e9ed 100%);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

body.has-video-fullscreen,
body.has-form-fullscreen {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

button,
input {
  letter-spacing: 0;
}

.page-shell {
  width: min(100%, 760px);
  min-height: 100vh;
  margin: 0 auto;
  background: var(--surface);
  box-shadow: 0 0 0 1px rgba(17, 18, 20, 0.06);
}

.top-line {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 34px;
  padding: var(--space-2) var(--space-4);
  background: #15171a;
  color: #cfd3da;
  font-size: 12px;
  line-height: 1.2;
}

.top-line__label {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 2px 8px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  color: #ffffff;
  font-weight: 700;
}

.top-line__date {
  color: #aeb5bf;
}

.headline {
  padding: var(--space-5) var(--space-4) var(--space-4);
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 72%, #f4f5f7 100%);
  border-bottom: 1px solid var(--line);
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  display: grid;
  justify-items: center;
  gap: 2px;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  color: var(--ink);
  font-size: 40px;
  line-height: 1.06;
  font-weight: 900;
  text-align: center;
  text-transform: none;
  text-wrap: balance;
}

.headline__red {
  color: var(--brand);
}

h1 > span {
  display: block;
  width: 100%;
}

h1 mark {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0 5px 2px;
  background: var(--brand);
  color: #ffffff;
}

.video-stage {
  padding: var(--space-4);
  background: var(--surface-soft);
  border-bottom: 1px solid var(--line);
}

.video-stage.is-video-fullscreen {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 0;
  background: #050608;
  border-bottom: 0;
}

.video-stage.is-video-fullscreen .video-box {
  width: min(100vw, calc(100dvh * 9 / 16));
  height: 100dvh;
  aspect-ratio: auto;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.video-stage.is-video-fullscreen .video-caption {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 83;
  width: min(calc(100% - 24px), 430px);
  margin: 0 auto;
  padding: 8px 10px;
  background: rgba(0, 0, 0, 0.62);
  border-radius: 999px;
  color: #ffffff;
  backdrop-filter: blur(2px);
}

.video-stage.is-video-fullscreen .video-disclaimer {
  display: none;
}

.video-box {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  min-height: 0;
  color: #ffffff;
  background: #08090d;
  border: 1px solid #050608;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  user-select: none;
  touch-action: manipulation;
}

.video-box::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), transparent 42%, rgba(0, 0, 0, 0.56)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.22), transparent 28%, transparent 72%, rgba(0, 0, 0, 0.18));
  pointer-events: none;
}

.video-player__media {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: #08090d;
  object-fit: cover;
  outline: 0;
  pointer-events: none;
}

.video-stage.is-video-fullscreen .video-player__media {
  object-fit: contain;
}

.video-box.is-countdown .video-player__media {
  opacity: 0;
}

.video-close,
.form-close {
  position: absolute;
  z-index: 8;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.72);
  color: #ffffff;
  font: inherit;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(2px);
}

.video-close {
  top: 10px;
  right: 10px;
}

.video-countdown {
  position: absolute;
  inset: 0;
  z-index: 7;
  display: grid;
  place-items: center;
  gap: var(--space-3);
  padding: var(--space-5);
  background: #050608;
  color: #ffffff;
  text-align: center;
  pointer-events: none;
}

.video-countdown span {
  align-self: end;
  max-width: 18ch;
  font-size: clamp(21px, 7vw, 34px);
  font-weight: 900;
  line-height: 1.08;
  text-wrap: balance;
}

.video-countdown b {
  align-self: start;
  display: grid;
  place-items: center;
  width: clamp(74px, 22vw, 112px);
  height: clamp(74px, 22vw, 112px);
  background: var(--accent);
  color: #111214;
  border: 4px solid #ffffff;
  border-radius: 50%;
  font-size: clamp(42px, 14vw, 66px);
  line-height: 1;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.video-play {
  position: relative;
  z-index: 3;
  display: grid;
  gap: var(--space-2);
  place-items: center;
  width: min(300px, calc(100% - 44px));
  min-height: 128px;
  padding: var(--space-4);
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 8px;
  background: rgba(18, 20, 24, 0.82);
  color: #ffffff;
  cursor: pointer;
  backdrop-filter: blur(2px);
  transition: transform 180ms ease-out, background-color 180ms ease-out, border-color 180ms ease-out, opacity 180ms ease-out;
}

.video-play:hover {
  transform: translateY(-1px);
  background: rgba(201, 13, 23, 0.9);
  border-color: rgba(255, 255, 255, 0.82);
}

.video-box.is-playing.has-sound .video-play,
.video-box.is-ended .video-play {
  opacity: 0;
  pointer-events: none;
}

.video-play:focus-visible,
.video-sound:focus-visible,
.video-close:focus-visible,
.form-close:focus-visible,
.lead-card__button:focus-visible,
.load-more:focus-visible,
.floating-order:focus-visible,
.lead-card input:focus-visible {
  outline: 3px solid rgba(255, 189, 26, 0.62);
  outline-offset: 2px;
}

.video-play b {
  font-size: 17px;
  line-height: 1.15;
}

.video-play small {
  color: #ffdfe2;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.18;
  text-align: center;
}

.video-play__icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.24);
}

.video-play__icon::before {
  content: "";
  display: block;
  margin-left: 4px;
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid #111214;
}

.video-play__icon::after {
  display: none;
}

.video-sound {
  position: absolute;
  left: var(--space-3);
  bottom: var(--space-4);
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  backdrop-filter: blur(2px);
}

.video-sound__icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
  font-size: 16px;
  line-height: 1;
}

.video-sound__icon::before {
  content: "🔊";
}

.video-sound__icon::after {
  content: none;
}

.video-sound.is-muted .video-sound__icon::before {
  content: "🔇";
}

.video-status {
  position: absolute;
  right: var(--space-3);
  left: var(--space-3);
  top: var(--space-3);
  z-index: 4;
  min-height: 28px;
  padding: 6px 9px;
  background: rgba(0, 0, 0, 0.58);
  border-radius: 6px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  pointer-events: none;
}

.video-status:empty {
  display: none;
}

.video-time {
  position: absolute;
  right: var(--space-3);
  bottom: var(--space-4);
  z-index: 5;
  min-width: 52px;
  padding: 4px 7px;
  background: rgba(0, 0, 0, 0.72);
  border-radius: 4px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  pointer-events: none;
}

.video-progress {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4;
  height: 7px;
  background: rgba(255, 255, 255, 0.16);
  pointer-events: none;
}

.video-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--accent);
  transition: width 200ms linear;
}

.video-disclaimer {
  margin: var(--space-2) 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
  text-align: center;
}

.video-caption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding-top: var(--space-3);
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.3;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(19, 138, 67, 0.14);
}

.video-early-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--space-3);
  align-items: center;
  margin-top: var(--space-3);
  padding: var(--space-3);
  background: #ffffff;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.video-stage.is-video-fullscreen .video-early-cta {
  position: fixed;
  right: 12px;
  bottom: 68px;
  left: 12px;
  z-index: 84;
  width: min(calc(100% - 24px), 430px);
  margin: 0 auto;
}

.video-early-cta__copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.video-early-cta__copy b {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.2;
}

.video-early-cta__copy span {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.35;
}

.video-early-cta__button {
  min-height: 42px;
  padding: 0 14px;
  border: 0;
  border-radius: 7px;
  background: var(--accent);
  color: #111214;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 150ms ease-out, background-color 150ms ease-out;
}

.video-early-cta__button:hover {
  background: #ffca3a;
}

.video-early-cta__button:active {
  transform: translateY(1px);
}

.order-panel {
  padding: var(--space-4);
  background: var(--surface-soft);
  border-bottom: 1px solid var(--line);
}

.order-panel.is-form-fullscreen {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: max(10px, env(safe-area-inset-top)) max(10px, env(safe-area-inset-right)) max(10px, env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-left));
  overflow: auto;
  background: rgba(5, 6, 8, 0.9);
  border-bottom: 0;
}

.order-panel__inner {
  position: relative;
  overflow: hidden;
  background: var(--brand-dark);
  border-radius: 8px;
  color: #ffffff;
  box-shadow: var(--shadow-md);
  animation: pop 260ms ease-out both;
}

.order-panel.is-form-inline .order-panel__inner {
  background: #ffffff;
  color: var(--ink);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-sm);
}

.order-panel.is-form-inline .order-product {
  background: #ffffff;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.order-panel.is-form-inline .order-product__copy p {
  color: var(--brand-dark);
}

.order-panel.is-form-inline .order-product__copy h2 {
  color: var(--ink);
}

.order-panel.is-form-inline .order-product__copy h2 span {
  color: var(--brand);
}

.order-panel.is-form-inline .order-product__copy small {
  color: var(--ink-soft);
}

.order-panel.is-form-inline .timer-row {
  background: #f0f2f5;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.order-panel.is-form-inline .timer-row b {
  background: var(--brand);
  color: #ffffff;
}

.order-panel.is-form-fullscreen .order-panel__inner {
  width: min(100%, 520px);
  max-height: calc(100dvh - 20px);
  overflow: auto;
  overscroll-behavior: contain;
}

.form-close {
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.66);
}

.order-panel.is-form-fullscreen .form-close {
  position: fixed;
  top: max(12px, env(safe-area-inset-top));
  right: max(12px, env(safe-area-inset-right));
}

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

.order-product {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: var(--space-4);
  padding: var(--space-4);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent),
    var(--brand-dark);
}

.order-product__img {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 154px;
  min-width: 0;
}

.order-product__img img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 154px;
  object-fit: contain;
  background: transparent;
  border: 0;
  border-radius: 0;
  filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.32));
}

.order-product__img span {
  position: absolute;
  right: -4px;
  top: 2px;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  background: var(--accent);
  color: #111214;
  border: 2px solid #ffffff;
  border-radius: 50%;
  font-weight: 900;
  font-size: 14px;
}

.order-product__copy p {
  margin-bottom: var(--space-2);
  color: #ffe4e6;
  font-size: 14px;
  font-weight: 800;
}

.order-product__copy h2 {
  margin-bottom: var(--space-2);
  font-size: 28px;
  line-height: 1.05;
  font-weight: 900;
  text-wrap: balance;
}

.order-product__copy h2 span {
  color: var(--accent);
}

.order-product__copy small {
  display: block;
  max-width: 46ch;
  color: #ffd0d4;
  font-size: 12px;
  line-height: 1.38;
}

.timer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background: #5f040b;
  color: #ffffff;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
}

.timer-row span:first-child {
  max-width: 24ch;
}

.timer-row b {
  min-width: 98px;
  padding: 7px 10px;
  background: #ffffff;
  color: var(--brand);
  border-radius: 6px;
  font-size: 24px;
  line-height: 1;
  text-align: center;
}

.lead-card {
  display: grid;
  gap: var(--space-3);
  padding: var(--space-4);
  background: #ffffff;
  color: var(--ink);
}

.lead-card label {
  display: grid;
  gap: 6px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 900;
}

.lead-card input {
  width: 100%;
  min-height: 52px;
  padding: 0 13px;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
}

.lead-card input::placeholder {
  color: #68717d;
  opacity: 1;
}

.lead-card input:focus {
  border-color: var(--accent-dark);
}

.lead-card__button {
  min-height: 56px;
  border: 0;
  border-radius: 7px;
  background: var(--accent);
  color: #111214;
  font: inherit;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 4px 0 #b86100;
  transition: transform 150ms ease-out, box-shadow 150ms ease-out, background-color 150ms ease-out;
}

.lead-card__button:hover {
  background: #ffca3a;
}

.lead-card__button:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #b86100;
}

.lead-card__note {
  justify-self: center;
  width: 100%;
  margin: 0;
  color: var(--ink-soft);
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.lead-card__legal,
.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.lead-card__legal a {
  color: var(--blue);
  font-weight: 700;
}

.form-status.success {
  color: var(--success);
  font-weight: 900;
}

.form-status.error {
  color: var(--brand);
  font-weight: 900;
}

.social-proof {
  padding: var(--space-4);
  background: #ffffff;
}

.proof-head {
  display: flex;
  justify-content: space-between;
  gap: var(--space-3);
  align-items: start;
  margin-bottom: var(--space-3);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--line);
}

.proof-head h2 {
  margin-bottom: 3px;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 900;
}

.proof-head p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.32;
}

.wb-rating {
  flex: 0 0 auto;
  min-width: 86px;
  padding: 8px 10px;
  background: #f4efff;
  border: 1px solid #e4d8ff;
  border-radius: 8px;
  color: var(--wb);
  text-align: center;
}

.wb-rating b {
  display: block;
  font-size: 25px;
  line-height: 1;
}

.wb-rating span {
  display: block;
  margin-top: 3px;
  font-size: 11px;
  font-weight: 900;
}

.comment-feed {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.comment {
  display: flex;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  animation: commentIn 220ms ease-out both;
}

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

.comment__avatar {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  object-fit: cover;
  background: #d8dbe0;
  box-shadow: 0 0 0 1px var(--line);
}

.comment__body {
  min-width: 0;
  flex: 1;
}

.comment__top {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  margin-bottom: 4px;
}

.comment__top b {
  color: #264f91;
  font-size: 14px;
  line-height: 1.2;
}

.comment__top span {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 2px 7px;
  background: var(--wb);
  color: #ffffff;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.comment__body p {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  padding: 10px 13px;
  background: #edf0f5;
  border-radius: 14px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.35;
  text-wrap: pretty;
}

.comment__photo {
  margin: var(--space-2) 0;
}

.comment__photo img {
  display: block;
  width: min(100%, 252px);
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--surface-soft);
  box-shadow: var(--shadow-sm);
}

.comment__photo small {
  display: block;
  max-width: 252px;
  margin-top: 5px;
  color: #747b86;
  font-size: 11px;
  line-height: 1.25;
}

.comment__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  align-items: center;
  color: var(--muted);
  padding-left: 1px;
  font-size: 13px;
  line-height: 1.3;
}

.comment__actions span:nth-child(-n + 2) {
  color: var(--blue);
  font-weight: 800;
}

.comment__actions b {
  margin-left: auto;
  padding: 2px 7px 2px 25px;
  color: var(--muted);
  background:
    radial-gradient(circle at 9px 50%, #1877f2 0 6px, transparent 7px),
    radial-gradient(circle at 16px 50%, #f02849 0 6px, transparent 7px),
    #ffffff;
  border: 1px solid #dfe4ec;
  border-radius: 999px;
  font-weight: 800;
}

.load-more {
  width: 100%;
  min-height: 46px;
  margin-top: var(--space-3);
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  background: #f0f2f5;
  color: var(--ink-soft);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: background-color 160ms ease-out, border-color 160ms ease-out;
}

.load-more:hover {
  background: #e6e9ee;
  border-color: #b8c1ce;
}

.floating-order {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 30;
  display: grid;
  place-items: center;
  min-height: 54px;
  width: min(calc(100% - 24px), 656px);
  margin: 0 auto;
  background: var(--accent);
  color: #111214;
  border-radius: 8px;
  box-shadow: 0 10px 18px rgba(17, 18, 20, 0.22);
  font-weight: 900;
  text-decoration: none;
  transition: transform 160ms ease-out, background-color 160ms ease-out;
}

.floating-order:hover {
  background: #ffca3a;
}

.floating-order:active {
  transform: translateY(1px);
}

.lead-toast {
  position: fixed;
  right: 12px;
  bottom: 14px;
  left: 12px;
  z-index: 42;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  align-items: center;
  width: min(calc(100% - 24px), 430px);
  min-height: 66px;
  margin: 0 auto;
  padding: 10px 12px;
  background: #ffffff;
  border: 1px solid #dde3ed;
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(17, 18, 20, 0.18);
  color: var(--ink);
  transform: translateY(12px);
  opacity: 0;
  pointer-events: none;
  transition: transform 220ms ease-out, opacity 220ms ease-out, bottom 180ms ease-out;
}

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

.lead-toast--above-cta {
  bottom: 82px;
}

.lead-toast__icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: var(--brand-soft);
  border: 1px solid #ffd4d7;
  border-radius: 50%;
}

.lead-toast__icon::before {
  content: "";
  width: 18px;
  height: 15px;
  border: 2px solid var(--brand);
  border-top: 0;
  border-radius: 2px 2px 4px 4px;
  transform: translateY(2px);
}

.lead-toast__icon::after {
  content: "";
  position: absolute;
  top: 12px;
  width: 18px;
  height: 10px;
  border-top: 2px solid var(--brand);
  border-right: 2px solid var(--brand);
  transform: skewX(-16deg);
}

.lead-toast__copy {
  min-width: 0;
}

.lead-toast__copy b {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.15;
}

.lead-toast__copy p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.3;
}

.bottom-note {
  padding: var(--space-5) var(--space-4) 88px;
  background: #15171a;
  color: #c9cdd4;
  font-size: 12px;
  line-height: 1.45;
}

.bottom-note p {
  max-width: 65ch;
  margin-right: auto;
  margin-left: auto;
}

.bottom-note p:last-child {
  margin-bottom: 0;
}

.bottom-note a {
  color: #ffffff;
  font-weight: 700;
}

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: var(--space-5) var(--space-4);
  background:
    radial-gradient(circle at 50% 0, rgba(255, 189, 26, 0.2), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f4f5f7 100%);
}

.thanks-card {
  width: min(100%, 460px);
  padding: var(--space-5);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.thanks-card img {
  display: block;
  width: auto;
  height: 168px;
  margin: 0 auto var(--space-4);
  object-fit: contain;
  filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.18));
}

.thanks-card__label {
  margin-bottom: var(--space-2);
  color: var(--success);
  font-size: 14px;
  font-weight: 900;
}

.thanks-card h1 {
  display: block;
  margin-bottom: var(--space-3);
  color: var(--brand);
  font-size: clamp(29px, 8vw, 40px);
  line-height: 1.08;
  text-align: center;
}

.thanks-card p {
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.35;
}

.thanks-card a {
  display: inline-grid;
  place-items: center;
  min-height: 48px;
  margin-top: var(--space-2);
  padding: 0 var(--space-4);
  background: var(--accent);
  color: #111214;
  border-radius: 7px;
  font-weight: 900;
  text-decoration: none;
}

@media (min-width: 761px) {
  .page-shell {
    margin-top: var(--space-4);
    margin-bottom: var(--space-6);
    border-radius: 8px;
    overflow: hidden;
  }

  .video-box {
    aspect-ratio: auto;
    height: min(46vh, 340px);
  }
}

@media (max-width: 699px) {
  body {
    background: #ffffff;
  }

  .page-shell {
    box-shadow: none;
  }

  .top-line {
    padding-right: var(--space-3);
    padding-left: var(--space-3);
  }

  .headline {
    padding: var(--space-4) var(--space-3);
  }

  h1 {
    font-size: 29px;
    line-height: 1.1;
  }

  .video-stage,
  .order-panel,
  .social-proof {
    padding-right: var(--space-3);
    padding-left: var(--space-3);
  }

  .video-early-cta {
    grid-template-columns: 1fr;
  }

  .video-early-cta__button {
    width: 100%;
  }

  .video-box {
    aspect-ratio: auto;
    height: 316px;
  }

  .video-play {
    width: min(286px, calc(100% - 28px));
  }

  .order-product {
    grid-template-columns: 118px 1fr;
    gap: var(--space-3);
  }

  .order-product__img {
    min-height: 148px;
  }

  .order-product__img img {
    height: 148px;
  }

  .order-product__copy h2 {
    font-size: 24px;
  }

  .proof-head {
    align-items: center;
  }

  .comment {
    gap: 10px;
  }

  .comment__avatar {
    width: 40px;
    height: 40px;
  }

  .comment__body p {
    font-size: 15px;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 26px;
  }

  .order-product {
    grid-template-columns: 106px 1fr;
  }

  .order-product__img {
    min-height: 136px;
  }

  .order-product__img img {
    height: 136px;
  }

  .order-product__copy h2 {
    font-size: 22px;
  }

  .timer-row {
    gap: var(--space-2);
    font-size: 14px;
  }

  .timer-row b {
    min-width: 86px;
    font-size: 21px;
  }
}

@media (max-height: 700px) {
  .order-panel.is-form-fullscreen {
    align-items: start;
  }

  .order-panel.is-form-fullscreen .order-product {
    grid-template-columns: 92px 1fr;
    gap: var(--space-3);
    padding: var(--space-3);
  }

  .order-panel.is-form-fullscreen .order-product__img {
    min-height: 112px;
  }

  .order-panel.is-form-fullscreen .order-product__img img {
    height: 112px;
  }

  .order-panel.is-form-fullscreen .order-product__img span {
    width: 44px;
    height: 44px;
    font-size: 12px;
  }

  .order-panel.is-form-fullscreen .order-product__copy h2 {
    font-size: 22px;
  }

  .order-panel.is-form-fullscreen .timer-row,
  .order-panel.is-form-fullscreen .lead-card {
    padding: var(--space-3);
  }

  .order-panel.is-form-fullscreen .lead-card input {
    min-height: 46px;
  }

  .order-panel.is-form-fullscreen .lead-card__button {
    min-height: 50px;
    font-size: 16px;
  }
}

@media (max-height: 560px) {
  .order-panel.is-form-fullscreen .order-product__copy small {
    display: none;
  }

  .order-panel.is-form-fullscreen .lead-card__note {
    display: none;
  }
}

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