/* =========================================================
   Cash Home Buyers MI — Design System
   Deep Teal + Signal Amber + Manrope/Inter
   ========================================================= */

:root {
  /* Brand */
  --deep-teal: #0F4C5C;
  --deep-teal-dk: #0A3743;
  --pale-teal: #E6EEF0;
  --signal-amber: #E8A24B;
  --signal-amber-hv: #D08F38;

  /* Neutrals */
  --snow: #FAFAF9;
  --slate-95: #0B1418;
  --slate-70: #374151;
  --slate-40: #9CA3AF;
  --slate-15: #E5E7EB;
  --hairline: rgba(11, 20, 24, 0.08);

  /* Semantic */
  --success: #047857;
  --warning: #B45309;

  /* Spacing rhythm (8px base) */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Type */
  --font-display: "Manrope", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration: 180ms;
}

/* =========================================================
   Reset + Base
   ========================================================= */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px; /* 1.0625rem */
  line-height: 1.6;
  color: var(--slate-70);
  background: var(--snow);
  font-feature-settings: "cv11", "ss01";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  opacity: 0;
  animation: page-fade-in 400ms var(--ease-out) 80ms forwards;
}

@keyframes page-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--slate-95);
  margin: 0;
  letter-spacing: -0.015em;
}

h1 { font-weight: 800; line-height: 1.05; letter-spacing: -0.02em; }
h2 { font-weight: 700; line-height: 1.15; }
h3 { font-weight: 600; line-height: 1.3; }

p { margin: 0; }

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

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

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* =========================================================
   Layout
   ========================================================= */

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 768px) {
  .container { padding: 0 2rem; }
}

.section {
  padding: var(--space-16) 0;
}

@media (min-width: 768px) {
  .section { padding: var(--space-24) 0; }
}

.section--tight { padding: var(--space-12) 0; }

/* Skip link */
.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--slate-95);
  color: var(--snow);
  padding: 0.75rem 1rem;
  font-weight: 600;
  z-index: 100;
}
.skip:focus { left: 0.5rem; top: 0.5rem; }

/* =========================================================
   Navigation
   ========================================================= */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--snow);
  border-bottom: 1px solid transparent;
  transition: background var(--duration) var(--ease-out),
              border-color var(--duration) var(--ease-out),
              backdrop-filter var(--duration) var(--ease-out);
}

.nav.is-scrolled {
  background: rgba(250, 250, 249, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom-color: var(--hairline);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.0625rem;
  color: var(--slate-95);
  letter-spacing: -0.01em;
}

.nav__brand-mark {
  width: 32px; height: 32px;
  background: var(--deep-teal);
  border-radius: 6px;
  display: grid; place-items: center;
  color: var(--snow);
  font-weight: 800;
  font-size: 0.85rem;
}

.nav__links {
  display: none;
  gap: 2rem;
  list-style: none;
  margin: 0; padding: 0;
}

@media (min-width: 900px) {
  .nav__links { display: flex; }
}

.nav__links a {
  font-size: 0.95rem;
  color: var(--slate-70);
  transition: color var(--duration) var(--ease-out);
}
.nav__links a:hover { color: var(--deep-teal); }

.nav__cta {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--deep-teal);
  transition: color var(--duration) var(--ease-out);
}
.nav__cta:hover { color: var(--deep-teal-dk); }
.nav__cta-phone-text { display: none; }
@media (min-width: 600px) { .nav__cta-phone-text { display: inline; } }

/* =========================================================
   Buttons
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background var(--duration) var(--ease-out),
              transform var(--duration) var(--ease-out),
              box-shadow var(--duration) var(--ease-out);
  text-align: center;
  letter-spacing: -0.005em;
}

.btn--primary {
  background: var(--signal-amber);
  color: var(--slate-95);
  box-shadow: 0 1px 2px rgba(11, 20, 24, 0.06);
}
.btn--primary:hover {
  background: var(--signal-amber-hv);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(232, 162, 75, 0.25);
}
.btn--primary:focus-visible {
  outline: 2px solid var(--deep-teal);
  outline-offset: 2px;
}

.btn--secondary {
  background: transparent;
  color: var(--deep-teal);
  border: 1.5px solid var(--deep-teal);
}
.btn--secondary:hover { background: var(--pale-teal); }

.btn--block { width: 100%; }

.btn--lg { min-height: 56px; padding: 1rem 1.75rem; font-size: 1.0625rem; }

/* =========================================================
   Hero
   ========================================================= */

.hero {
  padding: 3rem 0 var(--space-16);
  background: linear-gradient(180deg, var(--snow) 0%, var(--pale-teal) 100%);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero { padding: 5rem 0 var(--space-24); }
}

.hero__inner {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero__inner { grid-template-columns: 1.1fr 0.9fr; gap: 4rem; }
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--deep-teal);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 1.25rem;
}

.hero__eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--signal-amber);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero__title {
  font-size: clamp(2.25rem, 5.5vw, 3.5rem);
  margin-bottom: 1.25rem;
}

.hero__title-accent { color: var(--deep-teal); }

.hero__sub {
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  color: var(--slate-70);
  line-height: 1.55;
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  margin-top: 2.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--hairline);
}

.hero__trust-item {
  display: flex; align-items: center; gap: 0.55rem;
  font-size: 0.875rem;
  color: var(--slate-70);
  font-weight: 500;
}

.hero__trust-item svg {
  width: 18px; height: 18px;
  color: var(--success);
  flex-shrink: 0;
}

/* Address-first form */
.offer-form {
  background: var(--snow);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 20px 60px -20px rgba(11, 20, 24, 0.18);
}

.offer-form__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.375rem;
  color: var(--slate-95);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.offer-form__sub {
  font-size: 0.9375rem;
  color: var(--slate-70);
  margin-bottom: 1.5rem;
}

.offer-form__field {
  position: relative;
  margin-bottom: 0.75rem;
}

.offer-form__input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 16px; /* iOS no-zoom */
  padding: 1rem 1rem 1rem 3rem;
  border: 1.5px solid var(--slate-15);
  border-radius: 10px;
  background: var(--snow);
  color: var(--slate-95);
  transition: border-color var(--duration) var(--ease-out);
}

.offer-form__input:focus {
  outline: none;
  border-color: var(--deep-teal);
}

.offer-form__icon {
  position: absolute;
  left: 1rem; top: 50%;
  transform: translateY(-50%);
  width: 20px; height: 20px;
  color: var(--slate-40);
  pointer-events: none;
}

.offer-form__divider {
  display: flex; align-items: center; gap: 0.75rem;
  text-align: center;
  font-size: 0.75rem; font-weight: 500;
  color: var(--slate-40);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 1.25rem 0;
}
.offer-form__divider::before,
.offer-form__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--hairline);
}

.offer-form__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.375rem;
  color: var(--deep-teal);
  padding: 0.5rem;
}
.offer-form__phone svg {
  width: 22px; height: 22px;
}

.offer-form__footnote {
  font-size: 0.75rem;
  color: var(--slate-40);
  text-align: center;
  margin-top: 1rem;
  line-height: 1.5;
}

/* =========================================================
   Section heading utility
   ========================================================= */

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-12);
}

.section-head__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--deep-teal);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 1rem;
}

.section-head__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
}

.section-head__sub {
  font-size: 1.0625rem;
  color: var(--slate-70);
  line-height: 1.65;
}

/* =========================================================
   How It Works
   ========================================================= */

.steps {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: 3rem; }
}

.step {
  position: relative;
  padding: 2rem;
  background: var(--snow);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  transition: border-color var(--duration) var(--ease-out),
              transform var(--duration) var(--ease-out);
}

.step:hover {
  border-color: var(--deep-teal);
  transform: translateY(-2px);
}

.step__num {
  position: absolute;
  top: 1.25rem; right: 1.5rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3.5rem;
  color: var(--pale-teal);
  line-height: 1;
}

.step__icon {
  width: 56px; height: 56px;
  background: var(--pale-teal);
  border-radius: 12px;
  display: grid; place-items: center;
  margin-bottom: 1.5rem;
  color: var(--deep-teal);
}
.step__icon svg { width: 28px; height: 28px; }

.step__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.step__body {
  font-size: 0.9375rem;
  line-height: 1.65;
}

.step__time {
  margin-top: 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--deep-teal);
  font-family: var(--font-display);
}

/* =========================================================
   Owner band
   ========================================================= */

.owner {
  background: var(--deep-teal);
  color: var(--snow);
}

.owner h2, .owner h3 { color: var(--snow); }

.owner__inner {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .owner__inner { grid-template-columns: 1fr 1.2fr; gap: 4rem; }
}

.owner__photo {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border-radius: 16px;
  display: grid; place-items: center;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-display);
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.owner__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--signal-amber);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 1rem;
}

.owner__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 1.5rem;
}

.owner__body {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(250, 250, 249, 0.85);
  margin-bottom: 1.5rem;
}

.owner__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.owner__stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--snow);
  line-height: 1;
  letter-spacing: -0.02em;
}

.owner__stat-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(250, 250, 249, 0.7);
  margin-top: 0.5rem;
  line-height: 1.4;
}

/* =========================================================
   Live proof counter
   ========================================================= */

.live-proof {
  background: var(--snow);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  max-width: 720px;
  margin: 0 auto;
}

.live-proof__dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--success);
  position: relative;
  flex-shrink: 0;
}
.live-proof__dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--success);
  opacity: 0.3;
  animation: ping 2s ease-in-out infinite;
}
@keyframes ping {
  0% { transform: scale(0.8); opacity: 0.4; }
  100% { transform: scale(1.8); opacity: 0; }
}

.live-proof__text {
  font-size: 0.9375rem;
  color: var(--slate-70);
}
.live-proof__text strong {
  color: var(--slate-95);
  font-weight: 700;
}

/* =========================================================
   Comparison table
   ========================================================= */

.compare {
  background: var(--snow);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  overflow: hidden;
  max-width: 920px;
  margin: 0 auto;
}

.compare__row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  align-items: center;
  padding: 1.125rem 1.25rem;
  border-bottom: 1px solid var(--hairline);
  gap: 0.75rem;
}
.compare__row:last-child { border-bottom: none; }

@media (min-width: 600px) {
  .compare__row { padding: 1.25rem 2rem; }
}

.compare__row--head {
  background: var(--slate-95);
  color: var(--snow);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  text-align: left;
}

.compare__row--head > div:nth-child(2),
.compare__row--head > div:nth-child(3) {
  text-align: center;
}

.compare__row--head .compare__hl {
  color: var(--signal-amber);
}

.compare__label {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--slate-95);
}

.compare__cell {
  text-align: center;
  font-size: 0.875rem;
  color: var(--slate-70);
}

.compare__cell--good {
  color: var(--success);
  font-weight: 600;
}

/* =========================================================
   Situations grid
   ========================================================= */

.situations {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) { .situations { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .situations { grid-template-columns: repeat(3, 1fr); } }

.situation {
  padding: 1.75rem;
  background: var(--snow);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  transition: border-color var(--duration) var(--ease-out),
              transform var(--duration) var(--ease-out),
              box-shadow var(--duration) var(--ease-out);
  cursor: pointer;
  text-align: left;
}

.situation:hover {
  border-color: var(--deep-teal);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px -12px rgba(11, 20, 24, 0.12);
}

.situation__icon {
  width: 52px; height: 52px;
  background: var(--pale-teal);
  border-radius: 10px;
  display: grid; place-items: center;
  color: var(--deep-teal);
  margin-bottom: 1.25rem;
}
.situation__icon svg { width: 26px; height: 26px; }

.situation__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--slate-95);
  margin-bottom: 0.4rem;
}

.situation__body {
  font-size: 0.875rem;
  color: var(--slate-70);
  line-height: 1.55;
}

/* =========================================================
   Testimonials
   ========================================================= */

.testimonials {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .testimonials { grid-template-columns: repeat(3, 1fr); }
}

.testimonial {
  background: var(--snow);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 1.75rem;
}

.testimonial__quote {
  font-size: 0.9375rem;
  color: var(--slate-70);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.testimonial__avatar {
  width: 44px; height: 44px;
  background: var(--pale-teal);
  border-radius: 50%;
  color: var(--deep-teal);
  font-family: var(--font-display);
  font-weight: 700;
  display: grid; place-items: center;
  font-size: 0.9375rem;
}

.testimonial__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--slate-95);
}

.testimonial__loc {
  font-size: 0.8125rem;
  color: var(--slate-40);
  margin-top: 0.125rem;
}

.testimonial__verified {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: var(--success);
  font-weight: 500;
  margin-top: 0.125rem;
}
.testimonial__verified svg { width: 12px; height: 12px; }

/* =========================================================
   City list
   ========================================================= */

.cities {
  display: grid;
  gap: 0.5rem 1rem;
  grid-template-columns: repeat(2, 1fr);
  max-width: 960px;
  margin: 0 auto;
}

@media (min-width: 600px) { .cities { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .cities { grid-template-columns: repeat(4, 1fr); } }

.cities__item {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.625rem 0.75rem;
  font-size: 0.875rem;
  color: var(--slate-70);
  border-radius: 8px;
  transition: background var(--duration) var(--ease-out), color var(--duration) var(--ease-out);
}
.cities__item:hover {
  background: var(--pale-teal);
  color: var(--deep-teal);
}
.cities__item svg {
  width: 14px; height: 14px;
  color: var(--slate-40);
  flex-shrink: 0;
}

/* =========================================================
   FAQ
   ========================================================= */

.faq {
  max-width: 760px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--hairline);
}
.faq__item:first-child { border-top: 1px solid var(--hairline); }

.faq__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--slate-95);
  cursor: pointer;
  list-style: none;
  transition: color var(--duration) var(--ease-out);
}
.faq__summary::-webkit-details-marker { display: none; }
.faq__summary:hover { color: var(--deep-teal); }

.faq__chevron {
  width: 22px; height: 22px;
  color: var(--slate-40);
  transition: transform var(--duration) var(--ease-out);
  flex-shrink: 0;
}
.faq__item[open] .faq__chevron { transform: rotate(180deg); }

.faq__body {
  font-size: 0.9375rem;
  color: var(--slate-70);
  line-height: 1.7;
  padding-bottom: 1.5rem;
}

/* =========================================================
   Final CTA band
   ========================================================= */

.cta-band {
  background: linear-gradient(135deg, var(--deep-teal) 0%, var(--deep-teal-dk) 100%);
  color: var(--snow);
  text-align: center;
}

.cta-band h2, .cta-band p { color: var(--snow); }

.cta-band__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.cta-band__sub {
  font-size: 1.0625rem;
  color: rgba(250, 250, 249, 0.85);
  margin-bottom: 2.25rem;
  max-width: 540px;
  margin-inline: auto;
}

.cta-band__buttons {
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: center;
}

.cta-band .btn--secondary {
  border-color: rgba(255,255,255,0.4);
  color: var(--snow);
}
.cta-band .btn--secondary:hover {
  background: rgba(255,255,255,0.08);
}

/* =========================================================
   Footer
   ========================================================= */

.footer {
  background: var(--slate-95);
  color: rgba(250, 250, 249, 0.7);
  padding: var(--space-16) 0 var(--space-8);
}

.footer__grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}

.footer__brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.125rem;
  color: var(--snow);
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.6rem;
}

.footer__desc {
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 320px;
}

.footer__col-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8125rem;
  color: var(--snow);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}

.footer__list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0.625rem;
}
.footer__list a {
  font-size: 0.875rem;
  transition: color var(--duration) var(--ease-out);
}
.footer__list a:hover { color: var(--signal-amber); }

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
}

/* =========================================================
   Sticky mobile CTA bar
   ========================================================= */

.mobile-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--slate-95);
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  display: flex; gap: 0.75rem;
  z-index: 60;
  border-top: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 -10px 30px -10px rgba(0,0,0,0.3);
}

@media (min-width: 768px) {
  .mobile-cta { display: none; }
}

.mobile-cta .btn { flex: 1; min-height: 44px; padding: 0.65rem 1rem; font-size: 0.9375rem; }

.mobile-cta .btn--secondary {
  border-color: rgba(255,255,255,0.3);
  color: var(--snow);
}

/* =========================================================
   Scroll-fade utility
   ========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   Spacer for sticky mobile CTA so footer doesn't get covered
   ========================================================= */
@media (max-width: 767px) {
  body { padding-bottom: 5rem; }
}
