:root {
  --bg: #020612;
  --bg-2: #06101f;
  --panel: rgba(255, 255, 255, 0.075);
  --panel-strong: rgba(255, 255, 255, 0.11);
  --line: rgba(169, 220, 255, 0.18);
  --line-strong: rgba(111, 201, 255, 0.42);
  --text: #f7fbff;
  --muted: #a8b6c9;
  --soft: #d7e8ff;
  --blue: #2e9dff;
  --cyan: #00f0d4;
  --violet: #7a5cff;
  --success: #6ef3bb;
  --danger: #ff8da1;
  --shadow: 0 24px 90px rgba(0, 110, 255, 0.28);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    radial-gradient(circle at 88% 8%, rgba(0, 240, 212, 0.12), transparent 30%),
    radial-gradient(circle at 8% 30%, rgba(46, 157, 255, 0.16), transparent 28%),
    #020612;
  background-size: 56px 56px, 56px 56px, auto, auto, auto;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image: linear-gradient(
    120deg,
    transparent 0%,
    rgba(0, 240, 212, 0.055) 38%,
    transparent 52%
  );
  animation: beam-drift 13s ease-in-out infinite alternate;
}

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

button,
input {
  font: inherit;
}

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

.site-shell {
  position: relative;
  overflow: hidden;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  margin: 16px auto 0;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(2, 8, 22, 0.72);
  box-shadow: 0 12px 44px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(22px);
}

.brand,
.nav-links,
.hero-actions,
.hero-proof,
.access-form,
.countdown {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  min-width: 0;
  font-size: 0.95rem;
  font-weight: 800;
}

.brand span:last-child,
.thanks-brand span:last-child,
.nav-cta,
.primary-button,
.whatsapp-button {
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(46, 157, 255, 0.98), rgba(0, 240, 212, 0.82)),
    #0d8cff;
  color: #001226;
  font-size: 0.78rem;
  box-shadow: 0 0 30px rgba(46, 157, 255, 0.58);
}

.nav-links {
  gap: 24px;
  color: var(--muted);
  font-size: 0.9rem;
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--soft);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 86vh;
  padding: 132px 0 84px;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(
      90deg,
      rgba(2, 6, 18, 0.98) 0%,
      rgba(2, 6, 18, 0.84) 36%,
      rgba(2, 6, 18, 0.45) 70%,
      rgba(2, 6, 18, 0.7) 100%
    ),
    linear-gradient(180deg, rgba(2, 6, 18, 0.08) 0%, #020612 96%),
    url("assets/career-gym-hero.png") center / cover no-repeat;
}

.hero-grid {
  position: absolute;
  inset: auto 0 0;
  z-index: -2;
  height: 34%;
  background-image:
    linear-gradient(rgba(111, 201, 255, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111, 201, 255, 0.11) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(transparent, #000);
  transform: perspective(520px) rotateX(54deg) translateY(48px);
  transform-origin: bottom;
}

.hero-scan {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(0, 240, 212, 0.08),
    transparent
  );
  animation: scan 8s linear infinite;
}

.hero-content,
.section-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero-content {
  max-width: 770px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #aeefff;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow::before {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px var(--cyan);
  content: "";
}

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

h1,
h2,
h3 {
  font-family: "Segoe UI Variable Display", Inter, ui-sans-serif, system-ui,
    sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: 5.3rem;
  line-height: 0.95;
}

h2 {
  margin-bottom: 16px;
  font-size: 3.1rem;
  line-height: 1;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
}

p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.hero-subtitle {
  max-width: 700px;
  margin-bottom: 34px;
  color: #d7e7f9;
  font-size: 1.18rem;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 34px;
}

.primary-button,
.secondary-link,
.access-form button {
  min-height: 52px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.primary-button,
.access-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  background:
    linear-gradient(135deg, var(--cyan), var(--blue) 55%, var(--violet)),
    var(--blue);
  color: #001226;
  font-weight: 900;
  box-shadow:
    0 0 28px rgba(0, 240, 212, 0.28),
    0 18px 42px rgba(46, 157, 255, 0.25);
  cursor: pointer;
}

.primary-button {
  padding: 0 22px;
}

.primary-button svg,
.access-form button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.primary-button:hover,
.access-form button:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 38px rgba(0, 240, 212, 0.36),
    0 22px 52px rgba(46, 157, 255, 0.32);
}

.secondary-link {
  display: inline-flex;
  align-items: center;
  color: var(--soft);
  font-weight: 800;
}

.secondary-link:hover {
  color: #ffffff;
}

.hero-proof {
  flex-wrap: wrap;
  gap: 10px;
}

.hero-proof span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #dff5ff;
  font-size: 0.86rem;
  font-weight: 700;
  backdrop-filter: blur(14px);
}

.launch-section,
.access-section,
.tracks-section,
.why-section {
  position: relative;
  padding: 86px 0;
}

.launch-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(46, 157, 255, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0));
}

.launch-inner,
.access-inner,
.why-inner {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 46px;
  align-items: center;
}

.section-heading {
  max-width: 660px;
}

.section-heading.centered {
  max-width: 720px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(116px, 1fr));
  gap: 14px;
}

.countdown-tile,
.track-card,
.why-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 16px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.countdown-tile {
  position: relative;
  min-width: 0;
  min-height: 132px;
  overflow: hidden;
  padding: 24px 18px;
}

.countdown-tile::after,
.track-card::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.18),
    transparent 34%,
    rgba(0, 240, 212, 0.08)
  );
  opacity: 0.7;
}

.countdown-tile strong {
  position: relative;
  z-index: 1;
  display: block;
  min-width: 0;
  color: #ffffff;
  font-size: 3.1rem;
  line-height: 1;
  text-shadow: 0 0 32px rgba(46, 157, 255, 0.42);
}

.countdown-tile span {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.access-section {
  background:
    radial-gradient(circle at 20% 0%, rgba(122, 92, 255, 0.13), transparent 30%),
    radial-gradient(circle at 80% 85%, rgba(0, 240, 212, 0.1), transparent 30%);
}

.access-inner {
  align-items: start;
}

.access-inner h2 {
  max-width: 560px;
}

.access-inner p {
  max-width: 580px;
}

.access-form {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  width: 100%;
  padding: 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.access-form input {
  min-width: 0;
  min-height: 56px;
  border: 0;
  outline: 0;
  border-radius: 999px;
  background: rgba(2, 6, 18, 0.68);
  color: var(--text);
  padding: 0 22px;
}

.access-form input::placeholder {
  color: #7f91a7;
}

.access-form input:focus {
  box-shadow: 0 0 0 2px rgba(0, 240, 212, 0.35);
}

.access-form button {
  min-width: 190px;
  padding: 0 22px;
}

.access-form button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-status {
  position: absolute;
  left: 22px;
  right: 22px;
  top: calc(100% + 12px);
  min-height: 24px;
  margin: 0;
  color: var(--success);
  font-size: 0.92rem;
}

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

.form-status.error {
  color: var(--danger);
}

.track-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.track-card {
  position: relative;
  min-height: 284px;
  overflow: hidden;
  padding: 24px;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.track-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 240, 212, 0.42);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.055)),
    rgba(255, 255, 255, 0.05);
}

.icon-box {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 24px;
  border: 1px solid rgba(0, 240, 212, 0.36);
  border-radius: 8px;
  background: rgba(0, 240, 212, 0.08);
  box-shadow: inset 0 0 26px rgba(46, 157, 255, 0.14);
}

.icon-box svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: #b9f8ff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.track-card h3,
.track-card p {
  position: relative;
  z-index: 1;
}

.track-card p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.why-section {
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    radial-gradient(circle at 66% 22%, rgba(46, 157, 255, 0.12), transparent 26%);
}

.why-list {
  display: grid;
  gap: 12px;
}

.why-item {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 80px;
  padding: 16px 18px;
}

.why-item span {
  color: var(--cyan);
  font-size: 0.86rem;
  font-weight: 900;
}

.why-item p {
  margin: 0;
  color: #d9e8f9;
  font-size: 0.98rem;
}

.footer {
  padding: 38px 20px 48px;
  border-top: 1px solid var(--line);
  text-align: center;
  background: #020612;
}

.footer p {
  margin: 0;
  color: #dcecff;
  font-weight: 800;
}

.thanks-page {
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(37, 211, 102, 0.16), transparent 28%),
    radial-gradient(circle at 12% 22%, rgba(46, 157, 255, 0.18), transparent 30%),
    var(--bg);
}

.thanks-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 430px);
  gap: 58px;
  align-items: center;
  min-height: 100vh;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 116px 0 70px;
  isolation: isolate;
}

.thanks-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(111, 201, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111, 201, 255, 0.055) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at 50% 50%, #000, transparent 74%);
}

.thanks-brand {
  position: absolute;
  top: 28px;
  left: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 850;
}

.thanks-copy h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: 4.8rem;
  line-height: 0.96;
}

.thanks-copy p {
  max-width: 650px;
  color: #d8e9fb;
  font-size: 1.12rem;
}

.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 34px;
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, #25d366, #00f0d4),
    #25d366;
  color: #00160b;
  font-weight: 900;
  box-shadow:
    0 0 34px rgba(37, 211, 102, 0.32),
    0 20px 50px rgba(0, 240, 212, 0.2);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.whatsapp-button:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 44px rgba(37, 211, 102, 0.42),
    0 24px 58px rgba(0, 240, 212, 0.27);
}

.whatsapp-button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.qr-card {
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 430px;
  overflow: hidden;
  padding: 46px 34px 32px;
  border: 1px solid rgba(37, 211, 102, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.075);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.34),
    0 0 80px rgba(37, 211, 102, 0.16);
  text-align: center;
  backdrop-filter: blur(22px);
}

.qr-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 32%),
    radial-gradient(circle at 80% 20%, rgba(37, 211, 102, 0.14), transparent 38%);
}

.qr-badge {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border: 1px solid rgba(37, 211, 102, 0.35);
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.14);
  box-shadow: inset 0 0 30px rgba(37, 211, 102, 0.18);
}

.qr-badge svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: #b9ffd4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.qr-title,
.qr-image,
.qr-caption {
  position: relative;
  z-index: 1;
}

.qr-title {
  margin-bottom: 20px;
  color: var(--text);
  font-size: 1.24rem;
  font-weight: 850;
}

.qr-image {
  display: block;
  width: min(100%, 310px);
  aspect-ratio: 1;
  margin: 0 auto 22px;
  padding: 12px;
  border-radius: 8px;
  background: #ffffff;
}

.qr-caption {
  max-width: 330px;
  margin: 0 auto;
  color: #d9e9e2;
  font-size: 0.96rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes beam-drift {
  from {
    transform: translateX(-8%);
  }

  to {
    transform: translateX(8%);
  }
}

@keyframes scan {
  0% {
    transform: translateY(-80%);
    opacity: 0;
  }

  28% {
    opacity: 1;
  }

  100% {
    transform: translateY(80%);
    opacity: 0;
  }
}

@media (max-width: 1080px) {
  h1 {
    font-size: 4.4rem;
  }

  h2 {
    font-size: 2.6rem;
  }

  .track-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .nav {
    width: min(100% - 24px, 720px);
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 82vh;
    padding-top: 118px;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(2, 6, 18, 0.82), rgba(2, 6, 18, 0.98) 86%),
      url("assets/career-gym-hero.png") 58% center / cover no-repeat;
  }

  .launch-inner,
  .access-inner,
  .why-inner {
    grid-template-columns: 1fr;
  }

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

  .access-form {
    grid-template-columns: 1fr;
    border-radius: 8px;
  }

  .access-form input,
  .access-form button {
    width: 100%;
  }

  .form-status {
    position: static;
    grid-column: 1;
    margin: 0 8px 2px;
  }

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

  .thanks-hero {
    grid-template-columns: 1fr;
    gap: 42px;
    justify-items: center;
    min-height: auto;
    padding: 112px 0 58px;
  }

  .thanks-copy {
    justify-self: center;
    max-width: 680px;
    text-align: center;
  }

  .thanks-copy .eyebrow {
    justify-content: center;
  }

  .thanks-copy h1 {
    font-size: 3.8rem;
  }

  .thanks-actions {
    justify-content: center;
  }

  .qr-card {
    width: min(100%, 430px);
    justify-self: center;
  }
}

@media (max-width: 620px) {
  .nav {
    gap: 10px;
    padding: 8px;
  }

  .brand {
    font-size: 0.9rem;
  }

  .nav-cta {
    padding: 9px 12px;
    font-size: 0.78rem;
  }

  .hero-content,
  .section-inner {
    width: min(100% - 28px, 1180px);
  }

  .hero-actions {
    align-items: stretch;
  }

  .primary-button {
    width: 100%;
  }

  .secondary-link {
    justify-content: center;
    width: 100%;
    min-height: 40px;
  }

  h1 {
    font-size: 3.3rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .launch-section,
  .access-section,
  .tracks-section,
  .why-section {
    padding: 66px 0;
  }

  .countdown-tile strong {
    font-size: 2.4rem;
  }

  .countdown-tile {
    min-height: 116px;
    padding: 20px 14px;
  }

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

  .track-card {
    min-height: auto;
  }

  .why-item {
    grid-template-columns: 46px 1fr;
  }

  .thanks-hero {
    width: min(100% - 28px, 1120px);
  }

  .thanks-brand {
    top: 22px;
    left: 50%;
    transform: translateX(-50%);
  }

  .thanks-copy h1 {
    font-size: 3rem;
  }

  .thanks-copy p {
    font-size: 1.03rem;
  }

  .whatsapp-button {
    width: 100%;
  }

  .thanks-actions .secondary-link {
    width: 100%;
  }

  .qr-card {
    padding: 40px 20px 28px;
  }

  .qr-image {
    width: min(100%, 280px);
  }
}

@media (max-width: 420px) {
  .nav {
    width: calc(100% - 18px);
    gap: 8px;
  }

  .brand {
    gap: 8px;
    font-size: 0.84rem;
  }

  .brand-mark {
    width: 31px;
    height: 31px;
    font-size: 0.7rem;
  }

  .nav-cta {
    padding: 8px 10px;
    font-size: 0.74rem;
  }

  h1 {
    font-size: 2.75rem;
    line-height: 1;
  }

  h2 {
    font-size: 1.95rem;
    line-height: 1.08;
  }

  .hero {
    min-height: auto;
    padding: 112px 0 64px;
  }

  .eyebrow {
    font-size: 0.74rem;
  }

  .hero-subtitle,
  .thanks-copy p {
    font-size: 1rem;
  }

  .countdown {
    gap: 10px;
  }

  .countdown-tile {
    min-height: 104px;
    padding: 18px 12px;
  }

  .countdown-tile strong {
    font-size: 2.05rem;
  }

  .countdown-tile span {
    font-size: 0.72rem;
  }

  .access-form {
    padding: 10px;
  }

  .access-form input,
  .access-form button {
    min-height: 52px;
  }

  .why-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .thanks-copy h1 {
    font-size: 2.55rem;
  }

  .qr-title {
    font-size: 1.08rem;
  }

  .qr-image {
    width: min(100%, 246px);
  }
}

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