:root {
  --navy:        #0B1628;
  --steel:       #1E3A5F;
  --steel-2:     #244671;
  --electric:    #2563EB;
  --electric-2:  #3B82F6;
  --paper:       #F8FAFC;
  --paper-mute:  #CBD5E1;
  --paper-faint: #94A3B8;
  --hairline:    rgba(248, 250, 252, 0.12);
  --hairline-2:  rgba(248, 250, 252, 0.06);

  --radius-s: 6px;
  --radius:   12px;
  --radius-l: 20px;

  --max-w: 1200px;
  --pad:   clamp(20px, 4vw, 48px);

  --t-fast:  160ms ease;
  --t-base:  240ms cubic-bezier(.2,.6,.3,1);
  --t-slow:  400ms ease;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-24px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(24px); }
  to { opacity: 1; transform: translateX(0); }
}

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

@keyframes shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px rgba(37, 99, 235, 0.2); }
  50% { box-shadow: 0 0 40px rgba(37, 99, 235, 0.4); }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  color: var(--paper);
  background: var(--navy);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; display: block; }
a { color: var(--electric-2); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--paper); }
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--electric-2);
  outline-offset: 3px;
  border-radius: var(--radius-s);
}

h1, h2, h3, h4 { color: var(--paper); margin: 0 0 0.5em; line-height: 1.2; letter-spacing: -0.015em; text-wrap: balance; }
h1 { font-size: clamp(36px, 5.5vw, 64px); font-weight: 700; letter-spacing: -0.025em; }
h2 { font-size: clamp(28px, 3.5vw, 40px); font-weight: 600; padding-bottom: 12px; border-bottom: 2px solid var(--electric-2); }
h3 { font-size: clamp(20px, 2vw, 24px); font-weight: 600; padding-bottom: 8px; border-bottom: 2px solid var(--electric-2); }
h4 { font-size: 18px; font-weight: 600; }
p  { margin: 0 0 1em; color: var(--paper-mute); text-wrap: pretty; }

.skip-link {
  position: absolute; top: -100px; left: 16px;
  background: var(--electric); color: var(--paper); padding: 10px 16px;
  border-radius: var(--radius-s); font-weight: 600; z-index: 1000;
  transition: top var(--t-base);
}
.skip-link:focus { top: 12px; }

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

.eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--electric-2); margin: 0 0 8px;
}

/* ============================================================
   NAV
   ============================================================ */
.nav-main {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11, 22, 40, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--hairline);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 14px var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  color: var(--paper); font-weight: 600; letter-spacing: -0.01em;
}
.nav-brand:hover { color: var(--electric-2); }
.nav-brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--electric); color: var(--paper);
  font-size: 12px; font-weight: 700; letter-spacing: 0.05em;
}
.nav-brand-text { font-size: 15px; }

.nav-links {
  display: flex; align-items: center; gap: 28px;
}
.nav-links a {
  color: var(--paper-mute); font-size: 15px; font-weight: 500;
  padding: 8px 0; transition: color var(--t-base);
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--paper); }
.nav-links .nav-cta {
  background: var(--electric); color: var(--paper);
  padding: 10px 18px; border-radius: var(--radius-s); font-weight: 600;
  transition: background var(--t-base), transform var(--t-base);
}
.nav-links .nav-cta:hover { background: var(--electric-2); color: var(--paper); transform: translateY(-1px); }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 40px; height: 40px; padding: 8px;
  flex-direction: column; justify-content: space-between;
}
.nav-toggle span {
  display: block; height: 2px; width: 100%; background: var(--paper);
  transition: transform var(--t-base);
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--navy); border-bottom: 1px solid var(--hairline);
    padding: 8px var(--pad) 16px;
    max-height: 0; overflow: hidden; transition: max-height var(--t-base);
  }
  .nav-links.is-open { max-height: 600px; }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--hairline-2); }
  .nav-links .nav-cta { margin-top: 12px; text-align: center; border-bottom: 0; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: clamp(8px, 1vw, 16px) 0 clamp(12px, 1.5vw, 24px);
  background:
    radial-gradient(ellipse at 20% 0%, rgba(37, 99, 235, 0.18), transparent 55%),
    radial-gradient(ellipse at 80% 30%, rgba(30, 58, 95, 0.6), transparent 60%),
    var(--navy);
  border-bottom: 1px solid var(--hairline);
}
.hero h1 { max-width: 18ch; margin: 0 0 8px 0; animation: fadeInUp 600ms cubic-bezier(.2,.6,.3,1) 100ms both; }
.hero-lede { font-size: clamp(17px, 1.6vw, 20px); max-width: 60ch; color: var(--paper-mute); margin: 8px 0 20px; animation: fadeInUp 600ms cubic-bezier(.2,.6,.3,1) 200ms both; }
.eyebrow { animation: fadeInUp 600ms cubic-bezier(.2,.6,.3,1) both; }

.event-facts {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border: 1px solid var(--hairline); border-radius: var(--radius);
  background: rgba(30, 58, 95, 0.35);
  overflow: hidden;
}
.event-facts dt {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--paper-faint); margin-bottom: 6px;
}
.event-facts dd {
  font-size: 17px; font-weight: 600; color: var(--paper); margin: 0;
}
.event-facts > div {
  padding: 16px 20px;
  border-right: 1px solid var(--hairline);
}
.event-facts > div:last-child { border-right: 0; }
@media (max-width: 720px) {
  .event-facts { grid-template-columns: 1fr 1fr; }
  .event-facts > div { border-right: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
  .event-facts > div:nth-child(2n) { border-right: 0; }
  .event-facts > div:nth-last-child(-n+2) { border-bottom: 0; }
}

/* ============================================================
   SECTIONS
   ============================================================ */
section { padding: 28px 0; border-bottom: 1px solid var(--hairline); }
section.section-tight { padding: clamp(32px, 5vw, 56px) 0; }
.section-head { max-width: 720px; margin: 0 0 48px; }
.section-head p { font-size: 17px; color: var(--paper-mute); margin: 12px 0 0; }

/* ============================================================
   THEMES GRID
   ============================================================ */
.theme-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
@media (max-width: 1024px) { .theme-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .theme-grid { grid-template-columns: 1fr; } }

.theme-card {
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 200px; padding: 24px;
  background: var(--steel); color: var(--paper);
  border: 1px solid var(--hairline); border-radius: var(--radius);
  transition: transform var(--t-base), background var(--t-base), border-color var(--t-base);
  animation: fadeInUp 500ms cubic-bezier(.2,.6,.3,1) both;
}
.theme-grid > :nth-child(1) { animation-delay: 100ms; }
.theme-grid > :nth-child(2) { animation-delay: 150ms; }
.theme-grid > :nth-child(3) { animation-delay: 200ms; }
.theme-grid > :nth-child(4) { animation-delay: 250ms; }
.theme-grid > :nth-child(5) { animation-delay: 300ms; }
.theme-grid > :nth-child(6) { animation-delay: 350ms; }
.theme-grid > :nth-child(7) { animation-delay: 400ms; }
.theme-grid > :nth-child(8) { animation-delay: 450ms; }
.theme-card:hover {
  transform: translateY(-4px); background: var(--steel-2);
  border-color: var(--electric-2); color: var(--paper);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.15);
}
.theme-card-num {
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em; color: var(--electric-2);
  text-transform: uppercase;
}
.theme-card h3 { margin: 12px 0 0; font-size: 19px; line-height: 1.3; }
.theme-card-arrow {
  margin-top: 28px; font-size: 14px; font-weight: 600; color: var(--paper-mute);
  transition: transform var(--t-base), color var(--t-base);
}
.theme-card:hover .theme-card-arrow { transform: translateX(4px); color: var(--paper); }

/* ============================================================
   SESSIONS
   ============================================================ */
.session-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
@media (max-width: 760px) { .session-grid { grid-template-columns: 1fr; } }

.session-card {
  display: flex; flex-direction: column; gap: 14px;
  padding: 28px; background: rgba(30, 58, 95, 0.35);
  border: 1px solid var(--hairline); border-radius: var(--radius);
  color: var(--paper);
  transition: border-color var(--t-base), background var(--t-base), transform var(--t-base), box-shadow var(--t-base);
  animation: fadeInUp 500ms cubic-bezier(.2,.6,.3,1) both;
}
.session-grid > :nth-child(1) { animation-delay: 200ms; }
.session-grid > :nth-child(2) { animation-delay: 250ms; }
.session-grid > :nth-child(3) { animation-delay: 300ms; }
.session-grid > :nth-child(4) { animation-delay: 350ms; }
.session-card:hover { border-color: var(--electric-2); background: rgba(30, 58, 95, 0.55); color: var(--paper); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37, 99, 235, 0.12); }
.session-meta {
  display: flex; flex-wrap: wrap; gap: 14px; font-size: 13px;
  color: var(--paper-faint); font-weight: 500;
}
.session-meta span { display: inline-flex; align-items: center; gap: 6px; }
.session-card h3 { font-size: 22px; margin: 0; }
.session-card p { font-size: 15px; margin: 0; color: var(--paper-mute); }
.session-card-link {
  margin-top: auto; font-size: 14px; font-weight: 600; color: var(--electric-2);
}

/* ============================================================
   RETROSPECTIVE TEASER
   ============================================================ */
.retro {
  background: linear-gradient(135deg, var(--steel) 0%, var(--navy) 100%);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-l);
  padding: clamp(40px, 6vw, 64px);
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: center;
  animation: fadeInUp 600ms cubic-bezier(.2,.6,.3,1) 300ms both;
}
@media (max-width: 860px) { .retro { grid-template-columns: 1fr; } }
.retro h2 { font-size: clamp(26px, 3vw, 34px); }
.retro p { font-size: 17px; color: var(--paper-mute); }
.retro-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.retro-stat {
  padding: 20px; background: rgba(11, 22, 40, 0.5);
  border: 1px solid var(--hairline); border-radius: var(--radius);
}
.retro-stat-num {
  font-size: 32px; font-weight: 700; color: var(--paper); letter-spacing: -0.02em;
  line-height: 1;
}
.retro-stat-label { font-size: 13px; color: var(--paper-faint); margin-top: 8px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--hairline);
}
.faq-item details { padding: 24px 0; }
.faq-item {
  animation: fadeInUp 500ms cubic-bezier(.2,.6,.3,1) both;
}
.faq-item:nth-child(1) { animation-delay: 150ms; }
.faq-item:nth-child(2) { animation-delay: 200ms; }
.faq-item:nth-child(3) { animation-delay: 250ms; }
.faq-item:nth-child(4) { animation-delay: 300ms; }
.faq-item:nth-child(5) { animation-delay: 350ms; }
.faq-item:nth-child(6) { animation-delay: 400ms; }
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  font-size: 18px; font-weight: 600; color: var(--paper);
  transition: color var(--t-base);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--electric-2); }
.faq-item summary::after {
  content: '+'; font-size: 24px; font-weight: 300; color: var(--electric-2);
  transition: transform var(--t-base);
}
.faq-item details[open] summary::after { content: '−'; }
.faq-item-body { padding-top: 16px; color: var(--paper-mute); font-size: 16px; }
.faq-item-body p { margin: 0 0 1em; }
.faq-item-body p:last-child { margin: 0; }

/* ============================================================
   EMAIL CAPTURE
   ============================================================ */
.signup {
  background: linear-gradient(135deg, var(--electric) 0%, var(--steel-2) 100%);
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--radius-l);
  text-align: center;
  animation: fadeInUp 600ms cubic-bezier(.2,.6,.3,1) 400ms both;
}
.signup h2 { color: var(--paper); }
.signup p { color: rgba(248, 250, 252, 0.85); max-width: 50ch; margin: 12px auto 28px; }
.signup-form {
  display: flex; gap: 12px; max-width: 600px; margin: 0 auto; flex-wrap: wrap;
  justify-content: center;
}
.signup-form input[type="text"], .signup-form input[type="email"] {
  flex: 1 1 200px; min-width: 0;
  padding: 14px 18px; font-size: 16px; font-family: inherit;
  border: 1px solid rgba(248, 250, 252, 0.3); border-radius: var(--radius-s);
  background: rgba(11, 22, 40, 0.4); color: var(--paper);
  transition: border-color var(--t-base), background var(--t-base);
}
.signup-form input::placeholder { color: rgba(248, 250, 252, 0.6); }
.signup-form input:focus {
  border-color: var(--paper); background: rgba(11, 22, 40, 0.65);
  outline: 0;
}
.signup-form button {
  padding: 14px 28px; font-size: 16px; font-weight: 600; font-family: inherit;
  background: var(--paper); color: var(--navy); border: 0; cursor: pointer;
  border-radius: var(--radius-s);
  transition: transform var(--t-base), background var(--t-base);
}
.signup-form button:hover { transform: translateY(-1px); background: #fff; }
.signup-note { font-size: 13px; color: rgba(248, 250, 252, 0.7); margin-top: 18px; }
.honeypot { position: absolute; left: -9999px; opacity: 0; }

/* ============================================================
   MAXIFI CTA
   ============================================================ */
.maxifi-cta {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center;
  padding: clamp(40px, 6vw, 56px);
  background: var(--steel);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-l);
  animation: fadeInUp 600ms cubic-bezier(.2,.6,.3,1) 500ms both;
}
@media (max-width: 760px) { .maxifi-cta { grid-template-columns: 1fr; } }
.maxifi-cta h2 { font-size: clamp(24px, 2.5vw, 30px); }
.maxifi-cta p { color: var(--paper-mute); font-size: 16px; }
.maxifi-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px; font-size: 15px; font-weight: 600; font-family: inherit;
  border-radius: var(--radius-s); cursor: pointer; border: 1px solid transparent;
  transition: transform var(--t-base), background var(--t-base), border-color var(--t-base);
}
.btn-primary   { background: var(--electric); color: var(--paper); }
.btn-primary:hover { background: var(--electric-2); color: var(--paper); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3); }
.btn-ghost     { background: transparent; color: var(--paper); border-color: var(--hairline); }
.btn-ghost:hover { border-color: var(--paper); color: var(--paper); transform: translateY(-2px); }
.btn-disabled  { background: transparent; color: var(--paper-faint); border-color: var(--hairline); opacity: 0.5; cursor: not-allowed; pointer-events: none; }

/* ============================================================
   COLLECTION INDEX PAGES & DETAIL PAGES
   ============================================================ */
.page-header {
  padding: clamp(36px, 5vw, 64px) 0 clamp(20px, 3vw, 36px);
  background:
    radial-gradient(ellipse at 30% 0%, rgba(37, 99, 235, 0.14), transparent 60%),
    var(--navy);
  border-bottom: 1px solid var(--hairline);
}
.page-header .eyebrow + h1 { margin-top: 0; }
.page-header p { font-size: 18px; max-width: 60ch; }

.list-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
@media (max-width: 760px) { .list-grid { grid-template-columns: 1fr; } }

.list-card {
  display: block; padding: 28px;
  background: rgba(30, 58, 95, 0.35);
  border: 1px solid var(--hairline); border-radius: var(--radius);
  color: var(--paper);
  transition: border-color var(--t-base), background var(--t-base), transform var(--t-base), box-shadow var(--t-base);
  animation: fadeInUp 500ms cubic-bezier(.2,.6,.3,1) both;
}
.list-grid > :nth-child(1) { animation-delay: 100ms; }
.list-grid > :nth-child(2) { animation-delay: 150ms; }
.list-grid > :nth-child(3) { animation-delay: 200ms; }
.list-grid > :nth-child(4) { animation-delay: 250ms; }
.list-card:hover { border-color: var(--electric-2); background: rgba(30, 58, 95, 0.55); color: var(--paper); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37, 99, 235, 0.12); }
.list-card h3 { margin: 0 0 8px; font-size: 20px; }
.list-card p  { margin: 0; color: var(--paper-mute); font-size: 15px; }
.list-card-meta { font-size: 13px; color: var(--paper-faint); margin-bottom: 10px; }

.prose { max-width: 720px; margin: 0 auto; font-size: 17px; text-align: left; }
.prose p { text-align: left; }
.prose h2 { margin-top: 2em; }
.prose h3 { margin-top: 1.6em; }
.prose ul, .prose ol { padding-left: 1.4em; color: var(--paper-mute); }
.prose li { margin-bottom: 0.4em; }
.prose blockquote {
  margin: 1.6em 0; padding: 16px 24px;
  border-left: 3px solid var(--electric); background: rgba(37, 99, 235, 0.08);
  color: var(--paper); font-size: 17px;
}
.prose code {
  background: rgba(30, 58, 95, 0.6); padding: 2px 6px; border-radius: 4px;
  font-size: 0.9em; font-family: 'SF Mono', ui-monospace, Menlo, monospace;
}

.detail-meta {
  display: flex; flex-wrap: wrap; gap: 20px; padding: 16px 0 0;
  font-size: 14px; color: var(--paper-faint);
}
.detail-meta strong { color: var(--paper); font-weight: 600; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #060e1a;
  color: var(--paper-mute);
  padding: 64px 0 32px;
}
.footer-col--brand {
  display: flex; flex-direction: column; gap: 16px;
}
.footer-col--brand .footer-logo {
  display: block; margin-bottom: 8px;
}
.footer-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad);
  display: grid; grid-template-columns: 1.2fr 1fr 1fr 1.1fr; gap: 48px;
  align-items: start;
}
/* All non-brand columns: flex column so footer-title always at the top */
.footer-inner > .footer-col:not(.footer-col--brand) {
  display: flex; flex-direction: column;
}
@media (max-width: 860px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-inner { grid-template-columns: 1fr; } }
.footer-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--electric-2); margin: 0 0 12px;
}
.footer-brand-desc { color: var(--paper); font-size: 15px; margin-bottom: 16px; }
.footer-brand-subtext { font-size: 14px; color: var(--paper-faint); }
.footer-tagline { color: var(--paper); font-size: 15px; }
.footer-attribution { font-size: 14px; color: var(--paper-faint); }
.footer-title {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; color: var(--paper);
  text-transform: uppercase; margin: 0 0 20px; border-bottom: 1px solid var(--electric-2);
  padding-bottom: 12px; line-height: 1.4;
}
/* Brand col: logo sits above, keep consistent gap before title */
.footer-col--brand .footer-title {
  margin-top: 4px;
}
.cta-desc { font-size: 14px; color: var(--paper-mute); margin: 0 0 20px; line-height: 1.65; text-align: left; }
.cta-button-link {
  display: block; background: var(--electric); color: var(--paper);
  padding: 13px 20px; border-radius: var(--radius-s); font-weight: 600;
  font-size: 14px; text-align: center; transition: background var(--t-fast);
  margin-top: auto;
}
.cta-button-link:hover { background: var(--electric-2); color: var(--paper); }
.footer-services { list-style: none; padding: 0; margin: 0; }
.footer-services li { margin-bottom: 12px; }
.service-link {
  display: flex; align-items: center; gap: 10px; color: var(--paper-mute);
  font-size: 14px; transition: color var(--t-fast);
}
.service-link:hover { color: var(--paper); }
.service-icon { color: var(--electric-2); font-size: 16px; flex-shrink: 0; }
.service-name { color: var(--paper-mute); }
.footer-contact { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--hairline); }
.footer-contact p { margin: 0 0 8px; font-size: 14px; }
.footer-contact a { color: var(--paper-mute); white-space: nowrap; }
.footer-contact a:hover { color: var(--paper); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--paper-faint); font-size: 13px; }
.footer-links a:hover { color: var(--paper); }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--paper-mute); font-size: 14px; }
.footer-col a:hover { color: var(--paper); }
.footer-note { font-size: 13px; color: var(--paper-faint); }
.footer-meta {
  max-width: var(--max-w); margin: 48px auto 0; padding: 24px var(--pad) 0;
  border-top: 1px solid var(--hairline);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: var(--paper-faint);
}
.footer-meta p { margin: 0; color: var(--paper-faint); }

/* ============================================================
   REDUCED MOTION
   ============================================================ */
/* Add subtle animations to nav and other elements */
.nav-brand-mark {
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.nav-brand-mark:hover {
  transform: scale(1.05);
}

.theme-card-arrow {
  transition: transform var(--t-base), color var(--t-base);
}

section {
  animation: fadeInUp 700ms cubic-bezier(.2,.6,.3,1) both;
}
section:nth-of-type(1) { animation-delay: 0; }
section:nth-of-type(2) { animation-delay: 100ms; }
section:nth-of-type(3) { animation-delay: 150ms; }
section:nth-of-type(4) { animation-delay: 200ms; }
section:nth-of-type(5) { animation-delay: 250ms; }
section:nth-of-type(6) { animation-delay: 300ms; }

/* ============================================================
   HOW IT WORKS — STEPS
   ============================================================ */
.how-steps {
  list-style: none;
  margin: 2.5rem 0 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.how-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-top: 1px solid var(--hairline);
}

.how-step:last-child { border-bottom: 1px solid var(--hairline); }

.how-step-num {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--electric-2);
  line-height: 1;
  padding-top: 0.25rem;
}

.how-step-body h3 {
  margin: 0 0 0.75rem 0;
  font-size: 1.25rem;
  font-weight: 600;
}

.how-step-body p { margin: 0; color: rgba(248, 250, 252, 0.75); }

.how-step-body code {
  font-family: 'Courier New', monospace;
  font-size: 0.875em;
  background: rgba(37, 99, 235, 0.15);
  color: var(--electric-2);
  padding: 0.1em 0.4em;
  border-radius: 4px;
}

@media (max-width: 600px) {
  .how-step {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .how-step-num { font-size: 1.75rem; }
}

@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;
  }
}
