/* ==========================================================================
   AirOps marketing site
   --------------------------------------------------------------------------
   Visual layer is shared with AirHub (https://airhub.hotairapp.com).
   The --hub-* token namespace below is extracted from AirHub's production
   CSS bundle and re-used verbatim so AirOps, AirShare, and AirHub all read
   as siblings. See server/airops/UI_STYLE_GUIDE.md for details.
   ========================================================================== */

/* ---- Theme tokens (light = default, mirrors AirHub) ----------------------
 * Light is the unconditional default to match AirHub. `color-scheme: light`
 * is pinned on :root so OS-level form controls and scrollbars stay light
 * even when the user's OS is set to dark mode. Dark variants only apply
 * when explicitly opted-in via html[data-theme="dark"].
 * -------------------------------------------------------------------------- */
:root,
html[data-theme="light"] {
  color-scheme: light;
  --hub-bg:               #e8f4f8;
  --hub-surface:          #ffffff;
  --hub-surface-elevated: #ffffff;
  --hub-surface-muted:    #f4fafc;
  --hub-surface-hover:    #eef6f9;
  --hub-border:           #d0dee8;
  --hub-border-strong:    #9fc4d4;
  --hub-text:             #1a1a1a;
  --hub-text-secondary:   #3d5a68;
  --hub-text-muted:       #5c6b7a;
  --hub-accent:           #5bb4e5;
  --hub-accent-hover:     #49a8dc;
  --hub-accent-soft:      #5bb4e52e;
  --hub-eyebrow:          #f97316;
  --hub-shadow:           0 1px 3px #1e3a4714;
  --hub-card-shadow:      0 1px 4px #1e3a471a;
  --hub-danger:           #d64545;
  --hub-success:          #1a7f37;
  --hub-input-bg:         #ffffff;
  --hub-input-border:     #c5d4de;
  --hub-btn-primary:      #f97316;
  --hub-btn-primary-hover:#ea580c;
  --hub-btn-secondary-bg: #ffffff;
  --hub-btn-secondary-hover-bg: #eef6f9;
  --hub-focus:            #5bb4e5;
  --hub-focus-ring:       #5bb4e540;
  --hub-side-active-bg:   #5bb4e529;
  --hub-badge-soon-bg:    #fff8e6;
  --hub-badge-soon-color: #9a6700;
  --hub-badge-soon-border:#e8c547;
  --hub-badge-nav-bg:     #fff4e6;
  --hub-badge-nav-color:  #c2410c;
  --hub-badge-nav-border: #fdba74;
  --hub-badge-ready-bg:    #e8f5ec;
  --hub-badge-ready-color: #1a7f37;
  --hub-badge-ready-border:#86d9a0;
  --hub-hero-bg: linear-gradient(165deg, #ffffff 0%, #eef6f9 55%, #fff4e6 100%);
  --hub-section-alt-bg: linear-gradient(180deg, #eef6f9 0%, #ffffff 100%);
}

html[data-theme="dark"] {
  color-scheme: dark;
  --hub-bg:               #0d1117;
  --hub-surface:          #161b22;
  --hub-surface-elevated: #21262d;
  --hub-surface-muted:    #0d1117;
  --hub-surface-hover:    #1c2128;
  --hub-border:           #30363d;
  --hub-border-strong:    #484f58;
  --hub-text:             #e6edf3;
  --hub-text-secondary:   #c9d1d9;
  --hub-text-muted:       #8b949e;
  --hub-accent:           #58a6ff;
  --hub-accent-hover:     #79c0ff;
  --hub-accent-soft:      #58a6ff24;
  --hub-eyebrow:          #f78166;
  --hub-shadow:           none;
  --hub-card-shadow:      none;
  --hub-danger:           #f85149;
  --hub-success:          #3fb950;
  --hub-input-bg:         #0d1117;
  --hub-input-border:     #30363d;
  --hub-btn-primary:      #f97316;
  --hub-btn-primary-hover:#ea580c;
  --hub-btn-secondary-bg: #21262d;
  --hub-btn-secondary-hover-bg: #1c2128;
  --hub-focus:            #58a6ff;
  --hub-focus-ring:       #58a6ff33;
  --hub-side-active-bg:   #1f6feb22;
  --hub-hero-bg: linear-gradient(165deg, #161b22 0%, #0d1117 55%, #1a1208 100%);
  --hub-section-alt-bg: linear-gradient(180deg, #11161d 0%, #0d1117 100%);
}

/* ---- Layout tokens ------------------------------------------------------- */
:root {
  --radius:      12px;
  --radius-sm:   8px;
  --radius-pill: 999px;

  --max-w: 1100px;
  --pad-x: clamp(20px, 4vw, 32px);

  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
               Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono",
               "Courier New", monospace;
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

body {
  margin: 0;
  background: var(--hub-bg);
  color: var(--hub-text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--hub-accent); text-decoration: none; transition: color .12s ease; }
a:hover { color: var(--hub-accent-hover); }

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

button { font: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-inline: var(--pad-x);
}

/* ============================== Buttons ============================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 11px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  transition: transform .12s ease, background-color .15s ease,
              border-color .15s ease, color .15s ease, box-shadow .15s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--hub-focus-ring);
}
.btn-primary {
  background: var(--hub-btn-primary);
  color: #ffffff;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06), 0 4px 12px rgba(249,115,22,0.18);
}
.btn-primary:hover { background: var(--hub-btn-primary-hover); color: #ffffff; }
.btn-ghost {
  background: var(--hub-btn-secondary-bg);
  color: var(--hub-text);
  border-color: var(--hub-border);
}
.btn-ghost:hover {
  background: var(--hub-btn-secondary-hover-bg);
  border-color: var(--hub-border-strong);
  color: var(--hub-text);
}
.btn-block { width: 100%; }

/* ============================== Eyebrow / type ============================== */
.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hub-eyebrow);
  margin-bottom: 12px;
}
.eyebrow-accent { color: var(--hub-eyebrow); }

h1, h2, h3 {
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.4em;
  color: var(--hub-text);
  line-height: 1.2;
}
h1 { font-size: clamp(2rem, 4.6vw, 3.1rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(1.5rem, 2.6vw, 2.05rem); }
h3 { font-size: 1.1rem; line-height: 1.35; font-weight: 600; }
p  { margin: 0 0 0.8em; color: var(--hub-text); }
p.lede {
  color: var(--hub-text-secondary);
  font-size: 1.1rem;
  line-height: 1.55;
  max-width: 56ch;
}

/* ============================== Nav ============================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.nav.is-scrolled {
  border-bottom-color: var(--hub-border);
  background: rgba(255, 255, 255, 0.92);
}
html[data-theme="dark"] .nav { background: rgba(13, 17, 23, 0.72); }
html[data-theme="dark"] .nav.is-scrolled { background: rgba(13, 17, 23, 0.9); }

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 12px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 1.05rem;
  color: var(--hub-text);
  line-height: 1;
}
.wordmark:hover { color: var(--hub-text); }
.wordmark-mark {
  width: auto;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}
.wordmark-divider {
  color: var(--hub-text-muted);
  font-weight: 500;
  margin: 0 1px;
}
.wordmark-product {
  color: var(--hub-text);
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--hub-text-secondary);
  font-weight: 500;
  transition: color .12s ease, background .12s ease;
}
.nav-links a:hover {
  color: var(--hub-text);
  background: var(--hub-surface-hover);
}
.nav-links .nav-cta {
  background: var(--hub-btn-primary);
  color: #ffffff;
  font-weight: 600;
  padding: 8px 14px;
  margin-left: 6px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06), 0 4px 12px rgba(249,115,22,0.18);
}
.nav-links .nav-cta:hover {
  background: var(--hub-btn-primary-hover);
  color: #ffffff;
}
@media (max-width: 640px) {
  .nav-links a:not(.nav-cta) { display: none; }
}

/* ============================== Hero ============================== */
.hero {
  position: relative;
  padding: clamp(48px, 8vw, 88px) 0 clamp(56px, 9vw, 96px);
  overflow: hidden;
  background: var(--hub-hero-bg);
  border-bottom: 1px solid var(--hub-border);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 480px at 85% -10%, rgba(249, 115, 22, 0.08), transparent 60%),
    radial-gradient(800px 480px at 8% 0%, rgba(91, 180, 229, 0.10), transparent 60%);
  pointer-events: none;
}
.hero > .container { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
}
.hero-copy h1 { margin-bottom: 18px; }
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 18px;
}
.hero-meta {
  font-size: 0.9rem;
  color: var(--hub-text-secondary);
  margin: 0;
}

/* hero mock card */
.hero-mock { position: relative; }
.mock-glow {
  position: absolute;
  inset: -10%;
  background: radial-gradient(closest-side, rgba(91,180,229,0.16), transparent 70%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}
.mock-card {
  position: relative;
  z-index: 1;
  background: var(--hub-surface);
  border: 1px solid var(--hub-border);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(30, 58, 71, 0.08), var(--hub-card-shadow);
  overflow: hidden;
}
.mock-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--hub-border);
  background: var(--hub-surface-muted);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--hub-text-muted);
}
.mock-chrome .dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.mock-chrome .dot-r { background: #ff5f57; }
.mock-chrome .dot-y { background: #febc2e; }
.mock-chrome .dot-g { background: #28c840; }
.mock-title { margin-left: 8px; }
.mock-live {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--hub-success);
  font-weight: 600;
  letter-spacing: 0.08em;
}
.mock-live i {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--hub-success);
  box-shadow: 0 0 0 0 rgba(26, 127, 55, 0.5);
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(26, 127, 55, 0.45); }
  100% { box-shadow: 0 0 0 10px rgba(26, 127, 55, 0); }
}
.mock-body { padding: 14px; background: var(--hub-surface); }
.mock-map { width: 100%; height: auto; border-radius: var(--radius-sm); }

/* ============================== Trust strip ============================== */
.trust {
  border-top: 1px solid var(--hub-border);
  border-bottom: 1px solid var(--hub-border);
  padding: 22px 0;
  background: var(--hub-surface);
  text-align: center;
}
.trust-line {
  color: var(--hub-text-secondary);
  margin: 0;
  font-size: 0.98rem;
  font-weight: 500;
}
.trust-line strong { color: var(--hub-text); font-weight: 700; }
.trust-tag {
  display: inline-block;
  margin-top: 6px;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hub-eyebrow);
}

/* ============================== Sections ============================== */
.section {
  padding: clamp(56px, 9vw, 104px) 0;
}
.section-alt {
  background: var(--hub-section-alt-bg);
  border-top: 1px solid var(--hub-border);
  border-bottom: 1px solid var(--hub-border);
}
.section-head {
  margin-bottom: 36px;
  max-width: 60ch;
}
.section-head h2 { margin-bottom: 0.2em; }
.section-sub { color: var(--hub-text-secondary); margin: 0; }

/* ============================== Steps (How it works) ============================== */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  counter-reset: step;
}
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }

.step {
  position: relative;
  background: var(--hub-surface);
  border: 1px solid var(--hub-border);
  border-radius: var(--radius);
  box-shadow: var(--hub-card-shadow);
  padding: 26px 22px 22px;
}
.step-num {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--hub-accent);
  margin-bottom: 12px;
}
.step h3 { margin-bottom: 6px; font-size: 1.1rem; font-weight: 600; }
.step p { color: var(--hub-text-secondary); margin: 0; }

/* ============================== Generic grid + tile ============================== */
.grid {
  display: grid;
  gap: 18px;
}
.features { grid-template-columns: repeat(3, 1fr); }
.who      { grid-template-columns: repeat(4, 1fr); }
.pricing  { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
@media (max-width: 980px) {
  .features { grid-template-columns: repeat(2, 1fr); }
  .pricing  { grid-template-columns: 1fr; }
  .who      { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .features { grid-template-columns: 1fr; }
  .who      { grid-template-columns: 1fr; }
}

.tile {
  position: relative;
  background: var(--hub-surface);
  border: 1px solid var(--hub-border);
  border-radius: var(--radius);
  box-shadow: var(--hub-card-shadow);
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.tile:hover {
  border-color: var(--hub-border-strong);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(30, 58, 71, 0.08);
}
.tile h3 { margin: 6px 0 4px; font-size: 1.05rem; font-weight: 600; }
.tile p { color: var(--hub-text-secondary); margin: 0; font-size: 0.95rem; }

.icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--hub-accent-soft);
  border: 1px solid var(--hub-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--hub-accent);
}
.icon svg { width: 20px; height: 20px; }
.icon-accent {
  color: var(--hub-eyebrow);
  border-color: rgba(249, 115, 22, 0.30);
  background: rgba(249, 115, 22, 0.10);
}

.tile-feature {
  border-color: rgba(249, 115, 22, 0.30);
  background: linear-gradient(180deg, rgba(249, 115, 22, 0.04), var(--hub-surface));
}

.badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hub-text-muted);
  background: var(--hub-surface);
  border: 1px solid var(--hub-border);
  padding: 3px 8px;
  border-radius: var(--radius-pill);
}
.badge-accent {
  color: var(--hub-badge-nav-color);
  background: var(--hub-badge-nav-bg);
  border-color: var(--hub-badge-nav-border);
}

/* ============================== PiBal callout ============================== */
.pibal {
  padding: clamp(56px, 9vw, 96px) 0;
  border-top: 1px solid var(--hub-border);
  border-bottom: 1px solid var(--hub-border);
  background:
    radial-gradient(800px 400px at 80% 50%, rgba(249, 115, 22, 0.06), transparent 70%),
    var(--hub-surface);
}
.pibal-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 900px) { .pibal-grid { grid-template-columns: 1fr; } }
.pibal-grid h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.pibal-grid p { color: var(--hub-text-secondary); max-width: 56ch; }
.pibal-viz {
  width: 100%;
  height: auto;
  background: var(--hub-surface);
  border: 1px solid var(--hub-border);
  border-radius: var(--radius);
  box-shadow: var(--hub-card-shadow);
  padding: 18px;
}
.pibal-viz text[fill="#8a98b3"] { fill: var(--hub-text-muted); }
.pibal-viz text[fill="#e6ecf5"] { fill: var(--hub-text); }
.pibal-viz [stroke="#60a5fa"] { stroke: var(--hub-accent); }
.pibal-viz [fill="#60a5fa"]   { fill:   var(--hub-accent); }

/* ============================== Pricing ============================== */
.price { padding: 26px 24px 24px; }
.price-head { margin-bottom: 14px; }
.price-head h3 { font-size: 1.15rem; margin-bottom: 8px; font-weight: 600; }
.price-amount {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  color: var(--hub-text);
}
.price-em { color: var(--hub-eyebrow); }
.price-unit { font-size: 0.9rem; color: var(--hub-text-muted); font-weight: 500; }
.price-note { color: var(--hub-text-secondary); font-size: 0.88rem; margin: 4px 0 0; }
.checks { list-style: none; padding: 0; margin: 16px 0 22px; display: flex; flex-direction: column; gap: 8px; }
.checks li {
  position: relative;
  padding-left: 22px;
  color: var(--hub-text);
  font-size: 0.93rem;
}
.checks li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.55em;
  width: 12px;
  height: 6px;
  border-left: 2px solid var(--hub-success);
  border-bottom: 2px solid var(--hub-success);
  transform: rotate(-45deg);
}
.price-feature {
  border-color: rgba(249, 115, 22, 0.40);
  background: linear-gradient(180deg, rgba(249, 115, 22, 0.05), var(--hub-surface));
}
.ribbon {
  position: absolute;
  top: -10px;
  right: 18px;
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--hub-btn-primary);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 10px rgba(249, 115, 22, 0.25);
}

/* ============================== FAQ ============================== */
.faq-wrap { max-width: 800px; }
.faq {
  border: 1px solid var(--hub-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--hub-surface);
  box-shadow: var(--hub-card-shadow);
}
.faq details {
  border-bottom: 1px solid var(--hub-border);
}
.faq details:last-child { border-bottom: 0; }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--hub-text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background .15s ease;
}
.faq summary:hover { background: var(--hub-surface-hover); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  width: 9px; height: 9px;
  border-right: 2px solid var(--hub-text-muted);
  border-bottom: 2px solid var(--hub-text-muted);
  transform: rotate(45deg);
  transition: transform .2s ease;
  flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq details > p {
  padding: 0 22px 20px;
  margin: 0;
  color: var(--hub-text-secondary);
  max-width: 70ch;
}

/* ============================== Form ============================== */
.request-wrap { max-width: 760px; }
.form {
  background: var(--hub-surface);
  border: 1px solid var(--hub-border);
  border-radius: var(--radius);
  box-shadow: var(--hub-card-shadow);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 600px) { .form .row { grid-template-columns: 1fr; } }
.form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--hub-text-secondary);
}
.form label.full { grid-column: 1 / -1; }
.form input,
.form textarea {
  font: inherit;
  color: var(--hub-text);
  background: var(--hub-input-bg);
  border: 1px solid var(--hub-input-border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  outline: none;
  transition: border-color .12s ease, box-shadow .12s ease;
  width: 100%;
}
.form input:focus,
.form textarea:focus {
  border-color: var(--hub-focus);
  box-shadow: 0 0 0 3px var(--hub-focus-ring);
}
.form textarea { resize: vertical; }
.form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.form-note { color: var(--hub-text-secondary); margin: 0; font-size: 0.88rem; }
.form-note a { color: var(--hub-accent); }
.form-note a:hover { color: var(--hub-accent-hover); }

/* ============================== Footer ============================== */
.footer {
  border-top: 1px solid var(--hub-border);
  padding: 32px 0 36px;
  margin-top: 0;
  color: var(--hub-text-secondary);
  background: var(--hub-surface-muted);
}
.footer-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--hub-text);
  font-weight: 700;
}
.footer-brand .wordmark-mark { height: 28px; }
.footer-line { margin: 0; font-size: 0.88rem; }
.footer-links { display: flex; gap: 16px; font-size: 0.88rem; }
.footer-links a { color: var(--hub-text-secondary); }
.footer-links a:hover { color: var(--hub-text); }
.footer-fine {
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--hub-text-muted);
}
.footer-fine p { margin: 0; }

/* ============================== Reveal animation ============================== */
.reveal {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
