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

:root {
  --ink: #123129;
  --paper: #f5f1e9;
  --acid: #d8ff5c;
  --coral: #fe896f;
  --sky: #a7d7d0;
  --mist: #dce3db;
  --muted: #668078;
  --line: rgba(18, 49, 41, .17);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Manrope, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
}

/* zine noise texture */
body::before {
  content: "";
  position: fixed;
  z-index: -1;
  inset: 0;
  opacity: .27;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 170 170' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.28'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }

.wrap { width: min(1180px, calc(100% - 52px)); margin-inline: auto; }

/* ---------- typography ---------- */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 21px;
  color: var(--muted);
  font: 500 10px 'DM Mono', monospace;
  letter-spacing: .9px;
  text-transform: uppercase;
}
.eyebrow span { width: 7px; height: 7px; background: var(--coral); transform: rotate(45deg); }

h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 720px;
  margin-bottom: 26px;
  font-size: clamp(46px, 6vw, 76px);
  line-height: .94;
  letter-spacing: -4.4px;
  font-weight: 800;
}
h1 em {
  color: var(--coral);
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  letter-spacing: -3px;
}
h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.04;
  letter-spacing: -2.4px;
  margin-bottom: 14px;
}
.lead {
  max-width: 480px;
  margin-bottom: 28px;
  color: #57736a;
  font-size: 15px;
  line-height: 1.75;
}

/* ---------- nav ---------- */
.nav {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-size: 27px;
  font-weight: 800;
  letter-spacing: -2.3px;
}
.brand span { color: #e7583f; }
.nav-links {
  display: flex;
  gap: 28px;
  margin-left: 100px;
  font-size: 12px;
  font-weight: 800;
}
.nav-links a { opacity: .63; }
.nav-links a:hover { opacity: 1; color: var(--coral); }

/* ---------- buttons ---------- */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 15px 19px;
  border-radius: 3px;
  color: white;
  background: var(--ink);
  font-size: 12px;
  font-weight: 800;
  transition: transform .2s, background .2s;
}
.button:hover { background: #275448; transform: translateY(-3px); }
.button span { color: var(--acid); font-size: 17px; line-height: 12px; }
.button-small { padding: 11px 14px; gap: 13px; font-size: 11px; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
}
.text-link span { font-size: 18px; }
.text-link:hover { color: var(--coral); }

/* ---------- hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  min-height: 560px;
  align-items: center;
  gap: 43px;
  padding: 56px 0 64px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

/* hero art — simplified: vinyl slow-spin, no orbits/cards */
.hero-art {
  position: relative;
  height: 463px;
  overflow: hidden;
  border-radius: 4px 94px 4px 4px;
  background: var(--sky);
  isolation: isolate;
}
.hero-art::before {
  content: "";
  position: absolute;
  width: 550px;
  height: 550px;
  top: -105px;
  left: -92px;
  border: 1px solid rgba(18, 49, 41, .55);
  border-radius: 50%;
  box-shadow:
    0 0 0 33px rgba(18, 49, 41, .09),
    0 0 0 70px rgba(18, 49, 41, .07),
    0 0 0 117px rgba(18, 49, 41, .06);
}
.hero-art::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 37%;
  height: 100%;
  background: var(--acid);
  clip-path: polygon(38% 0, 100% 0, 100% 100%, 0 100%);
}
.vinyl {
  position: absolute;
  z-index: 1;
  width: 260px;
  height: 260px;
  top: 102px;
  left: calc(50% - 130px);
  border-radius: 50%;
  background: repeating-radial-gradient(circle, #1f493e 0 3px, #112f27 4px 7px);
  box-shadow: 0 24px 35px rgba(18, 49, 41, .23);
  animation: spin 6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.vinyl::before {
  content: "";
  position: absolute;
  inset: 37px;
  border: 1px solid rgba(245, 241, 233, .3);
  border-radius: 50%;
}
.vinyl::after {
  content: "";
  position: absolute;
  inset: 85px;
  border-radius: 50%;
  background: var(--coral);
}
.vinyl i {
  position: absolute;
  z-index: 1;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--paper);
  left: 124px;
  top: 124px;
}
.art-index {
  position: absolute;
  top: 19px;
  right: 21px;
  z-index: 2;
  color: var(--ink);
  font: 9px/1.4 'DM Mono', monospace;
  text-align: right;
  letter-spacing: .4px;
  margin: 0;
}
.art-caption {
  position: absolute;
  z-index: 2;
  bottom: -11px;
  left: 23px;
  margin: 0;
  font-size: 36px;
  line-height: .83;
  font-weight: 800;
  letter-spacing: -2.6px;
}

/* ---------- ticker ---------- */
.ticker {
  overflow: hidden;
  border-top: 1px solid rgba(245, 241, 233, .12);
  border-bottom: 1px solid rgba(245, 241, 233, .12);
  padding: 15px 0;
  color: var(--paper);
  background: var(--ink);
  white-space: nowrap;
}
.ticker div {
  display: flex;
  align-items: center;
  gap: 27px;
  width: max-content;
  animation: scroll 25s linear infinite;
}
.ticker span { font: 500 11px 'DM Mono', monospace; letter-spacing: 1px; }
.ticker b { color: var(--acid); }
@keyframes scroll { to { transform: translateX(-30%); } }

/* ---------- subscribe (statement-style) ---------- */
.subscribe {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
  padding: 78px 0 92px;
}
.subscribe::after {
  content: "SE";
  position: absolute;
  right: -19px;
  bottom: -79px;
  color: rgba(216, 255, 92, .09);
  font: 800 340px/1 Manrope, sans-serif;
  letter-spacing: -35px;
  pointer-events: none;
}
.subscribe-inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 calc((100% - 1180px) / 2 + 26px);
}
.subscribe-statement {
  max-width: 870px;
  margin: 0 0 36px;
  font-size: clamp(32px, 4.2vw, 54px);
  line-height: 1.06;
  letter-spacing: -3px;
  font-weight: 700;
}
.subscribe-statement em {
  color: var(--acid);
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  letter-spacing: -2px;
}
.subscribe-sub {
  max-width: 540px;
  margin: 0 0 28px;
  color: #a7c6b7;
  font-size: 14px;
  line-height: 1.65;
}
.subscribe-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 640px;
}
.subscribe-form input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(245, 241, 233, .4);
  padding: 14px 4px;
  color: var(--paper);
  font: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color .2s ease;
}
.subscribe-form input::placeholder {
  color: rgba(245, 241, 233, .55);
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.subscribe-form input:focus {
  border-color: var(--acid);
}
.subscribe-form input.name {
  flex: 0 0 160px;
}
.subscribe-form button {
  background: var(--acid);
  color: var(--ink);
  border: 0;
  padding: 15px 22px;
  border-radius: 3px;
  font: 800 12px Manrope, sans-serif;
  letter-spacing: .5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease;
}
.subscribe-form button:hover {
  background: #c4e946;
  transform: translateY(-2px);
}
.subscribe-form button:active { transform: translateY(0); }
.subscribe-form button:disabled { opacity: .5; cursor: wait; }
.subscribe-msg {
  margin-top: 18px;
  font: 500 11px 'DM Mono', monospace;
  letter-spacing: .9px;
  text-transform: uppercase;
  color: #a7c6b7;
  min-height: 18px;
}
.subscribe-msg.ok { color: var(--acid); }
.subscribe-msg.err { color: var(--coral); }

/* ---------- footer ---------- */
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding: 30px 0;
  font-size: 10px;
}
.footer p { margin: 0; color: var(--muted); }
.footer div { display: flex; gap: 17px; font-weight: 800; }
.footer a:hover { color: var(--coral); }

/* ---------- responsive ---------- */
@media (max-width: 760px) {
  .wrap { width: min(100% - 34px, 1180px); }
  .nav { height: 74px; }
  .nav-links { display: none; }
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 18px;
    padding: 48px 0 56px;
  }
  .hero-art { height: 397px; max-width: 480px; width: 100%; margin-top: 14px; }
  .subscribe-inner { padding: 0 17px; }
  .subscribe-form { flex-direction: column; }
  .subscribe-form input.name { flex: 1 0 auto; }
  .subscribe-form button { width: 100%; }
  .footer { flex-wrap: wrap; gap: 20px; }
  .footer p { order: 3; width: 100%; }
  .art-caption { font-size: 31px; }
}

@media (max-width: 400px) {
  h1 { letter-spacing: -3px; }
  .hero-actions { gap: 14px; }
  .button { padding: 14px 15px; }
  .text-link { font-size: 11px; }
  .hero-art { height: 360px; }
  .vinyl { transform: scale(.84); transform-origin: top center; }
}

@media (prefers-reduced-motion: reduce) {
  .vinyl { animation: none; }
  .ticker div { animation: none; }
}
