/* Green Talk Daily — neobrutalist sports-zine (AirOut design language) */

:root {
  --paper: #f0e6ce;
  --ink: #16120c;
  --panel: #191510;
  --yellow: #f2c11e;
  --blue: #2542e6;
  --red: #d5382c;
  --cream-on-dark: #f0e6ce;
  --border: 2px solid var(--ink);
  --shadow: 6px 6px 0 var(--ink);
}

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

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Public Sans", system-ui, sans-serif;
  line-height: 1.55;
}

.mono-label, .kicker, .side-label, .btn, .navlink, .num {
  font-family: "JetBrains Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

h1, h2 {
  font-family: "Anton", "Archivo Black", sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.01em;
}

main { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* --- top bar --- */
.topbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 32px; border-bottom: 3px solid var(--ink);
  background: var(--paper); position: sticky; top: 0; z-index: 10;
}
.brand { font-family: "Anton", sans-serif; font-size: 22px; letter-spacing: 0.02em; display: flex; gap: 10px; align-items: center; }
.crown { color: var(--blue); font-size: 14px; letter-spacing: -2px; }
.topbar nav { display: flex; gap: 22px; align-items: center; }
.navlink { color: var(--ink); text-decoration: none; font-size: 12px; }
.navlink:hover { color: var(--blue); }

/* --- buttons --- */
.btn {
  display: inline-block; padding: 12px 22px; font-size: 13px;
  border: var(--border); box-shadow: 4px 4px 0 var(--ink);
  text-decoration: none; color: var(--ink); cursor: pointer;
  transition: transform 0.05s, box-shadow 0.05s; background: var(--paper);
}
.btn:active { transform: translate(3px, 3px); box-shadow: 1px 1px 0 var(--ink); }
.btn-yellow { background: var(--yellow); }
.btn-blue { background: var(--blue); color: #fff; }

/* --- hero --- */
.hero {
  display: grid; grid-template-columns: 3fr 2fr;
  background: var(--panel); color: var(--cream-on-dark);
  margin-top: 42px; border: var(--border); box-shadow: var(--shadow);
}
.hero-main { padding: 56px 48px; }
.kicker { color: var(--yellow); font-size: 12px; display: flex; align-items: center; gap: 10px; margin-bottom: 28px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); display: inline-block; }
.hero h1 { font-size: clamp(56px, 8vw, 104px); color: var(--cream-on-dark); }
.hero .hl { background: var(--yellow); color: var(--ink); padding: 0 14px; display: inline-block; }
.sub { margin-top: 26px; font-size: 19px; max-width: 34em; color: #d9cfb6; }
.cta-row { margin-top: 34px; display: flex; gap: 26px; align-items: center; }
.quiet-link { color: var(--cream-on-dark); font-family: "JetBrains Mono", monospace; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; }

.hero-side { border-left: 2px solid #3a3428; padding: 40px 36px; }
.side-label { font-size: 11px; color: #8a8069; margin-bottom: 22px; }
.steps { list-style: none; }
.steps li { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid #3a3428; }
.steps li:last-child { border-bottom: none; }
.num { color: var(--blue); font-size: 20px; filter: brightness(1.6); }
.steps strong { font-family: "JetBrains Mono", monospace; font-size: 12px; letter-spacing: 0.12em; }
.steps p { color: #b8ae95; font-size: 14px; margin-top: 4px; }

/* --- feature strip --- */
.strip {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: var(--border); box-shadow: var(--shadow);
  margin-top: 42px; background: #e4d7b8;
}
.strip-cell { padding: 26px 24px; border-right: 2px solid var(--ink); }
.strip-cell:last-child { border-right: none; }
.strip-cell strong { font-family: "JetBrains Mono", monospace; font-size: 12px; letter-spacing: 0.12em; }
.strip-cell p { font-size: 14px; margin-top: 6px; }

/* --- sections --- */
.section-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 22px; flex-wrap: wrap; gap: 8px; }
h2 { font-size: clamp(30px, 4vw, 46px); }
.mono-label { font-size: 11px; color: #6d6450; }

.issue-wrap, .chat-wrap, .archive { margin-top: 64px; }
.issue-body {
  background: #fffdf6; border: var(--border); box-shadow: var(--shadow);
  padding: 40px 44px; max-width: 800px;
}
.issue-body h1, .issue-body h2, .issue-body h3 { margin: 26px 0 10px; font-size: 24px; }
.issue-body p { margin: 12px 0; }
.issue-body ul, .issue-body ol { margin: 12px 0 12px 22px; }
.issue-body li { margin: 8px 0; }
.issue-body strong { background: linear-gradient(transparent 60%, var(--yellow) 60%); }

.audio-bar {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  border: var(--border); box-shadow: var(--shadow); background: var(--panel);
  padding: 14px 20px; margin-bottom: 22px; max-width: 800px;
}
.audio-bar .mono-label { color: var(--yellow); }
.audio-bar audio { flex: 1; min-width: 240px; height: 40px; }

/* --- subscribe --- */
.subscribe { margin-top: 72px; }
.subscribe h2 { font-size: clamp(34px, 5vw, 56px); margin-bottom: 24px; }
.strike { position: relative; }
.strike::after {
  content: ""; position: absolute; left: -2%; right: -2%; top: 52%;
  height: 6px; background: var(--red); transform: rotate(-2deg);
}
#sub-form { display: flex; gap: 14px; max-width: 560px; flex-wrap: wrap; }
#sub-form input {
  flex: 1; min-width: 240px; padding: 12px 16px; font-size: 15px;
  border: var(--border); background: #fffdf6; font-family: inherit;
}
#sub-msg { margin-top: 12px; }

/* --- chat --- */
.chat-log {
  border: var(--border); box-shadow: var(--shadow); background: #fffdf6;
  min-height: 120px; max-height: 420px; overflow-y: auto; padding: 20px;
  display: flex; flex-direction: column; gap: 12px; max-width: 800px;
}
.msg { max-width: 85%; padding: 10px 14px; font-size: 15px; border: 2px solid var(--ink); }
.msg-user { align-self: flex-end; background: var(--yellow); }
.msg-host { align-self: flex-start; background: var(--panel); color: var(--cream-on-dark); }
#chat-form { display: flex; gap: 14px; margin-top: 18px; max-width: 800px; }
#chat-form input {
  flex: 1; padding: 12px 16px; font-size: 15px;
  border: var(--border); background: #fffdf6; font-family: inherit;
}

/* --- archive --- */
#archive-list { list-style: none; max-width: 800px; }
#archive-list li { border-bottom: 2px solid var(--ink); }
#archive-list a {
  display: flex; justify-content: space-between; gap: 16px; padding: 16px 4px;
  color: var(--ink); text-decoration: none; font-weight: 600;
}
#archive-list a:hover { background: #e4d7b8; }
#archive-list .mono-label { white-space: nowrap; }

/* --- footer --- */
.footer {
  margin-top: 90px; border-top: 3px solid var(--ink);
  display: flex; justify-content: space-between; align-items: center;
  padding: 26px 32px; flex-wrap: wrap; gap: 10px;
}

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; }
  .hero-side { border-left: none; border-top: 2px solid #3a3428; }
  .strip { grid-template-columns: 1fr; }
  .strip-cell { border-right: none; border-bottom: 2px solid var(--ink); }
  .strip-cell:last-child { border-bottom: none; }
  .topbar { padding: 14px 18px; }
  .topbar .navlink { display: none; }
  .hero-main { padding: 36px 26px; }
  .issue-body { padding: 26px 22px; }
}
