/* ===================================================================
   Svitgrid homepage dark redesign (2026-06).
   Loaded AFTER main.css on / and /uk/ only. Overrides main.css; the
   map section's inline <style> needs higher-specificity selectors
   (section.smap, .smap .smap__frame) because it sits in <body>.
   Spec: docs/superpowers/specs/2026-06-10-landing-dark-redesign-design.md
   =================================================================== */

:root {
  --night: #0B0E13;
  --night-soft: #11161F;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-border-hover: rgba(245, 158, 11, 0.4);
  --text-body: #94A3B8;
  --text-muted: #64748B;
  --hairline: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
}

html {
  background: var(--night);
}

body {
  background: var(--night);
  color: var(--text-body);
}

/* --- Header: always glass-on-night (main.js's header--dark toggle becomes a no-op) --- */
.header,
.header--dark {
  background: rgba(11, 14, 19, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header--scrolled {
  box-shadow: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.nav__logo,
.header--dark .nav__logo {
  color: var(--color-white);
}

.nav__links a,
.header--dark .nav__links a {
  color: #CBD5E1;
}

.nav__links a:hover,
.header--dark .nav__links a:hover {
  color: var(--color-primary);
}

.nav__hamburger span,
.header--dark .nav__hamburger span {
  background: #CBD5E1;
}

/* --- Mobile menu goes dark --- */
.mobile-menu {
  background: var(--night-soft);
}

.mobile-menu__link {
  color: #E2E8F0;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

/* --- Unify all section canvases --- */
.inverters,
.features,
.how-it-works,
.contacts {
  background: transparent;
  position: relative;
}

.gateway,
.cta {
  background: transparent;
  position: relative;
}

.footer {
  background: var(--night);
  position: relative;
}

/* Hairline dividers between sections */
.inverters::before,
.features::before,
.how-it-works::before,
.pricing::before,
.contacts::before,
.gateway::before,
.cta::before,
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 1px;
  background: var(--hairline);
}

/* --- Base typography on dark --- */
h1, h2, h3, h4, h5, h6 {
  color: var(--color-white);
}

.section-header__title {
  color: var(--color-white);
}

.section-header__subtitle {
  color: var(--text-body);
}

/* ===================================================================
   Hero — aurora depth, dot grid, shimmer title, floating phone
   =================================================================== */

.hero--dark {
  background:
    radial-gradient(90% 70% at 80% 0%, rgba(30, 41, 59, 0.9) 0%, rgba(11, 14, 19, 0) 60%),
    radial-gradient(60% 50% at 10% 100%, rgba(245, 158, 11, 0.06) 0%, rgba(11, 14, 19, 0) 70%),
    var(--night);
}

/* Dot-grid texture, masked so it fades toward the bottom */
.hero--dark::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.9), transparent 80%);
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.9), transparent 80%);
  pointer-events: none;
}

/* Amber glow blob (repurposes the existing empty .hero__bg div).
   Perf note (Task 10 Lighthouse sweep): the spec'd slow drift loop kept
   the blurred blob repainting for the whole trace and inflated Speed
   Index by ~1.3s (score 0.71 → 0.63) — even a 40s/48px version cost
   ~0.7s SI. The blob is therefore static; the glow identity stays. */
.hero__bg {
  position: absolute;
  width: 520px;
  height: 520px;
  left: 55%;
  top: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.16) 0%, transparent 65%);
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}

.hero__container {
  position: relative;
  z-index: 1;
}

/* Title shimmer */
.hero__title .text-gradient {
  background: linear-gradient(100deg, #F59E0B 20%, #FDE68A 40%, #F59E0B 60%, #EA580C 90%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Glass badge — no backdrop-filter: it sits over the animated hero
   background, and re-blurring every frame measurably hurt Speed Index.
   The translucent bg + border carry the glass look on their own. */
.hero__badge {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  color: #CBD5E1;
}

/* Store badges: lift on hover */
.store-badge:hover {
  transform: translateY(-3px) scale(1.04);
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.45));
}

/* Phone: amber rim glow + slimmer frame */
.hero__visual {
  position: relative;
}

.hero__visual::before {
  content: '';
  position: absolute;
  width: 70%;
  height: 70%;
  left: 15%;
  top: 15%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.22) 0%, transparent 70%);
  filter: blur(55px);
  z-index: 0;
}

.hero__phone {
  position: relative;
  z-index: 1;
}

.hero__phone-frame {
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 80px rgba(245, 158, 11, 0.08);
}

/* Scroll cue */
.hero__scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%) rotate(45deg);
  width: 26px;
  height: 26px;
  border-right: 2px solid rgba(255, 255, 255, 0.35);
  border-bottom: 2px solid rgba(255, 255, 255, 0.35);
  z-index: 1;
  pointer-events: none;
}

/* Motion — gated on reduced-motion preference */
@media (prefers-reduced-motion: no-preference) {
  .hero__title .text-gradient {
    animation: hero-shimmer 9s linear infinite;
  }

  .hero__phone {
    animation: hero-float 6s ease-in-out infinite;
  }

  .hero__scroll-cue {
    animation: hero-cue 2.2s ease-in-out infinite;
  }
}

/* background-position is not compositor-only; intentional here —
   the repaint surface is just the title text's bounding box. */
@keyframes hero-shimmer {
  to { background-position: 200% center; }
}

@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes hero-cue {
  0%, 100% { opacity: 0.35; transform: translateX(-50%) rotate(45deg) translateY(0); }
  50% { opacity: 0.8; transform: translateX(-50%) rotate(45deg) translateY(6px); }
}

/* ===================================================================
   Hero live stat strip
   =================================================================== */

.hero-live-stats {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0;
  margin: var(--space-xl) 0 0;
}

/* No backdrop-filter here (perf): chips sit on the animated hero bg —
   see .hero__badge note. Slightly stronger bg compensates. */
.hero-live-stats li {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 10px 16px;
  text-align: center;
  min-width: 128px;
}

.hero-live-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary-light);
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
}

.hero-live-stats span {
  font-size: 0.75rem;
  color: var(--text-body);
}

@media (min-width: 768px) {
  .hero-live-stats {
    justify-content: flex-start;
  }
}

/* ===================================================================
   Compatibility — glass cards with brand watermarks
   =================================================================== */

.inverter-card {
  position: relative;
  overflow: hidden;
  background: var(--glass-bg);
  border-color: var(--glass-border);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.inverter-card::before {
  content: attr(data-initial);
  position: absolute;
  right: -8px;
  bottom: -28px;
  font-family: var(--font-display);
  font-size: 7rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 255, 255, 0.07);
  pointer-events: none;
}

.inverter-card:hover {
  transform: translateY(-4px);
  border-color: var(--glass-border-hover);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), 0 0 24px rgba(245, 158, 11, 0.08);
}

.inverter-card__brand {
  color: var(--color-white);
}

.inverter-card__count {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary-light);
}

.inverter-card__details,
.inverter-card__types {
  color: var(--text-body);
  position: relative;
}

/* Planned brands as pills */
.inverters__planned {
  background: transparent;
  border: none;
  color: var(--text-muted);
}

.inverters__planned strong {
  color: var(--text-body);
  margin-right: var(--space-sm);
}

.plan-pill {
  display: inline-block;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  padding: 3px 14px;
  margin: 0 4px;
  font-size: 0.8125rem;
  color: var(--text-body);
}

/* Compatibility link as ghost button */
/* Note: the anchor itself carries .inverters__link (no wrapper div) */
a.inverters__link {
  display: block;
  width: fit-content;
  margin-inline: auto;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 10px 22px;
  transition: background 0.2s ease, border-color 0.2s ease;
  color: var(--text-body);
  text-decoration: none;
}

a.inverters__link:hover {
  text-decoration: none;
  background: rgba(245, 158, 11, 0.08);
  border-color: var(--glass-border-hover);
  color: var(--color-primary-light);
}

/* ===================================================================
   Feature rows — numbered chips, framed phones, staggered reveal
   (label display:block → inline-flex is intentional)
   =================================================================== */

.features {
  counter-reset: feat;
}

/* Scoped to .features so the gateway section's .feature-row__label is unaffected */
.features .feature-row__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  padding: 5px 14px;
  color: #E2E8F0;
  letter-spacing: 1.5px;
}

.features .feature-row__label::before {
  counter-increment: feat;
  content: counter(feat, decimal-leading-zero);
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--color-primary);
}

.feature-row__title {
  color: var(--color-white);
}

.feature-row__desc {
  color: var(--text-body);
}

.feature-row__phone {
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.55), 0 0 60px rgba(245, 158, 11, 0.06);
}

/* Faint alternating radial tints behind each row */
.feature-row {
  position: relative;
}

/* nth-child parity accounts for the .section-header div being child #1 */
.feature-row:nth-child(odd)::before,
.feature-row:nth-child(even)::before {
  content: '';
  position: absolute;
  inset: -10% -20%;
  pointer-events: none;
  z-index: -1;
}

/* Row 1 (child #2, even) → warm amber tint at left */
.feature-row:nth-child(even)::before {
  background: radial-gradient(45% 55% at 28% 50%, rgba(245, 158, 11, 0.05), transparent 70%);
}

/* Row 2 (child #3, odd) → cool blue tint at right */
.feature-row:nth-child(odd)::before {
  background: radial-gradient(45% 55% at 72% 50%, rgba(59, 130, 246, 0.05), transparent 70%);
}

/* Refined scroll reveal: smoother curve + stagger between columns.
   main.js still toggles .is-visible; only the transition changes. */
.animate-on-scroll {
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-row.animate-on-scroll > *:nth-child(2) {
  transition-delay: 0.12s;
  transition-property: opacity, transform;
  transition-duration: 0.7s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  transform: translateY(24px);
}

.feature-row.animate-on-scroll.is-visible > *:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll,
  .feature-row.animate-on-scroll > *:nth-child(2) {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ===================================================================
   Live map — blend into the canvas, glow frame, pulsing live dot
   (selectors out-specify the section's inline <style> block)
   =================================================================== */

section.smap {
  background: transparent;
  position: relative;
}

section.smap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 1px;
  background: var(--hairline);
}

.smap .smap__frame {
  border-color: rgba(245, 158, 11, 0.18);
  border-radius: var(--radius-xl); /* softer than the inline 16px */
  box-shadow: 0 0 60px rgba(245, 158, 11, 0.07), 0 24px 48px rgba(0, 0, 0, 0.45);
}

/* Pulsing live dot before "Generating now" */
.smap__head .smap__sub:first-of-type::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 8px #4ADE80;
  margin-right: 8px;
  vertical-align: middle;
}

@media (prefers-reduced-motion: no-preference) {
  .smap__head .smap__sub:first-of-type::before {
    animation: live-pulse 1.8s ease-in-out infinite;
  }
}

@keyframes live-pulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.25); }
}

/* --- Map motion: breathing glow frame, radar sweep, pulsing beacons --- */

/* Breathing glow around the map frame */
@media (prefers-reduced-motion: no-preference) {
  .smap .smap__frame {
    animation: smap-breathe 6s ease-in-out infinite;
  }
}

@keyframes smap-breathe {
  0%, 100% {
    border-color: rgba(245, 158, 11, 0.14);
    box-shadow: 0 0 48px rgba(245, 158, 11, 0.05), 0 24px 48px rgba(0, 0, 0, 0.45);
  }
  50% {
    border-color: rgba(245, 158, 11, 0.32);
    box-shadow: 0 0 84px rgba(245, 158, 11, 0.15), 0 24px 48px rgba(0, 0, 0, 0.45);
  }
}

/* Radar sweep — a soft light band gliding across the map, clipped by the frame */
.smap__sweep {
  position: absolute;
  inset: 0;
  z-index: 550; /* above tiles/markers, below the loading overlay (600) */
  pointer-events: none;
  overflow: hidden;
}

.smap__sweep::before {
  content: '';
  position: absolute;
  top: -25%;
  left: 0;
  width: 42%;
  height: 150%;
  transform: translateX(-160%) skewX(-12deg);
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(245, 158, 11, 0.05) 42%,
    rgba(255, 255, 255, 0.06) 50%,
    rgba(245, 158, 11, 0.05) 58%,
    transparent 100%
  );
}

@media (prefers-reduced-motion: no-preference) {
  .smap__sweep::before {
    animation: smap-sweep 7s linear infinite;
  }
}

@keyframes smap-sweep {
  0%   { transform: translateX(-160%) skewX(-12deg); }
  100% { transform: translateX(360%) skewX(-12deg); }
}

/* Pulsing beacon ring behind each live region marker */
.smap-beacon { background: transparent; border: 0; }
.smap-beacon i {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid rgba(255, 177, 59, 0.7);
  box-sizing: border-box;
  opacity: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .smap-beacon i {
    animation: smap-ping 2.8s cubic-bezier(0, 0, 0.2, 1) infinite;
  }
}

@keyframes smap-ping {
  0%   { transform: scale(0.28); opacity: 0.85; }
  70%  { opacity: 0; }
  100% { transform: scale(1); opacity: 0; }
}

/* ===================================================================
   Gateway teaser — dark product spotlight + price hint
   =================================================================== */

.gateway__photo {
  position: relative;
  display: inline-block;
  padding: var(--space-xl) var(--space-md);
}

.gateway__photo::before {
  content: '';
  position: absolute;
  width: 75%;
  height: 60%;
  left: 12.5%;
  top: 18%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(245, 158, 11, 0.55), transparent 70%);
  filter: blur(42px);
  z-index: 0;
}

.gateway__photo .gateway__image {
  position: relative;
  z-index: 1;
  max-width: min(100%, 400px);
  border-radius: 0;
  filter: drop-shadow(0 24px 32px rgba(0, 0, 0, 0.55));
}

/* Brand-navy Purchase button needs an edge to read on the night canvas */
.gateway__content .btn--blue {
  background: linear-gradient(135deg, #27496F 0%, #16304F 100%);
  border: 1px solid rgba(148, 163, 184, 0.28);
}

.gateway__content .btn--blue:hover {
  border-color: rgba(148, 163, 184, 0.45);
}

.gateway__price-hint {
  margin-top: var(--space-md);
  font-size: 0.8125rem;
  color: var(--text-body);
}

/* ===================================================================
   Two ways to connect — glass setup cards
   =================================================================== */

.setup-card {
  background: var(--glass-bg);
  border-color: var(--glass-border);
}

/* Amber gradient border (spec §8): gradient on the border-box layer,
   glass-on-night fill rebuilt on the padding-box layers (the glass tint
   needs an opaque night layer beneath it so the gradient only shows in
   the border ring). */
.setup-card--recommended {
  border: 2px solid transparent;
  background:
    linear-gradient(var(--glass-bg), var(--glass-bg)) padding-box,
    linear-gradient(var(--night), var(--night)) padding-box,
    linear-gradient(165deg, rgba(245, 158, 11, 0.9), rgba(245, 158, 11, 0.25) 55%, rgba(252, 211, 77, 0.6)) border-box;
  box-shadow: 0 0 40px rgba(245, 158, 11, 0.1);
}

/* Numbered step circles (spec §8) */
.setup-card__steps {
  list-style: none;
  counter-reset: setup-step;
  padding-left: 0;
}

.setup-card__steps li {
  counter-increment: setup-step;
  position: relative;
  padding-left: 34px;
}

.setup-card__steps li::before {
  content: counter(setup-step);
  position: absolute;
  left: 0;
  top: 4px; /* centers on the first line (0.875rem × 2.2 line-height) */
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.35);
  color: var(--color-primary-light);
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.setup-card__title {
  color: var(--color-white);
}

.setup-card__subtitle,
.setup-card__sub {
  color: var(--text-muted);
}

.setup-card__steps {
  color: var(--text-body);
}

.setup-card__best,
.setup-card__best-for {
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  color: var(--text-body);
  font-size: 0.8125rem;
}

.setup-card--recommended .setup-card__best,
.setup-card--recommended .setup-card__best-for {
  background: rgba(245, 158, 11, 0.07);
}

.setup-card__best strong,
.setup-card__best-for strong {
  color: var(--color-white);
}

/* ===================================================================
   Download CTA — warm climax
   =================================================================== */

.cta {
  background: radial-gradient(70% 110% at 50% 115%, rgba(245, 158, 11, 0.16) 0%, rgba(11, 14, 19, 0) 70%);
}

.cta__title {
  font-size: 2.25rem;
}

@media (min-width: 768px) {
  .cta__title {
    font-size: 2.75rem;
  }
}

/* ===================================================================
   Contacts — glass cards
   =================================================================== */

.contact-card {
  background: var(--glass-bg);
  border-color: var(--glass-border);
}

.contact-card:hover {
  border-color: var(--glass-border-hover);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), 0 0 24px rgba(245, 158, 11, 0.08);
}

.contact-card__value {
  color: var(--color-white);
}

.contact-card__label,
.contact-card__hint {
  color: var(--text-muted);
}

/* ===================================================================
   Pricing — glass tier cards
   =================================================================== */

.pricing {
  padding: var(--space-3xl) 0;
  background: transparent;
  position: relative;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  align-items: stretch;
}

@media (max-width: 980px) {
  .pricing__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .pricing__grid {
    grid-template-columns: 1fr;
  }
}

.price-card {
  display: flex;
  flex-direction: column;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  position: relative;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.price-card:hover {
  border-color: var(--glass-border-hover);
}

/* Featured (most popular) — amber gradient border on the night canvas,
   same technique as .setup-card--recommended (spec §8). */
.price-card--featured {
  border: 2px solid transparent;
  background:
    linear-gradient(var(--glass-bg), var(--glass-bg)) padding-box,
    linear-gradient(var(--night), var(--night)) padding-box,
    linear-gradient(165deg, rgba(245, 158, 11, 0.9), rgba(245, 158, 11, 0.25) 55%, rgba(252, 211, 77, 0.6)) border-box;
  box-shadow: 0 0 40px rgba(245, 158, 11, 0.1);
}

.price-card__badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: var(--color-gray-900);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 3px 14px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  white-space: nowrap;
}

.price-card__name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--color-white);
  margin: 0 0 var(--space-sm);
}

.price-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 2px;
}

.price-card__amount {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--color-white);
}

.price-card__period {
  font-size: 1rem;
  color: var(--text-body);
}

.price-card__annual {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0 0 var(--space-md);
  min-height: 1.2em;
}

.price-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-md);
  flex: 1 1 auto;
}

.price-card__features li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 0.35rem;
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.4;
}

/* CSS checkmark */
.price-card__features li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 3px;
  width: 6px;
  height: 11px;
  border: solid var(--color-primary);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.price-card__cta {
  margin-top: auto;
  padding: var(--space-sm) var(--space-lg);
}

.pricing__note {
  max-width: 720px;
  margin: var(--space-xl) auto 0;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===================================================================
   Footer — consistent night + hairline
   =================================================================== */

.footer__links a {
  color: var(--text-body);
}

.footer__links a:hover {
  color: var(--color-primary);
}
