:root {
  --bg: #f7f7f7;
  --paper: #ffffff;
  --ink: #171717;
  --heading: #b20710;
  --muted: #4b4b4b;
  --line: #eeeeee;
  --soft-red: rgba(229, 9, 20, 0.08);
  --red: #e50914;
  --red-dark: #b20710;
  --black: #1f1a17;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

.wrap {
  min-height: 100vh;
  display: grid;
  place-items: start center;
  padding: 18px 12px 28px;
}

.prelander-active .wrap {
  place-items: center;
}

.phone {
  position: relative;
  width: min(420px, 100%);
  overflow: hidden;
  border: 1px solid #eef0f4;
  border-radius: 22px;
  background:
    radial-gradient(circle at 16% 12%, rgba(229, 9, 20, 0.12), transparent 28%),
    radial-gradient(circle at 86% 31%, rgba(31, 26, 23, 0.08), transparent 24%),
    var(--paper);
  box-shadow: 0 18px 55px rgba(18, 18, 18, 0.14);
}

.prelander-active .phone > :not(.prelander) {
  display: none;
}

.prelander {
  display: none;
  min-height: min(520px, calc(100vh - 46px));
  padding: 22px 18px 24px;
  text-align: center;
}

.prelander-active .prelander {
  display: grid;
  align-content: center;
}

.prelander-logo {
  display: block;
  width: min(150px, 44%);
  height: auto;
  margin: 0 auto 14px;
}

.pre-progress {
  width: min(260px, 100%);
  height: 8px;
  margin: 0 auto 14px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(178, 7, 16, 0.12);
}

.pre-progress-fill {
  display: block;
  width: 50%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  transition: width 180ms ease;
}

.prelander[data-progress="2"] .pre-progress-fill {
  width: 100%;
}

.pre-step {
  display: none;
}

.pre-step.is-active {
  display: block;
}

.pre-count {
  margin-bottom: 10px;
  color: var(--muted);
  font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pre-step h2 {
  width: min(330px, 100%);
  margin: 0 auto 14px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
}

.pre-options {
  display: grid;
  gap: 8px;
  width: min(330px, 100%);
  margin: 0 auto;
}

.pre-option {
  min-height: 48px;
  border: 0;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 55%, #ff2631 100%);
  box-shadow: 0 10px 20px rgba(178, 7, 16, 0.2);
  cursor: pointer;
  font: 800 18px/1 Arial, sans-serif;
  transition: background 160ms ease, box-shadow 160ms ease, transform 120ms ease;
}

.pre-option:hover,
.pre-option:focus-visible {
  background: var(--red-dark);
  outline: none;
  transform: translateY(-1px);
}

.pre-option:active {
  box-shadow: 0 6px 12px rgba(178, 7, 16, 0.2);
  transform: translateY(2px) scale(0.98);
}

.pre-option.is-clicked {
  animation: option-click 220ms ease;
}

.header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 20px 16px 12px;
  background: transparent;
}

.brand-link {
  display: block;
  width: min(205px, 54%);
}

.brand-logo {
  display: block;
  width: 100%;
  max-height: 190px;
  height: auto;
  object-fit: contain;
}

.hero {
  margin-top: -8px;
  padding: 0 18px 12px;
  text-align: center;
}

.kicker,
.label,
.t {
  color: var(--muted);
  font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 0;
}

.title-line {
  display: block;
  white-space: nowrap;
}

.title-line-top {
  color: var(--ink);
}

.title-line-bottom {
  color: var(--heading);
  font-size: 29px;
}

.hero-title-link {
  color: inherit;
  text-decoration: none;
}

.text-link {
  color: inherit;
  text-decoration: none;
}

.hero p {
  width: min(300px, 100%);
  margin: 12px auto 0;
  color: var(--muted);
  font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.5;
}

.howto {
  padding: 0 18px 0;
}

.label {
  margin-bottom: 10px;
  font-size: 14px;
  text-align: center;
}

.panel {
  overflow: hidden;
  border-radius: 18px;
  background: var(--soft-red);
}

.row {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(178, 7, 16, 0.1);
}

.row:last-child {
  border-bottom: 0;
}

.num {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border-radius: 999px;
  color: #ffffff;
  background: var(--black);
  font-weight: 800;
}

.row-emphasis .num {
  background: var(--red-dark);
}

.row h3 {
  margin: 0;
  color: var(--black);
  font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 700;
}

.row-emphasis h3 {
  color: var(--red-dark);
}

.row p {
  margin: 5px 0 0;
  color: var(--muted);
  font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
  font-weight: 400;
  font-size: 12.5px;
  line-height: 1.35;
}

.cta {
  padding: 14px 18px;
  text-align: center;
}

.btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  width: 100%;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 52%, #ff2631 100%);
  background-size: 180% 180%;
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 22px rgba(178, 7, 16, 0.24);
  animation: cta-gradient 2600ms ease infinite;
  transition: background 160ms ease, box-shadow 160ms ease, transform 120ms ease;
}

.btn:hover,
.btn:focus-visible {
  background: var(--red-dark);
  transform: translateY(-1px);
  outline: none;
}

.btn:active {
  box-shadow: 0 6px 12px rgba(178, 7, 16, 0.22);
  transform: translateY(2px) scale(0.97);
}

.micro {
  margin-top: 10px;
  color: var(--muted);
  font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
  font-weight: 400;
  font-size: 11px;
}

.divider {
  height: 1px;
  background: var(--line);
}

.availability {
  padding: 14px 18px;
}

.availability .t {
  text-align: center;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.pills span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border: 1px solid #edf0f5;
  border-radius: 999px;
  color: var(--red-dark);
  background: #fff7f8;
  font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 650;
}

@keyframes cta-gradient {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes option-click {
  0% {
    transform: scale(1);
  }

  45% {
    transform: scale(0.95);
  }

  100% {
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    animation: none;
  }

  .pre-option.is-clicked {
    animation: none;
  }
}

@media (min-width: 760px) {
  .wrap {
    place-items: center;
    padding: 32px 24px;
  }

  .phone {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
    grid-template-areas:
      "header header"
      "hero howto"
      "availability howto"
      "cta cta"
      "divider divider";
    column-gap: 24px;
    width: min(900px, calc(100vw - 48px));
    border-radius: 26px;
  }

  .prelander {
    grid-column: 1 / -1;
    min-height: min(560px, calc(100vh - 64px));
    padding: 28px 28px 32px;
  }

  .prelander-logo {
    width: 175px;
  }

  .pre-step h2 {
    font-size: 36px;
  }

  .header {
    grid-area: header;
    padding: 26px 28px 6px;
  }

  .brand-link {
    width: 235px;
  }

  .hero {
    grid-area: hero;
    align-self: center;
    margin-top: 0;
    padding: 40px 28px 24px;
  }

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

  .hero p {
    margin-top: 16px;
  }

  .howto {
    grid-area: howto;
    padding: 24px 28px 0 0;
  }

  .cta {
    grid-area: cta;
    padding: 18px 28px 22px;
  }

  .divider {
    grid-area: divider;
  }

  .availability {
    grid-area: availability;
    padding: 18px 28px 20px;
  }
}

@media (min-width: 1024px) {
  .wrap {
    padding: 44px 32px;
  }

  .phone {
    grid-template-columns: minmax(360px, 0.92fr) minmax(430px, 1.08fr);
    grid-template-areas:
      "header header"
      "hero howto"
      "availability cta"
      "divider divider";
    column-gap: 34px;
    row-gap: 0;
    width: min(1060px, calc(100vw - 64px));
    border-radius: 30px;
  }

  .prelander-logo {
    width: 230px;
  }

  .pre-step h2 {
    font-size: 40px;
  }

  .header {
    padding: 30px 34px 8px;
  }

  .brand-link {
    width: 260px;
  }

  .hero {
    padding: 48px 34px 28px;
  }

  .hero h1 {
    font-size: 40px;
    line-height: 1.02;
  }

  .hero p {
    width: min(300px, 100%);
    font-size: 14px;
  }

  .howto {
    padding: 30px 34px 0 0;
  }

  .row {
    min-height: 58px;
    padding: 12px 16px;
  }

  .cta {
    align-self: start;
    padding: 18px 34px 26px 0;
  }

  .btn {
    min-height: 62px;
    font-size: 20px;
  }

  .availability {
    align-self: start;
    padding: 20px 34px 28px;
  }
}

@media (max-width: 380px) {
  .wrap {
    padding-left: 8px;
    padding-right: 8px;
  }

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

  .title-line-bottom {
    font-size: 22px;
  }

  .pre-step h2 {
    font-size: 25px;
  }

  .brand-link {
    width: min(190px, 58%);
  }
}
