:root {
  --bg: #0a0a0a;
  --bg-2: #111111;
  --fg: #f4f1ea;
  --fg-dim: #7a7770;
  --line: rgba(244, 241, 234, 0.08);
  --line-bright: rgba(244, 241, 234, 0.18);
  --accent: #ff5722;
  --accent-soft: #ff7a4d;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Space Mono', ui-monospace, monospace;
  font-size: 13px;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
  min-height: 100vh;
}

/* Visually hidden but available to screen readers. */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* Honeypot — visible to bots, hidden from humans. Don't use display:none
   because some bots skip those; off-screen positioning is safer. */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px; height: 1px;
  opacity: 0;
  pointer-events: none;
  tab-index: -1;
}

/* Focus styles on dark bg — browser defaults disappear into the haze. */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}
nav .links a:focus-visible,
.info-card a.inline:focus-visible,
.examples-list li .copy a:focus-visible,
footer a:focus-visible { outline-offset: 4px; }
.signup input:focus-visible { outline: none; }

/* atmospheric warm haze — fixed to the right side of the viewport so it
   stays put as you scroll */
body::after {
  content: '';
  position: fixed;
  top: -12%;
  right: 0;
  bottom: -12%;
  width: 70vw;
  max-width: 1200px;
  background:
    radial-gradient(ellipse 80% 40% at 100% 8%, rgba(255, 87, 34, 0.45), transparent 70%),
    radial-gradient(ellipse 70% 35% at 100% 40%, rgba(255, 87, 34, 0.26), transparent 75%),
    radial-gradient(ellipse 70% 30% at 100% 75%, rgba(255, 87, 34, 0.22), transparent 75%);
  /* oversize the gradient box so panning background-position sweeps the
     warm spots across the viewport — the actual "moving" effect */
  background-size: 165% 165%;
  background-position: 100% 20%;
  pointer-events: none;
  z-index: 0;
  transform-origin: 100% 50%;
  will-change: transform, background-position;
  animation: haze-drift 18s ease-in-out infinite;
}
/* the warm haze slowly sweeps and breathes so the background feels alive */
@keyframes haze-drift {
  0%   { background-position: 100% 18%; transform: scale(1); }
  50%  { background-position: 52% 82%;  transform: scale(1.12); }
  100% { background-position: 100% 18%; transform: scale(1); }
}

/* grain */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence baseFrequency='0.85' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.container {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 36px;
  position: relative;
  z-index: 2;
}

/* ────────────────────────── NAV ────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
nav .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 36px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.mark { display: inline-flex; gap: 12px; align-items: center; }
.mark-date {
  margin-left: 8px;
  padding-left: 14px;
  border-left: 1px solid var(--line-bright);
  color: var(--fg);
  font-family: 'Archivo', sans-serif;
  font-style: normal;
  letter-spacing: 0;
  text-transform: none;
  font-size: 14px;
}
.mark .dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 14px var(--accent);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}
nav .links { display: flex; gap: 28px; align-items: center; }
nav .links a {
  color: var(--fg);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
nav .links a:hover { color: var(--accent); }
nav .links a.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s;
}
nav .links a.badge:hover {
  color: #fff;
  background: var(--accent-soft);
  border-color: var(--accent-soft);
}
.nav-rsvp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 14px;
  padding: 6px 12px;
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s;
}
.nav-rsvp:hover { background: var(--accent-soft); border-color: var(--accent-soft); }

/* ────────────────────────── HERO ────────────────────────── */
.hero {
  padding: 130px 0 60px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: start;
}
.hero-meta {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-dim);
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 42px;
}
.hero-meta > div { display: flex; flex-direction: column; gap: 4px; }
.hero-meta strong {
  color: var(--fg);
  font-weight: 500;
  font-family: 'Archivo', sans-serif;
  font-style: normal;
  letter-spacing: 0;
  text-transform: none;
  font-size: 17px;
}
.hero-meta .tag {
  color: var(--accent);
  font-weight: 500;
}

/* Acrostic ADD */
.acrostic {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-variation-settings: 'wdth' 115;
  font-size: clamp(60px, 14vw, 200px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  margin-bottom: 40px;
  padding-bottom: 0.08em;
}
.acrostic .row {
  display: flex;
  align-items: baseline;
  gap: 0.04em;
}
.acrostic .row + .row { margin-top: -0.06em; }
.acrostic .lead {
  color: var(--accent);
  display: inline-block;
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1);
}
.acrostic .row:hover .lead { transform: translateX(4px) rotate(-2deg); }
.acrostic .tail { color: var(--fg); }

.hero-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.hero-bottom p {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.25;
  letter-spacing: -0.005em;
  max-width: 880px;
  color: var(--fg);
}
.hero-bottom p em {
  color: var(--accent);
  font-style: normal;
}
.hero-bottom .micro {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 20px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg);
}
.hero-bottom .micro span { color: var(--fg); }
.hero-graf {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.4;
  max-width: 880px;
  margin-top: 36px;
  color: var(--fg);
}
.hero-graf em { color: var(--accent); font-style: normal; }

/* Event card — ADD #1 details above the CTAs */
.event-card {
  margin-top: 40px;
  padding: 22px 26px;
  border: 1px solid var(--line-bright);
  border-left: 2px solid var(--accent);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  max-width: 720px;
  background: rgba(255, 87, 34, 0.04);
}
.event-card-tag {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  padding-right: 22px;
  border-right: 1px solid var(--line-bright);
}
.event-card-rows {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 32px;
  flex: 1;
}
.event-card-rows > div { display: flex; flex-direction: column; gap: 4px; }
.event-card .ec-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.event-card .ec-value {
  font-family: 'Archivo', sans-serif;
  font-style: normal;
  font-size: 19px;
  color: var(--fg);
  letter-spacing: 0;
}

/* CTA row */
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: 'Archivo', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--line-bright);
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  transition: all 0.25s;
  background: transparent;
}
.btn:hover {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}
.btn.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.btn.primary:hover {
  background: var(--accent-soft);
  border-color: var(--accent-soft);
  color: #fff;
}
.btn .arr { transition: transform 0.25s; }
.btn:hover .arr { transform: translateX(4px); }

/* ────────────────────────── SIGNUP ────────────────────────── */
.signup-section {
  padding: 90px 0 70px;
  border-top: 1px solid var(--line);
  margin-top: 60px;
}
.signup-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: start;
}
.signup-grid .label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg);
  padding-top: 12px;
}
.signup-grid .label::before {
  content: '01 / ';
  color: var(--accent);
}
.signup-block h3 {
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
  max-width: 700px;
}
.signup-block h3 em {
  font-family: 'Archivo', sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--accent);
}
.signup {
  display: flex;
  max-width: 600px;
  gap: 20px;
  align-items: end;
  border-bottom: 1px solid var(--fg);
  padding-bottom: 14px;
  transition: border-color 0.25s;
}
.signup:focus-within { border-color: var(--accent); }
.signup input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--fg);
  font-family: 'Space Mono', monospace;
  font-size: 17px;
  padding: 8px 0;
  outline: none;
  letter-spacing: 0;
}
.signup input::placeholder { color: var(--fg-dim); }
.signup button {
  background: transparent;
  border: none;
  color: var(--accent);
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.25s;
  white-space: nowrap;
}
.signup button:hover { gap: 14px; }
.signup button:disabled { opacity: 0.5; cursor: wait; }
.signup-status {
  margin-top: 14px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  min-height: 18px;
  color: var(--fg-dim);
}
.signup-status.ok { color: var(--accent); }
.signup-status.err { color: #ff8a8a; }
.signup-fine {
  margin-top: 32px;
  font-size: 11px;
  color: var(--fg-dim);
  max-width: 520px;
  letter-spacing: 0.02em;
}
.signup-fine.no-js-warning { margin-top: 14px; color: #ff8a8a; }
.signup-fine .inline-email { color: var(--accent); }

/* ────────────────────────── MARQUEE ────────────────────────── */
.marquee {
  border-top: 1px solid var(--line-bright);
  border-bottom: 1px solid var(--line-bright);
  overflow: hidden;
  padding: 22px 0;
  white-space: nowrap;
  background: linear-gradient(180deg, transparent, rgba(255,87,34,0.04), transparent);
}
.marquee-track {
  display: inline-flex;
  gap: 0;
  animation: scroll 38s linear infinite;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-variation-settings: 'wdth' 110;
  font-size: 22px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  will-change: transform;
}
.marquee-group {
  display: inline-flex;
  gap: 56px;
  align-items: center;
  margin-right: 56px; /* acts as the seam gap; baked into each copy so -50% lands exactly on the next copy */
}
.marquee-group .star,
.marquee-track .star { color: var(--accent); font-size: 14px; }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .mark .dot { animation: none; }
  body::after { animation: none; }
  /* marquee left running — it's a slow horizontal scroll, not a
     vestibular-trigger pattern */
}

/* ────────────────────────── FAQ / DEMO INFO ────────────────────────── */
.info-section { padding: 110px 0 90px; }
.info-grid > .label,
.examples-list > .label,
.venue-grid > .label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg);
  padding-top: 4px;
}
.info-grid > .label .num,
.examples-list > .label .num,
.venue-grid > .label .num { color: var(--accent); }

.info-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  padding-top: 50px;
  border-top: 1px solid var(--line);
}
.info-grid .info-card { max-width: 820px; }
.info-grid .info-card + .info-card {
  grid-column: 2;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.info-card h3 {
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: clamp(22px, 2.2vw, 28px);
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin-bottom: 18px;
  color: var(--fg);
}
.info-card h3 em {
  font-family: 'Archivo', sans-serif;
  font-style: normal;
  font-weight: 400;
  color: var(--accent);
}
.info-card p {
  font-family: 'Archivo', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--fg);
  margin-bottom: 14px;
}
.info-card p.fine {
  font-size: 12px;
  color: var(--fg-dim);
  letter-spacing: 0.02em;
}
.info-card a.inline {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
}
.info-card a.inline:hover { color: var(--accent-soft); border-color: var(--accent-soft); }
.info-cta-row { margin-top: 18px; margin-bottom: 18px; }

/* Big white section titles used for Demo examples + Venue */
.section-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: clamp(28px, 3.4vw, 44px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 28px;
}

/* ────────────────────────── EXAMPLES ────────────────────────── */
.examples-section {
  padding: 90px 0 100px;
  border-top: 1px solid var(--line);
}
.examples-header {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.examples-header .label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg);
}
.examples-header .label::before {
  content: '03 / ';
  color: var(--accent);
}
.examples-header h2 {
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-variation-settings: 'wdth' 110;
  font-size: clamp(32px, 4.2vw, 56px);
  letter-spacing: -0.03em;
  line-height: 0.95;
  max-width: 900px;
}
.examples-header h2 em {
  font-family: 'Archivo', sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--accent);
}
.examples-list {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
}
.examples-list ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.examples-list li {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 24px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.35;
  transition: padding-left 0.3s;
}
.examples-list li:hover { padding-left: 10px; }
.examples-list li .idx {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--fg-dim);
}
.examples-list li .copy {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(18px, 1.8vw, 22px);
  letter-spacing: -0.005em;
}
.examples-list li .copy a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,87,34,0.4);
  transition: border-color 0.2s;
}
.examples-list li .copy a:hover { border-color: var(--accent); }
.examples-list li .tag {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-dim);
  white-space: nowrap;
}

/* ────────────────────────── VENUE ────────────────────────── */
.venue-section {
  padding: 100px 0;
  border-top: 1px solid var(--line);
}
.venue-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: start;
}
.venue-grid .label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.venue-grid h2 {
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-variation-settings: 'wdth' 110;
  font-size: clamp(32px, 4.2vw, 56px);
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin-bottom: 30px;
}
.venue-grid h2 em {
  font-family: 'Archivo', sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--accent);
}
.venue-photo {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 10;
  background: #111;
  max-width: 880px;
}
.venue-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.04) saturate(0.95) brightness(0.95);
  transition: transform 1.4s cubic-bezier(.2,.8,.2,1), filter 0.5s;
}
.venue-photo:hover img {
  transform: scale(1.03);
  filter: contrast(1.08) saturate(1) brightness(1);
}
.venue-photo .cap {
  position: absolute;
  left: 22px; bottom: 22px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg);
  background: rgba(10,10,10,0.6);
  backdrop-filter: blur(8px);
  padding: 10px 15px;
  border: 1px solid var(--line-bright);
}

/* ────────────────────────── FOOTER ────────────────────────── */
footer {
  border-top: 1px solid var(--line);
  padding: 50px 0 36px;
  margin-top: 40px;
}
footer .grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
footer h4 {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 14px;
  font-weight: 500;
}
footer .bigmark {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--accent);
}
footer .byline {
  margin-top: 18px;
  font-size: 12px;
  color: var(--fg-dim);
  line-height: 1.6;
  max-width: 420px;
}
footer .byline a {
  color: var(--fg);
  text-decoration: none;
  border-bottom: 1px solid var(--line-bright);
}
footer .byline a:hover { color: var(--accent); border-color: var(--accent); }
footer ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
footer ul a {
  color: var(--fg);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
footer ul a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

/* reveal */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.95s cubic-bezier(.2,.7,.2,1) forwards;
}
.d1 { animation-delay: 0.05s; }
.d2 { animation-delay: 0.15s; }
.d3 { animation-delay: 0.25s; }
.d4 { animation-delay: 0.35s; }
.d5 { animation-delay: 0.45s; }
.d6 { animation-delay: 0.55s; }
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* responsive */
@media (max-width: 880px) {
  .container { padding: 0 22px; }
  nav .inner { padding: 14px 22px; }
  nav .links { display: none; }
  nav .links a.badge { display: none; }
  .mark-date { display: none; }
  .hero { padding: 110px 0 40px; }
  .hero-meta { grid-template-columns: 1fr; gap: 14px; padding-bottom: 24px; margin-bottom: 30px; }
  .hero-bottom .micro { gap: 14px; }
  .signup { flex-direction: column; align-items: stretch; gap: 12px; }
  .signup-grid { grid-template-columns: 1fr; gap: 16px; }
  .hero-grid,
  .info-grid,
  .examples-header,
  .examples-list,
  .venue-grid { grid-template-columns: 1fr; gap: 20px; }
  .hero-label { display: none; }
  .info-grid { padding-top: 30px; }
  .examples-list li { grid-template-columns: 40px 1fr; }
  .examples-list li .tag { display: none; }
  footer .grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  body::after { width: 100vw; opacity: 0.7; }
}
