/* ============================================================
   Alt Ordo Landing Page  (v5: elegant dark solarpunk)
   Deep forest night · ivory · sun gold · leaf · warm silver
   ============================================================ */

:root {
  color-scheme: only dark;
  --bg: #0b1511;
  --bg-2: #0d1a14;
  --panel: #10231b;
  --panel-2: #142b20;
  --forest: #0e2a1d;
  --leaf: #58b47c;
  --leaf-soft: #a9d3a0;
  --gold: #a9d3a0;
  --gold-2: #8cc287;
  --sun: #e8b64c;
  --sun-2: #d9a232;
  --silver: #a4a599;
  --ochre: #6f9c74;
  --ivory: #ede9da;
  --muted: #97a598;
  --line: rgba(237, 233, 218, 0.1);
  --line-soft: rgba(237, 233, 218, 0.06);
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.6);
  --font-display: "Space Grotesk", "Inter", sans-serif;
  --font-serif: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --nav-h: 68px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 12px); }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ivory);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

.container { width: min(1160px, 100% - 48px); margin-inline: auto; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ivory);
}
h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); margin-bottom: 0.6em; }
h2 em, .hero__title em { font-family: var(--font-serif); font-style: italic; font-weight: 500; color: var(--gold); letter-spacing: 0; }
h3 { font-size: 1.2rem; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--leaf);
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: currentColor; opacity: 0.7; }
.eyebrow--light { color: var(--gold); }

/* ---------- Brand mark ---------- */
.mark { width: 20px; height: 20px; flex: 0 0 auto; }
.m-badge { fill: var(--gold); }
.m-tri { fill: var(--bg); }
.m-dot { fill: var(--sun); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.94rem;
  letter-spacing: 0.01em;
  padding: 13px 26px;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease, color 0.16s ease, border-color 0.16s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--lg { padding: 16px 32px; font-size: 1rem; }

.btn--primary, .btn--sun { background: var(--gold); color: #0d1f16; }
.btn--primary:hover, .btn--sun:hover { background: var(--gold-2); box-shadow: 0 12px 32px -12px rgba(169, 211, 160, 0.55); }

.btn--outline { background: transparent; color: var(--ivory); border-color: var(--line); }
.btn--outline:hover { border-color: var(--gold); color: var(--gold); background: rgba(169, 211, 160, 0.05); }

.btn--outline-light { background: transparent; color: var(--ivory); border-color: var(--line); }
.btn--outline-light:hover { border-color: var(--ivory); background: rgba(237, 233, 218, 0.06); }

.btn--block { width: 100%; }

.link-btn {
  background: none; border: none; padding: 0; cursor: pointer;
  font: inherit; font-weight: 600; color: var(--leaf);
  text-decoration: underline; text-underline-offset: 3px;
}
.link-btn:hover { color: var(--gold); }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(11, 21, 17, 0.75);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease;
}
.nav.is-scrolled { border-bottom-color: var(--line-soft); }

.nav__inner {
  width: min(1280px, 100% - 40px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.18em;
  color: var(--ivory);
  text-decoration: none;
}
.nav__mark { width: 26px; height: 26px; }

.nav__links { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.nav__links a {
  font-family: var(--font-display);
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  padding: 8px 11px;
  border-radius: 8px;
  transition: color 0.15s ease, background 0.15s ease;
}
.nav__links a:hover { color: var(--ivory); background: rgba(237, 233, 218, 0.05); }
.nav__substack { color: var(--leaf) !important; font-weight: 600 !important; }

.nav__cta {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: #0d1f16;
  background: var(--gold);
  border: none;
  border-radius: 9px;
  padding: 10px 20px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.16s ease, transform 0.16s ease;
}
.nav__cta:hover { background: var(--gold-2); transform: translateY(-1px); }

.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; cursor: pointer; }
.nav__burger span { width: 22px; height: 2px; background: var(--ivory); border-radius: 2px; transition: transform 0.2s ease, opacity 0.2s ease; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: calc(var(--nav-h) + 90px) 0 100px;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(180deg, #0a130f 0%, var(--bg) 55%, var(--bg-2) 100%);
}
.hero__grid-lines {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(169, 211, 160, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(169, 211, 160, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(237, 233, 218, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(237, 233, 218, 0.03) 1px, transparent 1px);
  background-size: 76px 76px, 76px 76px, 19px 19px, 19px 19px;
  mask-image: radial-gradient(1100px 700px at 50% 0%, black 25%, transparent 72%);
  -webkit-mask-image: radial-gradient(1100px 700px at 50% 0%, black 25%, transparent 72%);
}
.hero__glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(720px 400px at 50% -10%, rgba(169, 211, 160, 0.15), transparent 62%),
    radial-gradient(900px 520px at 6% 105%, rgba(88, 180, 124, 0.1), transparent 60%),
    radial-gradient(900px 520px at 94% 105%, rgba(88, 180, 124, 0.07), transparent 60%);
}
.hero__orns { position: absolute; inset: 0; pointer-events: none; }
.hero__orns svg, .hero__orns img {
  filter: brightness(1.25) drop-shadow(0 0 14px rgba(169, 211, 160, 0.28));
}
.hero__emblem {
  position: absolute;
  top: 26%;
  left: clamp(-140px, -4vw, -40px);
  width: min(400px, 34vw);
  opacity: 0.17;
  animation: emblem3d 24s ease-in-out infinite;
}
.hero__owl {
  position: absolute;
  top: 3.5%;
  right: 16%;
  width: min(250px, 22vw);
  opacity: 0.22;
  animation: bob 9s ease-in-out infinite;
}
.hero__ring {
  position: absolute;
  border: 1px dashed rgba(232, 182, 76, 0.22);
  border-radius: 50%;
}
.hero__ring--a { width: 240px; height: 240px; left: -90px; top: 34%; animation: spinSlow 80s linear infinite; }
.hero__ring--b { width: 150px; height: 150px; right: 7%; bottom: 6%; animation: spinSlow 60s linear infinite reverse; }

.hero__inner {
  position: relative;
  width: min(1060px, 100% - 48px);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(169, 211, 160, 0.07);
  border: 1px solid rgba(169, 211, 160, 0.28);
  border-radius: 999px;
  padding: 9px 18px;
  margin-bottom: 32px;
}
.pulse-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--sun); animation: pulse 1.8s ease-in-out infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232, 182, 76, 0.5); }
  55% { box-shadow: 0 0 0 8px rgba(232, 182, 76, 0); }
}
.hero__title {
  font-size: clamp(2.9rem, 7vw, 5.4rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 26px;
}
.hero__sub {
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  color: var(--muted);
  max-width: 40rem;
  margin-bottom: 38px;
}
.hero__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-bottom: 28px; }
.hero__proof {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px;
  font-size: 0.85rem; color: var(--muted);
  margin-bottom: 60px;
}
.hero__proof-badge {
  font-family: var(--font-display);
  font-weight: 600; color: var(--leaf);
  background: rgba(88, 180, 124, 0.08);
  border: 1px solid rgba(88, 180, 124, 0.3);
  border-radius: 999px; padding: 4px 13px;
}

.hero__video { width: min(880px, 100%); position: relative; }
.video-frame {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 0;
  border: 1px solid rgba(169, 211, 160, 0.22);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: #000;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.4), 0 44px 90px -30px rgba(0, 0, 0, 0.8), 0 0 80px -20px rgba(169, 211, 160, 0.14);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.video-frame:hover {
  transform: translateY(-4px) scale(1.004);
  border-color: rgba(169, 211, 160, 0.5);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.4), 0 54px 110px -32px rgba(0, 0, 0, 0.85), 0 0 100px -16px rgba(169, 211, 160, 0.22);
}
.video-frame img { width: 100%; height: 100%; object-fit: cover; }
.video-frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6, 13, 9, 0.65), transparent 45%);
  pointer-events: none;
}
.video-frame__play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 84px; height: 84px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: #0d1f16;
  box-shadow: 0 14px 36px -8px rgba(0, 0, 0, 0.6);
  transition: transform 0.2s ease, background 0.2s ease;
  z-index: 2;
}
.video-frame__play svg { width: 36px; height: 36px; margin-left: 4px; }
.video-frame:hover .video-frame__play { transform: translate(-50%, -50%) scale(1.09); background: var(--gold-2); }
.video-frame__label {
  position: absolute; left: 20px; bottom: 16px; z-index: 2;
  font-family: var(--font-display);
  font-size: 0.9rem; font-weight: 600; color: var(--ivory);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* ---------- Field guide band ---------- */
.fieldband {
  padding: 88px 0 78px;
  background: var(--bg-2);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.fieldband__intro {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--muted);
  text-align: center;
  margin-bottom: 44px;
}
.fieldband__intro::after {
  content: "";
  display: block;
  width: 40px; height: 1px;
  margin: 18px auto 0;
  background: linear-gradient(90deg, transparent, var(--sun), var(--gold), transparent);
  background-size: 200% 100%;
  animation: shimmer 6s ease-in-out infinite;
}
.fieldband__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.fieldpiece { text-align: center; margin: 0; }
.fieldpiece__stage {
  height: 190px;
  display: grid;
  place-items: center;
  padding: 12px;
  border-radius: var(--radius-sm);
  transition: background 0.3s ease;
}
.fieldpiece:hover .fieldpiece__stage { background: rgba(237, 233, 218, 0.03); }
.fieldpiece__art {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: brightness(1.2) drop-shadow(0 0 12px rgba(169, 211, 160, 0.22)) drop-shadow(0 10px 24px rgba(0, 0, 0, 0.4));
}
/* iris reveal on scroll */
.fieldpiece .fieldpiece__stage { clip-path: circle(0% at 50% 55%); opacity: 0; }
.fieldpiece.is-visible .fieldpiece__stage {
  animation: iris 1.4s cubic-bezier(0.3, 0.6, 0.2, 1) forwards;
  animation-delay: calc(var(--d, 0) * 0.18s);
}
@keyframes iris {
  from { clip-path: circle(0% at 50% 55%); opacity: 0; }
  60% { opacity: 1; }
  to { clip-path: circle(75% at 50% 55%); opacity: 1; }
}
.fieldpiece figcaption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0;
  transition: opacity 0.7s ease 0.9s, color 0.3s ease;
}
.fieldpiece.is-visible figcaption { opacity: 1; }
.fieldpiece:hover figcaption { color: var(--gold); }
.fieldpiece figcaption span { color: var(--sun); font-size: 0.7rem; }

/* ambient loops */
.art-breathe { animation: breathe 9s ease-in-out infinite; }
.art-bob { animation: bob 7s ease-in-out infinite; }
.art-drift { animation: drift 11s ease-in-out infinite; }
.art-sway { animation: sway 8s ease-in-out infinite; }
.art-glow { animation: breathe 13s ease-in-out infinite; }
@keyframes breathe { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.035); } }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes drift { 0%, 100% { transform: translateX(-6px); } 50% { transform: translateX(8px); } }
@keyframes sway { 0%, 100% { transform: rotate(-1.4deg); } 50% { transform: rotate(1.4deg); } }
@keyframes spinSlow { to { transform: rotate(360deg); } }

/* ---------- Pillars ---------- */
.pillars { padding: 92px 0 48px; }
.pillars__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.pillar {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 30px 24px 26px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.pillar:hover { transform: translateY(-4px); border-color: rgba(169, 211, 160, 0.4); background: var(--panel-2); }
.pillar__num {
  display: block;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--sun);
  margin-bottom: 34px;
}
.pillar__num::after { content: ""; display: block; width: 30px; height: 1px; background: var(--sun); margin-top: 10px; opacity: 0.7; }
.pillar h3 { margin-bottom: 8px; }
.pillar p { font-size: 0.9rem; color: var(--muted); }

/* ---------- Movement ---------- */
.movement {
  margin: 76px 0 0;
  padding: 96px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  position: relative;
  overflow: hidden;
}
.movement::before {
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(760px 420px at 88% 0%, rgba(169, 211, 160, 0.08), transparent 60%);
}
.movement__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.movement__lead { color: var(--muted); margin-bottom: 22px; max-width: 34rem; }
.movement__soon {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-size: 0.92rem; font-weight: 500;
  color: var(--gold);
  background: rgba(169, 211, 160, 0.06);
  border: 1px dashed rgba(169, 211, 160, 0.35);
  border-radius: var(--radius-sm);
  padding: 13px 18px;
  margin-bottom: 30px;
}
.movement__soon .mark { color: var(--gold); }
.movement__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.stat {
  background: rgba(237, 233, 218, 0.03);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  padding: 24px 20px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.stat:hover { border-color: rgba(169, 211, 160, 0.4); background: rgba(237, 233, 218, 0.05); }
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.15rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--gold);
  line-height: 1.05;
  margin-bottom: 6px;
}
.stat span { font-size: 0.84rem; color: var(--muted); }

/* ---------- Featured / Carousel ---------- */
.featured { padding: 92px 0 84px; }
.featured__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 36px; }
.featured__head h2 { margin-bottom: 0; }
.carousel__nav { display: flex; gap: 10px; }
.carousel__btn {
  width: 44px; height: 44px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ivory);
  font-size: 1.05rem;
  cursor: pointer;
  transition: background 0.16s ease, color 0.16s ease, transform 0.16s ease, border-color 0.16s ease;
}
.carousel__btn:hover { background: var(--gold); color: #0d1f16; border-color: var(--gold); transform: translateY(-2px); }

.carousel {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 4px max(24px, calc((100vw - 1160px) / 2)) 24px;
}
.carousel::-webkit-scrollbar { display: none; }

.vid-card {
  flex: 0 0 clamp(260px, 30vw, 350px);
  scroll-snap-align: start;
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  text-align: left;
  padding: 0;
  font: inherit;
}
.vid-card:hover { transform: translateY(-5px); border-color: rgba(169, 211, 160, 0.4); background: var(--panel-2); }
.vid-card__thumb { display: block; position: relative; aspect-ratio: 16 / 9; overflow: hidden; }
.vid-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.vid-card:hover .vid-card__thumb img { transform: scale(1.05); }
.vid-card__play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(11, 21, 17, 0.8);
  color: var(--gold);
  backdrop-filter: blur(4px);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.vid-card__play svg { width: 19px; height: 19px; margin-left: 2px; }
.vid-card:hover .vid-card__play { background: var(--gold); color: #0d1f16; transform: translate(-50%, -50%) scale(1.1); }
.vid-card__body { display: block; padding: 15px 18px 17px; }
.vid-card__title {
  display: block;
  font-family: var(--font-display);
  font-weight: 600; font-size: 0.95rem; line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--ivory);
}
.vid-card__meta {
  display: block;
  font-size: 0.73rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--leaf); margin-top: 7px;
}
.featured__foot { margin-top: 6px; }

/* ---------- T-shirt line ---------- */
.tees {
  padding: 92px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.tees__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 40px; }
.tees__head h2 { margin-bottom: 0; }
.tees__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.tee-card {
  display: block;
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 16px 16px 20px;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.tee-card:hover { transform: translateY(-5px); border-color: rgba(169, 211, 160, 0.45); background: var(--panel-2); }
.tee-card__stage {
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(237, 233, 218, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(237, 233, 218, 0.025) 1px, transparent 1px),
    rgba(0, 0, 0, 0.25);
  background-size: 18px 18px, 18px 18px, auto;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  padding: 10px;
}
.tee { width: 100%; max-width: 190px; height: auto; }
.tee__body { transition: transform 0.25s ease; transform-origin: 60px 60px; }
.tee-card:hover .tee__body { transform: scale(1.03); }
.tee-card__name {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--ivory);
  margin-bottom: 3px;
}
.tee-card__desc { display: block; font-size: 0.82rem; color: var(--muted); line-height: 1.5; }
.tees__note { margin-top: 28px; font-size: 0.85rem; color: var(--muted); text-align: center; }
.tees__note a { color: var(--leaf); font-weight: 600; text-decoration: none; }
.tees__note a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- About ---------- */
.about { padding: 96px 0; }
.about__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.about__copy p { margin-bottom: 16px; color: var(--muted); max-width: 34rem; }
.about__copy p strong { color: var(--ivory); }
.about__meaning {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-top: 30px;
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-left: 2px solid var(--sun);
  border-radius: var(--radius-sm);
  padding: 22px 24px;
}
.about__meaning-mark { width: 34px; height: 34px; color: var(--gold); margin-top: 3px; }
.about__meaning h3 { margin-bottom: 6px; font-size: 1.02rem; }
.about__meaning p { margin: 0; font-size: 0.95rem; }

.mission-card {
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.mission-card::before {
  content: "";
  position: absolute;
  top: -46px; right: -46px;
  width: 190px; height: 190px;
  border: 1px solid rgba(169, 211, 160, 0.12);
  border-radius: 50%;
}
.mission-card::after {
  content: "";
  position: absolute;
  top: 8px; right: 8px;
  width: 82px; height: 82px;
  background: rgba(169, 211, 160, 0.07);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}
.mission-card h3 { color: var(--sun); margin-bottom: 12px; }
.mission-card > p { color: var(--muted); margin-bottom: 22px; }
.mission-card p strong { color: var(--ivory); }
.mission-card__list { list-style: none; display: grid; gap: 11px; margin-bottom: 26px; }
.mission-card__list li { display: flex; align-items: center; gap: 12px; font-size: 0.92rem; color: var(--muted); }
.mission-card__list li::before {
  content: "";
  width: 7px; height: 7px;
  flex: 0 0 auto;
  background: var(--sun);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}
.mission-card__link { font-family: var(--font-display); color: var(--gold); font-weight: 600; font-size: 0.92rem; text-decoration: none; }
.mission-card__link:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Substack ---------- */
.substack {
  background: var(--bg-2);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 78px 0;
  position: relative;
  overflow: hidden;
}
.substack::before {
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(640px 320px at 10% 0%, rgba(169, 211, 160, 0.07), transparent 60%);
}
.substack__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(30px, 5vw, 70px);
  flex-wrap: wrap;
}
.substack h2 { margin-bottom: 10px; }
.substack__copy p { color: var(--muted); max-width: 32rem; }
.substack__actions { display: flex; flex-direction: column; gap: 12px; align-items: stretch; }

/* ---------- Contact ---------- */
.contact { padding: 100px 0; }
.contact__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.contact__copy p { color: var(--muted); margin-bottom: 14px; max-width: 30rem; }
.contact__alt { font-size: 0.92rem; }

.contact__form {
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 32px 30px;
  display: grid;
  gap: 18px;
}
.field { display: grid; gap: 7px; }
.field label {
  font-family: var(--font-display);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--leaf-soft);
}
.field input, .field select, .field textarea {
  font: inherit;
  font-size: 0.95rem;
  color: var(--ivory);
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  width: 100%;
}
.field ::placeholder { color: rgba(151, 165, 152, 0.6); }
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(169, 211, 160, 0.14);
}
.contact__hint { font-size: 0.78rem; color: var(--muted); text-align: center; margin-top: -6px; }

/* ---------- Footer ---------- */
.footer {
  background: #081009;
  color: var(--muted);
  padding: 60px 0 30px;
  border-top: 1px solid var(--line-soft);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line-soft);
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.18em;
  color: var(--ivory);
  margin-bottom: 10px;
}
.footer__mark { width: 26px; height: 26px; color: var(--gold); }
.footer__tag { font-size: 0.9rem; font-family: var(--font-serif); font-style: italic; }
.footer__links { display: grid; gap: 10px; align-content: start; }
.footer__links a { color: var(--muted); text-decoration: none; font-size: 0.9rem; transition: color 0.15s ease; }
.footer__links a:hover { color: var(--gold); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 24px;
  font-size: 0.82rem;
}
.footer__bottom .link-btn { color: var(--gold); }
.footer__bottom .link-btn:hover { color: var(--gold-2); }

/* ---------- Modals ---------- */
.modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 20px; }
.modal[hidden] { display: none; }
.modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(4, 9, 6, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.modal__card {
  position: relative;
  width: min(560px, 100%);
  max-height: min(88vh, 800px);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden auto;
  display: flex;
  flex-direction: column;
  animation: modalIn 0.26s cubic-bezier(0.2, 0.9, 0.3, 1.12);
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(22px) scale(0.97); }
  to { opacity: 1; transform: none; }
}
.modal__head { padding: 26px 30px 14px; }
.modal__head h3 { font-size: 1.3rem; margin-bottom: 6px; }
.modal__head p { font-size: 0.9rem; color: var(--muted); }
.modal__iframe { flex: 1; width: 100%; min-height: 500px; border: 0; background: #fff; }
.modal__close {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  width: 36px; height: 36px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(237, 233, 218, 0.06);
  color: var(--ivory);
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.15s ease;
}
.modal__close:hover { background: rgba(237, 233, 218, 0.14); }

.modal__video-card { position: relative; width: min(1020px, 100%); animation: modalIn 0.26s cubic-bezier(0.2, 0.9, 0.3, 1.12); }
.modal__video-wrap {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(169, 211, 160, 0.2);
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.8);
}
.modal__video-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }
.modal--video .modal__close { top: -46px; right: 0; background: rgba(237, 233, 218, 0.1); border: none; }
.modal--video .modal__close:hover { background: rgba(237, 233, 218, 0.22); }

body.modal-open { overflow: hidden; }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal--delay { transition-delay: 0.14s; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .fieldpiece .fieldpiece__stage { clip-path: none; opacity: 1; animation: none !important; }
  .fieldpiece figcaption { opacity: 1; }
  .fieldpiece__art, .hero__emblem, .hero__owl, .hero__ring, .pulse-dot { animation: none !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .pillars__grid, .tees__grid { grid-template-columns: 1fr 1fr; }
  .fieldband__grid { grid-template-columns: repeat(3, 1fr); row-gap: 26px; }
  .nav__links a:not(.nav__substack) { padding: 8px 8px; font-size: 0.84rem; }
}

@media (max-width: 900px) {
  .hero__emblem { left: 50%; transform: translateX(-50%); width: 84vw; top: 40px; opacity: 0.06; animation: none; }
  .nav__links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: var(--bg-2);
    border-bottom: 1px solid var(--line);
    padding: 14px 20px 20px;
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .nav__links.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .nav__links a { font-size: 1rem; padding: 12px 10px; }
  .nav__burger { display: flex; }

  .movement__inner, .about__inner, .contact__inner { grid-template-columns: 1fr; }
  .featured__head, .tees__head { flex-direction: column; align-items: flex-start; }
  .hero__owl { display: none; }
}

@media (max-width: 640px) {
  .pillars__grid, .tees__grid { grid-template-columns: 1fr; }
  .movement__stats { grid-template-columns: 1fr 1fr; }
  .hero__actions .btn { width: 100%; }
  .substack__actions { width: 100%; }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .fieldband__grid { grid-template-columns: 1fr 1fr; }
  .fieldpiece__stage { height: 150px; }
}

/* ---------- Section backdrop wireframes ---------- */
.bg-orn {
  position: absolute;
  pointer-events: none;
  opacity: 0.1;
  filter: brightness(1.2);
  z-index: 0;
}
.movement .container, .about .container, .substack .container { position: relative; z-index: 1; }
.about { position: relative; overflow: hidden; }
.bg-orn--beetle { right: -60px; top: 50%; width: 340px; animation: beetle3d 16s ease-in-out infinite; }
.bg-orn--cabin { left: 50%; bottom: -30px; width: 560px; animation: cabin3d 20s ease-in-out infinite; }
.bg-orn--snail { right: 4%; bottom: 8px; width: 260px; animation: snail3d 18s ease-in-out infinite; }
@media (max-width: 900px) { .bg-orn { display: none; } }

/* ---------- 3D wireframe motion ---------- */
@keyframes beetle3d {
  0%, 100% { transform: translateY(-50%) perspective(900px) rotateY(-16deg) rotateX(4deg); }
  50% { transform: translateY(-50%) perspective(900px) rotateY(16deg) rotateX(-4deg); }
}
@keyframes cabin3d {
  0%, 100% { transform: translateX(10%) perspective(1100px) rotateY(-10deg) rotateX(7deg); }
  50% { transform: translateX(10%) perspective(1100px) rotateY(10deg) rotateX(-3deg); }
}
@keyframes snail3d {
  0%, 100% { transform: perspective(800px) rotateY(-12deg) translateX(-4px); }
  50% { transform: perspective(800px) rotateY(14deg) translateX(6px); }
}
@keyframes emblem3d {
  0%, 100% { transform: perspective(1400px) rotateX(6deg) rotateY(-7deg) scale(1); }
  50% { transform: perspective(1400px) rotateX(-4deg) rotateY(7deg) scale(1.03); }
}
@keyframes shimmer {
  0%, 100% { background-position: 0% 0; }
  50% { background-position: 100% 0; }
}

/* ---------- Sprites (fireflies & spores) ---------- */
.hero__sprites, .fieldband__sprites { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.fieldband { position: relative; overflow: hidden; }
.sprite {
  position: absolute;
  left: var(--x); top: var(--y);
  width: calc(var(--s) * 1px); height: calc(var(--s) * 1px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(169, 211, 160, 0.95) 0%, rgba(169, 211, 160, 0) 70%);
  opacity: 0;
  animation:
    spriteWander var(--dur) ease-in-out var(--del) infinite alternate,
    spriteFlicker calc(var(--dur) / 2.7) ease-in-out var(--del) infinite;
  will-change: transform, opacity;
}
.sprite--sun { background: radial-gradient(circle, rgba(232, 182, 76, 0.95) 0%, rgba(232, 182, 76, 0) 70%); }
.sprite--spore {
  background: none;
  border: 1px solid rgba(169, 211, 160, 0.5);
  animation:
    spriteRise var(--dur) linear var(--del) infinite,
    spriteFlicker calc(var(--dur) / 3) ease-in-out var(--del) infinite;
}
@keyframes spriteWander {
  0% { transform: translate(0, 0); }
  33% { transform: translate(calc(var(--dx) * 0.6), calc(var(--dy) * -1)); }
  66% { transform: translate(var(--dx), calc(var(--dy) * -0.4)); }
  100% { transform: translate(calc(var(--dx) * 0.3), var(--dy)); }
}
@keyframes spriteRise {
  from { transform: translateY(30px) rotate(0deg); }
  to { transform: translateY(-140px) rotate(180deg); }
}
@keyframes spriteFlicker {
  0%, 100% { opacity: 0.05; }
  50% { opacity: var(--o, 0.55); }
}

/* ---------- Extra subtle motion ---------- */
.reveal .eyebrow::before { width: 0; transition: width 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) 0.25s; }
.reveal.is-visible .eyebrow::before { width: 26px; }
.nav__logo .nav__mark { transition: transform 0.5s cubic-bezier(0.3, 0.7, 0.3, 1.3); }
.nav__logo:hover .nav__mark { transform: rotate(120deg); }
.hero__proof-badge { animation: proofGlow 5s ease-in-out infinite; }
@keyframes proofGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(88, 180, 124, 0); }
  50% { box-shadow: 0 0 18px -2px rgba(88, 180, 124, 0.25); }
}
.fieldpiece__stage { transition: background 0.3s ease, transform 0.4s ease; }
.fieldpiece:hover .fieldpiece__stage { transform: translateY(-4px); }

@media (prefers-reduced-motion: reduce) {
  .sprite, .bg-orn, .hero__emblem, .hero__proof-badge, .fieldband__intro::after { animation: none !important; }
  .sprite { opacity: 0.2; }
}

/* ---------- Hero: cabin (large, grounded right) & snail (foreground) ---------- */
.hero__cabin {
  position: absolute;
  top: 12%;
  right: clamp(-200px, -6vw, -60px);
  width: min(700px, 54vw);
  opacity: 0.22;
  animation: cabinHero3d 26s ease-in-out infinite;
}
.hero__snail {
  position: absolute;
  bottom: 4%;
  left: 5%;
  width: min(200px, 18vw);
  opacity: 0.2;
  animation: snail3d 20s ease-in-out infinite;
}
@keyframes cabinHero3d {
  0%, 100% { transform: perspective(1300px) rotateY(-8deg) rotateX(5deg) scale(1); }
  50% { transform: perspective(1300px) rotateY(9deg) rotateX(-3deg) scale(1.02); }
}
@media (max-width: 900px) {
  .hero__cabin, .hero__snail { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__cabin, .hero__snail, .hero__owl { animation: none !important; }
}

/* ---------- Wireframe logo with pulsing green glow ---------- */
.nav__mark, .footer__mark { color: var(--gold); animation: logoGlow 3.6s ease-in-out infinite; }
.movement__soon .mark { animation: logoGlow 3.6s ease-in-out infinite; }
@keyframes logoGlow {
  0%, 100% { filter: drop-shadow(0 0 2px rgba(169, 211, 160, 0.3)); }
  50% { filter: drop-shadow(0 0 9px rgba(169, 211, 160, 0.9)); }
}

/* ---------- Enchanted wireframe vertices ---------- */
.wire-live { display: block; max-height: 100%; max-width: 100%; }
.fieldpiece__stage .wire-live { width: 100%; height: 100%; }
.vertex {
  fill: var(--sun);
  stroke: none;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  animation: vertexPulse var(--vdur, 4s) ease-in-out var(--vd, 0s) infinite;
}
.vertex--wink { animation: vertexWink var(--vdur, 4s) ease-in-out var(--vd, 0s) infinite; }
@keyframes vertexPulse {
  0%, 100% { opacity: 0.12; transform: scale(0.7); }
  50% { opacity: 0.95; transform: scale(1.25); }
}
@keyframes vertexWink {
  0%, 82%, 100% { opacity: 0.85; transform: scale(1); }
  88% { opacity: 0; transform: scale(0.15); }
  94% { opacity: 0.95; transform: scale(1.3); }
}
@media (prefers-reduced-motion: reduce) {
  .nav__mark, .footer__mark, .movement__soon .mark, .vertex { animation: none !important; }
}

/* ---------- Shirt grid (Coming soon) ---------- */
.tees__sub { color: var(--muted); max-width: 34rem; margin-top: 4px; }
.shirt-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.shirt-card { margin: 0; }
.shirt-card__img {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-soft);
  background: #17181a;
}
.shirt-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.shirt-card:hover .shirt-card__img img { transform: scale(1.05); }
.shirt-card__img::after {
  content: "Coming soon!";
  position: absolute;
  left: 10px; bottom: 10px;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #17130a;
  background: var(--sun);
  border-radius: 999px;
  padding: 4px 10px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.shirt-card:hover .shirt-card__img::after { opacity: 1; transform: none; }
.shirt-card figcaption { display: grid; gap: 1px; padding: 10px 2px 0; }
.shirt-card__name { font-family: var(--font-display); font-weight: 600; font-size: 0.92rem; color: var(--ivory); }
.shirt-card__series { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--leaf); }
@media (max-width: 1024px) { .shirt-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .shirt-grid { grid-template-columns: 1fr 1fr; gap: 12px; } }

/* ---------- Beta launch countdown ---------- */
.launch {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line-soft);
}
.launch__sprites { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.launch__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}
.launch__lead { color: var(--muted); max-width: 30rem; margin-bottom: 26px; }

.launch__dials {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(10px, 2vw, 22px);
}
.dial { position: relative; text-align: center; }
.dial svg { width: 100%; height: auto; display: block; transform: rotate(-90deg); }
.dial__track { fill: none; stroke: rgba(237, 233, 218, 0.09); stroke-width: 5; }
.dial__pie {
  fill: none;
  stroke: rgba(88, 180, 124, 0.16);
  stroke-width: 52;   /* stroke as wide as the diameter = pie fill */
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
}
.dial__ring {
  fill: none;
  stroke: var(--gold);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  filter: drop-shadow(0 0 6px rgba(169, 211, 160, 0.45));
}
.dial[data-unit="secs"] .dial__ring { stroke: var(--sun); filter: drop-shadow(0 0 6px rgba(232, 182, 76, 0.55)); }
.dial[data-unit="secs"] .dial__pie { stroke: rgba(232, 182, 76, 0.14); }
.dial__num {
  position: absolute;
  top: 0; left: 0; right: 0;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3.2vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ivory);
  font-variant-numeric: tabular-nums;
}
.dial__label {
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.launch.is-live .dial__ring, .launch.is-live .dial__pie { stroke-dashoffset: 0 !important; }

@media (max-width: 900px) {
  .launch__inner { grid-template-columns: 1fr; }
  .launch__dials { max-width: 460px; }
}
@media (prefers-reduced-motion: reduce) {
  .dial__ring { filter: none; }
}

/* ---------- Contact card (email) ---------- */
.contact__card {
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 44px 36px;
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 10px;
}
.contact__card-mark { width: 40px; height: 40px; color: var(--gold); animation: logoGlow 3.6s ease-in-out infinite; }
.contact__card-label {
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}
.contact__email {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.6vw, 1.7rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(169, 211, 160, 0.35);
  padding-bottom: 3px;
  transition: color 0.16s ease, border-color 0.16s ease;
}
.contact__email:hover { color: var(--ivory); border-color: var(--ivory); }
.contact__card-note { font-size: 0.88rem; color: var(--muted); max-width: 22rem; }

/* ---------- Hero eyebrow mini countdown ---------- */
.hero__eyebrow-count {
  color: var(--sun);
  font-variant-numeric: tabular-nums;
  margin-left: 2px;
}
.hero__eyebrow-count[hidden] { display: none; }

.hero__eyebrow { flex-wrap: wrap; justify-content: center; max-width: min(92vw, 560px); row-gap: 2px; }

/* ---------- Substack signup modal ---------- */
.modal__substack {
  display: grid;
  place-items: center;
  padding: 10px 24px 28px;
}
.modal__iframe--substack {
  width: min(480px, 100%);
  height: 390px;
  min-height: 390px;
  flex: 0 0 auto;
  border: 1px solid #eee;
  border-radius: var(--radius-sm);
  background: #fff;
}

