/* ================================================================
   HOMEPAGE — perspective sections
   (also carries .cta / trust-strip / sys-grid used across pages)
   ================================================================ */

/* ---- Page transition veil: two-layer wipe ---- */
.page-veil {
  position: fixed; inset: 0; z-index: 200;
  background: var(--volt);
  pointer-events: none;
  transform: translateY(-102%);
  transition: transform 520ms var(--ease-cine);
}
.page-veil::after {
  content: ''; position: absolute; inset: 0;
  background: var(--ink-000);
  transform: translateY(-102%);
  transition: transform 520ms var(--ease-cine) 90ms;
}
.page-out .page-veil, .page-out .page-veil::after { transform: translateY(0); }

/* ================================================================
   HERO — full-bleed dark photography
   ================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 120px var(--gutter) 64px;
  background: var(--ink-050);
  color: #FFFFFF;
}
.page-body { position: relative; background: var(--bg); }
.hero-carousel { position: absolute; inset: 0; z-index: 1; overflow: hidden; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.08);
  transition: opacity 1400ms var(--ease-cine), transform 8000ms linear;
  filter: saturate(0.85) contrast(1.06) brightness(0.9);
}
.hero-slide.is-on { opacity: 1; transform: scale(1); }
.hero-vignette {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,11,13,0.55) 0%, rgba(10,11,13,0.15) 35%, rgba(10,11,13,0.2) 60%, rgba(10,11,13,0.85) 100%),
    linear-gradient(90deg, rgba(10,11,13,0.75) 0%, rgba(10,11,13,0.1) 45%, rgba(10,11,13,0) 100%),
    radial-gradient(ellipse at 80% 20%, rgba(0,189,125,0.12), transparent 55%);
}
.hero-carousel-dots {
  display: flex; gap: 10px; align-items: center;
  margin-right: 24px;
}
.hc-dot {
  width: 28px; height: 3px; background: rgba(255,255,255,0.3);
  border-radius: 2px; transition: background 300ms, width 300ms;
  cursor: pointer;
}
.hc-dot.is-on { background: var(--volt); width: 48px; box-shadow: 0 0 12px var(--volt-glow); }

.hero-grid {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: 3;
}
.hero-meta {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 48px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.65);
}
.hero .pill { display: none; }
.hero-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(44px, 6.5vw, 116px);
  line-height: 1.04;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  margin-top: 40px;
  max-width: 14em;
  color: #FFFFFF;
}
.hero-title .line { display: block; overflow: hidden; padding: 0.08em 0 0.04em; line-height: 1; }
.hero-title .line span {
  display: inline-block;
  transform: translateY(110%);
  animation: heroLineUp 1.2s var(--ease-cine) forwards;
}
.hero-title .line:nth-child(2) span { animation-delay: 0.15s; }
.hero-title .line:nth-child(3) span { animation-delay: 0.3s; }
.hero-title .it { font-style: normal; color: var(--volt); font-weight: 500; }
@keyframes heroLineUp { to { transform: translateY(0); } }

.hero-sub {
  max-width: 440px; margin-top: 40px;
  font-size: var(--step-2); line-height: 1.6;
  color: rgba(255,255,255,0.72);
}
.hero-sub strong { color: #FFFFFF; font-weight: 500; }
.hero-cta-row { display: flex; gap: 14px; margin-top: 44px; }
.hero .btn { border-color: rgba(255,255,255,0.85); color: #FFFFFF; background: transparent; box-shadow: none; }
.hero .btn:hover { background: #FFFFFF; color: #0A0B0D; }
.hero .btn-primary { background: var(--volt); border-color: var(--volt); color: #052E1F; box-shadow: var(--shadow-accent); }
.hero .btn-primary:hover { background: var(--ivory-900); border-color: var(--ivory-900); color: var(--ink-050); }

.hero-foot {
  position: relative; z-index: 3;
  margin: 72px auto 0;
  max-width: var(--max);
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-5);
  color: rgba(255,255,255,0.6);
}
.hero-foot .col { display: none; }
.hero-scroll {
  display: inline-flex; flex-direction: column; align-items: center; gap: var(--sp-3);
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em;
  color: rgba(255,255,255,0.6); text-transform: uppercase;
}
.hero-scroll .line {
  width: 1px; height: 56px; background: rgba(255,255,255,0.25);
  position: relative; overflow: hidden;
}
.hero-scroll .line::after {
  content: ''; position: absolute; top: -60%; left: 0;
  width: 100%; height: 60%; background: var(--volt);
  animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine { 0% { top: -60%; } 100% { top: 100%; } }

/* ---- Marquee ---- */
.marquee {
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  overflow: hidden;
  padding: 20px 0;
  white-space: nowrap;
  margin-top: 0;
  position: relative;
  z-index: 3;
  background: var(--ink-050);
}
.marquee-track {
  display: inline-flex; gap: 64px;
  animation: marquee 42s linear infinite;
  font-family: var(--font-display); font-size: 20px;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--ivory-500); font-weight: 400;
}
.marquee-track .dot { color: var(--volt); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---- Full-bleed photo band ---- */
.photo-band {
  position: relative;
  height: clamp(360px, 62vh, 660px);
  overflow: hidden;
}
.photo-band img {
  width: 100%; height: 120%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
  will-change: transform;
}
.photo-band-caption {
  position: absolute; left: var(--gutter); bottom: 24px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(10, 11, 13, 0.55);
  padding: 8px 12px; border-radius: var(--radius-sm);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

/* ================================================================
   STATS STRIP
   ================================================================ */
.stats {
  padding: 200px var(--gutter) 120px;
  max-width: var(--max); margin: 0 auto;
}
.stats-head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: end; margin-bottom: 80px;
}
.stats-head h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 68px);
  line-height: 1.06; letter-spacing: 0.01em;
  font-weight: 500; text-transform: uppercase;
}
.stats-head h2 em { font-style: normal; color: var(--volt-deep); font-weight: 600; }
.stats-head p { color: var(--ivory-700); max-width: 460px; font-size: var(--step-3); line-height: 1.55; }

/* Stat tiles: shared light card sheet, green baseline steps forward on hover */
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--hair);
  border: 1px solid var(--hair);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-1);
}
.stat {
  padding: 40px 28px 28px;
  background: var(--ink-100);
  position: relative;
  transition: background 400ms var(--ease-out), box-shadow 400ms var(--ease-out);
}
.stat:hover { background: var(--ink-200); box-shadow: inset 0 -3px 0 var(--volt); }
.stat .num {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(56px, 7vw, 112px); line-height: 0.95;
  letter-spacing: 0;
  color: var(--fg);
}
.stat .num .u {
  font-family: var(--font-mono); font-size: 14px;
  letter-spacing: 0.14em; color: var(--volt-deep);
  margin-left: 6px; vertical-align: top;
  text-transform: uppercase;
}
.stat .label {
  margin-top: 20px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--fg-dim);
}
.stat .note {
  margin-top: 12px; color: var(--ivory-700);
  font-size: var(--step-1); line-height: 1.5;
}

/* ================================================================
   TRUCK EXPLORER / SYSTEM GRID
   ================================================================ */
.explorer {
  padding: 0 var(--gutter);
  max-width: var(--max); margin: 0 auto;
}
.explorer-inner {
  position: relative;
  padding: 80px 0 120px;
}

/* Bento: mixed-size subsystem tiles, one image-led feature cell */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(190px, auto);
  gap: var(--sp-4);
  margin-bottom: 120px;
}
.bento-cell {
  background: var(--ink-100);
  border: 1px solid var(--hair);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  display: flex; flex-direction: column; justify-content: flex-end; gap: var(--sp-2);
  box-shadow: var(--shadow-1);
  position: relative;
  overflow: hidden;
  transition: transform 480ms var(--ease-out), box-shadow 480ms var(--ease-out), border-color 480ms var(--ease-out);
}
.bento-cell:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-2);
  border-color: var(--hair-strong);
}
.bento-cell h3 {
  font-family: var(--font-display); font-size: 24px; font-weight: 600;
  letter-spacing: 0.01em; color: var(--fg); text-transform: uppercase;
}
.bento-cell p { color: var(--ivory-700); font-size: 15px; line-height: 1.55; max-width: 46ch; }
.bento-stat {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--volt-deep);
  margin-top: var(--sp-2);
}
.bento-feature { grid-column: span 2; grid-row: span 2; padding: 0; justify-content: flex-end; }
.bento-feature img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
}
.bento-feature::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,6,8,0) 30%, rgba(5,6,8,0.85) 100%);
}
.bento-feature-copy { position: relative; z-index: 2; padding: 32px 28px; display: flex; flex-direction: column; gap: var(--sp-2); }
.bento-wide { grid-column: span 2; }
.bento-cta-cell { grid-column: span 2; background: var(--ink-200); justify-content: center; gap: var(--sp-4); }
.bento-cta-cell .btn { align-self: flex-start; }


/* ================================================================
   ENERGY HARVESTING
   ================================================================ */
.energy {
  padding: 180px var(--gutter);
  background: var(--ink-000);
  position: relative;
  overflow: hidden;
}
.energy::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, var(--volt-glow), transparent 55%);
  opacity: 0.5;
  pointer-events: none;
}
.energy-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
  position: relative;
}
.energy h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 80px);
  line-height: 1.05; letter-spacing: 0.01em;
  font-weight: 500; text-transform: uppercase;
}
.energy h2 em { font-style: normal; color: var(--volt-deep); font-weight: 600; }
.energy p { color: var(--ivory-700); font-size: var(--step-3); line-height: 1.55; margin-top: 24px; max-width: 440px; }
.energy-figures { display: flex; gap: var(--sp-6); margin-top: 48px; }
.energy-figure .v {
  font-family: var(--font-display); font-size: 48px; line-height: 1; font-weight: 600; letter-spacing: 0;
}
.energy-figure .v em { color: var(--volt-deep); font-style: normal; font-weight: 600; }
.energy-figure .l {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--fg-dim); margin-top: 8px;
}

.energy-diagram {
  aspect-ratio: 1;
  position: relative;
  background: var(--ink-100);
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-2);
  padding: 12px;
}
.energy-diagram svg { width: 100%; height: 100%; }

/* ================================================================
   PAYLOAD SLIDER
   ================================================================ */
.payload {
  padding: 200px var(--gutter) 120px;
  max-width: var(--max); margin: 0 auto;
}
.payload-head { margin-bottom: 80px; max-width: 820px; }
.payload-head h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 80px); line-height: 1.05; letter-spacing: 0.01em;
  font-weight: 500; text-transform: uppercase;
}
.payload-head h2 em { font-style: normal; color: var(--volt-deep); font-weight: 600; }
.payload-head p { color: var(--ivory-700); margin-top: 20px; font-size: var(--step-3); line-height: 1.55; max-width: 520px; }

.payload-stage {
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  padding: 48px 48px 36px;
  background: var(--ink-100);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-3);
}
.payload-readout {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-5);
  margin-bottom: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--hair);
}
.payload-readout .item .l {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--fg-dim);
}
.payload-readout .item .v {
  font-family: var(--font-display); font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 600; letter-spacing: 0; line-height: 1; margin-top: 10px;
}
.payload-readout .item .v .u {
  font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.14em;
  color: var(--volt-deep); margin-left: 4px; vertical-align: top; text-transform: uppercase;
}

.payload-truck {
  position: relative;
  width: 100%;
  height: clamp(380px, 48vw, 620px);
  margin-bottom: 24px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--ink-000);
  box-shadow: inset 0 0 0 1px var(--hair);
}
.payload-truck::before {
  content: '';
  position: absolute; left: -20%; right: -20%; bottom: 0; height: 55%;
  background-image:
    linear-gradient(var(--hair-strong) 1px, transparent 1px),
    linear-gradient(90deg, var(--hair-strong) 1px, transparent 1px);
  background-size: 44px 44px;
  transform: perspective(560px) rotateX(56deg);
  transform-origin: center bottom;
  opacity: 0.5;
  mask-image: linear-gradient(180deg, transparent 0%, black 50%, black 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 50%, black 100%);
}
.payload-truck img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 320ms var(--ease-out);
}
.payload-truck img.is-render {
  object-fit: contain;
  padding: 8% 10%;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.5));
}
.payload-actions { display: flex; gap: var(--sp-4); margin-top: 28px; flex-wrap: wrap; }

.payload-note {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.08em; color: var(--fg-dim);
  margin-bottom: 20px;
}
.payload-note b { color: var(--volt-deep); font-weight: 500; }

.payload-track {
  position: relative;
  padding: 10px 0;
}
.payload-range {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 3px;
  background: var(--ink-300);
  outline: none; cursor: pointer;
  border-radius: 2px;
}
.payload-range::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--volt);
  border: 4px solid var(--ink-050);
  box-shadow: 0 2px 8px rgba(17,24,39,0.2), 0 0 24px var(--volt-glow);
  cursor: pointer;
  transition: transform 200ms var(--ease-out);
}
.payload-range::-webkit-slider-thumb:hover { transform: scale(1.15); }
.payload-range::-moz-range-thumb {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--volt); border: 4px solid var(--ink-050);
  box-shadow: 0 2px 8px rgba(17,24,39,0.2), 0 0 24px var(--volt-glow);
}
.payload-ticks {
  display: flex; justify-content: space-between;
  margin-top: 16px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.18em; color: var(--fg-dim);
  text-transform: uppercase;
}
.payload-ticks span { cursor: pointer; transition: color 200ms; }
.payload-ticks span.active { color: var(--volt-deep); font-weight: 500; }

/* ================================================================
   TIMELINE
   ================================================================ */
.timeline {
  padding: 180px var(--gutter);
  max-width: var(--max); margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.timeline-head {
  display: flex; justify-content: space-between; align-items: end;
  gap: 40px; margin-bottom: 80px;
}
.timeline-head h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 76px); line-height: 1.05; letter-spacing: 0.01em;
  font-weight: 500; text-transform: uppercase;
}
.timeline-head h2 em { font-style: normal; color: var(--volt-deep); font-weight: 600; }

.timeline-track {
  position: relative;
  border-top: 1px solid var(--hair-strong);
  padding-top: 48px;
}
.timeline-line {
  position: absolute; top: -1px; left: 0; height: 3px;
  background: var(--volt);
  box-shadow: 0 0 12px var(--volt-glow);
  transition: width 200ms linear;
}
.timeline-events {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--sp-5);
}
.tl-event { position: relative; }
.tl-event .year {
  font-family: var(--font-display); font-weight: 600;
  font-size: 56px; letter-spacing: 0; line-height: 1;
  color: var(--ink-400);
  transition: color 400ms var(--ease-out);
}
.tl-event.reached .year { color: var(--fg); }
.tl-event .tl-title {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  margin-top: 12px; color: var(--fg-dim);
}
.tl-event .tl-desc {
  font-size: var(--step-1); line-height: 1.5;
  color: var(--ivory-700); margin-top: 12px;
}

/* ================================================================
   CEO QUOTE
   ================================================================ */
.ceo {
  padding: 180px var(--gutter);
  background: var(--ink-100);
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}
.ceo-inner {
  max-width: 1080px; margin: 0 auto;
}
.ceo-quote {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.8vw, 52px);
  line-height: 1.22; letter-spacing: 0;
  font-weight: 500;
  text-wrap: balance;
}
.ceo-quote em { font-style: normal; color: var(--volt-deep); font-weight: 600; }
.ceo-sign {
  margin-top: 40px; padding-top: 24px;
  border-top: 1px solid var(--hair);
  display: flex; justify-content: space-between; align-items: center;
}
.ceo-who { display: flex; align-items: center; gap: var(--sp-4); }
.ceo-who img {
  width: 72px; height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--hair-strong);
  box-shadow: var(--shadow-1);
}
.ceo-sign .n { font-family: var(--font-display); font-size: 22px; letter-spacing: 0.01em; font-weight: 500; }
.ceo-sign .r { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--fg-dim); }

/* Program record: the receipts row */
.proof-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--hair);
}
.proof-item { display: flex; flex-direction: column; gap: var(--sp-2); }
.proof-k {
  font-family: var(--font-display); font-weight: 600;
  font-size: 30px; color: var(--volt-deep); text-transform: uppercase;
}
.proof-v { color: var(--ivory-700); font-size: var(--step-1); line-height: 1.5; max-width: 30ch; }
@media (max-width: 980px) { .proof-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .proof-grid { grid-template-columns: 1fr; } }

/* ================================================================
   CTA
   ================================================================ */
.cta {
  padding: 220px var(--gutter) 200px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  /* vanishing-point floor behind the closing statement */
  content: '';
  position: absolute; left: -20%; right: -20%; bottom: 0; height: 55%;
  background-image:
    linear-gradient(var(--hair) 1px, transparent 1px),
    linear-gradient(90deg, var(--hair) 1px, transparent 1px);
  background-size: 56px 56px;
  transform: perspective(700px) rotateX(58deg);
  transform-origin: center bottom;
  mask-image: linear-gradient(180deg, transparent 0%, black 60%, black 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 60%, black 100%);
  opacity: 0.6;
  pointer-events: none;
}
.cta h2 {
  font-family: var(--font-display);
  font-size: clamp(48px, 6.5vw, 108px); line-height: 1.04; letter-spacing: 0.01em;
  font-weight: 500; max-width: 1100px; margin: 0 auto;
  text-transform: uppercase;
  position: relative;
}
.cta h2 em { font-style: normal; color: var(--volt-deep); font-weight: 600; }
.cta-actions { display: flex; justify-content: center; gap: var(--sp-4); margin-top: 56px; position: relative; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 980px) {
  .bento { grid-template-columns: 1fr; }
  .bento-cell, .bento-feature, .bento-wide, .bento-cta-cell { grid-column: span 1; grid-row: span 1; }
  .bento-feature { min-height: 340px; }
  .explorer-stage { grid-template-columns: 1fr; gap: 40px; }
  .energy-inner { grid-template-columns: 1fr; gap: 48px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .payload-readout { grid-template-columns: repeat(2, 1fr); }
  .timeline-events { grid-template-columns: repeat(2, 1fr); row-gap: 48px; }
  .ceo-inner { grid-template-columns: 1fr; }
  .stats-head { grid-template-columns: 1fr; }
  .hero-foot { flex-direction: column; align-items: flex-start; gap: 20px; }
}

/* ================================================================
   SMALL SCREENS
   ================================================================ */
@media (max-width: 600px) {
  .hero { padding-top: 96px; }
  .hero-cta-row { flex-wrap: wrap; }
  .hero-cta-row .btn { width: 100%; justify-content: center; }
  .hero-title { font-size: clamp(38px, 11vw, 52px); }
  .hero-meta { flex-wrap: wrap; gap: 8px; }
  .stats { padding-top: 120px; }
  .stats-grid { grid-template-columns: 1fr; }
  .payload-stage { padding: 24px 20px 20px; }
  .payload-readout { grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
  .timeline-events { grid-template-columns: 1fr; }
  .energy-figures { flex-wrap: wrap; }
  .cta-actions { flex-wrap: wrap; }
  .cta-actions .btn { width: 100%; justify-content: center; }
}
