/* ==========================================================================
   Ponsloth — $PONSLOTH
   Premium exhibition-catalogue aesthetic for a hand-cast glass sloth.
   Two typefaces, restrained palette, slow deliberate motion.
   ========================================================================== */

/* -------------------------------------------------------------------------
   1. Tokens
------------------------------------------------------------------------- */
:root {
  /* Palette */
  --charcoal:        #101311;
  --charcoal-raise:  #171b18;
  --forest:          #123D30;
  --forest-bright:   #1B5A47;
  --forest-accent:   #39906F; /* forest-bright fails WCAG AA as small text on charcoal; use this for green accent text on dark backgrounds */
  --ivory:           #F3F0E8;
  --ivory-raise:     #ECE7DA;
  --stone:           #A6AAA3;
  --stone-on-light:  #5F6359; /* --stone fails WCAG AA on ivory backgrounds; use this instead for muted text on light sections */
  --border-soft:     rgba(255,255,255,0.14);
  --border-soft-dark:rgba(16,19,17,0.12);
  --white:           #FFFFFF;

  /* Type */
  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;

  /* Rhythm */
  --section-pad-y: clamp(4.5rem, 8vw, 8rem);
  --content-max: 1200px;
  --content-narrow: 720px;
  --radius-sm: 3px;

  /* Motion */
  --ease-slow: cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur-fade: 900ms;
}

/* -------------------------------------------------------------------------
   2. Reset & base
------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  margin: 0;
  color: inherit;
}

p { margin: 0; }

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

button {
  font-family: inherit;
  cursor: pointer;
}

ul, ol, dl { margin: 0; padding: 0; list-style: none; }
dd { margin: 0; }

.mono { font-family: var(--font-mono); }

/* Visually hidden but available to assistive tech */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--forest);
  color: var(--ivory);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  z-index: 1000;
  transition: top 200ms var(--ease-slow);
}
.skip-link:focus {
  top: 1rem;
}

/* Consistent, visible keyboard focus everywhere */
a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--forest-bright);
  outline-offset: 3px;
  border-radius: 2px;
}
.hero, .final-cta, .site-nav {
  /* dark backgrounds need a lighter focus ring for contrast */
}
.hero a:focus-visible,
.hero button:focus-visible,
.final-cta a:focus-visible,
.final-cta button:focus-visible,
.site-nav a:focus-visible,
.site-nav button:focus-visible {
  outline-color: var(--ivory);
}

.section-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
  margin: 0 0 1.1rem;
}
.hero .eyebrow,
.final-cta .section-label { color: var(--stone); }

.section-heading {
  font-size: clamp(1.9rem, 3.2vw, 2.75rem);
  max-width: 18ch;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

/* -------------------------------------------------------------------------
   3. Reveal-on-scroll (single deliberate treatment, reused everywhere)
------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--dur-fade) var(--ease-slow),
              transform var(--dur-fade) var(--ease-slow);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* -------------------------------------------------------------------------
   4. Buttons
------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: background-color 220ms ease, border-color 220ms ease, color 220ms ease, opacity 220ms ease;
}

.btn-buy {
  background: var(--forest);
  color: var(--ivory);
  border-color: var(--forest);
}
.btn-buy:hover { background: var(--forest-bright); border-color: var(--forest-bright); }

.btn-ghost {
  background: transparent;
  color: var(--ivory);
  border-color: var(--border-soft);
}
.btn-ghost:hover { border-color: var(--ivory); }

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--border-soft-dark);
}
.btn-outline:hover { border-color: var(--charcoal); }

.btn-large { padding: 1rem 2rem; font-size: 0.98rem; }
.btn-block { width: 100%; }

/*
 * A disabled control is never available to act on, so it should never
 * carry the visual weight of the primary action. Regardless of which
 * base button class it started from (.btn-buy, .btn-ghost, .btn-outline),
 * a disabled control collapses to the same quiet outline treatment used
 * elsewhere in that section — never a solid fill at reduced opacity,
 * which still reads as "the button to press."
 */
.is-disabled,
.btn[aria-disabled="true"],
.btn:disabled {
  background: transparent !important;
  color: var(--stone) !important;
  border-color: var(--border-soft) !important;
  cursor: not-allowed;
  pointer-events: none;
}
/* Light-background sections (ivory) need the dark-mode border/text instead. */
.token .is-disabled,
.token .btn[aria-disabled="true"],
.how-to-buy .btn-outline[aria-disabled="true"] {
  border-color: var(--border-soft-dark) !important;
}
span.is-disabled {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Copy buttons */
.copy-btn {
  background: transparent;
  border: 1px solid var(--border-soft);
  color: inherit;
  padding: 0.5rem 0.9rem;
  font-size: 0.78rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  letter-spacing: 0.03em;
  transition: border-color 200ms ease, background-color 200ms ease;
  flex-shrink: 0;
}
.copy-btn:hover:not(:disabled) { border-color: var(--ivory); background: rgba(255,255,255,0.06); }
.copy-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.copy-btn.is-copied .copy-btn-label::after { content: ''; }

.copy-btn--inline {
  border-color: var(--border-soft-dark);
  color: var(--charcoal);
  margin-left: 0.75rem;
}
.copy-btn--inline:hover:not(:disabled) { border-color: var(--charcoal); background: rgba(16,19,17,0.04); }

/* -------------------------------------------------------------------------
   5. Navigation
------------------------------------------------------------------------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(16,19,17,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
  color: var(--ivory);
}

.nav-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-wordmark {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--ivory);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: clamp(1.25rem, 2.4vw, 2.25rem);
  font-size: 0.9rem;
}
.nav-links a {
  color: var(--stone);
  transition: color 200ms ease;
  padding: 0.25rem 0;
  position: relative;
}
.nav-links a:hover { color: var(--ivory); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 1px;
  background: var(--ivory);
  transition: right 260ms var(--ease-slow);
}
.nav-links a:hover::after { right: 0; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
}

.nav-socials {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.icon-link {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-soft);
  border-radius: 50%;
  font-size: 0;
  color: transparent;
  position: relative;
  transition: border-color 200ms ease;
  flex-shrink: 0;
}
.icon-link:hover { border-color: var(--ivory); }
.icon-link::before {
  content: '';
  width: 14px;
  height: 14px;
  background: currentColor;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  color: var(--ivory);
}
.icon-link[data-icon="telegram"]::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M21.5 3.5 2.7 10.9c-1 .4-1 1.9.1 2.2l4.4 1.4 1.7 5.3c.2.7 1.1.9 1.6.4l2.5-2.4 4.6 3.4c.8.6 2 .2 2.2-.8l3.3-15.6c.2-1-.7-1.8-1.6-1.3ZM8.7 14l9.3-6.9-7.6 7.8-.3 3.1z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M21.5 3.5 2.7 10.9c-1 .4-1 1.9.1 2.2l4.4 1.4 1.7 5.3c.2.7 1.1.9 1.6.4l2.5-2.4 4.6 3.4c.8.6 2 .2 2.2-.8l3.3-15.6c.2-1-.7-1.8-1.6-1.3ZM8.7 14l9.3-6.9-7.6 7.8-.3 3.1z'/%3E%3C/svg%3E");
}
.icon-link[data-icon="x"]::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 3h4.3l4 5.5L16.8 3H20l-6.3 8.2L20.4 21h-4.3l-4.4-6-5 6H2.5l6.8-8.6L4 3Zm2.4 1.7 10.9 14.6h1.9L8.3 4.7H6.4Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 3h4.3l4 5.5L16.8 3H20l-6.3 8.2L20.4 21h-4.3l-4.4-6-5 6H2.5l6.8-8.6L4 3Zm2.4 1.7 10.9 14.6h1.9L8.3 4.7H6.4Z'/%3E%3C/svg%3E");
}
.icon-link.is-disabled { opacity: 0.4; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  padding: 0;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ivory);
  transition: transform 260ms var(--ease-slow), opacity 200ms ease;
  margin: 0 auto;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  border-top: 1px solid var(--border-soft);
  padding: 1.5rem clamp(1.25rem, 4vw, 2.5rem) 2rem;
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-bottom: 1.75rem;
}
.mobile-menu nav a {
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 1.35rem;
}
.mobile-menu-footer {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.mobile-menu-footer .nav-socials { justify-content: flex-start; }

/* -------------------------------------------------------------------------
   6. Hero
------------------------------------------------------------------------- */
.hero {
  background: var(--charcoal);
  color: var(--ivory);
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(3.5rem, 7vw, 6rem);
  position: relative;
}

.hero-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 1.5rem;
}

.hero-heading {
  font-size: clamp(2.6rem, 5.4vw, 4.1rem);
  letter-spacing: -0.01em;
  margin-bottom: 1.75rem;
}

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--stone);
  max-width: 46ch;
  margin-bottom: 2.5rem;
}

.hero-contract {
  margin-bottom: 2rem;
}
.hero-contract-ticker {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--forest-accent);
  margin-bottom: 0.6rem;
}
.hero-contract-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.75rem 0.7rem 1rem;
  max-width: 30rem;
}
.contract-value {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--ivory);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  letter-spacing: 0.01em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 3rem;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem 1rem;
  border-top: 1px solid var(--border-soft);
  padding-top: 1.75rem;
}
.hero-fact dt {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--ivory);
  margin-bottom: 0.3rem;
}
.hero-fact dd {
  font-size: 0.78rem;
  color: var(--stone);
  letter-spacing: 0.02em;
}

/* Mascot presentation */
.hero-figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.mascot-frame {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  overflow: hidden;
  background: radial-gradient(circle at 50% 42%, #14181a 0%, var(--charcoal) 72%);
  border: 1px solid var(--border-soft);
  will-change: transform;
}

.mascot-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 500ms var(--ease-slow);
}

.specimen-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
}
.specimen-label span:first-child { color: var(--ivory); }

/* -------------------------------------------------------------------------
   7. Marquee
------------------------------------------------------------------------- */
.marquee {
  background: var(--forest);
  color: var(--ivory);
  overflow: hidden;
  border-bottom: 1px solid var(--border-soft);
  border-top: 1px solid var(--border-soft);
}
.marquee-track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  padding: 0.85rem 0;
  animation: marquee-scroll 46s linear infinite;
}
.marquee-track span { padding-right: 0; }

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .marquee { overflow-x: auto; }
}

/* -------------------------------------------------------------------------
   8. Story
------------------------------------------------------------------------- */
.story {
  padding: var(--section-pad-y) 0;
  background: var(--ivory);
}
.story-inner { max-width: var(--content-max); }

.story-intro {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-style: italic;
  max-width: 42ch;
  color: var(--forest);
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}

.story-chapters {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 3rem);
  margin-bottom: clamp(3.5rem, 6vw, 5rem);
}

.story-chapter {
  border-top: 1px solid var(--border-soft-dark);
  padding-top: 1.5rem;
}
.chapter-number {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--forest);
  margin-bottom: 0.9rem;
  letter-spacing: 0.05em;
}
.story-chapter h3 {
  font-size: 1.4rem;
  margin-bottom: 0.85rem;
}
.story-chapter p {
  color: #3d423e;
  font-size: 0.97rem;
  line-height: 1.7;
  max-width: 34ch;
}

.pull-quote {
  margin: 0;
  padding: clamp(2rem, 4vw, 3rem) 0 0;
  border-top: 1px solid var(--border-soft-dark);
}
.pull-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  font-style: italic;
  max-width: 24ch;
  color: var(--charcoal);
  line-height: 1.35;
}
.pull-quote p::before { content: '\201C'; }
.pull-quote p::after { content: '\201D'; }

/* -------------------------------------------------------------------------
   9. Slow progress
------------------------------------------------------------------------- */
.progress-section {
  background: var(--ivory-raise);
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  border-top: 1px solid var(--border-soft-dark);
  border-bottom: 1px solid var(--border-soft-dark);
}
.progress-inner {
  max-width: var(--content-narrow);
  text-align: center;
}
.progress-title {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 1.5rem;
}
.progress-track {
  height: 3px;
  background: var(--border-soft-dark);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 1rem;
}
.progress-fill {
  height: 100%;
  width: 0.01%;
  min-width: 2px;
  background: var(--forest);
  transition: width 4000ms linear;
}
.progress-value {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.progress-caption {
  font-size: 0.85rem;
  color: var(--stone-on-light);
  font-style: italic;
}

/* -------------------------------------------------------------------------
   10. Token
------------------------------------------------------------------------- */
.token {
  padding: var(--section-pad-y) 0;
  background: var(--ivory);
}

.token-grid {
  border-top: 1px solid var(--border-soft-dark);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.token-row {
  display: grid;
  grid-template-columns: minmax(0, 240px) minmax(0, 1fr);
  gap: 1.5rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--border-soft-dark);
  align-items: baseline;
}
.token-row dt {
  font-size: 0.88rem;
  color: var(--stone-on-light);
}
.token-row dd {
  font-size: 1rem;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.token-row--contract dd { word-break: break-all; }

.token-note {
  max-width: 62ch;
  color: #3d423e;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* -------------------------------------------------------------------------
   11. How to Buy
------------------------------------------------------------------------- */
.how-to-buy {
  padding: var(--section-pad-y) 0;
  background: var(--forest);
  color: var(--ivory);
}
.how-to-buy .section-label { color: var(--stone); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.25rem);
  counter-reset: step;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
.step-card {
  border-top: 1px solid var(--border-soft);
  padding-top: 1.4rem;
}
.step-number {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--ivory);
  opacity: 0.65;
  margin-bottom: 0.9rem;
}
.step-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--ivory);
}
.step-card p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(243,240,232,0.78);
}

.how-to-buy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.how-to-buy .btn-outline {
  color: var(--ivory);
  border-color: var(--border-soft);
}
.how-to-buy .btn-outline:hover { border-color: var(--ivory); }

/* -------------------------------------------------------------------------
   12. Slowmap
------------------------------------------------------------------------- */
.slowmap {
  padding: var(--section-pad-y) 0;
  background: var(--ivory);
}
.slowmap-phases {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.75rem, 3vw, 2.25rem);
}
.slowmap-phase {
  border-top: 1px solid var(--border-soft-dark);
  padding-top: 1.4rem;
}
.slowmap-phase h3 {
  font-size: 1.15rem;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 1.1rem;
  color: var(--forest);
}
.slowmap-phase ul { display: flex; flex-direction: column; gap: 0.65rem; }
.slowmap-phase li {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #3d423e;
  padding-left: 1rem;
  position: relative;
}
.slowmap-phase li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  background: var(--stone);
  border-radius: 50%;
}

/* -------------------------------------------------------------------------
   13. FAQ
------------------------------------------------------------------------- */
.faq {
  padding: var(--section-pad-y) 0;
  background: var(--ivory);
}
.faq-inner { max-width: var(--content-narrow); }

.accordion {
  border-top: 1px solid var(--border-soft-dark);
}
.accordion-item {
  border-bottom: 1px solid var(--border-soft-dark);
}
.accordion-heading { margin: 0; }
.accordion-trigger {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.35rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--charcoal);
}
.accordion-icon {
  position: relative;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}
.accordion-icon::before,
.accordion-icon::after {
  content: '';
  position: absolute;
  background: var(--forest);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.accordion-icon::before { width: 12px; height: 1.4px; }
.accordion-icon::after { width: 1.4px; height: 12px; transition: transform 260ms var(--ease-slow); }
.accordion-trigger[aria-expanded="true"] .accordion-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

.accordion-panel {
  overflow: hidden;
  padding-bottom: 1.5rem;
}
.accordion-panel p {
  font-size: 0.96rem;
  line-height: 1.7;
  color: #3d423e;
  max-width: 58ch;
}

/* -------------------------------------------------------------------------
   14. Final CTA
------------------------------------------------------------------------- */
.final-cta {
  background: var(--charcoal);
  color: var(--ivory);
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  text-align: center;
}
.final-cta-inner {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.final-cta-mascot {
  width: 140px;
  height: 140px;
  object-fit: contain;
  border-radius: 6px;
  margin-bottom: 2rem;
  background: radial-gradient(circle at 50% 42%, #14181a 0%, var(--charcoal) 72%);
  border: 1px solid var(--border-soft);
}
.final-cta-heading {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
  max-width: 16ch;
}
.final-cta-sub {
  color: var(--stone);
  font-size: 1.02rem;
  max-width: 40ch;
  margin-bottom: 2.5rem;
}
.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}
.final-cta .btn-outline {
  color: var(--ivory);
  border-color: var(--border-soft);
}
.final-cta .btn-outline:hover { border-color: var(--ivory); }

/* -------------------------------------------------------------------------
   15. Footer
------------------------------------------------------------------------- */
.site-footer {
  background: var(--charcoal);
  color: var(--stone);
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 2rem;
  border-top: 1px solid var(--border-soft);
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--border-soft);
  margin-bottom: 2rem;
}
.footer-wordmark {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--ivory);
  margin-bottom: 0.5rem;
}
.footer-contract {
  font-size: 0.78rem;
  color: var(--stone);
  word-break: break-all;
  max-width: 26rem;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
  font-size: 0.88rem;
}
.footer-nav a:hover { color: var(--ivory); }

.footer-disclaimers {
  margin-bottom: 1.75rem;
}
.footer-disclaimers p {
  font-size: 0.78rem;
  line-height: 1.7;
  color: rgba(166,170,163,0.85);
  max-width: 90ch;
}

.footer-copyright {
  font-size: 0.78rem;
  color: var(--stone);
}

/* -------------------------------------------------------------------------
   16. Responsive
------------------------------------------------------------------------- */
@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-figure { order: -1; max-width: 340px; margin: 0 auto; }
  .story-chapters { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .slowmap-phases { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  .nav-links, .nav-right { display: none; }
  .nav-toggle { display: flex; }
}

@media (max-width: 640px) {
  .hero-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .story-chapters { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .slowmap-phases { grid-template-columns: 1fr; }
  .token-row { grid-template-columns: 1fr; gap: 0.35rem; }
  .hero-contract-row { max-width: 100%; }
  .footer-top { flex-direction: column; }
}
