/* ====================================================================
   BOLT ($BOLT) — design tokens + component styles
   ==================================================================== */

:root,
[data-theme='light'] {
  /* Surfaces — warm parchment, subtle amber undertone */
  --color-bg: #faf6ec;
  --color-surface: #ffffff;
  --color-surface-2: #fdfbf5;
  --color-surface-offset: #f2ecdc;
  --color-surface-offset-2: #ece3cd;
  --color-divider: #e3d8ba;
  --color-border: #d9cba3;

  --color-text: #221a0c;
  --color-text-muted: #6b5f45;
  --color-text-faint: #a89a76;
  --color-text-inverse: #fbf6e8;

  /* Primary accent — electric amber/gold, matched to the BOLT mark */
  --color-primary: #a9700a;
  --color-primary-hover: #8a5a06;
  --color-primary-active: #6f4705;
  --color-primary-highlight: #f0dfae;
  --color-primary-text-on: #1a1206;

  --color-warning: #964219;
  --color-error: #a12c7b;
  --color-success: #437a22;

  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.9rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;

  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);

  --shadow-sm: 0 1px 2px oklch(0.3 0.05 80 / 0.08);
  --shadow-md: 0 6px 20px oklch(0.3 0.05 80 / 0.1);
  --shadow-lg: 0 20px 48px oklch(0.3 0.05 80 / 0.16);
  --glow-primary: 0 0 0 oklch(0.7 0.16 80 / 0);

  --content-narrow: 640px;
  --content-default: 980px;
  --content-wide: 1240px;
  --content-full: 100%;

  --font-display: 'Clash Display', 'Arial Black', sans-serif;
  --font-body: 'Satoshi', 'Helvetica Neue', sans-serif;
}

[data-theme='dark'] {
  --color-bg: #0a0805;
  --color-surface: #120e08;
  --color-surface-2: #17120a;
  --color-surface-offset: #1c160c;
  --color-surface-offset-2: #241c0f;
  --color-divider: #2a220f;
  --color-border: #362c15;

  --color-text: #f4ecd8;
  --color-text-muted: #ab9d7c;
  --color-text-faint: #6f6448;
  --color-text-inverse: #1a1206;

  --color-primary: #f2b33d;
  --color-primary-hover: #f7c766;
  --color-primary-active: #fdd48a;
  --color-primary-highlight: #3a2e14;
  --color-primary-text-on: #1a1206;

  --color-warning: #d98a4e;
  --color-error: #d878b2;
  --color-success: #7fb85a;

  --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.4);
  --shadow-md: 0 8px 24px oklch(0 0 0 / 0.5);
  --shadow-lg: 0 24px 56px oklch(0 0 0 / 0.6);
  --glow-primary: 0 0 32px oklch(0.78 0.16 80 / 0.35);
}

/* Fluid type scale */
:root {
  --text-xs: clamp(0.75rem, 0.7rem + 0.2vw, 0.85rem);
  --text-sm: clamp(0.875rem, 0.83rem + 0.25vw, 0.975rem);
  --text-base: clamp(1rem, 0.96rem + 0.2vw, 1.125rem);
  --text-lg: clamp(1.15rem, 1.02rem + 0.6vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.22rem + 1.1vw, 2.15rem);
  --text-2xl: clamp(2rem, 1.35rem + 2.4vw, 3.4rem);
  --text-3xl: clamp(2.5rem, 1.1rem + 4vw, 5rem);
  --text-hero: clamp(2.75rem, 0.6rem + 7vw, 7.5rem);

  /* 4px spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;
}

/* ---------------------------------------------------------------- */
/* Layout primitives                                                 */
/* ---------------------------------------------------------------- */

.container {
  max-width: var(--content-default);
  margin-inline: auto;
  padding-inline: var(--space-5);
}
.container--wide {
  max-width: var(--content-wide);
}
.container--narrow {
  max-width: var(--content-narrow);
}

section {
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
}
.eyebrow .bolt-glyph {
  width: 12px;
  height: 12px;
  color: var(--color-primary);
}

/* ---------------------------------------------------------------- */
/* Header                                                            */
/* ---------------------------------------------------------------- */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklab, var(--color-bg) 82%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid oklch(from var(--color-text) l c h / 0.08);
  transition:
    transform 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease-out);
}
.header--hidden {
  transform: translateY(-100%);
}
.header--scrolled {
  box-shadow: var(--shadow-sm);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding-block: var(--space-4);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-text);
  text-decoration: none;
}
.brand__mark {
  width: 30px;
  height: 30px;
  color: var(--color-primary);
  filter: drop-shadow(0 0 10px oklch(0.78 0.16 80 / 0.35));
}
.brand__word {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-lg);
  letter-spacing: -0.01em;
}
.brand__ticker {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-faint);
  margin-left: var(--space-1);
}

.nav {
  display: none;
  align-items: center;
  gap: var(--space-8);
}
.nav a {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1.5px;
  background: var(--color-primary);
  transition: width var(--transition-interactive);
}
.nav a:hover {
  color: var(--color-text);
}
.nav a:hover::after {
  width: 100%;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.header__actions .btn {
  display: none;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
}
.theme-toggle:hover {
  color: var(--color-text);
  background: var(--color-surface-offset);
}
.theme-toggle svg {
  width: 18px;
  height: 18px;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  color: var(--color-text);
}
.menu-toggle svg {
  width: 20px;
  height: 20px;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: var(--space-1);
  padding: var(--space-2) var(--space-5) var(--space-6);
  border-bottom: 1px solid oklch(from var(--color-text) l c h / 0.08);
  background: var(--color-bg);
}
.mobile-nav.is-open {
  display: flex;
}
.mobile-nav a {
  padding: var(--space-3) var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  border-radius: var(--radius-md);
  min-height: 44px;
  display: flex;
  align-items: center;
}
.mobile-nav a:active {
  background: var(--color-surface-offset);
}
.mobile-nav__cta {
  justify-content: center;
  margin-top: var(--space-2);
}

@media (min-width: 860px) {
  .nav {
    display: flex;
  }
  .menu-toggle {
    display: none;
  }
  .header__actions .btn {
    display: inline-flex;
  }
}

/* ---------------------------------------------------------------- */
/* Buttons                                                           */
/* ---------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 48px;
  padding: 0 var(--space-6);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background var(--transition-interactive),
    color var(--transition-interactive),
    box-shadow var(--transition-interactive),
    transform var(--transition-interactive),
    border-color var(--transition-interactive);
}
.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-primary-text-on);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: var(--color-primary-hover);
  box-shadow: var(--shadow-md), var(--glow-primary);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--color-text);
  border: 1px solid oklch(from var(--color-text) l c h / 0.18);
}
.btn--ghost:hover {
  border-color: oklch(from var(--color-text) l c h / 0.32);
  background: var(--color-surface-offset);
  transform: translateY(-1px);
}

.btn--sm {
  min-height: 40px;
  padding: 0 var(--space-5);
  font-size: var(--text-xs);
}

/* ---------------------------------------------------------------- */
/* Hero                                                              */
/* ---------------------------------------------------------------- */

.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(var(--space-16), 12vw, var(--space-32));
  background: var(--color-bg);
}

.hero__circuit {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  pointer-events: none;
  mix-blend-mode: normal;
}
[data-theme='light'] .hero__circuit {
  opacity: 0.12;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--space-12);
  align-items: center;
}

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

.hero__ticker {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  border: 1px solid oklch(from var(--color-primary) l c h / 0.35);
  background: color-mix(in oklab, var(--color-primary) 10%, transparent);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--color-primary);
  margin-bottom: var(--space-6);
}
.hero__ticker svg {
  width: 14px;
  height: 14px;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-hero);
  letter-spacing: -0.015em;
  color: var(--color-text);
  margin-bottom: var(--space-6);
}
.hero h1 em {
  font-style: normal;
  color: var(--color-primary);
}

.hero p.lede {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 46ch;
  margin-bottom: var(--space-8);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-10);
}

.hero__buy-note {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: calc(var(--space-4) * -1 + var(--space-2));
  margin-bottom: var(--space-3);
  max-width: 46ch;
}

.hero__ca {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  padding: var(--space-2) var(--space-2) var(--space-2) var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  background: var(--color-surface);
  margin-bottom: var(--space-10);
  max-width: 100%;
}

.hero__ca-label {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-faint);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.hero__ca-address {
  font-family: var(--font-mono, ui-monospace, 'SF Mono', 'Consolas', monospace);
  font-size: var(--text-xs);
  color: var(--color-text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 34ch;
}

.hero__ca-copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  border: none;
  border-radius: var(--radius-full);
  background: var(--color-surface-offset);
  color: var(--color-text-muted);
  cursor: pointer;
  transition: background var(--transition-interactive), color var(--transition-interactive), transform var(--transition-interactive);
}

.hero__ca-copy svg {
  width: 1rem;
  height: 1rem;
}

.hero__ca-copy svg[hidden] {
  display: none;
}

.hero__ca-copy:hover {
  background: var(--color-primary-highlight);
  color: var(--color-primary);
}

.hero__ca-copy:active {
  transform: scale(0.94);
}

.hero__ca-copy.is-copied {
  background: var(--color-success);
  color: var(--color-text-inverse);
}

@media (max-width: 480px) {
  .hero__ca-address {
    max-width: 20ch;
  }
}

.hero__pillars {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}
.pillar-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  background: var(--color-surface-offset);
  border: 1px solid var(--color-border);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-muted);
}
.pillar-chip svg {
  width: 13px;
  height: 13px;
  color: var(--color-primary);
}

.hero__visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 16/13;
  background: var(--color-surface-offset);
  box-shadow: var(--shadow-lg);
}
.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, oklch(0.1 0.02 60 / 0.55) 100%);
}
.hero__visual-badge {
  position: absolute;
  left: var(--space-5);
  bottom: var(--space-5);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: #fdf6e3;
}
.hero__visual-badge svg {
  width: 26px;
  height: 26px;
  color: #f2b33d;
}
.hero__visual-badge span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-lg);
  letter-spacing: -0.01em;
}

/* ---------------------------------------------------------------- */
/* Section scaffolding                                              */
/* ---------------------------------------------------------------- */

.section {
  position: relative;
  padding-block: clamp(var(--space-16), 9vw, var(--space-24));
}
.section--tight {
  padding-block: clamp(var(--space-10), 6vw, var(--space-16));
}
.section--offset {
  background: var(--color-surface-offset);
}
.section > .container {
  position: relative;
  z-index: 1;
}

/* ---------------------------------------------------------------- */
/* Floating coin particles — decorative, ambient motion             */
/* ---------------------------------------------------------------- */

.coin-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.coin-particle {
  position: absolute;
  bottom: var(--bottom, -12%);
  left: var(--left, 50%);
  width: var(--size, 44px);
  height: auto;
  opacity: 0;
  filter: drop-shadow(0 6px 14px oklch(0.2 0.06 65 / 0.3));
  animation: coin-rise var(--dur, 16s) ease-in-out var(--delay, 0s) infinite;
  will-change: transform, opacity;
}

@keyframes coin-rise {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }
  12% {
    opacity: var(--peak, 0.4);
  }
  78% {
    opacity: var(--peak, 0.4);
  }
  100% {
    transform: translateY(var(--rise, -60vh)) rotate(var(--rot, 16deg));
    opacity: 0;
  }
}

.hero__coin-corner {
  position: absolute;
  right: -8%;
  bottom: -12%;
  width: clamp(150px, 20vw, 260px);
  transform: rotate(-10deg);
  opacity: 0.95;
  filter: drop-shadow(0 24px 46px oklch(0.18 0.08 65 / 0.4));
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 700px) {
  .hero__coin-corner {
    width: 108px;
    right: -6%;
    bottom: -4%;
    opacity: 0.75;
  }
}

@media (prefers-reduced-motion: reduce) {
  .coin-particle {
    animation: none;
    bottom: 14%;
    opacity: var(--peak, 0.22);
    transform: none;
  }
}

.section__head {
  max-width: 60ch;
  margin-bottom: var(--space-12);
}
.section__head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-2xl);
  letter-spacing: -0.01em;
  margin-top: var(--space-3);
}

/* Reveal-on-scroll (opacity + clip only — no CLS) */
.reveal {
  opacity: 1;
  clip-path: inset(0 0 0 0);
}
@supports (animation-timeline: scroll()) {
  .reveal {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
    animation: reveal-up linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 55%;
  }
}
@keyframes reveal-up {
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

/* ---------------------------------------------------------------- */
/* Story / About section — asymmetric two column                    */
/* ---------------------------------------------------------------- */

.story {
  display: grid;
  gap: var(--space-16);
  align-items: center;
}
@media (min-width: 900px) {
  .story {
    grid-template-columns: 1fr 1fr;
  }
  .story--reverse .story__copy {
    order: 2;
  }
}

.story__copy .eyebrow {
  margin-bottom: var(--space-4);
}
.story__copy h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-2xl);
  letter-spacing: -0.01em;
  margin-bottom: var(--space-5);
}
.story__copy p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}
.story__copy p:last-of-type {
  margin-bottom: 0;
}

.story__art {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.story__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* ---------------------------------------------------------------- */
/* Mission — full-bleed pull-quote block                            */
/* ---------------------------------------------------------------- */

.mission {
  background: var(--color-text);
  color: var(--color-text-inverse);
  position: relative;
  overflow: hidden;
}
[data-theme='dark'] .mission {
  background: linear-gradient(160deg, #1a1206 0%, #0a0805 70%);
  color: var(--color-text);
}
.mission__inner {
  position: relative;
  z-index: 1;
  max-width: var(--content-narrow);
}
.mission blockquote {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-2xl);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-6);
}
.mission blockquote span {
  color: var(--color-primary);
}
.mission p {
  font-size: var(--text-base);
  color: color-mix(in oklab, var(--color-text-inverse) 72%, transparent);
  max-width: 56ch;
}
[data-theme='dark'] .mission p {
  color: var(--color-text-muted);
}

.mission__bolt {
  position: absolute;
  top: 50%;
  right: -6%;
  transform: translateY(-50%);
  width: min(340px, 40vw);
  opacity: 0.16;
  color: var(--color-primary);
  pointer-events: none;
}

/* ---------------------------------------------------------------- */
/* Pillars — staggered narrative list (not 3-col cliché)             */
/* ---------------------------------------------------------------- */

.pillars {
  display: grid;
  gap: var(--space-16);
  align-items: start;
}
@media (min-width: 940px) {
  .pillars {
    grid-template-columns: 0.85fr 1.15fr;
  }
}

.pillars__art {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: calc(var(--space-20) + 64px);
}
.pillars__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.pillar-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-5);
  padding-block: var(--space-8);
  border-top: 1px solid var(--color-divider);
}
.pillar-item:first-child {
  border-top: none;
  padding-top: 0;
}
.pillar-item:last-child {
  padding-bottom: 0;
}

.pillar-item__index {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-xl);
  color: var(--color-text-faint);
  line-height: 1;
}
.pillar-item__body h3 {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}
.pillar-item__body h3 svg {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  flex-shrink: 0;
}
.pillar-item__body p {
  color: var(--color-text-muted);
}

/* ---------------------------------------------------------------- */
/* Community / get involved                                         */
/* ---------------------------------------------------------------- */

.community {
  display: grid;
  gap: var(--space-16);
}
@media (min-width: 900px) {
  .community {
    grid-template-columns: 1fr 1fr;
  }
}

.involve-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}
.involve-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding-block: var(--space-4);
}
.involve-item svg {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}
.involve-item h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-base);
  margin-bottom: var(--space-1);
}
.involve-item p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

.social-panel {
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  background: var(--color-surface-offset);
  border: 1px solid var(--color-border);
}
.social-panel h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}
.social-panel > p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  margin-bottom: var(--space-6);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}
.social-links a {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  min-height: 44px;
  padding: 0 var(--space-4);
  border-radius: var(--radius-full);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
}
.social-links a svg {
  width: 16px;
  height: 16px;
}
.social-links a:hover {
  color: var(--color-text);
  border-color: oklch(from var(--color-text) l c h / 0.3);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.social-note {
  margin-top: var(--space-5);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

/* ---------------------------------------------------------------- */
/* Disclaimer + Footer                                               */
/* ---------------------------------------------------------------- */

.disclaimer {
  padding: var(--space-6) 0;
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
  background: var(--color-surface-offset);
}
.disclaimer__inner {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  max-width: var(--content-default);
}
.disclaimer svg {
  width: 18px;
  height: 18px;
  color: var(--color-text-faint);
  flex-shrink: 0;
  margin-top: 2px;
}
.disclaimer p {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  line-height: 1.6;
}

.footer {
  padding-block: var(--space-10);
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}
.footer .brand__word {
  font-size: var(--text-base);
}
.footer__social {
  display: flex;
  gap: var(--space-2);
}
.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
}
.footer__social a svg {
  width: 16px;
  height: 16px;
}
.footer__social a:hover {
  color: var(--color-text);
  border-color: oklch(from var(--color-text) l c h / 0.3);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.footer__meta {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

/* ---------------------------------------------------------------- */
/* Utility                                                           */
/* ---------------------------------------------------------------- */

.text-primary {
  color: var(--color-primary);
}
