:root {
  --bg-deep: #041327;
  --bg-navy: #071a31;
  --blue-1: #003b79;
  --blue-2: #0b60b2;
  --blue-3: #8db2f3;
  --lilac: #c79ae6;
  --pink: #FF9CD9;
  --pink-soft: #f3b6df;
  --text: #ffffff;
  --text-dark: #0f172a;
  --muted: rgba(255, 255, 255, 0.78);
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
  --radius-xl: 5px;
  --radius-lg: 5px;
  --container: 1240px;
  --header-offset: 110px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "shuttleblock", sans-serif;
  color: var(--text);
  background: var(--bg-deep);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: linear-gradient(180deg,
    #041B2D 0%,
    #004E98 23%,
    #428BD2 33%,
    #E099D7 100%
  );
}

/* ── Fan intro animation ─────────────────────────────────── */
.fan-wrap {
  position: absolute;
  inset: 0;
  overflow: visible;
  pointer-events: none;
}

.bg-fan {
  position: absolute;
  top: 0;
  right: 0;
  width: clamp(500px, 55vw, 900px);
  height: auto;
  pointer-events: none;
  user-select: none;
  visibility: hidden;
  transform-origin: top right;
  will-change: transform;
  overflow: visible;
}

.bg-fan.fan-ready {
  visibility: visible;
}

.fan-layer {
  opacity: 0;
}

.bg-fan.animate .fan-pink { animation: fan-in 0.65s cubic-bezier(0.22, 0.61, 0.36, 1) 0.00s forwards; }
.bg-fan.animate .fan-l0   { animation: fan-in 0.65s cubic-bezier(0.22, 0.61, 0.36, 1) 0.12s forwards; }
.bg-fan.animate .fan-l1   { animation: fan-in 0.65s cubic-bezier(0.22, 0.61, 0.36, 1) 0.24s forwards; }
.bg-fan.animate .fan-l2   { animation: fan-in 0.65s cubic-bezier(0.22, 0.61, 0.36, 1) 0.36s forwards; }
.bg-fan.animate .fan-l3   { animation: fan-in 0.65s cubic-bezier(0.22, 0.61, 0.36, 1) 0.48s forwards; }
.bg-fan.animate .fan-l4   { animation: fan-in 0.65s cubic-bezier(0.22, 0.61, 0.36, 1) 0.60s forwards; }
.bg-fan.animate .fan-l5   { animation: fan-in 0.65s cubic-bezier(0.22, 0.61, 0.36, 1) 0.72s forwards; }
.bg-fan.animate .fan-l6   { animation: fan-in 0.65s cubic-bezier(0.22, 0.61, 0.36, 1) 0.84s forwards; }
.bg-fan.animate .fan-l7   { animation: fan-in 0.65s cubic-bezier(0.22, 0.61, 0.36, 1) 0.96s forwards; }

@keyframes fan-in {
  from {
    opacity: 0;
    transform: rotate(-10deg) scale(0.95);
    transform-origin: 27px 297px;
  }
  to {
    opacity: 1;
    transform: rotate(0deg) scale(1);
    transform-origin: 27px 297px;
  }
}

/* Pink intro block */
.pink-intro {
  position: fixed;
  width: 52px;
  height: 52px;
  background: #FF9CD9;
  z-index: 9999;
  opacity: 0;
  top: 50vh;
  left: 50vw;
  transform: translate(-50%, -50%) scale(0.1);
  pointer-events: none;
  transition: none;
}



.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
  scroll-margin-top: var(--header-offset);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding-top: 0;
  transition:
    background 0.4s ease,
    border-color 0.4s ease,
    backdrop-filter 0.4s ease,
    box-shadow 0.4s ease;
}

.site-header.scrolled {
  background: rgba(4, 19, 39, 0.88);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.nav-shell {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
  transition: padding 0.4s ease;
}

.site-header.scrolled .nav-shell {
  padding: 14px 0;
}

.logo,
.footer-logo {
  font-size: clamp(2rem, 2.4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.logo-img {
  display: block;
  height: clamp(36px, 3.2vw, 52px);
  width: auto;
  transition: height 0.3s ease;
}

.site-header.scrolled .logo-img {
  height: clamp(24px, 2vw, 32px);
}

.footer-logo .logo-img {
  height: clamp(36px, 3.1vw, 47px);
  margin-left: auto;
}

.logo span,
.footer-logo span {
  color: var(--pink);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.95rem;
}

.desktop-nav a:not(.nav-cta) {
  color: rgba(255, 255, 255, 0.88);
  background-image: linear-gradient(var(--pink), var(--pink));
  background-repeat: no-repeat;
  background-size: 0% 1px;
  background-position: left bottom;
  padding-bottom: 2px;
  transition: color 0.25s ease, background-size 0.35s ease;
}

.desktop-nav a:not(.nav-cta):hover,
.desktop-nav a:not(.nav-cta).active {
  color: #ffffff;
  background-size: 100% 1px;
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease, opacity 0.2s ease;
}

.nav-cta {
  padding: 12px 20px;
  border: 1.5px solid var(--pink);
  background: transparent;
  color: #fff;
}

.nav-cta:hover {
  background: var(--pink);
  color: var(--bg-navy);
  border-color: var(--bg-navy);
  transform: translateY(-1px);
}

.btn:hover {
  background: var(--pink);
  color: var(--bg-navy);
  border-color: var(--bg-navy);
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 5px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.08);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.mobile-toggle span {
  width: 18px;
  height: 2px;
  background: #fff;
  display: block;
}

.mobile-nav {
  width: min(var(--container), calc(100% - 40px));
  margin: 10px auto 0;
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
  border-radius: 5px;
  background: rgba(4, 19, 39, 0.9);
  border: 1px solid var(--border);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.mobile-nav.open {
  display: flex;
}

.mobile-cta {
  margin-top: 8px;
  text-align: center;
}

.hero {
  padding-top: 40px;
  padding-bottom: 56px;
  overflow-x: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.93fr;
  gap: 48px;
  align-items: center;
}

.hero-copy h1 {
  margin: 0 0 20px;
  max-width: 12ch;
  font-size: clamp(2.4rem, 4.4vw, 3.8rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  font-weight: 500;
}

.hero-copy p {
  max-width: 560px;
  margin: 0 0 32px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.btn {
  padding: 16px 28px;
}

.btn.small {
  padding: 14px 22px;
}

.btn-dark {
  color: #fff;
  background: #091529;
  border: 1.5px solid var(--pink);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
}

.hero-visual {
  position: relative;
  align-self: end;
}

.screens-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.screens-grid img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.screens-grid img:hover {
  opacity: 0.85;
}

/* ── Checkout success page ───────────────────────────────── */
.success-hero {
  padding: 60px 0 80px;
}

.success-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.success-heading {
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: #ffffff;
  margin: 0 0 28px;
}

.success-copy p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  margin: 0 0 14px;
  max-width: 480px;
}

.success-cards {
  display: flex;
  flex-direction: column;
}

.success-notice {
  background: rgba(7, 26, 49, 0.75);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 28px 60px;
  margin-right: 24px;
  position: relative;
  z-index: 0;
}

.success-notice p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0 0 20px;
}

.success-help {
  background: var(--pink);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-left: 24px;
  margin-top: -52px;
  position: relative;
  z-index: 1;
}

.success-help-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.success-help-header h3 {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--bg-navy);
  margin: 0;
  letter-spacing: -0.03em;
}

.success-help .btn-dark {
  background: var(--bg-navy);
  border-color: var(--bg-navy);
  color: #fff;
  white-space: nowrap;
}

.success-help .btn-dark:hover {
  background: var(--bg-deep);
  border-color: var(--bg-deep);
  color: #fff;
}

.success-next-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--bg-navy);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 10px;
}

.success-next-list {
  margin: 0;
  padding: 0 0 0 18px;
  font-size: 0.9rem;
  color: var(--bg-navy);
  line-height: 1.75;
}

/* ── Screen modal lightbox ── */
.screen-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.screen-modal.open {
  display: flex;
}

.screen-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 19, 39, 0.82);
  backdrop-filter: blur(6px);
}

.screen-modal__stage {
  position: relative;
  z-index: 1;
  max-width: min(780px, calc(100vw - 160px));
  max-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.screen-modal__img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 80px);
  width: auto;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
  transition: opacity 0.18s ease;
}

.screen-modal__img.switching {
  opacity: 0;
}

.screen-modal__close {
  position: absolute;
  top: 24px;
  right: 28px;
  z-index: 2;
  width: 40px;
  height: 40px;
  background: var(--bg-navy);
  border: 1.5px solid var(--pink);
  border-radius: 5px;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.screen-modal__close:hover {
  background: var(--bg-deep);
}

.screen-modal__nav {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: var(--bg-navy);
  border: 1.5px solid var(--pink);
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 16px;
  transition: background 0.2s ease;
}

.screen-modal__nav:hover {
  background: var(--bg-deep);
}

/* Re-use the same arrow technique as the section eyebrow */
.screen-modal__arrow {
  position: relative;
  width: 22px;
  height: 2px;
  background: #fff;
  display: block;
}

.screen-modal__arrow::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}

.screen-modal__arrow--next {
  margin-left: 2px;
}

.screen-modal__arrow--prev {
  transform: rotate(180deg);
}

.marquee-wrap {
  overflow: hidden;
  padding: 14px 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 0;
  white-space: nowrap;
  font-size: clamp(2.4rem, 3.2vw, 4rem);
  font-weight: 500;
  text-transform: uppercase;
  animation: marquee 26s linear infinite;
  align-items: center;
}

.marquee-track span {
  padding: 0 28px;
}

.marquee-track span em {
  font-style: normal;
  color: #FF9CD9;
}

.marquee-track span::after {
  display: none;
}

.section-eyebrow {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

.section-eyebrow .line {
  position: relative;
  width: 80px;
  height: 2px;
  background: var(--pink);
  flex-shrink: 0;
}

.section-eyebrow .line::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--pink);
  border-top: 2px solid var(--pink);
}

.section-header {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0 16px;
  align-items: start;
  margin-bottom: 44px;
}

.section-header .section-eyebrow {
  padding-top: calc(clamp(2.5rem, 4.2vw, 4.2rem) * 0.51 - 1px);
}

.section-header .section-intro {
  max-width: none;
  margin-bottom: 0;
}

.section-header .section-intro.wide {
  max-width: none;
}

.section-header .section-intro p {
  margin-left: 0;
}

.section-intro {
  max-width: 700px;
  margin-bottom: 44px;
}

.section-intro.wide {
  max-width: 860px;
}

.section-intro h2,
.split-copy h2,
.faq-copy h2,
.cta-copy h2,
.site-footer h2 {
  margin: 0;
  font-size: clamp(2.5rem, 4.2vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 500;
}

.section-intro p,
.split-copy p,
.faq-copy p,
.cta-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.card-grid.three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  overflow: hidden;
  border-radius: 5px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: background 0.25s ease, color 0.25s ease;
}

/* Light: white default → navy hover */
.feature-card.light {
  background: #fff;
  color: var(--text-dark);
}

.feature-card.light:hover {
  background: var(--bg-navy);
  color: #fff;
}

/* Dark: navy default → white hover */
.feature-card.dark {
  background: var(--bg-navy);
  color: #fff;
}

.feature-card.dark:hover {
  background: #fff;
  color: var(--text-dark);
}

.card-icon {
  width: 47%;
  aspect-ratio: 1;
  background: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  flex-shrink: 0;
}

.card-icon img {
  width: 50%;
  height: 50%;
  object-fit: contain;
}

.card-content {
  padding: 32px 32px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-content h3 {
  margin: 0 0 16px;
  max-width: 11ch;
  font-size: 2rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 500;
  transition: color 0.25s ease;
}

.feature-card.light .card-content h3 { color: var(--bg-navy); }
.feature-card.light:hover .card-content h3 { color: #fff; }
.feature-card.dark .card-content h3 { color: #fff; }
.feature-card.dark:hover .card-content h3 { color: var(--bg-navy); }

.card-content p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.75;
  flex: 1;
  transition: color 0.25s ease;
}

.feature-card.light .card-content p { color: #475569; }
.feature-card.light:hover .card-content p { color: rgba(255, 255, 255, 0.72); }
.feature-card.dark .card-content p { color: rgba(255, 255, 255, 0.72); }
.feature-card.dark:hover .card-content p { color: #475569; }

.card-arrow {
  position: relative;
  display: block;
  width: 52px;
  height: 2px;
  background: var(--pink);
  margin-top: 28px;
  transition: width 0.35s ease;
}

.feature-card:hover .card-arrow {
  width: 100%;
}

.card-arrow::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--pink);
  border-top: 2px solid var(--pink);
  transform: translateY(-50%) rotate(45deg);
}

.arrow-link {
  display: none;
}

.split-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 72px;
}

.split-copy,
.faq-copy {
  display: block;
}

.split-copy h2,
.faq-copy h2 {
  margin: 0 0 20px;
}

.split-copy p,
.faq-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px 50px;
}

.mini-feature__icon {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-bottom: 16px;
  filter: brightness(0) saturate(100%) invert(72%) sepia(40%) saturate(500%) hue-rotate(290deg) brightness(105%);
}

.mini-feature h3 {
  margin: 0 0 12px;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 500;
}

.mini-feature p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.75;
  color: var(--muted);
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr 380px;
  overflow: hidden;
  border-radius: 5px;
  border: 1px solid var(--border);
  background: url('images/CTA-panel_2x.webp') center / cover no-repeat;
  box-shadow: var(--shadow);
}

.cta-copy {
  position: relative;
  padding: 56px 46px;
  background: transparent;
}

.cta-offer {
  padding: 46px;
  background: var(--pink);
  color: var(--text-dark);
}

.cta-offer h3 {
  margin: 0 0 14px;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 500;
}

.cta-offer p {
  margin: 0 0 28px;
  font-weight: 500;
}

.cta-fill {
  display: none;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 60px;
  align-items: start;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
  border-radius: 5px;
  background: #FF9CD9;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: background 0.25s ease;
}

.faq-item:not(.active):hover {
  background: #071a31;
}

.faq-item:not(.active):hover .faq-question {
  color: #fff;
}

.faq-item.active {
  background: #071a31;
}

.faq-item.active .faq-question {
  color: var(--pink);
}

.faq-question {
  width: 100%;
  padding: 24px 28px;
  background: transparent;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
  cursor: pointer;
  color: #0f172a;
  font-weight: 700;
  font-size: 1.05rem;
  transition: color 0.25s ease;
}

/* Arrow — same technique as section eyebrow */
.faq-plus {
  position: relative;
  flex-shrink: 0;
  width: 52px;
  height: 2px;
  background: currentColor;
  transition: width 0.3s ease, transform 0.3s ease;
}

.faq-plus::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
}

.faq-item.active .faq-plus {
  width: 20px;
  transform: rotate(90deg);
}

.faq-answer {
  height: 0;
  overflow: hidden;
  background: #071a31;
  transition: height 0.34s ease;
}

.faq-answer-inner {
  padding: 22px 28px 28px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.75;
  font-size: 0.96rem;
}

/* ── Legal pages (privacy policy, terms) ────────────────── */
.legal-hero {
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--border);
}

.legal-hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: #ffffff;
  margin: 0 0 16px;
}

.legal-hero .legal-meta {
  font-size: 0.88rem;
  color: var(--muted);
}

.legal-body {
  padding: 64px 0 100px;
  max-width: 760px;
}

.legal-body h2 {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin: 52px 0 14px;
}

.legal-body h2:first-child {
  margin-top: 0;
}

.legal-body p {
  font-size: 0.975rem;
  color: var(--muted);
  line-height: 1.8;
  margin: 0 0 18px;
}

.legal-body ul,
.legal-body ol {
  padding-left: 22px;
  margin: 0 0 18px;
}

.legal-body ul li,
.legal-body ol li {
  font-size: 0.975rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 6px;
}

.legal-body a {
  color: var(--pink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-body a:hover {
  color: #ffffff;
}

.site-footer {
  background: #041327;
  border-top: 1px solid var(--border);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: end;
  padding: 56px 0 42px;
}

.site-footer h2 {
  max-width: 860px;
  color: var(--pink);
}

.footer-links {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.25s ease;
  background-image: linear-gradient(var(--pink), var(--pink));
  background-repeat: no-repeat;
  background-size: 0% 1px;
  background-position: left bottom;
  padding-bottom: 1px;
  transition: color 0.25s ease, background-size 0.35s ease;
}

.footer-links a:hover {
  color: #ffffff;
  background-size: 100% 1px;
}

.footer-logo {
  text-align: right;
}

.footer-marquee {
  border-bottom: 0;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(var(--marquee-offset, -50%));
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .split-layout,
  .faq-grid,
  .footer-top,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    max-height: none;
  }

  .card-grid.three {
    grid-template-columns: 1fr;
  }

  .feature-list {
    grid-template-columns: 1fr 1fr;
  }

  .cta-fill {
    display: none;
  }

  .footer-logo {
    text-align: left;
  }
}

@media (max-width: 840px) {
  :root {
    --header-offset: 90px;
  }

  .logo-img {
    height: 42px;
  }

  .site-header.scrolled .logo-img {
    height: 36px;
  }

  .desktop-nav {
    display: none;
  }

  .desktop-nav.success-nav {
    display: flex;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .hero {
    padding-top: 10px;
  }

  .hero-visual {
    max-height: none;
    overflow: visible;
  }

  .success-grid {
    grid-template-columns: 1fr;
  }

  .success-hero {
    padding: 40px 0 60px;
  }

  .screens-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .section,
  .faq-section {
    padding: 72px 0;
  }

  .cta-copy,
  .cta-offer {
    padding: 34px 28px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .nav-shell {
    width: min(var(--container), calc(100% - 28px));
  }

  .mobile-nav {
    width: min(var(--container), calc(100% - 28px));
  }

  .hero-copy h1,
  .section-intro h2,
  .split-copy h2,
  .faq-copy h2,
  .cta-copy h2,
  .site-footer h2 {
    max-width: none;
  }

  .screens-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-content,
  .faq-question,
  .faq-answer-inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .cta-offer h3 {
    font-size: 2.8rem;
  }
}