:root {
  color-scheme: dark;
  --bg: #090908;
  --text: #fffdf2;
  --muted: #c9c0a7;
  --line: rgba(255, 253, 242, 0.2);
  --ink: #17130d;
  --paper: #fff5d6;
  --acid: #c8ff00;
  --orange: #ff6a00;
  --blue: #00a6ff;
  --pink: #ff3fa4;
  --green: #1fca68;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 106, 0, 0.26), transparent 28rem),
    radial-gradient(circle at 86% 20%, rgba(0, 166, 255, 0.22), transparent 24rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0 12%, transparent 12% 100%),
    var(--bg);
  color: var(--text);
  font-family: "Zen Kaku Gothic New", "BIZ UDPGothic", system-ui, sans-serif;
  line-height: 1.75;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 253, 242, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 253, 242, 0.055) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background: repeating-linear-gradient(
    -10deg,
    transparent 0 24px,
    rgba(255, 253, 242, 0.03) 24px 25px
  );
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

p {
  margin: 0;
}

.cursor-light {
  position: fixed;
  left: var(--mouse-x, 50%);
  top: var(--mouse-y, 35%);
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(200, 255, 0, 0.18), transparent 62%);
  pointer-events: none;
  z-index: -1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
  padding: 14px 0;
  backdrop-filter: blur(18px);
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  color: var(--text);
  font-weight: 900;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 2px solid var(--ink);
  border-radius: 4px;
  background: var(--acid);
  color: var(--ink);
  box-shadow: 5px 5px 0 var(--orange);
  line-height: 1;
}

.nav-links {
  gap: 8px;
}

.nav-links a {
  min-height: 38px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  border-color: var(--acid);
  color: var(--text);
  outline: none;
}

main {
  overflow: clip;
}

.hero {
  min-height: calc(100vh - 68px);
  padding: 10px 0 64px;
}

.hero-media {
  position: relative;
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto 28px;
  border: 3px solid var(--ink);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 10px 10px 0 var(--acid), var(--shadow);
  transform: rotate(-0.8deg);
}

.hero-media img {
  width: 100%;
  min-height: 220px;
  object-fit: cover;
}

.hero-grid,
.split-section,
.profile-section,
.contact-section,
.article-feature {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 360px);
  gap: 24px;
  align-items: stretch;
}

.hero-copy {
  padding: clamp(26px, 5vw, 54px);
  border: 1px solid var(--line);
  background: rgba(9, 9, 8, 0.74);
  clip-path: polygon(0 0, 96% 0, 100% 12%, 100% 100%, 3% 100%, 0 88%);
}

.kicker {
  width: fit-content;
  margin-bottom: 14px;
  padding: 3px 10px;
  background: var(--pink);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.45;
  transform: rotate(-1.5deg);
}

h1 {
  max-width: 920px;
  font-size: clamp(3rem, 9vw, 7.4rem);
  font-weight: 900;
}

.hero-lead {
  max-width: 760px;
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  padding: 12px 18px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.82);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.btn:hover,
.btn:focus-visible,
.contact-card:hover,
.contact-card:focus-visible {
  outline: none;
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.86);
}

.btn-primary {
  background: var(--acid);
  color: var(--ink);
}

.btn-secondary {
  background: var(--paper);
  color: var(--ink);
}

.signal-panel {
  display: grid;
  align-content: end;
  min-height: 320px;
  padding: 24px;
  border: 3px solid var(--ink);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 106, 0, 0.85), rgba(255, 63, 164, 0.88)),
    var(--orange);
  color: #fff;
  box-shadow: 8px 8px 0 var(--blue);
}

.panel-label {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.signal-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: clamp(1.15rem, 2.4vw, 1.7rem);
  font-weight: 900;
  line-height: 1.24;
}

.marquee-band {
  margin: 26px 0 84px;
  border-block: 2px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  overflow: hidden;
  transform: rotate(1deg);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 36px;
  padding: 12px 18px;
  animation: marquee 22s linear infinite;
  font-size: clamp(1.3rem, 3vw, 2.2rem);
  font-weight: 900;
  white-space: nowrap;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.split-section,
.profile-section,
.contact-section {
  padding: 82px 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}

h2 {
  font-size: clamp(2.1rem, 5.4vw, 5rem);
  font-weight: 900;
}

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

.theme-card {
  min-height: 340px;
  padding: 22px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 7px 7px 0 var(--orange);
}

.theme-card:nth-child(2) {
  background: #dff6ff;
  box-shadow-color: var(--blue);
  transform: translateY(24px);
}

.theme-card:nth-child(3) {
  background: #f0ffe0;
  box-shadow-color: var(--green);
}

.card-index {
  display: block;
  margin-bottom: 48px;
  color: var(--orange);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}

.theme-card h3 {
  margin-bottom: 14px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
}

.theme-card p,
.article-copy p,
.profile-copy p,
.contact-section p {
  color: inherit;
  font-size: 1.03rem;
  font-weight: 700;
}

.article-feature {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 52px);
  align-items: center;
  padding: 70px 0;
}

.article-visual {
  border: 3px solid var(--ink);
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 10px 10px 0 var(--pink);
  transform: rotate(2deg);
}

.article-copy {
  padding: clamp(24px, 4vw, 42px);
  border-left: 8px solid var(--acid);
  background: rgba(255, 253, 242, 0.06);
}

.article-copy p,
.profile-copy p,
.contact-section p {
  margin-top: 18px;
  color: var(--muted);
}

.text-link {
  display: inline-block;
  margin-top: 22px;
  color: var(--acid);
  font-weight: 900;
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

.profile-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 24px;
  align-items: center;
}

.profile-stats {
  display: grid;
  gap: 12px;
}

.profile-stats div {
  padding: 20px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--acid);
  color: var(--ink);
  box-shadow: 6px 6px 0 var(--orange);
}

.profile-stats div:nth-child(2) {
  background: var(--paper);
  box-shadow-color: var(--blue);
}

.profile-stats div:nth-child(3) {
  background: #ffd6eb;
  box-shadow-color: var(--pink);
}

.profile-stats span {
  display: block;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1;
}

.profile-stats p {
  margin-top: 5px;
  font-weight: 900;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 24px;
  align-items: center;
}

.contact-card {
  display: grid;
  width: 100%;
  min-height: 180px;
  padding: 24px;
  border: 3px solid var(--ink);
  border-radius: 8px;
  color: var(--ink);
  text-decoration: none;
  box-shadow: 8px 8px 0 var(--acid);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.primary-contact {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.36), transparent 42%),
    var(--orange);
}

.contact-card span {
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card strong {
  align-self: end;
  font-size: clamp(2rem, 5vw, 3.7rem);
  line-height: 1;
}

.contact-card small {
  margin-top: 8px;
  font-size: 0.98rem;
  font-weight: 900;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
  padding: 28px 0 36px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer a {
  color: var(--text);
  font-weight: 900;
}

@media (max-width: 860px) {
  .site-header {
    position: static;
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 6px;
  }

  .hero-media {
    box-shadow: 6px 6px 0 var(--acid), var(--shadow);
  }

  .hero-grid,
  .section-head,
  .article-feature,
  .profile-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .signal-panel {
    min-height: 230px;
  }

  .marquee-band {
    margin-bottom: 40px;
  }

  .split-section,
  .profile-section,
  .contact-section {
    padding: 52px 0;
  }

  .theme-grid {
    grid-template-columns: 1fr;
  }

  .theme-card,
  .theme-card:nth-child(2) {
    min-height: 260px;
    transform: none;
  }

  .card-index {
    margin-bottom: 26px;
  }

  .article-copy {
    padding-inline: 0;
    border-left: 0;
    background: transparent;
  }
}

@media (max-width: 520px) {
  .hero-media img {
    min-height: 180px;
  }

  .hero-copy {
    padding: 24px 18px;
  }

  h1 {
    font-size: clamp(2.45rem, 15vw, 4rem);
  }

  .btn,
  .hero-actions {
    width: 100%;
  }

  .site-footer {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
