:root {
  --primary: #d02020;
  --secondary: #f0c020;
  --accent: #1040c0;
  --surface: #f0f0f0;
  --panel: #e0e0e0;
  --white: #ffffff;
  --text: #121212;
  --muted: #777777;
  --shadow: #121212;
  --border: 3px solid var(--text);
  --hard: 8px 8px 0 var(--shadow);
  --hard-small: 5px 5px 0 var(--shadow);
  color-scheme: light;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 24% 18%, rgba(240, 192, 32, 0.22), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(16, 64, 192, 0.16), transparent 24%),
    linear-gradient(135deg, transparent 0 47%, rgba(18, 18, 18, 0.045) 47% 53%, transparent 53%),
    var(--surface);
  background-size: auto, auto, 44px 44px, auto;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background-image: radial-gradient(var(--muted) 1.45px, transparent 1.45px);
  background-size: 20px 20px;
  opacity: 0.28;
}

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

#noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: 0.16;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 54px;
  gap: 18px;
  align-items: center;
  padding: 14px clamp(16px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: var(--border);
  backdrop-filter: blur(14px);
}

.brand,
.nav,
.lang-toggle,
.punk-button,
.punk-card,
.desktop-window,
.phone-window,
.access-section {
  border: var(--border);
  box-shadow: var(--hard-small);
}

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  padding: 7px 11px 7px 7px;
  background: var(--white);
  font-weight: 950;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: white;
  background: var(--primary);
  border: 2px solid var(--text);
}

.nav {
  display: flex;
  gap: 2px;
  padding: 4px;
  background: var(--white);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.nav a {
  padding: 8px 13px;
}

.nav a:hover {
  background: var(--secondary);
}

.lang-toggle {
  width: 46px;
  height: 40px;
  color: var(--text);
  background: var(--white);
  font-weight: 950;
  cursor: pointer;
}

.hero {
  display: grid;
  min-height: calc(100vh - 72px);
  grid-template-columns: minmax(360px, 0.78fr) minmax(420px, 1.22fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: center;
  padding: clamp(34px, 6vw, 70px) clamp(18px, 5vw, 76px) 36px;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 7px 10px;
  color: white;
  background: var(--accent);
  border: 2px solid var(--text);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
  box-shadow: 4px 4px 0 var(--shadow);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  position: relative;
  max-width: 10ch;
  margin-bottom: 20px;
  font-size: clamp(72px, 8.6vw, 124px);
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1::after {
  position: absolute;
  right: 2%;
  bottom: -14px;
  width: 42%;
  height: 18px;
  content: "";
  background: var(--secondary);
  border: 3px solid var(--text);
  transform: rotate(-2deg);
  z-index: -1;
}

h2 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(38px, 7vw, 78px);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-line {
  max-width: 560px;
  margin-bottom: 30px;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.18;
  font-weight: 850;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.punk-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  font-weight: 950;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.punk-button:hover {
  transform: translate(5px, 5px);
  box-shadow: 0 0 0 var(--shadow);
}

.punk-button.primary {
  color: white;
  background: var(--primary);
}

.punk-button.ghost {
  background: var(--white);
}

.hero-stage {
  min-width: 0;
  justify-self: end;
  width: min(100%, 760px);
}

.share-main {
  min-height: calc(100vh - 72px);
  padding: clamp(22px, 5vw, 58px);
}

.share-shell {
  display: grid;
  max-width: 1040px;
  margin: 0 auto;
  gap: 22px;
}

.share-heading,
.share-content,
.share-limit {
  border: var(--border);
  box-shadow: var(--hard-small);
  background: var(--white);
}

.share-heading {
  padding: clamp(18px, 4vw, 34px);
}

.share-heading h1 {
  max-width: none;
  margin: 8px 0 12px;
  font-size: clamp(42px, 7vw, 84px);
  line-height: 0.95;
}

.share-heading h1::after {
  display: none;
}

.share-heading p {
  margin: 0;
  color: var(--muted);
  font-weight: 850;
}

.share-top-cta {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.share-content {
  padding: clamp(16px, 4vw, 28px);
}

.share-article {
  display: grid;
  gap: 12px;
}

.share-article p {
  margin: 0;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.72;
  font-weight: 650;
}

.share-content audio {
  width: 100%;
  margin-bottom: 18px;
}

.share-comic-grid {
  display: grid;
  gap: 18px;
}

.share-comic-card {
  overflow: hidden;
  border: 2px solid var(--text);
  background: var(--surface);
}

.share-comic-card img {
  display: block;
  width: 100%;
  max-height: 640px;
  object-fit: contain;
  background: var(--white);
  border-bottom: 2px solid var(--text);
}

.share-comic-card p {
  margin: 0;
  padding: 14px;
  font-weight: 800;
  line-height: 1.5;
}

.share-limit {
  padding: 18px;
  background: var(--secondary);
}

.share-limit strong {
  display: block;
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 950;
}

.share-limit p {
  max-width: 680px;
  margin-bottom: 16px;
  font-weight: 750;
}

.device-stack {
  position: relative;
  min-height: clamp(520px, 58vw, 700px);
}

.desktop-window {
  position: absolute;
  inset: 4% 0 auto auto;
  width: min(690px, 94%);
  min-height: 420px;
  background: var(--white);
  transform: rotate(1.2deg);
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  border-bottom: var(--border);
  background: var(--panel);
}

.window-bar span {
  width: 14px;
  height: 14px;
  border: 2px solid var(--text);
  background: var(--primary);
}

.window-bar span:nth-child(2) {
  background: var(--secondary);
}

.window-bar span:nth-child(3) {
  background: var(--accent);
}

.window-bar strong {
  margin-left: auto;
  font-size: 13px;
  text-transform: uppercase;
}

.desktop-grid {
  display: grid;
  grid-template-columns: 136px 1fr;
  min-height: 360px;
}

.desktop-grid aside {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  background: #121212;
  color: white;
  border-right: var(--border);
}

.desktop-grid aside b {
  padding: 10px;
  background: var(--primary);
  border: 2px solid white;
  text-transform: uppercase;
}

.desktop-grid aside b:nth-child(2) {
  background: var(--accent);
}

.desktop-grid aside b:nth-child(3) {
  color: var(--text);
  background: var(--secondary);
  border-color: var(--text);
}

.desktop-grid section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-content: start;
  padding: 18px;
}

.doc-card {
  min-height: 156px;
  padding: 14px;
  border: var(--border);
  box-shadow: 5px 5px 0 var(--shadow);
}

.doc-card span {
  display: inline-flex;
  margin-bottom: 40px;
  padding: 5px 8px;
  color: white;
  background: #121212;
  font-size: 12px;
  font-weight: 950;
}

.doc-card strong {
  display: block;
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
}

.doc-card.red {
  background: var(--primary);
  color: white;
}

.doc-card.yellow {
  background: var(--secondary);
}

.reader-strip {
  grid-column: 1 / -1;
  display: grid;
  gap: 11px;
  padding: 18px;
  background: var(--panel);
  border: var(--border);
}

.reader-strip span {
  height: 18px;
  background: var(--text);
}

.reader-strip span:nth-child(2) {
  width: 82%;
}

.reader-strip span:nth-child(3) {
  width: 64%;
  background: var(--accent);
}

.reader-strip span:nth-child(4) {
  width: 72%;
  background: var(--primary);
}

.phone-window {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(290px, 58vw);
  min-height: 540px;
  padding: 14px;
  background: #121212;
  transform: rotate(-4deg);
}

.phone-notch {
  width: 86px;
  height: 16px;
  margin: 0 auto 12px;
  background: var(--white);
  border: 2px solid var(--text);
}

.phone-screen {
  min-height: 480px;
  padding: 18px;
  background:
    radial-gradient(var(--muted) 1px, transparent 1px),
    var(--surface);
  background-size: 17px 17px;
  border: 3px solid var(--white);
}

.phone-screen > p {
  margin-bottom: 96px;
  font-size: 22px;
  font-weight: 950;
  line-height: 0.96;
}

.audio-panel,
.chat-card {
  padding: 14px;
  background: var(--white);
  border: var(--border);
  box-shadow: var(--hard-small);
}

.audio-panel {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.play {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: white;
  background: var(--primary);
  border: 2px solid var(--text);
}

.audio-panel b,
.chat-card b {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.1;
}

.audio-panel i {
  display: block;
  width: 110px;
  height: 8px;
  background: linear-gradient(90deg, var(--accent) 64%, var(--panel) 64%);
  border: 1px solid var(--text);
}

.chat-card {
  background: var(--secondary);
}

.chat-card span {
  font-size: 14px;
  font-weight: 750;
}

.ticker {
  display: flex;
  width: calc(100% - clamp(36px, 10vw, 152px));
  margin: 0 auto;
  border-block: var(--border);
  overflow: hidden;
  background: #121212;
}

.ticker span {
  flex: 1;
  min-width: 130px;
  padding: 16px 18px;
  color: white;
  border-right: 2px solid white;
  font-size: 18px;
  font-weight: 950;
  text-align: center;
}

.section {
  padding: clamp(70px, 10vw, 124px) clamp(18px, 5vw, 76px);
}

.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.punk-card {
  min-height: 252px;
  padding: clamp(18px, 3vw, 28px);
  background: var(--white);
}

.punk-card span {
  display: inline-flex;
  margin-bottom: 46px;
  padding: 6px 9px;
  color: white;
  background: var(--text);
  font-weight: 950;
}

.punk-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 760;
}

.punk-card.is-blue {
  color: white;
  background: var(--accent);
}

.punk-card.is-blue p {
  color: rgba(255, 255, 255, 0.82);
}

.punk-card.is-yellow {
  background: var(--secondary);
}

.modes-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  padding-top: 30px;
}

.mode-visual {
  position: relative;
  min-height: 470px;
}

.comic-frame {
  position: absolute;
  inset: 0 auto auto 0;
  width: min(520px, 86%);
  min-height: 350px;
  padding: 28px;
  background:
    linear-gradient(135deg, transparent 0 48%, rgba(18, 18, 18, 0.15) 48% 52%, transparent 52%),
    var(--secondary);
  background-size: 30px 30px;
  border: var(--border);
  box-shadow: var(--hard);
  transform: rotate(-1.5deg);
}

.burst {
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  color: white;
  background: var(--primary);
  border: var(--border);
  box-shadow: var(--hard-small);
  font-size: 74px;
  font-weight: 950;
}

.comic-frame p {
  position: absolute;
  right: 24px;
  bottom: 24px;
  max-width: 260px;
  margin: 0;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 0.92;
  font-weight: 950;
  text-transform: uppercase;
}

.wave-card {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  width: min(380px, 68%);
  height: 168px;
  align-items: end;
  gap: 12px;
  padding: 18px;
  background: var(--white);
  border: var(--border);
  box-shadow: var(--hard);
}

.wave-card span {
  flex: 1;
  background: var(--accent);
  border: 2px solid var(--text);
}

.wave-card span:nth-child(1) { height: 44%; }
.wave-card span:nth-child(2) { height: 82%; background: var(--primary); }
.wave-card span:nth-child(3) { height: 60%; background: var(--secondary); }
.wave-card span:nth-child(4) { height: 96%; }
.wave-card span:nth-child(5) { height: 54%; background: var(--primary); }

.mode-list {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.mode-list p {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 0;
  padding: 14px 16px;
  background: var(--white);
  border: var(--border);
  box-shadow: 4px 4px 0 var(--shadow);
  font-weight: 850;
}

.mode-list b {
  text-transform: uppercase;
}

.mode-list span {
  color: var(--muted);
}

.access-section {
  display: flex;
  width: calc(100% - clamp(36px, 10vw, 152px));
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto clamp(48px, 7vw, 84px);
  padding: clamp(22px, 4vw, 38px);
  background: #121212;
  color: white;
}

.access-section .eyebrow {
  color: var(--text);
  background: var(--secondary);
}

.access-section h2 {
  color: white;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px clamp(18px, 5vw, 76px);
  border-top: var(--border);
  background: var(--white);
  font-weight: 850;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.legal-main {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(34px, 7vw, 76px) 0 clamp(56px, 8vw, 96px);
}

.legal-hero,
.legal-section {
  border: var(--border);
  box-shadow: var(--hard-small);
}

.legal-hero {
  margin-bottom: 20px;
  padding: clamp(22px, 5vw, 42px);
  color: white;
  background: #121212;
}

.legal-hero h1 {
  max-width: 12ch;
  margin-bottom: 18px;
  font-size: clamp(48px, 9vw, 96px);
}

.legal-hero h1::after {
  width: 36%;
}

.legal-hero p {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2.5vw, 24px);
  line-height: 1.35;
  font-weight: 800;
}

.legal-section {
  margin-top: 18px;
  padding: clamp(18px, 4vw, 30px);
  background: var(--white);
}

.legal-section h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 5vw, 48px);
}

.legal-section h3 {
  margin-top: 22px;
  font-size: clamp(20px, 3vw, 28px);
}

.legal-section p,
.legal-section li {
  color: #333333;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 650;
}

.legal-section ul {
  padding-left: 20px;
}

.site-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.site-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  background: var(--white);
  border: var(--border);
  box-shadow: var(--hard-small);
}

.site-card span {
  width: fit-content;
  padding: 5px 8px;
  color: white;
  background: var(--accent);
  border: 2px solid var(--text);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.site-card h2 {
  margin: 0;
  font-size: clamp(30px, 5vw, 46px);
}

.site-card p {
  margin-bottom: auto;
  color: #333333;
  font-weight: 700;
  line-height: 1.45;
}

.site-card-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-card-links a {
  padding: 9px 12px;
  background: var(--secondary);
  border: 2px solid var(--text);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.legal-meta {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 9px;
  background: var(--secondary);
  border: 2px solid var(--text);
  font-size: 13px;
  font-weight: 950;
}

[data-reveal] {
  transform: translateY(18px);
  opacity: 0;
  transition: transform 520ms ease, opacity 520ms ease;
}

[data-reveal].is-visible {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr 54px;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 34px;
  }

  .device-stack {
    min-height: 560px;
  }

  .desktop-window {
    width: 100%;
    inset: 0 0 auto 0;
  }

  .phone-window {
    left: 5%;
  }

  .flow-grid,
  .modes-section {
    grid-template-columns: 1fr;
  }

  .section-title {
    display: block;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 12px 14px;
  }

  .brand {
    max-width: 190px;
  }

  .hero-actions,
  .access-section,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .punk-button {
    width: 100%;
  }

  .device-stack {
    min-height: 580px;
  }

  .desktop-window {
    min-height: 350px;
  }

  .desktop-grid {
    grid-template-columns: 96px 1fr;
    min-height: 300px;
  }

  .desktop-grid aside {
    padding: 10px;
  }

  .desktop-grid aside b {
    padding: 8px 6px;
    font-size: 12px;
  }

  .desktop-grid section {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .doc-card {
    min-height: 104px;
  }

  .doc-card span {
    margin-bottom: 16px;
  }

  .reader-strip {
    display: none;
  }

  .phone-window {
    width: min(260px, 72vw);
    min-height: 440px;
    right: 0;
    left: auto;
  }

  .phone-screen {
    min-height: 380px;
  }

  .phone-screen > p {
    margin-bottom: 48px;
  }

  .ticker {
    width: calc(100% - 28px);
    overflow-x: auto;
  }

  .section {
    padding-right: 14px;
    padding-left: 14px;
  }

  .punk-card {
    min-height: 210px;
  }

  .mode-visual {
    min-height: 420px;
  }

  .comic-frame {
    width: 92%;
  }

  .comic-frame p {
    left: 22px;
    right: 22px;
  }

  .wave-card {
    width: 74%;
  }

  .access-section {
    width: calc(100% - 28px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
  }
}
