:root {
  --bg: #080808;
  --fg: #f0ede8;
  --accent: #6b8f71;
  --accent-dim: #4a6350;
  --muted: #5a5a5a;
  --signal-red: #8b3030;
  --font-display: 'Syne', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-mono);
  font-size: 14px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  border-bottom: 1px solid #1a1a1a;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8,8,8,0.95);
  backdrop-filter: blur(8px);
}
.nav__logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.15em;
  color: var(--fg);
}
.nav__tagline {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--muted);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 80px 40px;
  overflow: hidden;
  background: var(--bg);
}

.hero__static {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.015) 2px, rgba(255,255,255,0.015) 4px);
  animation: static-drift 8s steps(10) infinite;
  pointer-events: none;
}

@keyframes static-drift {
  0%   { background-position: 0 0; }
  100% { background-position: 0 100px; }
}

.hero__scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 3px,
    rgba(0,0,0,0.15) 3px,
    rgba(0,0,0,0.15) 4px
  );
  pointer-events: none;
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  width: 100%;
}

.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 32px;
}

.blink {
  animation: blink-slow 1.4s step-end infinite;
  color: var(--signal-red);
}
@keyframes blink-slow {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

.hero__headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(52px, 10vw, 120px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__line { display: block; }
.hero__line--1 { color: var(--fg); }
.hero__line--2 { font-size: 0.55em; font-weight: 600; color: #888; margin-top: 0.15em; letter-spacing: 0.05em; }
.hero__line--3 { font-size: 0.85em; color: var(--accent); margin-top: 0.05em; }
.hero__line--4 { font-size: 0.48em; font-weight: 600; color: #666; letter-spacing: 0.12em; margin-top: 0.1em; }

.hero__sub {
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 56px;
}

.hero__signal-bar {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--accent);
  border: 1px solid #1e1e1e;
  padding: 12px 20px;
}
.signal-bar__label { color: #444; }
.signal-bar__track {
  width: 120px;
  height: 4px;
  background: #1a1a1a;
  position: relative;
  overflow: hidden;
}
.signal-bar__fill {
  height: 100%;
  background: var(--accent);
  position: relative;
}
.signal-bar__fill::after {
  content: '';
  position: absolute;
  right: -2px;
  top: -1px;
  width: 6px;
  height: 6px;
  background: var(--signal-red);
  animation: pulse-dot 1.2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.6); }
}

.hero__glitch-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(80px, 18vw, 200px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(107,143,113,0.07);
  letter-spacing: 0.15em;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

/* ── MANIFESTO ── */
.manifesto {
  background: #0c0c0c;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
  padding: 100px 40px;
}
.manifesto__inner {
  max-width: 700px;
  margin: 0 auto;
}
.manifesto__label {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--signal-red);
  margin-bottom: 40px;
}
.manifesto__body p {
  font-size: 16px;
  line-height: 1.9;
  color: #888;
  margin-bottom: 24px;
}
.manifesto__punch {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--fg) !important;
  border-left: 2px solid var(--accent);
  padding-left: 20px;
  margin-top: 40px !important;
}
.manifesto__tag {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tag-line {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: #333;
}
.tag-line--shift { padding-left: 60px; color: #2a2a2a; }

/* ── COLLECTION ── */
.collection {
  padding: 100px 40px 80px;
}
.collection__header {
  text-align: center;
  margin-bottom: 80px;
}
.collection__label {
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--muted);
  margin-bottom: 20px;
}
.collection__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
}

.shirts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.shirt { display: flex; flex-direction: column; }

.shirt__visual {
  aspect-ratio: 3/4;
  background: #0e0e0e;
  border: 1px solid #1a1a1a;
  position: relative;
  overflow: hidden;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shirt__label-top {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 10px;
  color: #333;
  letter-spacing: 0.1em;
}

/* Graphic 1: Signal */
.shirt__graphic--signal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  height: 100%;
  justify-content: center;
}
.glitch-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 60%;
}
.glitch-lines span {
  display: block;
  height: 1px;
  background: var(--accent-dim);
}
.glitch-lines span:nth-child(odd)  { background: var(--accent); opacity: 0.6; }
.glitch-lines span:nth-child(even) { background: var(--signal-red); opacity: 0.4; transform: translateX(3px); }
.glitch-lines span:nth-child(3n)   { transform: translateX(-4px); opacity: 0.2; }

.signal-icon svg, .cross-icon svg {
  width: 40px;
  height: 40px;
  color: var(--fg);
}
.cross-icon { opacity: 0.25; margin-top: -8px; }

/* Graphic 2: Grow */
.shirt__graphic--grow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}
.root-lines {
  display: flex;
  gap: 8px;
  align-items: flex-end;
  height: 60px;
}
.root-lines span {
  display: block;
  width: 3px;
  background: var(--fg);
  opacity: 0.15;
}
.root-lines span:nth-child(1) { height: 20px; }
.root-lines span:nth-child(2) { height: 40px; opacity: 0.25; }
.root-lines span:nth-child(3) { height: 60px; opacity: 0.4; }
.root-lines span:nth-child(4) { height: 30px; }
.grow-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(14px, 2vw, 20px);
  line-height: 1.2;
  text-align: center;
  color: var(--fg);
  letter-spacing: 0.05em;
}

/* Graphic 3: Kingdom */
.shirt__graphic--kingdom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}
.kingdom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  width: 50%;
}
.kingdom-grid span {
  display: block;
  aspect-ratio: 1;
  background: var(--fg);
  opacity: 0.08;
}
.kingdom-grid span:nth-child(2) { opacity: 0.15; background: var(--accent); }
.kingdom-grid span:nth-child(5) { opacity: 0.04; }
.kingdom-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(12px, 1.8vw, 18px);
  line-height: 1.3;
  text-align: center;
  letter-spacing: 0.08em;
  color: var(--fg);
}

.shirt__info { flex: 1; }
.shirt__name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--fg);
  margin-bottom: 12px;
  line-height: 1.3;
}
.shirt__desc {
  font-size: 12px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 16px;
}
.shirt__meta {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #333;
  text-transform: uppercase;
}

.shirt__price {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

a.shirt { text-decoration: none; color: inherit; }
a.shirt:hover .shirt__visual { border-color: var(--accent-dim); }
a.shirt:hover .shirt__name { color: var(--accent); }

.collection__cta {
  text-align: center;
  margin-top: 60px;
}
.availability-note {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--accent);
  border: 1px solid var(--accent-dim);
  padding: 10px 24px;
}

/* ── STORY ── */
.story {
  background: #0a0a0a;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
  padding: 100px 40px;
}
.story__inner {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}
.story__signal-art {
  width: 100%;
  color: var(--accent-dim);
}
.wave-art svg {
  width: 100%;
  height: 80px;
}
.wave-1 { animation: wave-draw 3s ease-in-out infinite; }
@keyframes wave-draw {
  0%, 100% { stroke-dashoffset: 0; }
  50%       { stroke-dashoffset: 20; }
}
.story__label {
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--muted);
  margin-bottom: 24px;
}
.story__text p {
  font-size: 15px;
  line-height: 1.9;
  color: #666;
  margin-bottom: 20px;
}
.story__text p:last-child { color: #888; }

/* ── CLOSING ── */
.closing {
  padding: 120px 40px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.closing__static {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(107,143,113,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.closing__inner { position: relative; z-index: 1; }
.closing__headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 28px;
}
.closing__sub {
  font-size: 14px;
  color: #444;
  margin-bottom: 56px;
}
.closing__signal {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.3em;
  color: var(--accent);
}
.closing__dots {
  display: flex;
  gap: 5px;
}
.closing__dots span {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--fg);
  opacity: 0.2;
}
.closing__dots span:nth-child(2) { background: var(--accent); opacity: 0.8; }

/* ── FOOTER ── */
.footer {
  border-top: 1px solid #1a1a1a;
  padding: 48px 40px;
}
.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}
.footer__logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.1em;
  color: var(--fg);
  margin-bottom: 8px;
}
.footer__tag {
  font-size: 11px;
  color: #333;
  max-width: 280px;
  line-height: 1.6;
}
.footer__meta {
  text-align: right;
}
.footer__built, .footer__copyright {
  font-size: 10px;
  color: #2a2a2a;
  letter-spacing: 0.05em;
}
.footer__copyright { margin-top: 6px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .shirts { grid-template-columns: 1fr; gap: 48px; }
  .shirt__visual { aspect-ratio: 4/3; }
  .nav { padding: 16px 24px; }
  .hero, .manifesto, .collection, .story, .closing { padding-left: 24px; padding-right: 24px; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
  .footer__meta { text-align: left; }
  .manifesto, .story { padding-top: 60px; padding-bottom: 60px; }
  .collection { padding-top: 60px; }
  .collection__title { font-size: 36px; }
}
@media (max-width: 480px) {
  .hero__headline { font-size: 44px; }
  .tag-line--shift { padding-left: 20px; }
}