:root {
  color-scheme: dark;
  --bg: #05060b;
  --bg-2: #090b14;
  --panel: rgba(15, 18, 31, .78);
  --panel-solid: #101321;
  --panel-2: rgba(24, 29, 48, .72);
  --text: #f5f7fb;
  --soft: #c8d1e4;
  --muted: #8793ab;
  --line: rgba(255, 255, 255, .11);
  --line-strong: rgba(255, 255, 255, .18);
  --accent: #59f0ff;
  --accent-2: #8c5cff;
  --accent-3: #f2b84b;
  --danger: #ff4f70;
  --green: #7cf9bb;
  --shadow: 0 32px 90px rgba(0, 0, 0, .46);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at 16% -10%, rgba(89, 240, 255, .16), transparent 34rem),
    radial-gradient(circle at 86% 0%, rgba(140, 92, 255, .22), transparent 30rem),
    linear-gradient(180deg, #070812 0%, #05060b 42%, #070912 100%);
  color: var(--text);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.85), rgba(0,0,0,.08));
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(5, 6, 11, .92) 88%);
}

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

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

a:hover { color: var(--accent); }

p { margin: 0 0 1rem; }

h1, h2, h3, h4 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: -.045em;
}

h1 { font-size: clamp(3rem, 9vw, 7.25rem); }
h2 { font-size: clamp(2rem, 5vw, 4.2rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.75rem); }

::selection { background: rgba(89, 240, 255, .32); color: #fff; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 14px;
  z-index: 50;
  padding: .8rem 1rem;
  border-radius: 999px;
  background: var(--text);
  color: #05060b;
  font-weight: 800;
}

.skip-link:focus { left: 14px; }

.container {
  width: min(var(--max), calc(100% - 36px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 6, 11, .74);
  backdrop-filter: blur(22px) saturate(1.2);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  font-weight: 950;
  letter-spacing: .07em;
}

.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  padding: 5px;
  border: 1px solid rgba(89, 240, 255, .22);
  border-radius: 15px;
  background: radial-gradient(circle at 50% 0%, rgba(89, 240, 255, .22), rgba(255, 255, 255, .04));
  box-shadow: 0 0 34px rgba(89, 240, 255, .15);
}

.brand-wordmark span {
  display: block;
  line-height: 1;
}

.brand-wordmark small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.site-nav {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .035);
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border-radius: 999px;
  color: var(--soft);
  font-size: .94rem;
  font-weight: 750;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: #041015;
  background: linear-gradient(135deg, var(--accent), #fff4b0);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(89, 240, 255, .26);
  border-radius: 999px;
  color: var(--accent);
  font-weight: 850;
  background: rgba(89, 240, 255, .08);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: rgba(255,255,255,.05);
  color: var(--text);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  border-radius: 2px;
  background: currentColor;
  box-shadow: 0 6px 0 currentColor, 0 -6px 0 currentColor;
}

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent-3));
  box-shadow: 0 0 18px rgba(89, 240, 255, .6);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 38px;
}

.hero::before {
  content: "KRAKEN 12";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: -1;
  color: rgba(255, 255, 255, .028);
  font-size: clamp(5rem, 18vw, 17rem);
  font-weight: 1000;
  line-height: .8;
  letter-spacing: -.09em;
  white-space: nowrap;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
  gap: clamp(26px, 4vw, 54px);
  align-items: center;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  max-width: 100%;
  margin: 0 0 22px;
  padding: 8px 12px;
  border: 1px solid rgba(89, 240, 255, .25);
  border-radius: 999px;
  color: var(--accent);
  background: rgba(89, 240, 255, .075);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px var(--green);
}

.hero-title em {
  font-style: normal;
  color: transparent;
  background: linear-gradient(110deg, #fff, var(--accent), #fff0a5);
  background-clip: text;
  -webkit-background-clip: text;
}

.lead {
  max-width: 68ch;
  color: var(--soft);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.75;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  letter-spacing: -.01em;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  color: #061015;
  background: linear-gradient(135deg, var(--accent), #fff1a6 72%);
  box-shadow: 0 20px 42px rgba(89, 240, 255, .20);
}

.btn-secondary {
  color: var(--text);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, .06);
}

.btn-secondary:hover {
  border-color: rgba(89, 240, 255, .45);
  background: rgba(89, 240, 255, .10);
}

.hero-console {
  position: relative;
  min-height: 520px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 50% 20%, rgba(89,240,255,.24), transparent 16rem),
    linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.035));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.12);
  overflow: hidden;
}

.hero-console::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 26px;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  width: min(78%, 330px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 45% 38%, rgba(255,255,255,.65), transparent 9%),
    radial-gradient(circle at 50% 50%, rgba(89,240,255,.42), transparent 44%),
    conic-gradient(from 120deg, rgba(89,240,255,.05), rgba(140,92,255,.86), rgba(242,184,75,.72), rgba(89,240,255,.85), rgba(89,240,255,.05));
  filter: saturate(1.3);
  box-shadow: 0 0 80px rgba(89, 240, 255, .22);
}

.hero-orb img {
  position: absolute;
  inset: 13%;
  width: 74%;
  height: 74%;
  object-fit: contain;
  margin: auto;
  filter: drop-shadow(0 30px 35px rgba(0,0,0,.35));
}

.panel-chip {
  position: absolute;
  display: grid;
  gap: 2px;
  padding: 14px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: rgba(6, 8, 16, .74);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 45px rgba(0,0,0,.34);
}

.panel-chip strong {
  line-height: 1;
  font-size: 1.1rem;
}

.panel-chip span {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.chip-a { left: 28px; top: 34px; }
.chip-b { right: 30px; top: 118px; }
.chip-c { left: 42px; bottom: 82px; }
.chip-d { right: 28px; bottom: 30px; }

.signal-strip {
  margin-top: 36px;
  border-block: 1px solid var(--line);
  background: rgba(255,255,255,.035);
  overflow: hidden;
}

.signal-track {
  display: flex;
  gap: 22px;
  width: max-content;
  padding: 12px 0;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
  animation: marquee 28s linear infinite;
}

.signal-track span::after {
  content: "//";
  margin-left: 22px;
  color: rgba(89,240,255,.45);
}

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

.section { padding: clamp(54px, 8vw, 96px) 0; }

.section.compact { padding-top: 24px; }

.section-head {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(260px, .55fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 30px;
}

.section-label {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--accent-3);
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.muted { color: var(--muted); }

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

.card,
.story-card,
.content-panel,
.article-shell,
.archive-row,
.contact-card,
.editorial-card {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255,255,255,.085), rgba(255,255,255,.035));
  box-shadow: 0 24px 70px rgba(0,0,0,.22);
}

.card {
  position: relative;
  min-height: 240px;
  padding: 24px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.card::before {
  content: attr(data-index);
  position: absolute;
  right: 18px;
  top: 14px;
  color: rgba(255,255,255,.07);
  font-size: 4.8rem;
  font-weight: 1000;
  line-height: 1;
  letter-spacing: -.08em;
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  border: 1px solid rgba(89,240,255,.24);
  border-radius: 16px;
  color: var(--accent);
  background: rgba(89,240,255,.08);
  font-weight: 1000;
}

.card p,
.story-card p,
.content-panel p,
.editorial-card p,
.archive-row p { color: var(--muted); }

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, .52fr);
  gap: 16px;
}

.story-card {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(260px, .58fr);
  gap: 22px;
  align-items: stretch;
  min-height: 430px;
  padding: clamp(24px, 4vw, 38px);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 86% 12%, rgba(89,240,255,.18), transparent 18rem),
    radial-gradient(circle at 12% 100%, rgba(140,92,255,.18), transparent 20rem),
    linear-gradient(145deg, rgba(255,255,255,.10), rgba(255,255,255,.035));
  overflow: hidden;
}

.article-visual {
  position: relative;
  min-height: 320px;
  border-radius: 26px;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(89,240,255,.12) 1px, transparent 1px),
    linear-gradient(0deg, rgba(89,240,255,.12) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(89,240,255,.25), transparent 12rem),
    rgba(0,0,0,.20);
  background-size: 28px 28px, 28px 28px, auto, auto;
  overflow: hidden;
}

.article-visual::before {
  content: "PLAY / CULTURE / FUTURE";
  position: absolute;
  left: 22px;
  top: 22px;
  z-index: 2;
  color: rgba(255,255,255,.58);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .18em;
}

.article-visual::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -44px;
  bottom: -34px;
  border: 36px solid rgba(89, 240, 255, .18);
  border-radius: 50%;
}

.visual-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(72%, 250px);
  transform: translate(-50%, -50%) rotate(-7deg);
  filter: drop-shadow(0 35px 40px rgba(0,0,0,.45));
}

.story-side {
  display: grid;
  gap: 16px;
}

.editorial-card {
  padding: 22px;
  border-radius: var(--radius-lg);
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: .88rem;
  font-weight: 750;
}

.badge,
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,.06);
  color: var(--soft);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .03em;
}

.badge.hot {
  color: #120b02;
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent-3), #fff0a6);
}

.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }

.page-hero {
  position: relative;
  padding: clamp(58px, 9vw, 105px) 0 34px;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
}

.page-hero .lead { margin-top: 18px; }

.content-panel {
  border-radius: var(--radius-xl);
  padding: clamp(24px, 5vw, 48px);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(300px, .38fr);
  gap: 18px;
  align-items: start;
}

.list-clean {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.list-clean li {
  position: relative;
  padding-left: 26px;
  color: var(--soft);
}

.list-clean li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(89,240,255,.8);
}

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

.stat {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.045);
}

.stat strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -.05em;
}

.stat span {
  color: var(--muted);
  font-size: .9rem;
  font-weight: 750;
}

.article-shell {
  position: relative;
  max-width: 920px;
  margin-inline: auto;
  border-radius: var(--radius-xl);
  padding: clamp(26px, 5vw, 60px);
  background:
    linear-gradient(90deg, rgba(89,240,255,.065), transparent 16rem),
    linear-gradient(145deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
}

.article-shell::before {
  content: "";
  position: absolute;
  left: clamp(26px, 5vw, 60px);
  right: clamp(26px, 5vw, 60px);
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent-3));
  border-radius: 0 0 999px 999px;
}

.article-shell p { color: var(--soft); font-size: 1.06rem; }
.article-shell h2 { margin: 44px 0 18px; font-size: clamp(1.7rem, 3vw, 2.45rem); }
.article-shell h3 { margin: 28px 0 12px; }
.article-shell ul { padding-left: 1.25rem; color: var(--soft); }
.article-shell li { margin-bottom: 10px; }
.article-shell a { color: var(--accent); }

.article-intro {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(0,0,0,.18);
  color: var(--soft);
  font-size: 1.08rem;
}

.table-of-contents {
  display: grid;
  gap: 8px;
  margin: 26px 0 8px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.035);
}

.table-of-contents a {
  color: var(--soft);
  font-weight: 750;
}

.archive-row {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-radius: var(--radius-lg);
}

.archive-date {
  color: var(--accent-3);
  font-size: .8rem;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .68fr) minmax(290px, .38fr);
  gap: 18px;
}

.contact-card {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.contact-line {
  display: grid;
  gap: 6px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-line:last-child { border-bottom: 0; }
.contact-line span { color: var(--muted); font-size: .86rem; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.contact-line a { color: var(--text); font-size: 1.05rem; font-weight: 850; word-break: break-word; }

.footer {
  margin-top: 70px;
  border-top: 1px solid var(--line);
  background: rgba(0,0,0,.18);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 30px 0;
  color: var(--muted);
  font-size: .92rem;
}

.footer-links { display: flex; flex-wrap: wrap; gap: 14px; }
.footer-links a { color: var(--muted); font-weight: 750; }

@media (max-width: 980px) {
  .header-inner { grid-template-columns: auto auto; }
  .header-cta { display: none; }
  .nav-toggle { display: inline-grid; place-items: center; justify-self: end; }
  .site-nav {
    display: none;
    grid-column: 1 / -1;
    justify-self: stretch;
    flex-direction: column;
    align-items: stretch;
    border-radius: 22px;
    padding: 10px;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { justify-content: center; }
  .hero-grid,
  .section-head,
  .story-grid,
  .story-card,
  .content-grid,
  .contact-layout { grid-template-columns: 1fr; }
  .hero-console { min-height: 440px; }
  .cards-3 { grid-template-columns: 1fr; }
  .archive-row { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .container { width: min(var(--max), calc(100% - 24px)); }
  .hero { padding-top: 48px; }
  .hero-console { min-height: 390px; border-radius: 26px; }
  .panel-chip { padding: 10px 12px; }
  .chip-a { left: 16px; top: 18px; }
  .chip-b { right: 16px; top: 92px; }
  .chip-c { left: 16px; bottom: 82px; }
  .chip-d { right: 16px; bottom: 18px; }
  .btn { width: 100%; }
  .footer-inner { grid-template-columns: 1fr; }
}

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