/* ---------- Global tokens ---------- */
:root {
  --bg: #030616;
  --bg-alt: #050a1f;
  --bg-gradient: radial-gradient(circle at top left, #372871, #050a1f 55%, #01030a 90%);
  --surface: rgba(10, 15, 35, 0.92);
  --surface-soft: rgba(15, 20, 45, 0.8);
  --surface-card: linear-gradient(140deg, rgba(18, 24, 55, 0.95), rgba(8, 12, 32, 0.95));
  --border: rgba(148, 163, 184, 0.35);
  --border-strong: rgba(126, 200, 227, 0.8);
  --accent: #a259e6;
  --accent-soft: #7ec8e3;
  --accent-strong: #ffd580;
  --text-main: #e6ecff;
  --text-muted: #9aa4c7;
  --text-soft: #7d85a8;
  --danger: #f97373;
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --shadow-soft: 0 20px 55px rgba(2, 5, 20, 0.65);
  --shadow-card: 0 25px 70px rgba(5, 8, 25, 0.65);
  --font-main: 'Space Grotesk', 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: var(--font-main);
  background: var(--bg-gradient);
  color: var(--text-main);
  line-height: 1.6;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: var(--accent-soft);
}

ul {
  list-style: none;
}

.container {
  width: min(1150px, 90vw);
  margin: 0 auto;
}

main {
  padding-bottom: 4rem;
}

/* ---------- Promo banner & header ---------- */
.promo-banner {
  background: linear-gradient(120deg, rgba(79, 70, 229, 0.4), rgba(162, 89, 230, 0.4), rgba(14, 25, 50, 0.9));
  border-bottom: 1px solid rgba(148, 163, 184, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: var(--text-main);
}

.promo-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(20px);
  background: rgba(2, 4, 16, 0.8);
  border-bottom: 1px solid rgba(126, 200, 227, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.2rem 0;
}

.logo {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.logo span {
  color: var(--accent);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.95rem;
  color: var(--text-soft);
}

.nav a {
  position: relative;
  padding-bottom: 0.15rem;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
  transition: width 0.2s ease-out;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out, border 0.12s ease-out, background 0.12s ease-out;
}

.btn-primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-soft));
  color: #05060f;
  box-shadow: 0 18px 40px rgba(162, 89, 230, 0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 50px rgba(162, 89, 230, 0.6);
}

.btn-outline {
  border-color: rgba(148, 163, 184, 0.35);
  color: var(--text-main);
  background: rgba(5, 8, 28, 0.35);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent-soft);
}

.btn-ghost {
  border-color: transparent;
  color: var(--text-soft);
  background: rgba(7, 10, 28, 0.25);
}
.btn-ghost:hover {
  color: var(--text-main);
  background: rgba(7, 10, 28, 0.5);
}

.btn-block {
  width: 100%;
}

/* ---------- Hero ---------- */
.hero {
  padding: 4.5rem 0 3.5rem;
}

.hero-inner {
  display: flex;
  gap: 3.5rem;
  align-items: center;
}

.hero-left-col,
.hero-right-col {
  flex: 1 1 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(126, 200, 227, 0.5);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-soft);
  background: rgba(5, 9, 25, 0.6);
}

.hero h1 {
  font-size: clamp(2.45rem, 5vw, 3.8rem);
  line-height: 1.05;
  margin: 1rem 0 1rem;
  letter-spacing: -0.02em;
  color: var(--text-main);
}

.hero-subhead {
  font-size: 1.1rem;
  color: var(--text-main);
  max-width: 40rem;
}

.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.4rem 0;
  padding: 0.85rem 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(126, 200, 227, 0.3);
  background: rgba(6, 10, 28, 0.65);
  box-shadow: 0 18px 40px rgba(3, 5, 18, 0.6);
}

.hero-trust-row p {
  font-size: 0.95rem;
  color: var(--text-main);
}

.hero-avatars {
  display: flex;
  align-items: center;
}

.avatar-dot {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 2px solid rgba(3, 6, 22, 0.9);
  margin-left: -12px;
  box-shadow: 0 10px 20px rgba(2, 4, 15, 0.8);
}

.avatar-dot:first-child {
  margin-left: 0;
}

.avatar-one {
  background: linear-gradient(140deg, #7ec8e3, #a259e6);
}

.avatar-two {
  background: linear-gradient(140deg, #ffd580, #ff8fb1);
}

.avatar-three {
  background: linear-gradient(140deg, #81fbb8, #28c76f);
}

.avatar-four {
  background: linear-gradient(140deg, #f97583, #c471ed);
}

.hero-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin: 1.5rem 0 1rem;
  font-size: 0.95rem;
  color: var(--text-soft);
}
.hero-bullets li::before {
  content: "●";
  margin-right: 0.45rem;
  color: var(--accent);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.4rem 0;
}

.hero-note {
  font-size: 0.9rem;
  color: var(--text-soft);
}

.hero-stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.85rem;
  margin-top: 1.4rem;
}

.hero-stat {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(6, 9, 24, 0.75);
}

.hero-stat-value {
  display: block;
  font-size: 1.35rem;
  font-weight: 600;
}

.hero-stat-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-soft);
}

.you-get-card {
  position: relative;
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1.5px solid rgba(126, 200, 227, 0.5);
  box-shadow: var(--shadow-card);
}

.you-get-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: rgba(126, 200, 227, 0.15);
  color: var(--accent-soft);
}

.you-get-heading {
  font-size: 1.5rem;
  margin: 1rem 0;
  color: var(--text-main);
}

.you-get-list li {
  padding: 0.55rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  font-size: 0.98rem;
}
.you-get-list li:last-child {
  border-bottom: 0;
}

.you-get-list strong {
  color: var(--accent);
}

.you-get-note {
  margin-top: 1.1rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.hero-card-shell {
  position: relative;
  padding: 1.6rem;
  border-radius: calc(var(--radius-lg) + 6px);
  background: rgba(5, 7, 20, 0.75);
  border: 1px solid rgba(126, 200, 227, 0.25);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}

.hero-card-shell::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: calc(var(--radius-lg) + 2px);
  border: 1px dashed rgba(255, 213, 128, 0.3);
  pointer-events: none;
}

.hero-card-pin {
  position: absolute;
  top: 1rem;
  right: 1.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(162, 89, 230, 0.2), rgba(126, 200, 227, 0.25));
  border: 1px solid rgba(162, 89, 230, 0.5);
  color: var(--text-main);
  z-index: 3;
}

.hero-card-orbit {
  position: absolute;
  inset: 10% 6% 25% 6%;
  border: 1px solid rgba(162, 89, 230, 0.25);
  border-radius: 40% 60% 50% 70%;
  filter: blur(1px);
  z-index: 1;
  pointer-events: none;
}

.orbit-sm {
  inset: 20% 15% 15% 15%;
  border-color: rgba(126, 200, 227, 0.35);
}

.hero-card-inner {
  position: relative;
  z-index: 2;
}

.hero-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.2rem;
}

.hero-card-tags span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(126, 200, 227, 0.35);
  color: var(--accent-soft);
  background: rgba(8, 12, 32, 0.7);
}

.hero-card-meta {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-soft);
  position: relative;
  z-index: 2;
}

.hero-card-meta > div {
  padding: 0.8rem 0.6rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(4, 6, 20, 0.7);
  text-align: center;
}

.hero-meta-value {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.95rem;
  color: var(--text-main);
}

/* ---------- Sections ---------- */
.section {
  padding: 4rem 0;
}
.section h2 {
  font-size: 2.2rem;
  margin-bottom: 0.8rem;
  color: var(--text-main);
}
.section-intro {
  color: var(--text-muted);
  max-width: 40rem;
  margin-bottom: 2rem;
}
.section-accent {
  background: rgba(5, 8, 26, 0.6);
  border-top: 1px solid rgba(148, 163, 184, 0.15);
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

/* ---------- Cards & grids ---------- */
.steps-grid,
.features-grid,
.faq-grid {
  display: grid;
  gap: 1.5rem;
}
.steps-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.benefits-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.step-card {
  position: relative;
  padding: 1.6rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(126, 200, 227, 0.25);
  background: linear-gradient(150deg, rgba(7, 10, 28, 0.92), rgba(3, 5, 16, 0.95));
  box-shadow: 0 18px 40px rgba(2, 4, 12, 0.65);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(162, 89, 230, 0.7);
  box-shadow: 0 0 0 1px rgba(162, 89, 230, 0.45), 0 28px 55px rgba(4, 6, 20, 0.85);
}

.benefit-card {
  padding: 1.6rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(126, 200, 227, 0.25);
  background: linear-gradient(145deg, rgba(6, 9, 24, 0.85), rgba(3, 5, 16, 0.95));
  box-shadow: 0 18px 35px rgba(3, 4, 14, 0.65);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(162, 89, 230, 0.7);
  box-shadow: 0 0 0 1px rgba(162, 89, 230, 0.45), 0 28px 50px rgba(4, 6, 20, 0.8);
}

.benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  background: linear-gradient(140deg, rgba(162, 89, 230, 0.25), rgba(126, 200, 227, 0.25));
  border: 1px solid rgba(162, 89, 230, 0.5);
  margin-bottom: 1rem;
  box-shadow: 0 12px 30px rgba(2, 4, 14, 0.7);
}

.benefit-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.benefit-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.feature-card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.feature-card-mini {
  text-align: center;
  padding: 1.2rem 1rem 1.4rem;
}

.feature-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 0.8rem;
  border-radius: 14px;
  border: 1px solid rgba(126, 200, 227, 0.4);
  background: rgba(6, 9, 24, 0.85);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.45);
  font-size: 1.2rem;
}
.feature-card:hover,
.faq-item:hover,
.buy-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 25px 55px rgba(5, 8, 25, 0.8);
}

.step-number {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(140deg, rgba(162, 89, 230, 0.28), rgba(126, 200, 227, 0.28));
  border: 1px solid rgba(162, 89, 230, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-main);
  margin-bottom: 1rem;
  box-shadow: 0 12px 30px rgba(2, 4, 15, 0.65);
}

.feature-card h3,
.step-card h3,
.faq-item h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  border: 1px solid rgba(126, 200, 227, 0.35);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--accent-soft);
  background: rgba(10, 15, 35, 0.8);
}

.feature-card p,
.step-card p,
.faq-item p,
.note-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

.checklist {
  list-style: none;
  margin: 1rem 0 0;
  color: var(--text-muted);
}
.checklist li {
  padding-left: 1.2rem;
  position: relative;
  margin-bottom: 0.5rem;
}
.checklist li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #4ade80;
}

.note-card {
  padding: 1.6rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(251, 113, 133, 0.4);
  background: linear-gradient(145deg, rgba(251, 113, 133, 0.05), rgba(59, 130, 246, 0.08));
  box-shadow: 0 18px 40px rgba(5, 8, 20, 0.4);
}

.note-card-header {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.note-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  background: rgba(251, 113, 133, 0.15);
  border: 1px solid rgba(251, 113, 133, 0.6);
  box-shadow: 0 12px 24px rgba(251, 113, 133, 0.25);
}

.note-card-label {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: rgba(251, 113, 133, 0.9);
  margin-bottom: 0.15rem;
}

.note-card-list {
  list-style: none;
  margin: 0.9rem 0 1rem;
  padding: 0;
}

.note-card-list li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.4rem;
}

.note-card-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: rgba(251, 113, 133, 0.9);
}

/* ---------- Buy section ---------- */
.buy-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.buy-card {
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.4rem 1.6rem;
  border: 1px solid rgba(126, 200, 227, 0.35);
  background: linear-gradient(135deg, rgba(7, 10, 28, 0.92), rgba(3, 6, 16, 0.95));
  box-shadow: 0 20px 55px rgba(2, 4, 12, 0.7);
}

.buy-card-compact .buy-card-header {
  margin-bottom: 1rem;
}

.buy-card-title {
  font-size: 1.2rem;
  margin: 0.5rem 0;
}

.buy-card-list {
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: var(--radius-md);
  padding: 0.9rem 1rem;
  margin-bottom: 1rem;
  background: rgba(4, 6, 18, 0.8);
}

.buy-card-list ul {
  list-style: disc;
  margin-left: 1.2rem;
  margin-top: 0.4rem;
  color: var(--text-main);
  font-size: 0.92rem;
}

.price-compare.compact {
  margin-bottom: 0.8rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge-launch {
  background: rgba(34, 197, 94, 0.18);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.7);
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin: 0.6rem 0 0.4rem;
}

.price-main {
  font-size: 2.2rem;
  font-weight: 700;
}

.price-original {
  color: var(--text-soft);
  text-decoration: line-through;
}

.price-note {
  font-size: 0.9rem;
  color: var(--text-soft);
}

.compare-heading {
  margin-top: 0.9rem;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.price-compare {
  display: flex;
  gap: 1rem;
  margin-top: 0.9rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: rgba(6, 9, 24, 0.6);
}

.price-compare div {
  flex: 1;
}

.compare-title {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  color: var(--text-soft);
}

.compare-value {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-main);
}

.compare-subtext {
  font-size: 0.75rem;
  color: var(--text-soft);
  margin-top: 0.2rem;
}

.compare-note {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--accent-soft);
}

.buy-card-footer {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px dashed rgba(148, 163, 184, 0.4);
}

.guarantee-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.9rem;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: #7dd3fc;
  background: rgba(56, 189, 248, 0.16);
}

.small {
  font-size: 0.85rem;
  color: var(--text-soft);
}

/* ---------- Video ---------- */
.section-video {
  text-align: center;
}

.video-tech-card {
  background: rgba(10, 15, 40, 0.9);
  border-radius: var(--radius-lg);
  padding: 2.4rem 2rem;
  border: 1.5px solid rgba(126, 200, 227, 0.5);
  box-shadow: 0 25px 60px rgba(4, 6, 20, 0.7);
}

.video-headline {
  font-size: 2.1rem;
  margin-bottom: 0.4rem;
  text-align: left;
}

.video-subtitle,
.video-tagline {
  color: var(--text-muted);
}

.video-outline-frame {
  margin-top: 1.6rem;
  padding: 0.4rem;
  border-radius: 18px;
  border: 1px solid rgba(126, 200, 227, 0.6);
  box-shadow: var(--shadow-card);
  background: radial-gradient(circle at top, rgba(10, 20, 45, 0.85), rgba(2, 4, 14, 0.95));
  overflow: hidden;
}

.video-outline-frame video {
  width: 100%;
  display: block;
  border-radius: 14px;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  padding: 2rem 0 3rem;
  background: rgba(2, 4, 16, 0.85);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-soft);
}

.footer-links {
  display: flex;
  gap: 1.2rem;
}

.footer-links a:hover {
  color: var(--accent-soft);
}

/* ---------- Responsive tweaks ---------- */
@media (max-width: 1024px) {
  .hero-inner {
    flex-direction: column;
  }

  .buy-inner {
    grid-template-columns: 1fr;
  }

  .two-column {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .site-header {
    position: static;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .header-cta {
    width: 100%;
    justify-content: flex-start;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .promo-banner {
    font-size: 0.65rem;
  }

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