/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:        #f7efe4;
  --bg-2:      #efe1cf;
  --paper:     #fffaf2;
  --ink:       #241f1c;
  --ink-soft:  #3a322c;
  --ink-mute:  #7d7167;
  --accent:    #b4604f;
  --accent-2:  #e2a89b;
  --sky:       #6fa3c4;
  --line:      rgba(36,31,28,0.12);
  --line-soft: rgba(36,31,28,0.07);

  --serif: "Fraunces", "Iowan Old Style", ui-serif, Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in:   cubic-bezier(0.7, 0, 0.84, 0);

  --nav-h: 76px;
}

@property --mesh-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  overflow-x: clip;
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.05; letter-spacing: -0.01em; font-family: var(--serif); font-weight: 500; }
ul { list-style: none; padding: 0; }
::selection { background: var(--accent); color: var(--paper); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =============================================================
   3. Utilities
   ============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 9999;
  padding: .7rem 1.1rem; background: var(--ink); color: var(--paper);
  border-radius: 8px; font-weight: 600; font-size: .9rem;
  transition: top .3s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

.container {
  width: min(1180px, 100% - 3rem);
  margin-inline: auto;
}
@media (min-width: 960px) {
  .container { width: min(1180px, 100% - 6rem); }
}

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .78rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 4px rgba(180,96,79,0.16);
}

.section { position: relative; padding-block: clamp(4rem, 9vw, 7.5rem); }
.section-head { max-width: 46ch; margin-bottom: clamp(2.4rem, 5vw, 3.6rem); }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); margin-top: .7rem; }
.section-head .eyebrow { margin-bottom: .2rem; }

[data-reveal] {
  opacity: 0; transform: translateY(36px);
  transition: opacity .85s var(--ease-soft), transform .85s var(--ease-soft);
}
[data-reveal].is-revealed { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }

/* =============================================================
   4. Buttons
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .95rem 1.7rem;
  border-radius: 999px;
  font-weight: 600; font-size: .96rem;
  box-shadow: 0 4px 14px rgba(36,31,28,0.08), 0 1px 3px rgba(36,31,28,0.06);
  transition: transform .45s var(--ease-soft), box-shadow .45s var(--ease-soft), background-color .3s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); transition-duration: .12s; }

.btn-primary {
  background: var(--ink); color: var(--paper);
}
.btn-primary:hover {
  box-shadow: 0 22px 46px rgba(36,31,28,0.22), 0 10px 20px rgba(180,96,79,0.2);
}

.btn-ghost {
  background: transparent; color: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--line);
}
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--ink); }

.btn-block { width: 100%; }

.has-magnetic { display: inline-flex; position: relative; isolation: isolate; }
.magnetic-inner {
  display: inline-flex; align-items: center; justify-content: center; gap: inherit;
  will-change: transform;
  transition: transform .8s var(--ease-soft);
}

/* =============================================================
   5. Custom cursor
   ============================================================= */
.cursor {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  display: none;
  mix-blend-mode: difference;
  opacity: 0;
  transition: opacity .25s var(--ease-out);
}
.cursor.is-ready { opacity: 1; }
@media (hover: hover) and (pointer: fine) { .cursor { display: block; } }
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; pointer-events: none; will-change: transform;
}
.cursor-dot { width: 6px; height: 6px; margin: -3px; background: var(--paper); border-radius: 50%; }
.cursor-ring {
  width: 34px; height: 34px; margin: -17px; border: 1px solid var(--paper); border-radius: 50%;
  transition: width .35s var(--ease-out), height .35s var(--ease-out), margin .35s var(--ease-out);
}
.cursor.is-interactive .cursor-ring { width: 52px; height: 52px; margin: -26px; }
.has-cursor, .has-cursor a, .has-cursor button { cursor: none; }

/* =============================================================
   6. Nav
   ============================================================= */
.nav {
  position: fixed; top: 0; inset-inline: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background-color .4s var(--ease-out), backdrop-filter .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.nav.is-scrolled {
  background: rgba(247,239,228,0.86);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  box-shadow: 0 1px 0 var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-logo img { height: 44px; width: auto; }
.nav-links {
  display: none; align-items: center; gap: 2.2rem;
}
.nav-links a {
  position: relative; font-size: .92rem; font-weight: 500; color: var(--ink-soft);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -4px; height: 1px;
  background: var(--accent); transition: right .35s var(--ease-out);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { right: 0; }
@media (min-width: 960px) { .nav-links { display: flex; } }

.nav-cta { display: none; }
@media (min-width: 720px) { .nav-cta { display: inline-flex; padding: .7rem 1.4rem; font-size: .88rem; } }

.nav-burger {
  position: relative; width: 42px; height: 42px;
  border-radius: 50%;
}
.nav-burger span {
  position: absolute; left: 50%; top: 50%; display: block; width: 20px; height: 1.5px; background: var(--ink);
  transform: translate(-50%, -50%) translateY(var(--ty, 0));
  transition: transform .3s var(--ease-out), opacity .2s;
}
.nav-burger span:nth-child(1) { --ty: -6.5px; }
.nav-burger span:nth-child(3) { --ty: 6.5px; }
@media (min-width: 960px) { .nav-burger { display: none; } }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translate(-50%, -50%) rotate(-45deg); }

.nav-mobile {
  position: fixed; inset: 0; z-index: 95;
  background: var(--bg);
  display: grid; place-items: center;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .6s var(--ease-soft);
}
.nav-mobile[data-open="true"] { clip-path: inset(0); }
.nav-mobile-list { display: grid; gap: 1.6rem; text-align: center; }
.nav-mobile-list a { font-family: var(--serif); font-size: 1.9rem; font-style: italic; }
.nav-mobile .btn { margin-top: 1rem; }

/* =============================================================
   7. Hero
   ============================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid; align-content: center;
  padding-top: calc(var(--nav-h) + 2.5rem);
  padding-bottom: 3rem;
  overflow: clip;
}
.hero-halo {
  position: absolute; inset: -30% -10% -10% -10%;
  background:
    radial-gradient(42% 34% at 22% 24%, rgba(180,96,79,0.22), transparent 72%),
    radial-gradient(38% 30% at 82% 12%, rgba(111,163,196,0.18), transparent 70%);
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; gap: clamp(2.6rem, 5vw, 3.5rem);
}
@media (min-width: 960px) {
  .hero-inner { grid-template-columns: 1.05fr 0.95fr; align-items: center; }
}
.hero-content .eyebrow { margin-bottom: 1.1rem; }
.hero-title {
  font-size: clamp(2.6rem, 5.6vw, 4.4rem);
  line-height: .98;
}
.hero-title em { color: var(--accent); font-style: italic; }
.hero-sub {
  margin-top: 1.4rem;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 46ch;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: .9rem;
  margin-top: 2.1rem;
}
.hero-note {
  margin-top: 1.6rem; font-size: .84rem; color: var(--ink-mute);
  display: flex; align-items: center; gap: .5rem;
}
.hero-note svg { width: 15px; height: 15px; flex-shrink: 0; }

/* Hero calendar mockup */
.hero-mock { perspective: 1400px; }
.mock-window {
  background: var(--paper);
  border-radius: 22px;
  box-shadow:
    0 60px 100px -30px rgba(36,31,28,0.28),
    0 20px 40px -18px rgba(180,96,79,0.22),
    0 0 0 1px var(--line-soft);
  overflow: hidden;
  transform: rotateY(-6deg) rotateX(3deg);
  transition: transform .8s var(--ease-soft);
}
@media (min-width: 960px) { .hero-mock:hover .mock-window { transform: rotateY(-2deg) rotateX(1deg); } }
.mock-bar {
  display: flex; gap: 7px; padding: .9rem 1.1rem;
  background: var(--bg-2);
}
.mock-bar span { width: 10px; height: 10px; border-radius: 50%; background: rgba(36,31,28,0.14); }
.mock-app { padding: 1.3rem 1.3rem 1.5rem; }
.mock-app-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.mock-avatars { display: flex; }
.mock-avatar {
  width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
  font-size: .78rem; font-weight: 700; color: var(--paper);
  border: 2px solid var(--paper);
}
.mock-avatar.b { margin-left: -10px; }
.mock-avatar.a { background: var(--accent); }
.mock-avatar.b { background: var(--sky); }
.mock-month { font-family: var(--serif); font-style: italic; font-size: 1.05rem; color: var(--ink); }
.mock-month b { font-style: normal; color: var(--ink-mute); font-weight: 500; }

.mock-grid {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px;
}
.mock-dow {
  text-align: center; font-size: .62rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--ink-mute); padding-bottom: .35rem;
}
.mock-cell {
  aspect-ratio: 1; border-radius: 8px; background: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
  padding: 4px 0 0; font-size: .68rem; color: var(--ink-mute);
  position: relative;
}
.mock-cell.is-out { opacity: .35; }
.mock-cell.is-today { box-shadow: inset 0 0 0 1.5px var(--accent); color: var(--ink); font-weight: 700; }
.mock-dot { width: 5px; height: 5px; border-radius: 50%; margin-top: 3px; }
.mock-cell.cat-a .mock-dot { background: var(--accent); }
.mock-cell.cat-b .mock-dot { background: var(--sky); }
.mock-cell.cat-c .mock-dot { background: #8a9c6e; }

.mock-chip {
  position: absolute; left: 50%; bottom: -11px; transform: translateX(-50%);
  white-space: nowrap; font-size: .58rem; font-weight: 600; padding: 2px 6px;
  border-radius: 999px; color: var(--paper); z-index: 2;
  box-shadow: 0 6px 14px rgba(36,31,28,0.18);
}
.mock-chip.tone-a { background: var(--accent); }
.mock-chip.tone-b { background: var(--sky); }

/* =============================================================
   8. Marquee
   ============================================================= */
.marquee {
  overflow: hidden; position: relative; padding-block: 1.6rem; border-block: 1px solid var(--line);
  display: flex; flex-wrap: nowrap; align-items: center; gap: 2.4rem;
}
.marquee::before, .marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2; pointer-events: none;
}
.marquee::before { left: 0;  background: linear-gradient(90deg, var(--bg), transparent); }
.marquee::after  { right: 0; background: linear-gradient(270deg, var(--bg), transparent); }
.marquee-track { display: inline-flex; gap: 2.4rem; white-space: nowrap; will-change: transform; }
.marquee-track span {
  font-family: var(--serif); font-style: italic; font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  color: var(--ink-mute); display: inline-flex; align-items: center; gap: 2.4rem;
}
.marquee-track span::after { content: "·"; color: var(--accent-2); }

/* =============================================================
   9. Manifesto / por qué
   ============================================================= */
.manifesto-grid {
  display: grid; gap: 2.2rem;
}
@media (min-width: 720px) {
  .manifesto-grid { grid-template-columns: 0.9fr 1.6fr; gap: 3.5rem; align-items: start; }
}
.manifesto-num {
  font-family: var(--serif); font-style: italic; font-size: 4.2rem; color: var(--accent-2); line-height: 1;
}
.manifesto-text p {
  font-size: clamp(1.15rem, 2vw, 1.5rem); line-height: 1.5; color: var(--ink-soft);
}
.manifesto-text p + p { margin-top: 1.2rem; }
.manifesto-text em { font-style: italic; color: var(--ink); }

/* =============================================================
   10. Bento features
   ============================================================= */
.bento {
  display: grid; gap: 1.1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .bento { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) {
  .bento {
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 230px;
  }
  .bento .card:nth-child(1) { grid-column: span 7; grid-row: span 2; }
  .bento .card:nth-child(2) { grid-column: span 5; grid-row: span 1; }
  .bento .card:nth-child(3) { grid-column: span 5; grid-row: span 1; }
  .bento .card:nth-child(4) { grid-column: span 4; grid-row: span 1; }
  .bento .card:nth-child(5) { grid-column: span 4; grid-row: span 1; }
  .bento .card:nth-child(6) { grid-column: span 4; grid-row: span 1; }
}
.card {
  position: relative;
  border-radius: 20px;
  padding: 1.9rem;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden;
  transition: box-shadow .5s var(--ease-soft);
  --rx: 0deg; --ry: 0deg;
  transform: perspective(1000px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
}
.has-tilt { transition: transform .55s var(--ease-soft), box-shadow .5s var(--ease-soft); }
.has-tilt:hover { transition-duration: .15s; }
.card-icon { position: relative; z-index: 1; width: 38px; height: 38px; margin-bottom: 1.1rem; transform: translateZ(30px); }
.card h3 { position: relative; z-index: 1; font-size: 1.28rem; transform: translateZ(30px); }
.card p { position: relative; z-index: 1; margin-top: .6rem; color: var(--ink-mute); font-size: .96rem; max-width: 34ch; transform: translateZ(20px); }

.card-icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.4; }

.card.tone-accent { background: linear-gradient(155deg, #c46f5c 0%, var(--accent) 100%); color: var(--paper); }
.card.tone-accent p { color: rgba(255,250,242,0.82); }
.card.tone-ink { background: var(--ink); color: var(--paper); }
.card.tone-ink p { color: rgba(255,250,242,0.68); }
.card.tone-soft { background: var(--paper); color: var(--ink); box-shadow: inset 0 0 0 1px var(--line); }
.card.tone-soft p { color: var(--ink-mute); }

.card:hover {
  box-shadow:
    0 46px 90px -24px rgba(36,31,28,0.32),
    0 0 0 1px rgba(180,96,79,0.18);
}

/* =============================================================
   11. Steps
   ============================================================= */
.steps {
  display: grid; gap: 2.4rem;
  counter-reset: step;
}
@media (min-width: 720px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step-num {
  font-family: var(--serif); font-style: italic; font-size: 2.6rem; color: var(--accent);
  margin-bottom: .8rem;
}
.step h3 { font-size: 1.3rem; margin-bottom: .55rem; }
.step p { color: var(--ink-mute); }

/* =============================================================
   12. Waitlist / acceso anticipado
   ============================================================= */
.access {
  position: relative;
  border-radius: 28px;
  background: var(--ink);
  color: var(--paper);
  padding: clamp(2.6rem, 6vw, 4.6rem);
  overflow: hidden;
}
.access-mesh {
  position: absolute; inset: -20%;
  background:
    radial-gradient(38% 45% at 18% 20%, rgba(180,96,79,0.55), transparent 68%),
    radial-gradient(34% 40% at 84% 78%, rgba(111,163,196,0.45), transparent 68%);
  filter: blur(80px) saturate(140%);
  animation: meshDrift 26s ease-in-out infinite;
  z-index: 0;
}
@keyframes meshDrift {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50%      { transform: scale(1.18) rotate(8deg); }
}
.access-inner { position: relative; z-index: 1; display: grid; gap: 2.4rem; }
@media (min-width: 900px) { .access-inner { grid-template-columns: 1fr 1fr; align-items: center; } }
.access-copy .eyebrow { color: var(--accent-2); }
.access-copy .eyebrow::before { background: var(--accent-2); box-shadow: 0 0 0 4px rgba(226,168,155,0.2); }
.access-copy h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin-top: .8rem; }
.access-copy p { margin-top: 1.1rem; color: rgba(255,250,242,0.75); max-width: 42ch; }

.access-form-wrap { position: relative; }
.cta-form { display: grid; gap: .8rem; transition: opacity .55s var(--ease-out), transform .55s var(--ease-soft); }
.field-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}
.cta-form.is-sent { opacity: 0; transform: translateY(-12px); pointer-events: none; }
.field { position: relative; }
.field input {
  width: 100%; padding: 1.35rem 1.1rem .55rem; border-radius: 12px; border: 1px solid rgba(255,250,242,0.25);
  background: rgba(255,250,242,0.06); color: var(--paper); font-size: 1rem;
}
.field input::placeholder { color: transparent; }
.field label {
  position: absolute; left: 1.1rem; top: 50%; transform: translateY(-50%);
  pointer-events: none; transition: all .25s var(--ease-out);
  color: rgba(255,250,242,0.55); font-size: 1rem;
}
.field input:focus + label,
.field input:not(:placeholder-shown) + label {
  top: .58rem; transform: none; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
}
.field input:focus { outline: none; border-color: var(--accent-2); }

.cta-submit { position: relative; margin-top: .4rem; background: var(--paper); color: var(--ink); }
.cta-form-label { transition: opacity .2s; }
.cta-form-spinner, .cta-form-check {
  position: absolute; inset: 0; display: grid; place-items: center;
  opacity: 0; pointer-events: none;
}
.cta-form.is-sending .cta-form-label { opacity: 0; }
.cta-form.is-sending .cta-form-spinner { opacity: 1; }
.cta-form-spinner::after {
  content: ""; width: 18px; height: 18px;
  border: 1.5px solid rgba(36,31,28,0.2); border-top-color: var(--ink);
  border-radius: 50%; animation: spin .9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.cta-form-privacy { margin-top: .9rem; font-size: .78rem; color: rgba(255,250,242,0.5); }

.cta-success {
  position: absolute; inset: 0; display: grid; place-items: center; text-align: center; gap: .6rem;
  opacity: 0; pointer-events: none;
  transition: opacity .8s var(--ease-out) .2s, transform .9s var(--ease-soft) .2s;
  transform: translateY(10px);
}
.cta-success.is-visible { opacity: 1; pointer-events: auto; transform: none; }
.cta-success h3 { font-size: 1.5rem; }
.cta-success p { color: rgba(255,250,242,0.7); font-size: .95rem; }
.cta-success svg { width: 46px; height: 46px; margin-inline: auto; color: var(--accent-2); }
.cta-success svg path {
  stroke: currentColor; stroke-width: 2; fill: none;
  stroke-dasharray: 1; stroke-dashoffset: 1;
  transition: stroke-dashoffset .6s var(--ease-out) .3s;
}
.cta-success.is-visible svg path { stroke-dashoffset: 0; }

/* =============================================================
   13. FAQ
   ============================================================= */
.faq-list { display: grid; gap: .75rem; max-width: 780px; }
.faq-item {
  border-radius: 16px; background: var(--paper);
  box-shadow: inset 0 0 0 1px var(--line);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.25rem 1.5rem; font-weight: 600; font-size: 1.02rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus {
  flex-shrink: 0; width: 22px; height: 22px; position: relative;
}
.faq-plus::before, .faq-plus::after {
  content: ""; position: absolute; top: 50%; left: 50%; background: var(--ink);
  transition: transform .3s var(--ease-out), opacity .3s;
}
.faq-plus::before { width: 14px; height: 1.5px; transform: translate(-50%, -50%); }
.faq-plus::after { width: 1.5px; height: 14px; transform: translate(-50%, -50%); }
.faq-item[open] .faq-plus::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-item p { padding: 0 1.5rem 1.35rem; color: var(--ink-mute); max-width: 60ch; }

/* =============================================================
   14. Footer
   ============================================================= */
.footer { border-top: 1px solid var(--line); padding-block: 3.2rem; }
.footer-top { display: grid; gap: 2.2rem; }
@media (min-width: 720px) { .footer-top { grid-template-columns: 1.2fr 1fr 1fr; } }
.footer-brand img { height: 26px; margin-bottom: .9rem; }
.footer-brand p { color: var(--ink-mute); max-width: 34ch; font-size: .92rem; }
.footer-col h4 { font-family: var(--sans); font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-mute); margin-bottom: .9rem; }
.footer-col ul { display: grid; gap: .6rem; }
.footer-col a { font-size: .95rem; color: var(--ink-soft); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  margin-top: 2.6rem; padding-top: 1.6rem; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  font-size: .82rem; color: var(--ink-mute);
}

/* =============================================================
   15. Responsive helpers
   ============================================================= */
@media (max-width: 719px) {
  .mock-dow:nth-child(n+1) { font-size: .58rem; }
}

/* =============================================================
   16. Reduced motion — only truly intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .access-mesh { animation: none; }
  .cursor { display: none !important; }
}
