/* ============================================================
   Glidzy — Landing page styles
   ============================================================ */

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg1);
  scroll-behavior: smooth;
}

body[data-theme="ink"] {
  --bg: var(--ink);
  --bg-elev: #1c1c1a;
  --fg1: var(--cream);
  --fg2: rgba(251,247,241,0.78);
  --fg3: rgba(251,247,241,0.58);
  --fg-muted: rgba(251,247,241,0.38);
  --line: rgba(251,247,241,0.12);
  --line-strong: rgba(251,247,241,0.22);
  --bone: rgba(251,247,241,0.06);
}

body[data-accent="plum"] {
  --ember: #7B2E6F;
  --ember-hot: #5F1E55;
  --ember-soft: #E9DFE6;
  --ember-ink: #2A0A26;
}

img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
input { font-family: inherit; }

/* ============================================================
   Page shell
   ============================================================ */
.page { min-height: 100vh; }

.shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 720px) {
  .shell { padding: 0 20px; }
}

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: color-mix(in oklab, var(--bg) 78%, transparent);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  height: 34px;
  flex-shrink: 0;
}
.brand-logo-img {
  height: 100%;
  width: auto;
  display: block;
}
body[data-theme="cream"] .brand-logo:not(.brand-logo--dark):not(.brand-logo--light) .brand-logo-img--light { display: block; }
body[data-theme="cream"] .brand-logo:not(.brand-logo--dark):not(.brand-logo--light) .brand-logo-img--dark  { display: none; }
body[data-theme="ink"]   .brand-logo:not(.brand-logo--dark):not(.brand-logo--light) .brand-logo-img--dark  { display: block; }
body[data-theme="ink"]   .brand-logo:not(.brand-logo--dark):not(.brand-logo--light) .brand-logo-img--light { display: none; }
.brand-logo--dark  .brand-logo-img--dark  { display: block; }
.brand-logo--dark  .brand-logo-img--light { display: none; }
.brand-logo--light .brand-logo-img--light { display: block; }
.brand-logo--light .brand-logo-img--dark  { display: none; }

.nav-tabs {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav-tabs a {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg2);
  border-radius: var(--r-full);
  transition: color var(--dur-tap) var(--ease), background var(--dur-tap) var(--ease);
}
.nav-tabs a:hover { color: var(--fg1); background: var(--bone); }

.nav-cta {
  background: var(--ember);
  color: #fff;
  border: 0;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: var(--r-full);
  transition: transform var(--dur-tap) var(--ease), background var(--dur-tap) var(--ease);
  display: inline-flex; align-items: center; gap: 6px;
}
.nav-cta:hover { background: var(--ember-hot); }
.nav-cta:active { transform: scale(0.97); }

@media (max-width: 860px) {
  .nav-tabs { display: none; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  padding: 56px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 10px;
  border-radius: var(--r-full);
  background: var(--ember-soft);
  color: var(--ember-ink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
body[data-theme="ink"] .hero-eyebrow {
  background: rgba(255,90,31,0.16);
  color: #FFB58F;
}
.hero-eyebrow .live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--ember) 24%, transparent);
  animation: livePulse 1.8s infinite var(--ease);
}
@keyframes livePulse {
  0%,100% { box-shadow: 0 0 0 4px color-mix(in oklab, var(--ember) 24%, transparent); }
  50%     { box-shadow: 0 0 0 9px color-mix(in oklab, var(--ember) 0%, transparent); }
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(48px, 8vw, 92px);
  letter-spacing: -0.04em;
  line-height: 0.92;
  margin: 24px 0 24px;
}
.hero h1 .ember { color: var(--ember); }

.hero-sub {
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.45;
  color: var(--fg2);
  max-width: 520px;
  margin: 0 0 32px;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border: 0;
  padding: 14px 22px;
  border-radius: var(--r-full);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform var(--dur-tap) var(--ease), background var(--dur-tap) var(--ease);
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--ember); color: #fff; }
.btn-primary:hover { background: var(--ember-hot); }

/* hero visual: product showcase */
.hero-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 540px;
  margin-left: auto;
  justify-self: stretch;
  border-radius: var(--r-xl);
  background: var(--bone);
  overflow: hidden;
  border: 1px solid var(--line);
}
body[data-theme="ink"] .hero-stage { background: #1c1c1a; }

.hero-stage .showcase {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 16px;
  overflow: hidden;
}
.hero-stage .showcase-col {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
}
.hero-stage .showcase-track {
  display: flex;
  flex-direction: column;
  gap: 12px;
  will-change: transform;
}
.hero-stage .showcase-col-0 .showcase-track { animation: showcaseScrollUp   22s linear infinite; }
.hero-stage .showcase-col-1 .showcase-track { animation: showcaseScrollDown 28s linear infinite; }
.hero-stage .showcase-col-2 .showcase-track { animation: showcaseScrollUp   26s linear infinite; }
.hero-stage .showcase-col-1 .showcase-track { transform: translateY(-50%); }
@keyframes showcaseScrollUp   { from { transform: translateY(0); }     to { transform: translateY(-50%); } }
@keyframes showcaseScrollDown { from { transform: translateY(-50%); } to { transform: translateY(0); } }

.hero-stage .product-card {
  aspect-ratio: 1 / 1.05;
  border-radius: var(--r-lg);
  border: 1px solid;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  flex-shrink: 0;
}
.hero-stage .product-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-stage .showcase-badge {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--r-full);
  padding: 14px 24px 14px 20px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  box-shadow: 0 18px 40px -16px rgba(20,20,19,0.4), 0 0 0 4px var(--bg);
  z-index: 4;
  animation: badgeFloat 4s ease-in-out infinite;
}
body[data-theme="ink"] .hero-stage .showcase-badge {
  background: var(--ember);
  color: #fff;
  box-shadow: 0 18px 40px -16px rgba(255,90,31,0.55), 0 0 0 4px var(--bg);
}
.hero-stage .showcase-badge-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 34px;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ember);
}
body[data-theme="ink"] .hero-stage .showcase-badge-num { color: var(--cream); }
.hero-stage .showcase-badge-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
@keyframes badgeFloat {
  0%,100% { transform: translate(-50%, -50%); }
  50%     { transform: translate(-50%, calc(-50% - 6px)); }
}
.hero-stage .showcase-fade {
  position: absolute;
  left: 0; right: 0;
  height: 64px;
  pointer-events: none;
  z-index: 3;
}
.hero-stage .showcase-fade-top { top: 0;    background: linear-gradient(180deg, var(--bg) 0%, transparent 100%); }
.hero-stage .showcase-fade-bot { bottom: 0; background: linear-gradient(0deg,   var(--bg) 0%, transparent 100%); }

@media (max-width: 860px) {
  .hero { padding: 36px 0 56px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-stage { max-width: 100%; aspect-ratio: 4 / 3; }
}

/* ============================================================
   How it works
   ============================================================ */
.how {
  padding: 64px 0;
  border-top: 1px solid var(--line);
  position: relative;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 40px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.03em;
  line-height: 1.0;
  margin: 0;
  max-width: 640px;
}
.section-head .eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 88px;
}
.timeline-track {
  position: absolute;
  top: 64px;
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    var(--line-strong) 0 6px,
    transparent 6px 12px
  );
  z-index: 0;
  transform: translateY(-1px);
  opacity: 0.7;
}
.timeline-progress {
  position: absolute;
  top: 64px;
  height: 3px;
  width: 110px;
  background: linear-gradient(
    to right,
    color-mix(in oklab, var(--ember) 0%, transparent),
    var(--ember)
  );
  z-index: 1;
  transform: translate(-100%, -50%);
  border-radius: 3px;
  transition: left 600ms var(--ease);
  filter: drop-shadow(0 0 4px color-mix(in oklab, var(--ember) 40%, transparent));
}
.timeline-scooter {
  position: absolute;
  z-index: 4;
  transform: translate(-50%, -82%);
  transition: left 600ms var(--ease);
  pointer-events: none;
  filter: drop-shadow(0 4px 8px rgba(20,20,19,0.18));
}
.timeline-scooter svg { display: block; }
@keyframes scootBob {
  0%, 100% { transform: translate(-50%, -82%); }
  50%      { transform: translate(-50%, -85%); }
}
.timeline-scooter { animation: scootBob 1.6s ease-in-out infinite; }

.tstep { position: relative; z-index: 2; }
.tstep .pin {
  width: 26px; height: 26px;
  position: absolute;
  top: -34px; left: 50%;
  transform: translate(-50%, -50%);
  margin-top: -2px;
  visibility: hidden;
  pointer-events: none;
}
.tstep .stepno {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.tstep h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
}
.tstep p { font-size: 14px; color: var(--fg3); margin: 0; line-height: 1.45; }
.tstep .glyph {
  width: 100%;
  aspect-ratio: 5 / 3;
  background: var(--bone);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  display: grid; place-items: center;
}
.tstep.active .glyph {
  background: color-mix(in oklab, var(--ember) 10%, var(--bone));
  border-color: color-mix(in oklab, var(--ember) 30%, var(--line));
}

@media (max-width: 860px) {
  .timeline { grid-template-columns: 1fr 1fr; gap: 20px; padding-top: 24px; }
  .timeline-progress, .timeline-scooter, .timeline-track { display: none; }
  .tstep .pin { display: none; }
  .section-head { flex-direction: column; align-items: flex-start; margin-bottom: 24px; }
}

/* ============================================================
   Coverage
   ============================================================ */
.coverage {
  padding: 64px 0;
  border-top: 1px solid var(--line);
}
.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}
.coverage-stage {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bone);
}
body[data-theme="ink"] .coverage-stage { background: #1c1c1a; }
.coverage-stage svg { width: 100%; height: 100%; }
.coverage-areas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  margin-top: 24px;
}
.coverage-areas li {
  list-style: none;
  font-size: 14px;
  color: var(--fg2);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.coverage-areas li::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--ember);
  border-radius: 50%;
}
.coverage h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.03em;
  line-height: 1.0;
  margin: 0 0 16px;
}
.coverage .lead {
  font-size: 17px;
  color: var(--fg2);
  line-height: 1.45;
  max-width: 460px;
  margin: 0;
}

@media (max-width: 860px) {
  .coverage-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ============================================================
   Waitlist forms
   ============================================================ */
.waitlist {
  padding: 64px 0 96px;
  border-top: 1px solid var(--line);
}
.waitlist-head {
  text-align: center;
  margin-bottom: 40px;
}
.waitlist-head .eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ember);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: inline-block;
}
.waitlist-head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 5vw, 56px);
  letter-spacing: -0.03em;
  line-height: 1.0;
  margin: 0 auto 12px;
  max-width: 720px;
}
.waitlist-head p { color: var(--fg3); font-size: 16px; max-width: 520px; margin: 0 auto; }

.forms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 8px;
}
.form-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--dur-panel) var(--ease);
}
body[data-theme="ink"] .form-card { background: #1c1c1a; }
.form-card:hover { border-color: var(--line-strong); }
.form-card .role {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.form-card .role .pip {
  width: 8px; height: 8px;
  border-radius: 2px;
  background: var(--ember);
}
.form-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.02em;
  margin: 12px 0 6px;
}
.form-card .blurb {
  font-size: 14px;
  color: var(--fg3);
  margin: 0 0 22px;
  max-width: 340px;
  line-height: 1.45;
}
.fields { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.field { position: relative; }
.field input, .field select {
  width: 100%;
  background: var(--bone);
  border: 1px solid transparent;
  border-radius: var(--r-md);
  padding: 14px 16px;
  font-size: 15px;
  color: var(--fg1);
  outline: none;
  transition: background var(--dur-tap) var(--ease), border-color var(--dur-tap) var(--ease), box-shadow var(--dur-tap) var(--ease);
  font-family: inherit;
}
.field input::placeholder { color: var(--fg-muted); }
.field input:focus, .field select:focus {
  background: var(--bg-elev);
  border-color: var(--ember);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--ember) 18%, transparent);
}
.form-cta {
  width: 100%;
  background: var(--ember);
  color: #fff;
  border: 0;
  border-radius: var(--r-full);
  padding: 16px 22px;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  transition: background var(--dur-tap) var(--ease), transform var(--dur-tap) var(--ease);
}
.form-cta:hover { background: var(--ember-hot); }
.form-cta:active { transform: scale(0.98); }
.form-card .fine { text-align: center; font-size: 12px; color: var(--fg3); margin-top: 12px; }

.success {
  position: absolute;
  inset: 0;
  background: var(--bg-elev);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 28px;
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity var(--dur-panel) var(--ease), transform var(--dur-panel) var(--ease);
}
body[data-theme="ink"] .success { background: #1c1c1a; }
.form-card.done .success { opacity: 1; transform: translateY(0); pointer-events: auto; }
/* success check icon — draws itself on reveal */
.success-icon { margin-bottom: 16px; position: relative; z-index: 1; }
.check-circle {
  stroke-dasharray: 164;
  stroke-dashoffset: 164;
}
.check-mark {
  stroke-dasharray: 50;
  stroke-dashoffset: 50;
}
.form-card.done .check-circle {
  animation: drawCircle 0.5s 0.15s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.form-card.done .check-mark {
  animation: drawCheck 0.4s 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes drawCircle { to { stroke-dashoffset: 0; } }
@keyframes drawCheck  { to { stroke-dashoffset: 0; } }

/* confetti burst */
.confetti-wrap {
  position: absolute;
  top: 38%;
  left: 50%;
  width: 0;
  height: 0;
  pointer-events: none;
  z-index: 0;
}
.confetti-piece {
  position: absolute;
  opacity: 0;
}
.form-card.done .confetti-piece {
  animation: confettiFly 0.85s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
@keyframes confettiFly {
  0%   { opacity: 1; transform: translate(-50%, -50%) rotate(0deg); }
  100% { opacity: 0; transform: translate(calc(-50% + var(--cdx)), calc(-50% + var(--cdy))) rotate(var(--cdr)); }
}

/* position / application reference roll */
.pos-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 10px 28px;
  margin-top: 4px;
}
.pos-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--fg3);
  text-transform: uppercase;
}
.pos-roll {
  display: inline-flex;
  align-items: flex-end;
  gap: 1px;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}
.pos-hash {
  font-size: 20px;
  font-weight: 500;
  opacity: 0.45;
  margin-right: 2px;
  line-height: 1.2;
}
.pos-digit {
  height: 1em;
  overflow: hidden;
  display: inline-block;
}
.pos-reel {
  display: flex;
  flex-direction: column;
  animation: posRoll 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.pos-reel span { display: block; line-height: 1; }
@keyframes posRoll {
  from { transform: translateY(0); }
  to   { transform: translateY(-10em); }
}
.success h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.success p { font-size: 14px; color: var(--fg3); margin: 0 0 18px; max-width: 280px; }
.success .number {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg2);
  background: var(--bone);
  padding: 8px 14px;
  border-radius: var(--r-full);
  letter-spacing: 0.04em;
}

@media (max-width: 860px) {
  .forms { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 56px 0 28px;
}
body[data-theme="ink"] .footer { background: #0a0a09; }
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line-inverse);
}
.footer-brand p {
  margin: 14px 0 0;
  font-size: 14px;
  color: rgba(251,247,241,0.62);
  max-width: 320px;
  line-height: 1.5;
}
.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(251,247,241,0.5);
  margin: 0 0 14px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(251,247,241,0.78); font-size: 14px; transition: color var(--dur-tap) var(--ease); }
.footer-col a:hover { color: var(--ember); }

.footer-bottom {
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-bottom .meta {
  font-size: 12px;
  color: rgba(251,247,241,0.5);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}
.socials { display: flex; gap: 6px; }
.socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid rgba(251,247,241,0.18);
  color: var(--cream);
  transition: background var(--dur-tap) var(--ease), border-color var(--dur-tap) var(--ease);
}
.socials a:hover { background: var(--ember); border-color: var(--ember); color: #fff; }
.socials svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }

@media (max-width: 860px) {
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 16px; align-items: flex-start; }
}
