:root {
  --ink: #091120;
  --ink-2: #111b31;
  --ink-3: #263149;
  --paper: #f7f8fb;
  --white: #ffffff;
  --muted: #657083;
  --line: rgba(9, 17, 32, 0.11);
  --green: #59d46c;
  --green-dark: #178542;
  --gold: #ffd45a;
  --gold-2: #f3ad28;
  --rose: #6e203a;
  --blue: #184779;
  --shadow: 0 24px 64px rgba(9, 17, 32, 0.13);
  --shadow-soft: 0 14px 34px rgba(9, 17, 32, 0.09);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  max-width: 100%;
}

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

button {
  font: inherit;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.045em;
  line-height: 0.99;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.5rem, 7.6vw, 6.8rem);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.25;
}

p {
  margin-bottom: 18px;
}

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

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: white;
  background: var(--ink);
  border-radius: 10px;
  transform: translateY(-150%);
}

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

.top-strip {
  color: var(--ink);
  background: linear-gradient(90deg, #69dc79, #8addcb);
}

.top-strip-inner {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.84rem;
  font-weight: 750;
}

.top-strip p {
  margin: 0;
}

.top-strip a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(9, 17, 32, 0.42);
}

.site-header {
  position: sticky;
  z-index: 80;
  top: 0;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav-shell {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.site-brand img {
  width: 58px;
  height: 58px;
  display: block;
  object-fit: contain;
  border-radius: 15px;
  box-shadow: 0 10px 24px rgba(9, 17, 32, 0.16);
}

.site-brand span {
  display: grid;
  gap: 1px;
}

.site-brand strong {
  font-size: 1.02rem;
  line-height: 1.2;
}

.site-brand small {
  color: var(--green-dark);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.84rem;
  font-weight: 780;
}

.primary-nav > a:not(.button) {
  position: relative;
  padding: 12px 0;
}

.primary-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: var(--green-dark);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.primary-nav > a:hover::after,
.primary-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  padding: 0;
  background: white;
  border: 1px solid var(--line);
  border-radius: 13px;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  display: block;
  margin: 4px auto;
  background: var(--ink);
  border-radius: 999px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-dark {
  color: white;
  background: var(--ink);
  box-shadow: 0 12px 24px rgba(9, 17, 32, 0.18);
}

.button-primary {
  color: #1c1300;
  background: linear-gradient(135deg, #ffe47a, var(--gold-2));
  box-shadow: 0 14px 30px rgba(243, 173, 40, 0.25);
}

.button-light {
  color: var(--ink);
  background: white;
  border-color: rgba(255, 255, 255, 0.64);
}

.button-outline {
  color: inherit;
  background: transparent;
  border-color: currentColor;
}

.button-large {
  min-height: 58px;
  padding: 16px 28px;
  font-size: 0.93rem;
}

.home-hero,
.page-hero {
  padding: 28px 0 34px;
}

.home-hero-card {
  position: relative;
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
  align-items: center;
  gap: 56px;
  padding: 70px;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 9% 10%, rgba(153, 48, 65, 0.38), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(32, 100, 168, 0.35), transparent 30%),
    linear-gradient(135deg, #3b1828, #0c1427 56%, #101d32);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.home-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to right, transparent, black 35%, black);
}

.hero-copy,
.hero-media,
.page-hero-copy,
.page-hero-card {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--green-dark);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

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

.hero-lead,
.page-lead {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 24px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  list-style: none;
}

.hero-points li::before {
  content: "✓";
  margin-right: 7px;
  color: #73e282;
  font-weight: 900;
}

.hero-domain {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.77rem;
}

.hero-domain strong {
  color: white;
}

.hero-media {
  margin: 0;
}

.hero-poster-frame {
  position: relative;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #080f1d;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  box-shadow: 0 26px 56px rgba(0, 0, 0, 0.34);
  transform: rotate(1.2deg);
}

.hero-poster-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.hero-media figcaption {
  position: absolute;
  right: -12px;
  bottom: 24px;
  max-width: 250px;
  padding: 13px 17px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  box-shadow: var(--shadow-soft);
  font-size: 0.76rem;
  font-weight: 780;
}

.intent-band {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: -5px 28px 0;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: 0 0 22px 22px;
  box-shadow: var(--shadow-soft);
}

.intent-band a {
  display: grid;
  gap: 2px;
  padding: 21px 24px;
  border-right: 1px solid var(--line);
}

.intent-band a:last-child {
  border-right: 0;
}

.intent-band strong {
  font-size: 0.86rem;
}

.intent-band small {
  color: var(--muted);
  font-size: 0.72rem;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.breadcrumbs a {
  color: var(--green-dark);
}

.page-hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  align-items: center;
  gap: 54px;
  padding: 64px 70px;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 85% 15%, rgba(68, 159, 218, 0.28), transparent 26%),
    linear-gradient(135deg, #431b30, #10182b 57%, #10233d);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.page-hero-shell h1 {
  max-width: 850px;
  font-size: clamp(3.3rem, 7vw, 6.1rem);
}

.page-hero-card {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 28px;
  text-align: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  backdrop-filter: blur(14px);
}

.page-hero-card img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  border-radius: 24px;
}

.page-hero-card strong {
  font-size: 1.1rem;
}

.page-hero-card small {
  color: rgba(255, 255, 255, 0.58);
}

.section {
  padding: 90px 0;
}

.section-compact {
  padding: 60px 0;
}

.section-dark {
  color: white;
  background:
    radial-gradient(circle at 82% 16%, rgba(42, 107, 175, 0.3), transparent 26%),
    radial-gradient(circle at 8% 88%, rgba(120, 35, 67, 0.28), transparent 30%),
    var(--ink);
}

.section-muted {
  background: #eef1f6;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 46px;
}

.section-heading p {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--muted);
}

.section-dark .section-heading p {
  color: rgba(255, 255, 255, 0.63);
}

.info-grid,
.intent-grid,
.related-grid,
.steps-grid {
  display: grid;
  gap: 16px;
}

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

.info-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

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

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

.steps-grid {
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.card,
.intent-card,
.related-card,
.step-card {
  position: relative;
  padding: 28px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.card p,
.intent-card p,
.related-card p,
.step-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.card-icon,
.step-number {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 32px;
  color: white;
  background: var(--ink);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 900;
}

.step-card {
  min-height: 290px;
}

.step-card .step-number {
  color: var(--ink);
  background: var(--gold);
}

.section-dark .step-card,
.section-dark .card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.section-dark .step-card p,
.section-dark .card p {
  color: rgba(255, 255, 255, 0.62);
}

.intent-card,
.related-card {
  display: flex;
  flex-direction: column;
}

.intent-card .text-link,
.related-card .text-link {
  margin-top: auto;
  padding-top: 24px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-dark);
  font-size: 0.84rem;
  font-weight: 850;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  align-items: start;
  gap: 54px;
}

.content-copy {
  max-width: 760px;
}

.content-copy p,
.content-copy li {
  color: var(--muted);
}

.content-copy h2 {
  color: var(--ink);
}

.checklist,
.link-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.checklist li,
.link-list a {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.checklist li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--green-dark);
  font-weight: 900;
}

.support-card,
.domain-card,
.warning-card {
  padding: 32px;
  border-radius: var(--radius-lg);
}

.support-card {
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.domain-card {
  color: white;
  background: linear-gradient(145deg, #542039, #111b31 62%, #173a5e);
}

.domain-card code {
  display: block;
  margin: 18px 0 24px;
  padding: 14px 16px;
  overflow-wrap: anywhere;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.warning-card {
  color: #4a3500;
  background: #fff5d2;
  border: 1px solid #edd58d;
}

.warning-card p:last-child,
.domain-card p:last-child,
.support-card p:last-child {
  margin-bottom: 0;
}

.poster-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: 16px;
}

.poster-card {
  margin: 0;
  overflow: hidden;
  background: #091120;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

.poster-art {
  position: relative;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #091120;
}

.poster-card-landscape .poster-art {
  aspect-ratio: 4 / 3;
}

.poster-art img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.poster-card figcaption {
  min-height: 94px;
  padding: 16px 18px 18px;
  color: white;
  font-size: 0.78rem;
}

.poster-card figcaption strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.88rem;
}

.poster-card figcaption span {
  color: rgba(255, 255, 255, 0.58);
}

.table-wrap {
  overflow-x: auto;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

table {
  width: 100%;
  min-width: 650px;
  border-collapse: collapse;
}

th,
td {
  padding: 17px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--ink);
  background: #f1f4f8;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

td {
  color: var(--muted);
  font-size: 0.9rem;
}

tr:last-child td {
  border-bottom: 0;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.faq-list summary {
  padding: 20px 22px;
  cursor: pointer;
  font-weight: 820;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--green-dark);
  font-size: 1.15rem;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

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

.final-cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.45fr);
  align-items: center;
  gap: 40px;
  padding: 58px 64px;
  color: white;
  background:
    radial-gradient(circle at 92% 16%, rgba(74, 171, 226, 0.3), transparent 28%),
    linear-gradient(135deg, #4f1d36, #11192d 58%, #123355);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.final-cta-card h2 {
  margin-bottom: 16px;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
}

.final-cta-card p {
  color: rgba(255, 255, 255, 0.66);
}

.final-logo {
  width: 190px;
  height: 190px;
  justify-self: end;
  object-fit: contain;
  border-radius: 30px;
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.24);
}

.site-footer {
  padding: 68px 0 28px;
  color: rgba(255, 255, 255, 0.68);
  background: #080e1b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 0.75fr);
  gap: 48px;
  padding-bottom: 46px;
}

.footer-brand p {
  max-width: 390px;
  margin-top: 20px;
  font-size: 0.87rem;
}

.site-footer .site-brand strong {
  color: white;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links h3 {
  margin-bottom: 9px;
  color: white;
  font-size: 0.76rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-links a {
  font-size: 0.86rem;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.75rem;
}

.footer-bottom p {
  margin: 0;
}

.mobile-download-bar {
  display: none;
}

@media (max-width: 1080px) {
  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    top: 134px;
    right: 20px;
    left: 20px;
    display: grid;
    gap: 4px;
    padding: 16px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-nav > a:not(.button) {
    padding: 12px 14px;
  }

  .home-hero-card,
  .page-hero-shell {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .page-hero-copy {
    max-width: 780px;
  }

  .hero-media {
    max-width: 620px;
  }

  .page-hero-card {
    grid-template-columns: auto 1fr auto;
    justify-items: start;
    text-align: left;
  }

  .page-hero-card img {
    width: 100px;
    height: 100px;
  }

  .info-grid,
  .intent-grid,
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .split-layout {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1.25fr repeat(3, 0.75fr);
    gap: 28px;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 82px;
  }

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

  .top-strip-inner {
    min-height: 40px;
    justify-content: center;
  }

  .top-strip p {
    display: none;
  }

  .nav-shell {
    min-height: 72px;
  }

  .site-brand {
    gap: 9px;
  }

  .site-brand img {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }

  .site-brand strong {
    font-size: 0.88rem;
  }

  .site-brand small {
    font-size: 0.57rem;
  }

  .primary-nav {
    top: 118px;
    right: 14px;
    left: 14px;
  }

  .home-hero,
  .page-hero {
    padding-top: 16px;
  }

  .home-hero-card,
  .page-hero-shell {
    gap: 34px;
    padding: 38px 24px 28px;
    border-radius: 24px;
  }

  .home-hero-card {
    min-height: auto;
  }

  h1,
  .page-hero-shell h1 {
    font-size: clamp(3rem, 14vw, 4.2rem);
  }

  .hero-lead,
  .page-lead {
    font-size: 0.96rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-poster-frame {
    border-radius: 20px;
    transform: none;
  }

  .hero-media figcaption {
    right: 10px;
    bottom: 10px;
    max-width: 210px;
    padding: 10px 13px;
  }

  .intent-band {
    grid-template-columns: 1fr 1fr;
    margin: 12px 0 0;
    border-radius: 18px;
  }

  .intent-band a {
    padding: 16px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .intent-band a:nth-child(2n) {
    border-right: 0;
  }

  .intent-band a:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .page-hero-card {
    grid-template-columns: 72px 1fr;
    padding: 20px;
  }

  .page-hero-card img {
    width: 72px;
    height: 72px;
    border-radius: 16px;
  }

  .page-hero-card .button {
    grid-column: 1 / span 2;
    width: 100%;
  }

  .section {
    padding: 68px 0;
  }

  .section-compact {
    padding: 46px 0;
  }

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

  h2 {
    font-size: clamp(2.35rem, 11vw, 3.4rem);
  }

  .info-grid,
  .info-grid.two,
  .intent-grid,
  .related-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .step-card {
    min-height: 0;
  }

  .card-icon,
  .step-number {
    margin-bottom: 22px;
  }

  .poster-rail {
    width: calc(100vw - 14px);
    display: flex;
    gap: 12px;
    margin-right: calc(50% - 50vw);
    padding: 0 14px 14px 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .poster-card {
    flex: 0 0 min(84vw, 360px);
    scroll-snap-align: start;
    border-radius: 18px;
  }

  .poster-card figcaption {
    min-height: 86px;
  }

  .final-cta {
    padding-bottom: 68px;
  }

  .final-cta-card {
    grid-template-columns: 1fr;
    padding: 42px 25px;
    border-radius: 24px;
  }

  .final-logo {
    width: 132px;
    height: 132px;
    justify-self: start;
    border-radius: 24px;
  }

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

  .footer-brand {
    grid-column: 1 / span 2;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-download-bar {
    position: fixed;
    z-index: 100;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 10px 10px 15px;
    color: white;
    background: rgba(9, 17, 32, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    box-shadow: 0 18px 42px rgba(9, 17, 32, 0.34);
    backdrop-filter: blur(14px);
  }

  .mobile-download-bar span {
    display: grid;
    font-size: 0.76rem;
    line-height: 1.25;
  }

  .mobile-download-bar small {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .mobile-download-bar .button {
    min-height: 44px;
    padding: 10px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
