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

:root {
  --bg: #0a0a0a;
  --bg-2: #131313;
  --bg-3: #1c1c1c;
  --fg: #f5f5f0;
  --muted: #8b8b85;
  --gold: #d4af37;
  --gold-2: #b8941f;
  --green: #16a34a;
  --red: #dc2626;
  --line: #2a2a2a;
  --hot: #1a1408;
}

html { -webkit-text-size-adjust: 100%; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.55;
  font-size: 16px;
  padding-bottom: 4rem;
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-2); }

/* ========= TICKER ========= */
.ticker {
  background: #000;
  border-bottom: 1px solid var(--gold);
  overflow: hidden;
  white-space: nowrap;
  padding: 0.5rem 0;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}
.ticker-track {
  display: inline-block;
  animation: scroll 30s linear infinite;
  padding-left: 100%;
}
.ticker-track span {
  margin-right: 2.5rem;
  color: var(--gold);
}
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ========= HERO ========= */
.hero {
  background:
    radial-gradient(ellipse at top, rgba(212,175,55,0.15), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  border-bottom: 1px solid var(--line);
}
.hero-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem 1.25rem 3.5rem;
  text-align: center;
}
.kicker {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 1rem;
}
h1 {
  font-size: clamp(2.8rem, 12vw, 5rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}
h1 .city {
  background: linear-gradient(135deg, var(--gold) 0%, #f4d674 50%, var(--gold-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tagline {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 2rem;
  font-style: italic;
}
.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
}
.hero-meta div {
  background: var(--bg-3);
  border: 1px solid var(--line);
  padding: 0.85rem 0.5rem;
  border-radius: 6px;
}
.hero-meta span {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 0.35rem;
}
.hero-meta strong {
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

/* ========= TABS ========= */
.tabs {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.tabs::-webkit-scrollbar { display: none; }
.tab {
  flex: 0 0 auto;
  padding: 1rem 1.1rem;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* ========= MAIN ========= */
main { max-width: 700px; margin: 0 auto; padding: 0 1.25rem; }

section { padding: 2.5rem 0 1rem; scroll-margin-top: 60px; }

.day-head { margin-bottom: 2rem; }
.day-num {
  display: inline-block;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.3);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
h2 {
  font-size: clamp(1.8rem, 7vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}
.day-sub {
  color: var(--muted);
  font-size: 1rem;
}

/* ========= TIMELINE ========= */
.timeline {
  list-style: none;
  position: relative;
  padding-left: 2.25rem;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 0.7rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), var(--line));
}
.timeline li {
  position: relative;
  padding: 0 0 1.5rem 0;
}
.timeline li::before {
  content: "";
  position: absolute;
  left: -2rem;
  top: 0.4rem;
  width: 0.85rem;
  height: 0.85rem;
  background: var(--bg);
  border: 2px solid var(--gold);
  border-radius: 50%;
}
.timeline li.hot::before {
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(212,175,55,0.18);
}
.timeline time {
  display: block;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.timeline h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  letter-spacing: -0.005em;
}
.timeline li.hot h3 { color: var(--gold); }
.timeline p {
  color: #d8d8d2;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}
.timeline p.note {
  font-size: 0.82rem;
  color: var(--muted);
  border-left: 2px solid var(--line);
  padding-left: 0.7rem;
  font-style: italic;
}
.timeline p.alt {
  font-size: 0.82rem;
  color: #b0b0a8;
}
.timeline .picks {
  list-style: none;
  margin-top: 0.4rem;
}
.timeline .picks li {
  padding: 0.35rem 0;
  font-size: 0.92rem;
  color: #d8d8d2;
}
.timeline .picks li::before { display: none; }
.timeline .picks li::marker { content: ""; }

/* ========= PRIME ========= */
.prime { background: linear-gradient(180deg, transparent, rgba(212,175,55,0.04)); }
.prime-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
.prime-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1.25rem;
}
.prime-card.hot {
  background: var(--hot);
  border-color: rgba(212,175,55,0.5);
}
.prime-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--gold);
}
.prime-card p {
  font-size: 0.92rem;
  margin-bottom: 0.5rem;
  color: #d8d8d2;
}
.prime-card p.note {
  font-size: 0.82rem;
  color: var(--muted);
  font-style: italic;
}
.prime-card ul {
  margin-left: 1.1rem;
  font-size: 0.92rem;
  color: #d8d8d2;
}
.prime-card ul li { margin-bottom: 0.3rem; }

/* ========= LOGISTIK ========= */
.logi-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}
.logi-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.1rem;
}
.logi-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.55rem;
  color: var(--gold);
}
.logi-card p {
  font-size: 0.88rem;
  margin-bottom: 0.45rem;
  color: #d8d8d2;
}
.logi-card p.note {
  font-size: 0.78rem;
  color: var(--muted);
}
.logi-card ul {
  list-style: none;
  font-size: 0.88rem;
}
.logi-card li {
  padding: 0.2rem 0;
  color: #d8d8d2;
}
.logi-card li::before {
  content: "▸ ";
  color: var(--gold);
}

/* ========= FOOTER ========= */
footer {
  margin-top: 4rem;
  padding: 2rem 1.25rem;
  border-top: 1px solid var(--line);
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.disclaimer {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.brand {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold);
}

/* ========= TABLET+ ========= */
@media (min-width: 640px) {
  .prime-grid { grid-template-columns: 1fr 1fr; }
  .logi-grid  { grid-template-columns: 1fr 1fr; }
  main { padding: 0 2rem; }
  .hero-inner { padding: 5rem 2rem 5rem; }
}
@media (min-width: 900px) {
  .logi-grid { grid-template-columns: 1fr 1fr 1fr; }
}
