:root {
  --navy-950: #030b16;
  --navy-900: #07172c;
  --navy-800: #0b2546;
  --navy-700: #13375f;
  --red-600: #d8172f;
  --red-500: #ef233c;
  --red-400: #ff4960;
  --silver-50: #f7f9fb;
  --silver-100: #edf1f5;
  --silver-200: #dce3ea;
  --silver-300: #c4cdd7;
  --silver-500: #7b8794;
  --white: #ffffff;
  --green: #16a568;
  --text: #132238;
  --text-soft: #526173;
  --border: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 70px rgba(2, 10, 22, 0.18);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1160px;
  --font-display: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  --font-body: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--silver-50);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  color: var(--white);
  background: var(--red-500);
}

a {
  color: inherit;
}

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

[hidden] {
  display: none !important;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.topbar {
  position: relative;
  z-index: 30;
  color: var(--white);
  background: var(--red-600);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topbar__inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.topbar__inner strong {
  font-size: 0.72rem;
  font-weight: 900;
}

.live-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  animation: pulse 2s infinite;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 34px;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.header__inner {
  display: grid;
  min-height: 118px;
  grid-template-columns: 1.2fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.campaign-brand,
.store-brand {
  position: relative;
  display: inline-flex;
  min-width: 190px;
  min-height: 80px;
  align-items: center;
  text-decoration: none;
}

.campaign-brand {
  justify-self: start;
}

.store-brand {
  justify-self: center;
}

.brand-image {
  position: relative;
  z-index: 2;
  width: auto;
  object-fit: contain;
}

.brand-image--campaign {
  max-width: 250px;
  max-height: 105px;
}

.brand-image--store {
  max-width: 170px;
  max-height: 80px;
}

.campaign-fallback,
.store-fallback {
  position: absolute;
  inset: 0 auto auto 0;
  z-index: 1;
  display: flex;
  height: 58px;
  flex-direction: column;
  justify-content: center;
  line-height: 0.92;
}

.campaign-fallback > span {
  color: var(--silver-200);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.28em;
}

.campaign-fallback strong {
  display: block;
  margin-top: 5px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.42rem;
  font-stretch: condensed;
  letter-spacing: -0.02em;
  text-shadow: 3px 3px 0 var(--red-600);
}

.store-fallback {
  right: 0;
  align-items: center;
}

.store-fallback strong {
  color: var(--white);
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.store-fallback span {
  margin-top: 4px;
  color: var(--silver-300);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.has-image + .campaign-fallback,
.has-image + .store-fallback {
  opacity: 0;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 11px 22px;
  color: var(--white);
  border: 0;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 3px solid #ffd45b;
  outline-offset: 3px;
}

.button--header {
  justify-self: end;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

.button--header:hover {
  background: rgba(255, 255, 255, 0.18);
}

.button--primary {
  background: linear-gradient(135deg, var(--red-500), #c80d26);
  box-shadow: 0 14px 32px rgba(216, 23, 47, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.button--primary:hover {
  background: linear-gradient(135deg, var(--red-400), var(--red-600));
  box-shadow: 0 18px 38px rgba(216, 23, 47, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.button--large {
  min-height: 58px;
  padding: 16px 26px;
  border-radius: 12px;
  font-size: 1rem;
}

.button__icon {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  background: rgba(255, 255, 255, 0.17);
  border-radius: 50%;
  font-size: 1rem;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 900px;
  padding: 34px 0 64px;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 25%, rgba(41, 92, 144, 0.34), transparent 30%),
    linear-gradient(125deg, var(--navy-950) 0%, #081a32 49%, #0c2a4b 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.27;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.hero::after {
  position: absolute;
  top: 110px;
  right: -160px;
  width: 520px;
  height: 520px;
  content: "";
  border: 84px solid rgba(255, 255, 255, 0.025);
  border-radius: 50%;
}

.hero__texture {
  position: absolute;
  top: 0;
  right: 0;
  width: 41%;
  height: 100%;
  opacity: 0.2;
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 14px);
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);
}

.hero__branding {
  position: relative;
  z-index: 3;
  display: flex;
  margin-bottom: 36px;
  align-items: center;
  justify-content: center;
}

.hero__campaign-logo {
  width: min(360px, 48vw);
  height: auto;
  filter: drop-shadow(0 20px 28px rgba(0, 0, 0, 0.3));
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: center;
  gap: 62px;
}

.eyebrow,
.section-kicker {
  color: var(--red-500);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--silver-200);
  letter-spacing: 0.09em;
}

.eyebrow__tag {
  display: inline-grid;
  min-height: 31px;
  padding: 4px 10px;
  place-items: center;
  color: var(--white);
  background: var(--red-600);
  border-radius: 5px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transform: skewX(-6deg);
}

.hero h1,
.section-heading h2,
.group-section h2,
.authority h2,
.final-cta h2,
.countdown-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.98;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  margin-top: 24px;
  font-size: clamp(3.35rem, 6vw, 5.9rem);
}

.hero h1 span {
  display: block;
  color: var(--red-500);
}

.hero__subtitle {
  max-width: 650px;
  margin: 26px 0 0;
  color: #d7e0ea;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.7;
}

.hero__subtitle strong {
  color: var(--white);
}

.hero__actions {
  display: flex;
  margin-top: 30px;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}

.action-note {
  padding-left: 4px;
  color: var(--silver-300);
  font-size: 0.76rem;
}

.hero__trust {
  display: flex;
  margin: 28px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  flex-wrap: wrap;
  gap: 10px 21px;
  color: #c7d2df;
  font-size: 0.79rem;
  list-style: none;
}

.hero__trust span {
  margin-right: 5px;
  color: var(--red-400);
  font-weight: 900;
}

.hero__media {
  position: relative;
}

.video-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  padding: 9px;
  background: linear-gradient(145deg, #9ba9b6, #eef3f7 38%, #687684 100%);
  border-radius: 18px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.42);
  transform: perspective(900px) rotateY(-2deg);
}

.video-shell::before {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 13%;
  width: 36%;
  height: 3px;
  content: "";
  background: var(--red-500);
  box-shadow: 0 0 16px var(--red-400);
}

.video-shell iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 11px;
}

.video-shell__topline {
  position: absolute;
  z-index: 3;
  top: 22px;
  right: 24px;
  left: 24px;
  display: flex;
  justify-content: space-between;
  color: var(--silver-300);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.video-shell__topline span:first-child {
  display: flex;
  align-items: center;
  gap: 7px;
}

.video-shell__topline i {
  width: 6px;
  height: 6px;
  background: var(--red-500);
  border-radius: 50%;
}

.video-placeholder {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 9px;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 45%, rgba(34, 82, 129, 0.5), transparent 36%),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 9px),
    #041020;
  border-radius: 11px;
  text-align: center;
}

.video-placeholder strong {
  margin-top: 6px;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.35rem);
  letter-spacing: 0.03em;
}

.video-placeholder small {
  color: var(--silver-300);
  font-size: 0.7rem;
}

.play-button {
  display: grid;
  width: 78px;
  height: 78px;
  padding: 0;
  place-items: center;
  color: var(--white);
  background: var(--red-500);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(239, 35, 60, 0.14), 0 10px 30px rgba(0, 0, 0, 0.32);
}

.play-button span {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid var(--white);
}

.event-stamp {
  position: absolute;
  z-index: 5;
  right: -23px;
  bottom: -35px;
  display: grid;
  width: 102px;
  height: 124px;
  padding: 11px 8px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(145deg, var(--red-500), #a90c20);
  border: 4px solid var(--navy-950);
  border-radius: 9px;
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.32);
  text-align: center;
  transform: rotate(3deg);
}

.event-stamp > span,
.event-stamp b {
  font-size: 0.61rem;
  letter-spacing: 0.16em;
}

.event-stamp strong {
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 0.7;
}

.event-stamp strong span {
  display: block;
  margin-top: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
}

.countdown-wrap {
  position: relative;
  z-index: 4;
  display: grid;
  max-width: 920px;
  margin-top: 64px;
  padding: 28px 30px;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  gap: 22px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  text-align: center;
}

.countdown-copy h2 {
  margin-top: 5px;
  font-size: 1.6rem;
}

.countdown-copy p {
  margin: 7px 0 0;
  color: var(--silver-300);
  font-size: 0.82rem;
}

.event-date {
  display: inline-flex;
  min-height: 46px;
  margin-top: 14px !important;
  padding: 10px 16px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px;
  color: var(--white) !important;
  background: rgba(1, 9, 19, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  box-shadow: inset 0 2px 0 var(--red-500), 0 8px 22px rgba(0, 0, 0, 0.14);
  font-size: 0.76rem !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.event-date strong,
.event-date b {
  color: var(--white);
  font-weight: 900;
}

.event-date b {
  color: var(--red-400);
  font-size: 0.94rem;
}

.event-date > span {
  color: var(--red-500);
  font-weight: 900;
}

.event-date small {
  color: var(--silver-300);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.time-card {
  display: flex;
  width: 84px;
  height: 86px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: rgba(1, 9, 19, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
}

.time-card strong {
  font-family: var(--font-display);
  font-size: 2.15rem;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.time-card span {
  margin-top: 6px;
  color: var(--silver-300);
  font-size: 0.59rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.time-separator {
  color: var(--red-500);
  font-family: var(--font-display);
  font-size: 2rem;
}

.section {
  position: relative;
  padding: 92px 0;
}

.section--light {
  background:
    linear-gradient(90deg, transparent 0 49.9%, rgba(7, 23, 44, 0.025) 50%, transparent 50.1%),
    var(--silver-50);
  background-size: 120px 100%;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 38px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.group-section h2,
.authority h2,
.final-cta h2 {
  margin-top: 12px;
  font-size: clamp(2.55rem, 4.3vw, 4.25rem);
}

.section-heading p {
  max-width: 590px;
  margin: 18px auto 0;
  color: var(--text-soft);
  font-size: 1.04rem;
}

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

.step-card {
  position: relative;
  overflow: hidden;
  min-height: 244px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--silver-200);
  border-radius: var(--radius-md);
  box-shadow: 0 14px 40px rgba(12, 36, 67, 0.07);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.step-card:hover {
  border-color: rgba(216, 23, 47, 0.38);
  box-shadow: 0 22px 52px rgba(12, 36, 67, 0.12);
  transform: translateY(-6px);
}

.step-card::after {
  position: absolute;
  right: -60px;
  bottom: -85px;
  width: 180px;
  height: 180px;
  content: "";
  background: var(--silver-100);
  border-radius: 50%;
}

.step-card__number {
  position: absolute;
  top: 22px;
  right: 25px;
  color: var(--silver-200);
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
}

.step-card__icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: var(--white);
  background: var(--navy-900);
  border-radius: 10px;
  box-shadow: 5px 5px 0 rgba(216, 23, 47, 0.18);
  font-size: 1.1rem;
}

.step-card h3 {
  position: relative;
  z-index: 1;
  margin: 28px 0 10px;
  font-family: var(--font-display);
  font-size: 1.54rem;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-transform: uppercase;
}

.step-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.store-period {
  display: flex;
  width: fit-content;
  max-width: 100%;
  margin: 18px auto 0;
  padding: 9px 14px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px 8px;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid var(--silver-200);
  border-radius: 9px;
  font-size: 0.76rem;
  text-align: center;
}

.store-period span {
  color: var(--silver-500);
  font-weight: 700;
}

.store-period strong {
  color: var(--navy-800);
  font-weight: 850;
}

.store-period i {
  color: var(--red-500);
  font-style: normal;
}

.campaign-note {
  margin: 12px auto 0;
  color: var(--silver-500);
  font-size: 0.68rem;
  text-align: center;
}

.group-section {
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(var(--navy-900), var(--navy-950));
  background-size: 60px 100%, 100% 100%;
}

.group-section::after {
  position: absolute;
  top: 10%;
  right: -8%;
  width: 420px;
  height: 420px;
  content: "";
  border: 74px solid rgba(255, 255, 255, 0.025);
  border-radius: 50%;
}

.group-section__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 106px;
}

.phone-card {
  position: relative;
  width: min(100%, 380px);
  min-height: 520px;
  margin-inline: auto;
  padding: 58px 22px 24px;
  color: var(--text);
  background: #e8ece8;
  border: 8px solid #17212b;
  border-radius: 40px;
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.42), inset 0 0 0 2px #35424f;
  transform: rotate(-2deg);
}

.phone-card::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.27;
  background-image: radial-gradient(#86978d 0.7px, transparent 0.7px);
  background-size: 12px 12px;
  border-radius: 31px;
}

.phone-card__notch {
  position: absolute;
  z-index: 2;
  top: 11px;
  left: 50%;
  width: 116px;
  height: 24px;
  background: #17212b;
  border-radius: 0 0 15px 15px;
  transform: translateX(-50%);
}

.phone-card__header {
  position: absolute;
  z-index: 2;
  top: 36px;
  right: 0;
  left: 0;
  display: flex;
  min-height: 72px;
  padding: 12px 22px;
  align-items: center;
  gap: 12px;
  color: var(--white);
  background: #0a443a;
}

.phone-card__avatar {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  background: var(--red-500);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 900;
}

.phone-card__header strong,
.phone-card__header span {
  display: block;
}

.phone-card__header strong {
  font-size: 0.78rem;
}

.phone-card__header span {
  color: #b9d6d0;
  font-size: 0.62rem;
}

.chat-bubble {
  position: relative;
  z-index: 2;
  max-width: 88%;
  margin-top: 13px;
  padding: 13px 14px 9px;
  background: var(--white);
  border-radius: 3px 12px 12px 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.14);
}

.chat-bubble--first {
  margin-top: 74px;
}

.chat-bubble strong,
.chat-bubble span,
.chat-bubble small {
  display: block;
}

.chat-bubble strong {
  color: #0c6d59;
  font-size: 0.72rem;
}

.chat-bubble span {
  margin-top: 4px;
  font-size: 0.76rem;
  line-height: 1.4;
}

.chat-bubble small {
  margin-top: 5px;
  color: #7b8882;
  font-size: 0.56rem;
  text-align: right;
}

.phone-card__notice {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 26px;
  left: 22px;
  padding: 10px 12px;
  color: #6b746f;
  background: rgba(255, 255, 255, 0.66);
  border-radius: 8px;
  font-size: 0.6rem;
  text-align: center;
}

.section-kicker--light {
  color: var(--red-400);
}

.group-section__copy p {
  max-width: 630px;
  margin: 20px 0 0;
  color: #c8d3df;
  font-size: 1rem;
}

.group-section__copy p strong {
  color: var(--white);
}

.feature-list {
  display: grid;
  margin: 24px 0 30px;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 22px;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #d9e2ec;
  font-size: 0.88rem;
}

.feature-list span {
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  place-items: center;
  color: var(--white);
  background: var(--red-500);
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 900;
}

.authority {
  overflow: hidden;
  background: var(--white);
}

.authority__stripe {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 8px;
  background: repeating-linear-gradient(135deg, var(--navy-900) 0 13px, var(--red-500) 13px 26px, var(--silver-300) 26px 39px);
}

.authority__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 80px;
}

.authority__copy p {
  max-width: 610px;
  margin: 24px 0 0;
  color: var(--text-soft);
  font-size: 1.05rem;
}

.authority__numbers {
  display: grid;
  padding: 32px;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  background: var(--silver-100);
  border: 1px solid var(--silver-200);
  border-radius: var(--radius-lg);
}

.authority-stat {
  min-height: 150px;
  padding: 23px;
  color: var(--white);
  background: var(--navy-900);
  border-radius: 17px;
}

.authority-stat:nth-child(2) {
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--silver-200);
}

.authority-stat--wide {
  min-height: 102px;
  grid-column: 1 / -1;
  color: var(--white);
  background: linear-gradient(135deg, var(--red-500), var(--red-600));
}

.authority-stat strong,
.authority-stat span {
  display: block;
}

.authority-stat strong {
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 4vw, 3.4rem);
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.authority-stat--wide strong {
  font-size: 2rem;
}

.authority-stat span {
  margin-top: 10px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 86px 0;
  color: var(--white);
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 11px),
    var(--navy-950);
}

.final-cta__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 700px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(28, 76, 124, 0.45), transparent 67%);
  transform: translate(-50%, -50%);
}

.final-cta__inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
  text-align: center;
}

.final-cta h2 {
  max-width: 820px;
  margin-inline: auto;
}

.final-cta p {
  margin: 22px auto 30px;
  color: var(--silver-300);
  font-size: 1.04rem;
}

.final-cta small {
  display: block;
  margin-top: 14px;
  color: var(--silver-500);
  font-size: 0.72rem;
}

.site-footer {
  color: var(--silver-300);
  background: #02070e;
}

.footer__top {
  display: grid;
  padding: 62px 0 42px;
  grid-template-columns: 1fr auto;
  gap: 60px;
}

.store-brand--footer {
  min-height: 58px;
  justify-self: start;
}

.footer__brand p {
  max-width: 420px;
  margin: 16px 0 0;
  color: #8190a0;
  font-size: 0.84rem;
}

.footer__contact {
  display: flex;
  width: min(100%, 460px);
  min-width: 360px;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}

.footer__contact h2 {
  margin: 0 0 8px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer__contact a,
.footer__contact span {
  color: #9da9b5;
  font-size: 0.8rem;
  text-decoration: none;
}

.footer__addresses {
  display: grid;
  margin-top: 7px;
  gap: 4px;
  font-style: normal;
}

.footer__contact a:hover {
  color: var(--white);
}

.footer__bottom {
  display: flex;
  padding: 24px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  justify-content: space-between;
  gap: 40px;
}

.footer__bottom p {
  max-width: 690px;
  margin: 0;
  color: #657382;
  font-size: 0.67rem;
}

.footer__bottom p:last-child {
  flex: 0 0 auto;
  text-align: right;
}

.mobile-cta {
  position: fixed;
  z-index: 80;
  right: 10px;
  bottom: 10px;
  left: 10px;
  display: none;
  padding: 10px 10px 10px 15px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--white);
  background: rgba(4, 15, 29, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 15px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(12px);
  transform: translateY(130%);
  transition: transform 240ms ease;
}

.mobile-cta.is-visible {
  transform: translateY(0);
}

.mobile-cta strong,
.mobile-cta span {
  display: block;
}

.mobile-cta strong {
  font-size: 0.76rem;
}

.mobile-cta span {
  color: var(--silver-300);
  font-size: 0.63rem;
}

.mobile-cta .button {
  min-height: 42px;
  padding: 9px 16px;
}

.toast {
  position: fixed;
  z-index: 100;
  right: 18px;
  bottom: 18px;
  max-width: 360px;
  padding: 13px 16px;
  color: var(--white);
  background: var(--navy-800);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  box-shadow: var(--shadow);
  font-size: 0.8rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal--delay-sm {
  transition-delay: 90ms;
}

.reveal--delay,
.reveal--delay-md {
  transition-delay: 170ms;
}

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

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.58); }
  70% { box-shadow: 0 0 0 7px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

@media (max-width: 1050px) {
  .header__inner {
    grid-template-columns: 1fr auto;
  }

  .store-brand:not(.store-brand--footer) {
    display: none;
  }

  .hero {
    padding-top: 32px;
  }

  .hero__grid {
    grid-template-columns: 1fr 0.86fr;
    gap: 40px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 6.4vw, 5rem);
  }

  .countdown-wrap {
    grid-template-columns: 1fr;
  }

  .countdown {
    justify-content: center;
  }

  .group-section__grid {
    gap: 56px;
  }

  .authority__grid {
    gap: 44px;
  }
}

@media (min-width: 821px) and (max-height: 800px) {
  .hero {
    padding-top: 30px;
  }

  .hero h1 {
    margin-top: 18px;
    font-size: clamp(3.15rem, 5.2vw, 4.75rem);
  }

  .hero__subtitle {
    margin-top: 18px;
    line-height: 1.55;
  }

  .hero__actions {
    margin-top: 22px;
  }

  .hero__trust {
    margin-top: 20px;
    padding-top: 16px;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .header__inner {
    min-height: 82px;
  }

  .button--header {
    display: none;
  }

  .campaign-brand {
    grid-column: 1 / -1;
  }

  .hero {
    padding: 28px 0 52px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero__copy {
    max-width: 680px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 11vw, 5.3rem);
  }

  .hero__media {
    width: min(100%, 650px);
  }

  .countdown-wrap {
    margin-top: 76px;
  }

  .steps-grid,
  .authority__grid {
    grid-template-columns: 1fr;
  }

  .group-section__grid {
    grid-template-columns: 1fr;
  }

  .phone-card {
    order: 2;
  }

  .group-section__copy {
    order: 1;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer__contact {
    min-width: 0;
  }

  .mobile-cta {
    display: flex;
  }
}

@media (max-width: 600px) {
  body {
    padding-bottom: 80px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .topbar__inner {
    min-height: 38px;
    gap: 7px;
    font-size: 0.61rem;
    letter-spacing: 0.04em;
  }

  .topbar__inner strong {
    font-size: 0.6rem;
  }

  .site-header {
    top: 38px;
  }

  .header__inner {
    min-height: 80px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 8px;
  }

  .campaign-brand {
    min-width: 172px;
    grid-column: auto;
    transform: scale(0.76);
    transform-origin: left center;
  }

  .store-brand:not(.store-brand--footer) {
    display: inline-flex;
    min-width: 160px;
    justify-self: end;
    transform: scale(0.76);
    transform-origin: right center;
  }

  .hero {
    min-height: 0;
    padding-top: 22px;
  }

  .hero__branding {
    margin-bottom: 28px;
  }

  .hero__campaign-logo {
    width: min(250px, 70vw);
  }

  .hero::after {
    display: none;
  }

  .hero__texture {
    width: 72%;
  }

  .eyebrow {
    align-items: flex-start;
    font-size: 0.66rem;
    line-height: 1.4;
  }

  .eyebrow__tag {
    flex: 0 0 auto;
  }

  .hero h1 {
    margin-top: 20px;
    font-size: clamp(2.9rem, 14.4vw, 4.2rem);
  }

  .hero__subtitle {
    margin-top: 20px;
    font-size: 0.98rem;
  }

  .hero__actions .button,
  .group-section__copy .button,
  .final-cta .button {
    width: 100%;
  }

  .hero__trust {
    display: grid;
  }

  .video-shell {
    aspect-ratio: 16 / 11;
    transform: none;
  }

  .video-shell__topline {
    top: 19px;
    right: 18px;
    left: 18px;
  }

  .video-shell__topline span:last-child {
    display: none;
  }

  .play-button {
    width: 64px;
    height: 64px;
  }

  .event-stamp {
    right: 7px;
    bottom: -39px;
    width: 88px;
    height: 108px;
  }

  .countdown-wrap {
    margin-top: 62px;
    padding: 23px 16px;
    gap: 22px;
  }

  .event-date {
    max-width: 290px;
    padding-inline: 14px;
  }

  .countdown {
    width: 100%;
    gap: 4px;
  }

  .time-card {
    width: auto;
    min-width: 0;
    height: 76px;
    flex: 1 1 0;
  }

  .time-card strong {
    font-size: 1.75rem;
  }

  .time-card span {
    font-size: 0.49rem;
    letter-spacing: 0.04em;
  }

  .time-separator {
    font-size: 1.5rem;
  }

  .section {
    padding: 82px 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .group-section h2,
  .authority h2,
  .final-cta h2 {
    font-size: clamp(2.45rem, 12vw, 3.25rem);
  }

  .steps-grid {
    gap: 14px;
  }

  .step-card {
    min-height: 0;
    padding: 28px 24px;
  }

  .store-period {
    padding-inline: 12px;
  }

  .group-section__grid {
    gap: 64px;
  }

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

  .phone-card {
    width: min(94%, 350px);
    min-height: 495px;
  }

  .authority__numbers {
    padding: 15px;
    gap: 10px;
    border-radius: 22px;
  }

  .authority-stat {
    min-height: 130px;
    padding: 19px;
  }

  .authority-stat span {
    font-size: 0.58rem;
    letter-spacing: 0.06em;
  }

  .final-cta {
    padding: 82px 0;
  }

  .footer__top {
    padding-top: 52px;
  }

  .footer__bottom {
    padding-bottom: 20px;
    flex-direction: column;
    gap: 14px;
  }

  .footer__bottom p:last-child {
    text-align: left;
  }

  .toast {
    right: 12px;
    bottom: 96px;
    left: 12px;
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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