/* ==========================================================================
   THE WEB PLUG — v3 "Editorial Voltage"
   Light, editorial, massive type. One accent. Thin rules. No noise.
   ========================================================================== */

:root {
  --bone: #f4f2ed;
  --ink: #111110;
  --lime: #d4ff3f;
  --muted: rgba(17, 17, 16, 0.58);
  --rule: rgba(17, 17, 16, 0.9);
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --pad: clamp(1.25rem, 4vw, 4rem);
  --nav-h: 72px;
}

/* ------------------------------------ reset ------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--bone);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { list-style: none; }
sup { font-size: 0.45em; vertical-align: super; }

::selection { background: var(--lime); color: var(--ink); }

/* ------------------------------------ cursor ----------------------------- */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--ink);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.25s ease, height 0.25s ease, background 0.25s ease, opacity 0.25s ease;
  opacity: 0;
  will-change: transform;
}
.cursor.is-active { opacity: 1; }
.cursor.is-hover { width: 44px; height: 44px; background: var(--lime); mix-blend-mode: multiply; }
@media (pointer: coarse), (max-width: 768px) { .cursor { display: none; } }

/* ------------------------------------ buttons ---------------------------- */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 1rem 1.9rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn-solid { background: var(--ink); color: var(--bone); }
.btn-solid:hover { background: var(--lime); color: var(--ink); border-color: var(--ink); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--bone); }
.btn-lime { background: var(--lime); color: var(--ink); border-color: var(--lime); }
.btn-lime:hover { background: var(--bone); border-color: var(--bone); }

/* ------------------------------------ nav -------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(244, 242, 237, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
  transform: translateY(0);
  transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
}
.nav.is-hidden { transform: translateY(-101%); }
.nav-inner {
  height: var(--nav-h);
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 100%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nav-logo sup { font-size: 0.5em; }
.nav-links { display: flex; gap: 2rem; }
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%; height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1);
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-right { display: flex; align-items: center; gap: 1rem; }
.nav-cta {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  transition: background 0.3s ease, color 0.3s ease;
}
.nav-cta:hover { background: var(--ink); color: var(--bone); }

.burger { display: none; flex-direction: column; gap: 6px; padding: 8px; }
.burger span { display: block; width: 26px; height: 2px; background: var(--ink); transition: transform 0.3s ease, opacity 0.3s ease; }
html.menu-open .burger span:first-child { transform: translateY(4px) rotate(45deg); }
html.menu-open .burger span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* mobile menu overlay */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 800;
  background: var(--bone);
  display: flex;
  align-items: center;
  padding: var(--pad);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
html.menu-open .menu-overlay { opacity: 1; visibility: visible; }
html.menu-open { overflow: hidden; }
.menu-links { display: flex; flex-direction: column; gap: 0.5rem; }
.menu-links a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 9vw, 3.5rem);
  letter-spacing: -0.03em;
  text-transform: uppercase;
  line-height: 1.1;
}
.menu-links .menu-mail {
  margin-top: 2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  text-decoration: underline;
}

/* ------------------------------------ section chrome --------------------- */
section { position: relative; }
.section-head {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}
.sec-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink);
  user-select: none;
}
.sec-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--rule);
}

/* highlight chip used in headlines */
.hl {
  font-style: normal;
  background: var(--lime);
  padding: 0 0.12em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.hl-dark { color: var(--ink); }

/* ------------------------------------ hero ------------------------------- */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--nav-h) + 3rem) var(--pad) 0;
}
.hero-inner { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--muted);
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3.5rem, 12vw, 11rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line-inner { display: inline-block; will-change: transform; }
.hero-title .line-indent { padding-left: clamp(2rem, 8vw, 10rem); }
.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: clamp(2rem, 5vh, 4rem);
}
.hero-sub {
  max-width: 34ch;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.5;
  color: var(--muted);
}
.hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.hero-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  margin-top: clamp(2rem, 5vh, 4rem);
  border-top: 1px solid var(--rule);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ------------------------------------ marquee ---------------------------- */
.marquee {
  overflow: hidden;
  background: var(--lime);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 0.9rem 0;
}
.marquee-track { display: flex; width: max-content; animation: marquee 24s linear infinite; }
.marquee-group { display: flex; align-items: center; flex-shrink: 0; }
.marquee-group span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.1rem, 2.4vw, 1.8rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee-group i { font-style: normal; padding: 0 1.5rem; font-size: 1rem; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ------------------------------------ manifesto -------------------------- */
.manifesto { padding: clamp(6rem, 14vh, 11rem) var(--pad); }
.manifesto-statement {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 5vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 20ch;
  margin-bottom: clamp(3rem, 7vw, 6rem);
}
.manifesto-statement .w { display: inline-block; }
.manifesto-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1.5rem, 4vw, 3.5rem);
  max-width: 1100px;
  margin-left: auto;
}
.manifesto-cols p {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--muted);
  border-top: 1px solid var(--rule);
  padding-top: 1.25rem;
}
.manifesto-cols .manifesto-kicker { color: var(--ink); font-weight: 600; }

/* ------------------------------------ how it works (pinned) -------------- */
.how { border-top: 1px solid var(--rule); }
.how-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(4rem, 8vh, 6rem) var(--pad);
  min-height: 100svh;
  align-content: center;
}
.how-head .section-head { margin-bottom: 2rem; }
.how-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.how-progress {
  margin-top: 2.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.how-progress #hiwCurrent { color: var(--ink); font-size: 1.6em; }

.hiw-steps {
  position: relative;
  overflow: hidden;
  border-left: 1px solid var(--rule);
  min-height: min(72vh, 680px);
}
.hiw-step {
  position: absolute;
  inset: 0;
  background: var(--bone);
  padding: clamp(1.5rem, 3vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  will-change: transform;
}
.hiw-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(5rem, 12vw, 11rem);
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink);
  margin-bottom: 1.5rem;
  user-select: none;
}
.hiw-step h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.6vw, 2.4rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.9rem;
}
.hiw-step p { max-width: 44ch; color: var(--muted); font-size: clamp(1rem, 1.2vw, 1.15rem); }

@media (max-width: 899px) {
  .how-grid { grid-template-columns: 1fr; min-height: 0; }
  .how-progress { display: none; }
  .hiw-steps { overflow: visible; border-left: 0; min-height: 0; }
  .hiw-step {
    position: static;
    padding: 2rem 0;
    border-top: 1px solid var(--rule);
  }
}

/* ------------------------------------ stats ------------------------------ */
.stats { border-top: 1px solid var(--rule); background: var(--ink); color: var(--bone); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: clamp(2.5rem, 5vw, 4.5rem) var(--pad);
  border-right: 1px solid rgba(244, 242, 237, 0.25);
}
.stat:last-child { border-right: 0; }
.stat-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 1;
  letter-spacing: -0.04em;
}
.stat-suffix { color: var(--lime); font-size: 0.55em; margin-left: 0.05em; }
.stat-label {
  margin-top: 0.9rem;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(244, 242, 237, 0.6);
}
@media (max-width: 899px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n + 2) { border-bottom: 1px solid rgba(244, 242, 237, 0.25); }
}

/* ------------------------------------ packages (horizontal) -------------- */
.packages { border-top: 1px solid var(--rule); overflow: hidden; }
.pkg-head {
  padding: clamp(3.5rem, 7vh, 5.5rem) var(--pad) 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.pkg-head .section-head { margin-bottom: 0; }
.pkg-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 6vw, 5.5rem);
  letter-spacing: -0.04em;
  line-height: 0.95;
  text-transform: uppercase;
}
.pkg-hint {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.pkg-viewport { padding: clamp(2.5rem, 5vh, 4rem) var(--pad) clamp(3.5rem, 7vh, 5.5rem); }
.pkg-track {
  display: flex;
  gap: clamp(1.25rem, 2.5vw, 2.5rem);
  width: max-content;
  will-change: transform;
}
.pkg-card {
  position: relative;
  width: min(420px, 82vw);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--rule);
  background: var(--bone);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  transition: transform 0.4s ease;
}
.pkg-card:hover { transform: translateY(-6px); }
.pkg-card--featured { background: var(--ink); color: var(--bone); }
.pkg-card--featured .pkg-blurb,
.pkg-card--featured .pkg-setup { color: rgba(244, 242, 237, 0.6); }
.pkg-card--featured .pkg-feats li { border-color: rgba(244, 242, 237, 0.25); }
.pkg-card--featured .pkg-feats li::before { color: var(--lime); }
.pkg-flag {
  position: absolute;
  top: -1px; right: -1px;
  background: var(--lime);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.45rem 0.9rem;
}
.pkg-tier {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.pkg-blurb { margin-top: 0.4rem; font-size: 0.95rem; color: var(--muted); max-width: 30ch; }
.pkg-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3.2rem, 5.5vw, 4.8rem);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-top: 1.75rem;
}
.pkg-price span { font-size: 0.32em; font-weight: 500; letter-spacing: 0; }
.pkg-setup { font-size: 0.85rem; color: var(--muted); margin-top: 0.4rem; }
.pkg-feats { margin: 1.75rem 0 2rem; flex: 1; }
.pkg-feats li {
  padding: 0.7rem 0 0.7rem 1.4rem;
  border-top: 1px solid rgba(17, 17, 16, 0.25);
  font-size: 0.92rem;
  position: relative;
}
.pkg-feats li::before {
  content: "→";
  position: absolute;
  left: 0;
  font-family: var(--font-display);
}
.pkg-btn { text-align: center; }
.pkg-card--featured .btn-solid { background: var(--lime); color: var(--ink); border-color: var(--lime); }
.pkg-card--featured .btn-solid:hover { background: var(--bone); border-color: var(--bone); }

@media (max-width: 899px) {
  .pkg-hint { display: none; }
  .pkg-track { flex-direction: column; width: 100%; }
  .pkg-card { width: 100%; }
}

/* ------------------------------------ included --------------------------- */
.included { border-top: 1px solid var(--rule); padding: clamp(5rem, 12vh, 9rem) var(--pad); }
.inc-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 4.5vw, 4rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
}
.inc-list { border-bottom: 1px solid var(--rule); }
.inc-row {
  display: grid;
  grid-template-columns: 4rem minmax(0, 4fr) minmax(0, 6fr) 3rem;
  align-items: baseline;
  gap: 1.5rem;
  padding: 1.6rem 0.75rem;
  border-top: 1px solid var(--rule);
  transition: background 0.35s ease, color 0.35s ease, padding-left 0.35s ease;
}
.inc-num { font-family: var(--font-display); font-weight: 500; font-size: 0.9rem; color: var(--muted); }
.inc-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.inc-desc { font-size: 0.95rem; color: var(--muted); }
.inc-arrow {
  font-family: var(--font-display);
  font-size: 1.4rem;
  justify-self: end;
  transition: transform 0.35s ease;
}
.inc-row:hover { background: var(--ink); color: var(--bone); padding-left: 1.5rem; }
.inc-row:hover .inc-num { color: var(--lime); }
.inc-row:hover .inc-desc { color: rgba(244, 242, 237, 0.65); }
.inc-row:hover .inc-arrow { transform: translateX(8px); color: var(--lime); }
@media (max-width: 768px) {
  .inc-row { grid-template-columns: 3rem 1fr 2rem; }
  .inc-desc { grid-column: 2 / 3; grid-row: 2; }
  .inc-arrow { grid-row: 1; }
}

/* ------------------------------------ faq -------------------------------- */
.faq { border-top: 1px solid var(--rule); padding: clamp(5rem, 12vh, 9rem) var(--pad); }
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.faq-head { position: sticky; top: calc(var(--nav-h) + 2rem); }
.faq-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.6rem);
  letter-spacing: -0.03em;
  line-height: 1.03;
  text-transform: uppercase;
}
.faq-list { border-bottom: 1px solid var(--rule); }
.faq-item { border-top: 1px solid var(--rule); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  text-align: left;
  padding: 1.4rem 0.25rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.05rem, 1.8vw, 1.4rem);
  letter-spacing: -0.01em;
}
.faq-icon {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1;
  transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1);
  flex-shrink: 0;
}
.faq-item.is-open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.65, 0, 0.35, 1);
}
.faq-a p {
  padding: 0 0.25rem 1.5rem;
  max-width: 58ch;
  color: var(--muted);
}
@media (max-width: 899px) {
  .faq-grid { grid-template-columns: 1fr; }
  .faq-head { position: static; }
}

/* ------------------------------------ big cta ---------------------------- */
.cta {
  min-height: 100svh;
  background: var(--ink);
  color: var(--bone);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(4rem, 10vh, 7rem) var(--pad);
  border-top: 1px solid var(--rule);
}
.cta-eyebrow {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(244, 242, 237, 0.6);
  margin-bottom: clamp(1.5rem, 4vh, 3rem);
}
.cta-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(4.5rem, 20vw, 18rem);
  line-height: 0.88;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}
.cta-title .line { display: block; overflow: hidden; }
.cta-title .line-inner { display: inline-block; will-change: transform; }
.cta-btn { margin-top: clamp(2.5rem, 6vh, 4.5rem); font-size: clamp(0.9rem, 1.4vw, 1.15rem); padding: 1.2rem 2.4rem; }
.cta-note {
  margin-top: 1.75rem;
  font-size: 0.9rem;
  color: rgba(244, 242, 237, 0.55);
}

/* ------------------------------------ footer ----------------------------- */
.footer { background: var(--ink); color: var(--bone); padding: 0 var(--pad); }
.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem;
  padding: clamp(2.5rem, 6vh, 4rem) 0;
  border-top: 1px solid rgba(244, 242, 237, 0.25);
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
}
.footer-tag { font-size: 0.95rem; color: rgba(244, 242, 237, 0.6); }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; align-items: flex-start; }
.footer-links a {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.3s ease;
}
.footer-links a:hover { color: var(--lime); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(244, 242, 237, 0.25);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(244, 242, 237, 0.55);
}
@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* ------------------------------------ responsive nav --------------------- */
@media (max-width: 899px) {
  .nav-inner { gap: 0.875rem; }
  .nav-logo { max-width: calc(100% - 56px); }
  .nav-links { display: none; }
  .burger { display: flex; }
}
@media (max-width: 480px) {
  .nav-cta { display: none; }
  .hero-meta span:nth-child(2) { display: none; }
}

/* ------------------------------------ reduced motion --------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  .cursor { display: none; }
}
