@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Mono:ital,wght@0,300;0,400;0,500;1,300&display=swap');

:root {
  --bg: #0f0e0c;
  --bg-elevated: #1a1814;
  --bg-card: #1f1c17;
  --fg: #e8e0d5;
  --fg-muted: #9a8f82;
  --accent: #c4622d;
  --accent-dim: rgba(196, 98, 45, 0.15);
  --accent-glow: rgba(196, 98, 45, 0.3);
  --amber: #d4a853;
  --amber-dim: rgba(212, 168, 83, 0.12);
  --border: rgba(232, 224, 213, 0.08);
  --border-accent: rgba(196, 98, 45, 0.3);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Mono', monospace;
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 8vw 4rem;
  overflow: hidden;
}

.hero-bg-texture {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(196,98,45,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 80% 30%, rgba(212,168,83,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero-bg-texture::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 2rem;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-transform: uppercase;
}

.label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(72px, 14vw, 160px);
  line-height: 0.88;
  letter-spacing: -0.03em;
  margin-bottom: 2.5rem;
  display: flex;
  gap: 0;
  flex-direction: column;
}

.title-road {
  color: var(--fg);
  display: block;
}

.title-folk {
  color: var(--accent);
  display: block;
  text-shadow: 0 0 60px rgba(196,98,45,0.4);
}

.hero-tagline {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: clamp(22px, 3vw, 36px);
  color: var(--fg-muted);
  line-height: 1.3;
  margin-bottom: 3.5rem;
  max-width: 480px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  color: var(--fg-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border-accent);
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  right: 8vw;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--fg-muted);
  opacity: 0.5;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

/* ── MANIFESTO ── */
.manifesto {
  padding: 5rem 8vw;
  background: var(--bg);
}

.manifesto-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-accent), transparent);
  margin: 2rem 0;
}

.manifesto-text {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.7;
  color: var(--fg-muted);
  font-style: italic;
}

/* ── FEATURES ── */
.features {
  padding: 6rem 8vw;
  background: var(--bg-elevated);
}

.features-header {
  margin-bottom: 3rem;
}

.section-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 500;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.feature-card {
  background: var(--bg-elevated);
  padding: 2.5rem 2rem;
  position: relative;
  transition: background 0.2s ease;
}

.feature-card:hover {
  background: var(--bg-card);
}

.feature-card--main {
  grid-column: span 2;
  background: var(--bg-card);
  border-left: 3px solid var(--accent);
  padding-left: 3rem;
}

.feature-icon {
  margin-bottom: 1.25rem;
  opacity: 0.9;
}

.feature-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--fg);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.feature-desc {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── GIG BOARD ── */
.gigboard {
  padding: 6rem 8vw;
  background: var(--bg);
}

.gigboard-inner {
  max-width: 900px;
  margin: 0 auto;
}

.gigboard-header {
  margin-bottom: 3rem;
}

.gigboard-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 6vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-top: 1rem;
}

.gig-list {
  border: 1px solid var(--border);
  margin-bottom: 2.5rem;
}

.gig-row {
  display: grid;
  grid-template-columns: 80px 1fr 120px 80px;
  align-items: center;
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  gap: 1rem;
  transition: background 0.15s ease;
}

.gig-row:last-child { border-bottom: none; }
.gig-row:hover { background: var(--accent-dim); }
.gig-row--alt { background: rgba(255,255,255,0.01); }

.gig-city {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.05em;
}

.gig-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.gig-venue {
  font-size: 14px;
  color: var(--fg);
  font-weight: 500;
}

.gig-date {
  font-size: 11px;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}

.gig-type {
  font-size: 10px;
  color: var(--amber);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
}

.gig-pay {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--fg);
  text-align: right;
}

.gigboard-cta {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--fg-muted);
  font-style: italic;
}

/* ── CROWDMATCH ── */
.crowdmatch {
  padding: 6rem 8vw;
  background: var(--bg-elevated);
}

.crowdmatch-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.crowd-icons {
  display: flex;
  gap: 1.5rem;
  align-items: flex-end;
  justify-content: center;
  padding: 2rem;
}

.crowd-icon {
  width: 80px;
  height: 100px;
  animation: float 4s ease-in-out infinite;
}

.crowd-icon--1 { animation-delay: 0s; }
.crowd-icon--2 { animation-delay: 0.8s; transform: translateY(-20px); }
.crowd-icon--3 { animation-delay: 1.6s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.crowdmatch-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin: 1rem 0 1.5rem;
}

.crowdmatch-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.crowdmatch-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tag {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--border-accent);
  color: var(--accent);
  border-radius: 2px;
  transition: background 0.2s ease;
}

.tag:hover {
  background: var(--accent-dim);
}

/* ── CLOSING ── */
.closing {
  padding: 6rem 8vw;
  background: var(--bg);
}

.closing-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.closing-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-accent), transparent);
  margin: 2.5rem 0;
}

.closing-statement {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.7;
  color: var(--fg-muted);
  font-style: italic;
}

.closing-statement--accent {
  color: var(--fg);
  font-style: normal;
  font-weight: 700;
  margin-top: 1.5rem;
}

/* ── FOOTER ── */
.footer {
  padding: 2.5rem 8vw;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--accent);
  letter-spacing: 0.05em;
}

.footer-tagline {
  font-size: 12px;
  color: var(--fg-muted);
  font-style: italic;
}

.footer-meta {
  font-size: 11px;
  color: var(--fg-muted);
  opacity: 0.5;
  text-align: right;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero { padding: 4rem 6vw 3rem; }
  .hero-title { font-size: clamp(60px, 18vw, 100px); }
  .hero-stats { gap: 1.25rem; }
  .scroll-hint { display: none; }

  .features-grid { grid-template-columns: 1fr; }
  .feature-card--main { grid-column: span 1; }
  .feature-card { padding: 1.75rem 1.5rem; }

  .gig-row { grid-template-columns: 60px 1fr; }
  .gig-type, .gig-pay { display: none; }

  .crowdmatch-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .crowd-icons { padding: 1rem 0; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-meta { text-align: left; }

  .manifesto, .features, .gigboard, .crowdmatch, .closing { padding: 4rem 6vw; }
}

@media (max-width: 480px) {
  body { font-size: 14px; }
  .hero-stats { flex-direction: column; align-items: flex-start; }
  .stat-divider { display: none; }
}

/* ── SELECTION & SCROLLBAR ── */
::selection {
  background: rgba(196, 98, 45, 0.3);
  color: var(--fg);
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-accent); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }
