:root {
  --paper: #fbf0df;
  --paper-light: #fff8ec;
  --paper-deep: #f1ddc6;
  --ink: #202120;
  --muted: #6e655d;
  --coral: #ee5e66;
  --coral-deep: #d94052;
  --teal: #43b4c3;
  --teal-deep: #188b9d;
  --gold: #f3ae2b;
  --line: rgba(61, 45, 34, 0.18);
  --shadow: 7px 8px 0 rgba(61, 45, 34, 0.14);
  --max: 1460px;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: 'Manrope', sans-serif;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, a { -webkit-tap-highlight-color: transparent; }
a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}
.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 13px 18px;
  color: var(--paper-light);
  background: var(--ink);
  border: 2px solid var(--gold);
  border-radius: 8px;
  font: 700 14px/1 'Oswald', sans-serif;
  letter-spacing: .06em;
  transform: translateY(calc(-100% - 20px));
  transition: transform .18s ease;
}
.skip-link:focus { transform: translateY(0); }
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.paper-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: .12;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.25'/%3E%3C/svg%3E");
}

.section-shell { width: min(var(--max), calc(100% - 72px)); margin-inline: auto; }
.site-header {
  height: 78px;
  padding: 0 max(30px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: 260px 1fr 56px;
  align-items: center;
  gap: 28px;
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 240, 223, .96);
}
.brand {
  display: inline-flex;
  align-items: baseline;
  width: max-content;
  color: var(--coral-deep);
  font: 800 34px/1 'Shantell Sans', cursive;
  letter-spacing: -3px;
  transform: rotate(-2deg);
  text-shadow: 1px 1px 0 rgba(255,255,255,.7);
}
.brand span { transform: translateY(-2px); }
.brand b { font-weight: 800; transform: translateY(3px) rotate(2deg); }
.site-header nav { display: flex; align-items: stretch; justify-content: center; gap: clamp(22px, 4vw, 62px); height: 100%; }
.site-header nav a {
  display: grid;
  place-items: center;
  position: relative;
  font: 700 16px/1 'Oswald', sans-serif;
  letter-spacing: .03em;
  white-space: nowrap;
}
.site-header nav a::after {
  content: '';
  position: absolute;
  left: 3px;
  right: 3px;
  bottom: 13px;
  height: 9px;
  background: url('assets/hero-coral-chalk-line-v2.webp') center / 100% 100% no-repeat;
  mix-blend-mode: multiply;
  transform: scaleX(0) rotate(-2deg);
  transition: transform .2s ease;
}
.site-header nav a:hover::after, .site-header nav a.active::after { transform: scaleX(1) rotate(-2deg); }
.header-telegram {
  width: 50px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
  border: 2px solid var(--ink);
  box-shadow: 3px 4px 0 rgba(32,33,32,.2);
  transform: rotate(-4deg);
  transition: transform .2s ease;
}
.header-telegram svg { width: 29px; height: 29px; fill: currentColor; transform: translate(-1px, 1px); }
.header-telegram:hover { transform: rotate(5deg) scale(1.07); }

.hero-stage { position: relative; overflow: hidden; }
.hero {
  min-height: 710px;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(28px, 4vw, 70px);
  align-items: center;
  padding-block: 50px 0;
  position: relative;
  overflow: visible;
}
.hero-copy { padding-left: clamp(10px, 5vw, 82px); position: relative; z-index: 4; }
.hero-copy > .eyebrow { margin-bottom: -12px; }
.hero-title-wordmark {
  width: min(670px, 118%);
  max-width: none;
  margin: -8px 0 -45px -24px;
  pointer-events: none;
}
.eyebrow {
  width: max-content;
  margin: 0 0 22px;
  color: var(--coral-deep);
  font: 600 23px/1 'Oswald', sans-serif;
  letter-spacing: .035em;
  position: relative;
}
.eyebrow::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -13px;
  width: 112%;
  height: 10px;
  background: url('assets/hero-coral-chalk-line-v2.webp') center / 100% 100% no-repeat;
  mix-blend-mode: multiply;
  transform: rotate(-1deg);
}
.section-heading h2, .now-copy h2, .follow-section h2 {
  margin: 0;
  font: 400 clamp(58px, 6.4vw, 106px)/.9 'Neucha', cursive;
  letter-spacing: -.025em;
  text-transform: uppercase;
}
.section-heading h2 em, .now-copy h2 em { color: var(--coral-deep); font-style: normal; }
.hero-lead { max-width: 600px; margin: 12px 0 28px; font-size: clamp(18px, 1.55vw, 25px); line-height: 1.45; }
.follow-label { margin: 0 0 11px; color: var(--coral-deep); font: 700 16px/1 'Oswald', sans-serif; letter-spacing: .06em; }
.social-row { display: flex; gap: 14px; flex-wrap: wrap; }
.social-button {
  min-width: 190px;
  height: 66px;
  padding: 0 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  border: 2px solid var(--ink);
  border-radius: 8px 12px 7px 10px;
  color: #fff;
  box-shadow: 4px 5px 0 rgba(32,33,32,.2), inset 0 -3px 0 rgba(0,0,0,.09);
  font: 700 24px/1 'Oswald', sans-serif;
  transform: rotate(-.5deg);
  transition: transform .18s ease, box-shadow .18s ease;
}
.social-button:hover { transform: translateY(-3px) rotate(.3deg); box-shadow: 6px 8px 0 rgba(32,33,32,.17); }
.social-button span { font-size: 29px; }
.youtube { background: var(--coral); }
.telegram { background: var(--teal); }
.copy-doodle, .button-arrow, .button-rays { position: absolute; z-index: 6; pointer-events: none; }
.copy-doodle { font: 400 62px/1 'Neucha', cursive; }
.copy-note { left: -58px; top: 175px; color: var(--teal); transform: rotate(-10deg); }
.copy-star { left: -60px; top: 395px; color: var(--coral); transform: rotate(-16deg); }
.button-arrow { left: -82px; bottom: -1px; width: 82px; height: 58px; color: var(--ink); transform: rotate(-7deg); }
.button-arrow svg { display: block; width: 100%; height: 100%; overflow: visible; fill: none; stroke: currentColor; stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; }
.button-rays { right: -7px; bottom: 45px; color: var(--coral-deep); font: 700 30px/1 'Neucha', cursive; letter-spacing: -6px; transform: rotate(-63deg); }

.hero-art { min-height: 660px; position: relative; isolation: isolate; }
.hero-brush {
  position: absolute;
  z-index: -2;
  top: -28px;
  left: -18%;
  width: 160%;
  height: 132%;
  object-fit: fill;
  mix-blend-mode: multiply;
  filter: saturate(1.28) contrast(1.08) hue-rotate(-4deg);
  transform: rotate(-1.5deg);
}
.hero-scene-photo {
  margin: 0;
  position: absolute;
  z-index: 0;
  top: 72px;
  right: -6%;
  width: 94%;
  padding: 13px 13px 47px;
  background: #fffaf0;
  border: 1px solid rgba(54, 37, 27, .22);
  box-shadow: 7px 11px 18px rgba(72, 34, 30, .2);
  transform: rotate(4deg);
}
.hero-scene-photo > img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: saturate(.88) sepia(.05);
}
.hero-tape-top { top: -24px; left: 36%; transform: rotate(4deg); }
.hero-tape-side { right: -74px; bottom: 21px; transform: rotate(-82deg); }
.hero-character {
  position: absolute;
  z-index: 3;
  right: -48%;
  bottom: -380px;
  width: 2050px;
  height: auto;
  max-width: none;
  object-fit: contain;
  filter: drop-shadow(9px 14px 0 rgba(89, 37, 39, .16));
  transform: rotate(.5deg);
}
.tape {
  position: absolute;
  z-index: 5;
  display: block;
  width: 190px;
  height: 42px;
  background: rgba(224, 194, 143, .67);
  box-shadow: inset 0 0 12px rgba(255,255,255,.4);
  clip-path: polygon(2% 7%, 98% 0, 95% 94%, 0 100%);
}
.dossier {
  position: absolute;
  z-index: 7;
  right: 6px;
  bottom: 26px;
  width: 430px;
  padding: 27px 135px 30px 35px;
  display: grid;
  gap: 13px;
  background: #fff4de;
  border: 1px solid rgba(45,30,20,.18);
  box-shadow: 8px 10px 18px rgba(68,41,31,.17);
  clip-path: polygon(1% 2%, 99% 0, 98% 96%, 68% 99%, 41% 97%, 2% 100%, 0 49%);
  transform: rotate(2deg);
}
.dossier strong { width: max-content; color: var(--coral-deep); font: 700 23px/1 'Shantell Sans', cursive; padding-bottom: 9px; position: relative; transform: rotate(-1deg); }
.dossier strong::after { content: ''; position: absolute; left: 0; right: 0; bottom: -3px; height: 10px; background: url('assets/hero-coral-chalk-line-v2.webp') center / 100% 100% no-repeat; mix-blend-mode: multiply; }
.dossier span { font: 600 15px/1.25 'Oswald', sans-serif; letter-spacing: .03em; }
.dossier span b { margin-right: 7px; }
.dossier i { position: absolute; right: 24px; bottom: 20px; color: var(--coral); font: 400 34px/1 'Neucha', cursive; }
.dossier .dossier-portrait { position: absolute; right: 25px; top: 25px; width: 88px; height: 88px; overflow: hidden; border: 3px solid var(--ink); border-radius: 48% 52% 45% 55%; background: var(--coral); transform: rotate(4deg); }
.dossier-portrait img { width: 100%; height: 100%; max-width: 100%; object-fit: cover; }
.doodle { position: absolute; z-index: 4; font: 400 64px/1 'Neucha', cursive; }
.star-one { left: -76px; top: 70px; color: var(--gold); transform: rotate(-17deg); }
.note-one { left: 32px; top: 48px; color: var(--teal); font-size: 48px; }
.note-two { right: 0; top: 22px; color: var(--teal); font-size: 43px; transform: rotate(10deg); }

.universe-ribbon {
  position: relative;
  z-index: 12;
  margin-top: -1px;
  padding: 32px 30px 48px;
  text-align: center;
  background: transparent;
  isolation: isolate;
  overflow: visible;
}
.universe-ribbon::before {
  content: '';
  position: absolute;
  z-index: 5;
  top: -3px;
  left: -2%;
  width: 104%;
  height: 18px;
  background: url('assets/hero-coral-chalk-line-v2.webp') center / 100% 100% no-repeat;
  mix-blend-mode: multiply;
  clip-path: polygon(0 28%, 5% 52%, 11% 34%, 18% 62%, 26% 31%, 34% 56%, 42% 29%, 51% 61%, 60% 35%, 68% 58%, 77% 31%, 86% 60%, 94% 32%, 100% 49%, 100% 88%, 93% 69%, 85% 92%, 77% 66%, 68% 90%, 59% 68%, 50% 93%, 41% 65%, 32% 89%, 23% 66%, 14% 91%, 6% 67%, 0 84%);
}
.universe-ribbon::after {
  content: '';
  position: absolute;
  z-index: 1;
  inset: 0;
  background: var(--paper-light);
  clip-path: polygon(0 12px, 6% 9px, 14% 13px, 23% 9px, 32% 13px, 41% 9px, 50% 14px, 59% 9px, 68% 13px, 77% 9px, 85% 14px, 93% 9px, 100% 13px, 100% 100%, 0 100%);
}
.universe-ribbon > * { position: relative; z-index: 6; }
.ribbon-title-row { margin: -2px auto 3px; display: flex; align-items: center; justify-content: center; gap: 18px; }
.ribbon-title-row p { margin: 0; color: var(--coral-deep); font: 700 30px/1 'Oswald', sans-serif; letter-spacing: .055em; white-space: nowrap; }
.reference-rays {
  width: 60px;
  height: 65px;
  flex: 0 0 60px;
  background: var(--coral-deep);
  -webkit-mask-image: url('assets/universe-title-transparent-red-v3.png');
  -webkit-mask-size: 581px 65px;
  -webkit-mask-repeat: no-repeat;
  mask-image: url('assets/universe-title-transparent-red-v3.png');
  mask-size: 581px 65px;
  mask-repeat: no-repeat;
}
.reference-rays-left { -webkit-mask-position: left center; mask-position: left center; }
.reference-rays-right { -webkit-mask-position: right center; mask-position: right center; }
.universe-ribbon h2 { margin: 0; font: 600 clamp(17px, 2vw, 25px)/1 'Oswald', sans-serif; letter-spacing: .08em; }
.universe-tags { margin: 18px auto 25px; display: flex; justify-content: center; gap: clamp(10px, 1.5vw, 24px); flex-wrap: wrap; font: 600 15px/1 'Oswald', sans-serif; letter-spacing: .05em; }
.universe-tags i { color: var(--coral); font-style: normal; }
.ribbon-icons { display: flex; justify-content: center; align-items: center; gap: clamp(28px, 7vw, 110px); }
.ribbon-icons span { display: inline-grid; place-items: center; width: 58px; height: 58px; border-radius: 15px; background: #fff8e8; border: 2px solid var(--ink); box-shadow: 3px 4px 0 rgba(32,33,32,.15); font-size: 31px; transform: rotate(-5deg); }
.ribbon-icons span:nth-child(even) { transform: rotate(6deg); }

.about { padding-block: 120px 130px; }
.section-heading { max-width: 880px; }
.section-heading h2, .now-copy h2, .follow-section h2 { font-size: clamp(49px, 5.2vw, 84px); line-height: .93; }
.section-heading h2, .now-copy h2 { position: relative; width: max-content; max-width: 100%; }
.section-heading h2::after, .now-copy h2::after {
  content: '';
  display: block;
  width: 78%;
  height: 8px;
  margin-top: 12px;
  background: var(--coral);
  clip-path: polygon(0 38%, 8% 19%, 20% 36%, 34% 10%, 48% 29%, 63% 6%, 80% 30%, 100% 14%, 98% 66%, 81% 55%, 64% 84%, 47% 58%, 29% 87%, 13% 61%, 0 79%);
  transform: rotate(-1deg);
}
.section-heading > p:last-child { max-width: 780px; margin: 28px 0 0; font-size: clamp(17px, 1.5vw, 22px); line-height: 1.6; }
.feature-grid { margin-top: 64px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feature-grid article {
  min-height: 310px;
  padding: 28px;
  position: relative;
  background: var(--paper-light);
  border: 2px solid var(--ink);
  border-radius: 22px 5px 28px 8px;
  box-shadow: var(--shadow);
  transform: rotate(-.8deg);
}
.feature-grid article:nth-child(even) { transform: rotate(.8deg) translateY(15px); }
.feature-grid article > span { color: var(--coral); font: 700 18px/1 'Oswald', sans-serif; }
.feature-grid article > i { display: block; margin: 20px 0 28px; color: var(--coral-deep); font: 400 58px/1 'Neucha', cursive; font-style: normal; }
.feature-grid article:nth-child(2) > i, .feature-grid article:nth-child(4) > i { color: var(--teal-deep); }
.feature-grid h3 { margin: 0 0 13px; font: 700 27px/1 'Oswald', sans-serif; }
.feature-grid p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.55; }

.section-heading.compact h2 { font-size: clamp(48px, 5vw, 78px); }
.section-heading.compact h2 em { color: #fff; text-decoration: underline; text-decoration-thickness: 5px; text-underline-offset: 10px; }

.stats-section {
  position: relative;
  color: #fffaf1;
  background: var(--coral);
  overflow: hidden;
  clip-path: polygon(0 2%, 8% 0, 18% 2%, 30% 0, 42% 2%, 57% 0, 70% 2%, 83% 0, 92% 2%, 100% 1%, 100% 98%, 91% 100%, 79% 98%, 65% 100%, 53% 98%, 39% 100%, 24% 98%, 11% 100%, 0 98%);
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .13;
  background-image: linear-gradient(rgba(255,255,255,.55) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.55) 1px, transparent 1px);
  background-size: 34px 34px;
}
.stats-section::after {
  content: '☆   HP   ♫   XP';
  position: absolute;
  top: 56px;
  right: 4%;
  color: rgba(255,255,255,.22);
  font: 700 clamp(46px, 6vw, 92px)/1 'Neucha', cursive;
  transform: rotate(8deg);
}
.stats-inner { position: relative; z-index: 2; padding-block: 110px 125px; }
.stats-heading { max-width: 950px; }
.stats-heading .eyebrow { color: #fff; }
.stats-heading .eyebrow::after {
  background: url('assets/hero-coral-chalk-line-v2.webp') center / 100% 100% no-repeat;
  mix-blend-mode: normal;
  filter: brightness(0) invert(1);
  opacity: .92;
}
.stats-heading h2 { margin: 0; color: #fff; font: 700 clamp(52px, 6.5vw, 98px)/.92 'Oswald', sans-serif; letter-spacing: -.035em; }
.stats-heading h2 em { color: #ffe7a3; font-style: normal; }
.stats-heading > p:last-child { max-width: 720px; margin: 25px 0 0; font-size: clamp(17px, 1.5vw, 21px); line-height: 1.6; }
.character-sheet { margin-top: 58px; display: grid; grid-template-columns: minmax(310px, .76fr) minmax(430px, 1.24fr); gap: 24px; align-items: stretch; }
.profile-card, .stat-card, .ability-card { color: var(--ink); border: 3px solid var(--ink); box-shadow: 8px 9px 0 rgba(88,34,38,.28); }
.profile-card { grid-row: 1 / 3; padding: 18px; background: var(--paper-light); border-radius: 25px 6px 31px 8px; transform: rotate(-.55deg); }
.profile-screen { min-height: 0; aspect-ratio: 1 / 1; position: relative; overflow: hidden; background: var(--ink); border: 2px solid var(--ink); border-radius: 15px 4px 22px 6px; }
.profile-screen::before { content: ''; position: absolute; inset: 0; opacity: .34; background-image: linear-gradient(rgba(67,180,195,.55) 1px, transparent 1px), linear-gradient(90deg, rgba(67,180,195,.55) 1px, transparent 1px); background-size: 28px 28px; }
.profile-screen img { position: absolute; z-index: 2; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 43%; filter: saturate(.96) contrast(1.02); }
.profile-status { position: absolute; z-index: 3; top: 16px; left: 17px; color: #fff; font: 700 13px/1 'Oswald', sans-serif; letter-spacing: .1em; }
.profile-status::first-letter { color: var(--teal); }
.level-sticker { position: absolute; z-index: 4; right: 16px; bottom: 16px; width: 76px; height: 76px; display: grid; place-items: center; color: var(--ink); background: var(--gold); border: 3px solid var(--ink); border-radius: 48% 52% 45% 55%; font: 700 22px/.82 'Oswald', sans-serif; text-align: center; transform: rotate(8deg); box-shadow: 4px 5px 0 rgba(0,0,0,.2); }
.profile-meta { margin-top: 15px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.profile-meta span { min-height: 70px; padding: 12px; display: flex; flex-direction: column; justify-content: center; background: var(--paper); border: 2px solid var(--ink); border-radius: 9px 2px 10px 3px; }
.profile-meta span:nth-child(even) { transform: rotate(.8deg); }
.profile-meta small, .profile-meta b { display: block; }
.profile-meta small { margin-bottom: 6px; color: var(--coral-deep); font: 700 10px/1 'Oswald', sans-serif; letter-spacing: .1em; }
.profile-meta b { font: 700 15px/1.05 'Oswald', sans-serif; }
.stat-card { padding: 24px 27px 29px; background: var(--paper-light); border-radius: 7px 28px 8px 24px; transform: rotate(.4deg); }
.stat-card header { padding-bottom: 15px; display: flex; justify-content: space-between; border-bottom: 2px dashed var(--ink); font: 700 18px/1 'Oswald', sans-serif; letter-spacing: .09em; }
.stat-card header b { color: var(--coral-deep); }
.stat-list { margin-top: 21px; display: grid; gap: 18px; }
.stat-line p { margin: 0 0 7px; display: flex; justify-content: space-between; gap: 15px; font: 700 16px/1 'Oswald', sans-serif; }
.stat-line p b { color: var(--coral-deep); }
.stat-line > i { height: 18px; display: block; overflow: hidden; background: var(--paper-deep); border: 2px solid var(--ink); border-radius: 8px 2px 7px 3px; box-shadow: inset 0 2px 0 rgba(0,0,0,.08); }
.stat-line u { width: var(--level); height: 100%; display: block; background: var(--coral); text-decoration: none; clip-path: polygon(0 0, 100% 0, 98% 100%, 92% 84%, 84% 100%, 76% 86%, 68% 100%, 59% 85%, 51% 100%, 42% 84%, 34% 100%, 25% 86%, 16% 100%, 8% 85%, 0 100%); }
.stat-line.gold u { background: var(--gold); }
.stat-line.teal u { background: var(--teal); }
.stat-line.sleepy u { background: #a895b7; }
.ability-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.ability-card { position: relative; min-height: 155px; padding: 21px 22px; background: #fff1bc; border-radius: 19px 4px 21px 6px; transform: rotate(-.7deg); }
.ability-card::after { content: '☆'; position: absolute; right: 15px; top: 10px; color: var(--coral); font: 400 39px/1 'Neucha', cursive; }
.ability-card small { color: var(--coral-deep); font: 700 11px/1 'Oswald', sans-serif; letter-spacing: .12em; }
.ability-card h3 { margin: 11px 0 9px; font: 700 24px/1 'Oswald', sans-serif; }
.ability-card p { margin: 0; font-size: 13px; line-height: 1.45; }
.ability-card.ultimate { color: var(--paper-light); background: var(--ink); transform: rotate(.7deg); }
.ability-card.ultimate small, .ability-card.ultimate::after { color: var(--teal); }

.identity-section {
  position: relative;
  padding-block: 110px 125px;
  color: var(--paper-light);
  background: var(--ink);
  overflow: hidden;
  clip-path: polygon(0 2%, 9% 0, 19% 2%, 31% 0, 44% 2%, 57% 0, 70% 2%, 83% 0, 94% 2%, 100% 1%, 100% 98%, 90% 100%, 77% 98%, 64% 100%, 50% 98%, 37% 100%, 23% 98%, 10% 100%, 0 98%);
}
.identity-section::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .14;
  background-image: linear-gradient(rgba(238,94,102,.55) 1px, transparent 1px), linear-gradient(90deg, rgba(238,94,102,.55) 1px, transparent 1px);
  background-size: 46px 46px;
}
.identity-intro { position: relative; z-index: 2; display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(35px, 6vw, 90px); align-items: center; }
.identity-section .section-heading h2 { font-size: clamp(50px, 5.4vw, 88px); }
.identity-section .section-heading h2::after { background: var(--gold); }
.identity-section .section-heading > p:last-child { color: #d9ced5; }
.identity-orbit { position: relative; width: min(680px, 54vw); height: 600px; justify-self: center; }
.identity-ring {
  position: absolute;
  inset: 28px 12px 44px;
  border: 2px dashed rgba(67,180,195,.68);
  border-radius: 50%;
  transform: rotate(-8deg);
  animation: identity-spin 45s linear infinite;
}
.identity-ring::before, .identity-ring::after { position: absolute; color: var(--gold); font: 400 35px/1 'Neucha', cursive; }
.identity-ring::before { content: '☆'; left: 13%; top: 8%; }
.identity-ring::after { content: '♫'; right: 8%; bottom: 17%; color: var(--teal); }
@keyframes identity-spin { to { transform: rotate(352deg); } }
.identity-core {
  position: absolute;
  left: 50%;
  top: 48%;
  width: 205px;
  height: 205px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--coral);
  border: 4px solid var(--paper-light);
  border-radius: 43% 57% 55% 45%;
  box-shadow: 0 0 0 10px rgba(238,94,102,.15), 0 0 80px rgba(238,94,102,.5);
  transform: translate(-50%, -50%) rotate(-3deg);
}
.identity-core span { font-size: 34px; line-height: 1; }
.identity-core b { text-align: center; font: 700 38px/.78 'Oswald', sans-serif; }
.identity-core small { margin-top: 14px; font: 700 10px/1 'Manrope', sans-serif; letter-spacing: .12em; }
.identity-node {
  position: absolute;
  z-index: 3;
  width: 200px;
  padding: 16px 18px;
  color: var(--ink);
  background: var(--paper-light);
  border: 2px solid var(--coral);
  border-radius: 22px 5px 22px 6px;
  box-shadow: 5px 6px 0 rgba(238,94,102,.35);
  transform: rotate(-1deg);
}
.identity-node span { color: var(--coral-deep); font: 700 12px/1 'Oswald', sans-serif; }
.identity-node b, .identity-node small { display: block; }
.identity-node b { margin: 7px 0 5px; font: 700 16px/1 'Oswald', sans-serif; }
.identity-node small { color: var(--muted); font: 600 10px/1.35 'Manrope', sans-serif; }
.inode-1 { left: 0; top: 41%; }
.inode-2 { left: 12%; top: 2%; transform: rotate(2deg); }
.inode-3 { right: 10%; top: 3%; }
.inode-4 { right: 0; top: 45%; transform: rotate(2deg); }
.inode-5 { left: 37%; bottom: 0; }

.now-section { padding-block: 125px; display: grid; grid-template-columns: 1.16fr .84fr; gap: clamp(52px, 7vw, 105px); align-items: center; }
.now-poster { width: 100%; max-width: 780px; justify-self: end; position: relative; padding: 14px 14px 46px; background: #fff9ed; border: 1px solid var(--line); box-shadow: 13px 16px 0 rgba(65,45,30,.14); transform: rotate(-3deg); clip-path: polygon(1% 1%, 99% 0, 100% 97%, 77% 99%, 53% 97%, 28% 100%, 0 98%); }
.now-poster img { width: 100%; height: auto; aspect-ratio: 16/9; object-fit: cover; object-position: center; }
.poster-tape { top: -18px; left: 30%; transform: rotate(7deg); }
.now-copy { max-width: 670px; }
.now-copy > p { margin: 30px 0; font-size: clamp(17px, 1.5vw, 22px); line-height: 1.6; }
.now-copy ul { padding: 0; margin: 0 0 32px; list-style: none; display: grid; gap: 13px; }
.now-copy li { font-size: 16px; font-weight: 700; }
.now-copy li b { color: var(--coral); margin-right: 10px; }
.wide-cta { min-height: 74px; padding: 0 22px; max-width: 560px; display: grid; grid-template-columns: 52px 1fr auto; align-items: center; border: 2px solid var(--ink); color: #fff; box-shadow: 5px 6px 0 rgba(32,33,32,.2); transform: rotate(-.5deg); }
.wide-cta span { font-size: 29px; }
.wide-cta b { font: 700 21px/1 'Oswald', sans-serif; }
.wide-cta small { font: 700 12px/1 'Manrope', sans-serif; }

.future-section { padding-block: 120px 140px; background: #fff7e9; border-block: 1px solid var(--line); }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading.centered .eyebrow { margin-inline: auto; }
.section-heading.centered > p:last-child { margin-inline: auto; }
.future-grid { margin-top: 72px; display: grid; grid-template-columns: 1fr 1fr; gap: 38px; }
.future-card { position: relative; background: var(--paper); border: 2px solid var(--ink); border-radius: 26px 6px 31px 9px; box-shadow: var(--shadow); overflow: hidden; }
.future-card:nth-child(1) { transform: rotate(-.6deg); }
.future-card:nth-child(2) { transform: rotate(.6deg); }
.future-visual { height: 390px; position: relative; overflow: hidden; border-bottom: 4px solid var(--coral); clip-path: polygon(0 0, 100% 0, 100% 97%, 84% 100%, 65% 97%, 47% 100%, 28% 97%, 12% 100%, 0 97%); }
.future-visual > img:first-child { width: 100%; height: 100%; object-fit: cover; }
.future-visual > span { position: absolute; top: 20px; left: 20px; padding: 9px 14px; background: var(--coral); color: #fff; border: 2px solid var(--ink); font: 700 13px/1 'Oswald', sans-serif; letter-spacing: .08em; transform: rotate(-2deg); }
.game-scene .game-bg { filter: saturate(.95) brightness(.98); }
.future-copy { padding: 33px 35px 37px; }
.future-copy small { color: var(--coral-deep); font: 700 14px/1 'Oswald', sans-serif; letter-spacing: .08em; }
.future-copy h3 { margin: 13px 0 16px; font: 700 clamp(30px, 3vw, 46px)/1 'Neucha', cursive; }
.future-copy p { min-height: 82px; margin: 0 0 26px; color: var(--muted); font-size: 16px; line-height: 1.55; }
.future-status { display: inline-block; padding: 10px 16px; color: #fff; background: var(--coral); border: 2px solid var(--ink); font: 700 14px/1 'Oswald', sans-serif; transform: rotate(-1deg); }
.future-status.teal { background: var(--teal); transform: rotate(1deg); }

.manifesto { padding-block: 115px; }
.manifesto-card { max-width: 1100px; margin-inline: auto; padding: 70px clamp(35px, 7vw, 110px); position: relative; text-align: center; background: var(--ink); color: var(--paper-light); transform: rotate(-.5deg); box-shadow: 11px 12px 0 var(--coral); clip-path: polygon(0 4%, 12% 1%, 26% 4%, 42% 0, 58% 3%, 73% 1%, 88% 4%, 100% 1%, 98% 95%, 83% 100%, 67% 96%, 49% 100%, 31% 96%, 13% 100%, 1% 96%); }
.manifesto-card > span { position: absolute; top: 17px; left: 38px; color: var(--coral); font: 400 100px/1 'Neucha', cursive; }
.manifesto-card p { margin: 0; font: 400 clamp(24px, 2.8vw, 40px)/1.35 'Neucha', cursive; }
.manifesto-card b { display: block; margin-top: 28px; color: var(--coral); font: 700 19px/1 'Oswald', sans-serif; letter-spacing: .08em; }

.follow-section { padding: 105px 30px 120px; position: relative; text-align: center; background: var(--paper-deep); overflow: hidden; }
.follow-section::before { content: ''; position: absolute; inset: 18% -5%; background: var(--coral); clip-path: polygon(0 38%, 17% 26%, 35% 39%, 53% 25%, 71% 37%, 100% 24%, 100% 74%, 77% 63%, 55% 76%, 32% 64%, 0 77%); opacity: .13; }
.follow-section > * { position: relative; z-index: 2; }
.follow-section .eyebrow { margin-inline: auto; }
.follow-section > p:not(.eyebrow) { margin: 24px auto 31px; font-size: 18px; }
.follow-section .social-row { justify-content: center; }
.follow-star { position: absolute; left: 9%; top: 33%; color: var(--gold); font: 400 90px/1 'Neucha', cursive; transform: rotate(-14deg); }

.site-footer { min-height: 95px; padding: 22px max(36px, calc((100vw - var(--max)) / 2)); display: flex; align-items: center; justify-content: space-between; gap: 25px; background: var(--ink); color: var(--paper); }
.site-footer .brand { color: var(--coral); font-size: 31px; }
.site-footer p, .site-footer > a:last-child { font-size: 11px; font-weight: 800; letter-spacing: .08em; }

@media (max-width: 1180px) {
  .site-header { grid-template-columns: 210px 1fr 50px; }
  .site-header nav { gap: 22px; }
  .site-header nav a { font-size: 14px; }
  .hero { min-height: 700px; grid-template-columns: .9fr 1.1fr; }
  .hero-copy { padding-left: 0; }
  .hero-art { min-height: 600px; }
  .hero-scene-photo { top: 58px; right: -4%; width: 96%; }
  .hero-character { width: 1750px; height: auto; right: -62%; bottom: -320px; }
  .dossier { width: 390px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .character-sheet { grid-template-columns: minmax(290px, .85fr) minmax(390px, 1.15fr); }
  .identity-intro { grid-template-columns: .78fr 1.22fr; gap: 28px; }
  .identity-orbit { width: min(680px, 58vw); }
}

@media (max-width: 880px) {
  .section-shell { width: min(100% - 34px, var(--max)); }
  .site-header { height: 68px; padding-inline: 17px; grid-template-columns: 1fr 48px; }
  .site-header .brand { font-size: 32px; }
  .site-header nav { display: none; }
  .header-telegram { width: 44px; }
  .hero { min-height: auto; padding-block: 40px 0; display: flex; flex-direction: column; align-items: stretch; }
  .hero-copy { padding-inline: 9px; }
  .hero-title-wordmark { width: min(670px, 112%); margin-left: -18px; }
  .hero-lead { font-size: 18px; }
  .hero-art { min-height: 520px; }
  .hero-brush { top: -45px; left: -20%; width: 155%; height: 135%; }
  .hero-scene-photo { top: 40px; right: 0; width: 95%; padding: 10px 10px 35px; }
  .hero-character { width: 1600px; height: auto; left: calc(50% - 820px); right: auto; bottom: -345px; }
  .dossier { right: 3px; bottom: 6px; width: min(390px, 78%); padding: 22px 125px 22px 25px; }
  .dossier strong { font-size: 21px; }
  .star-one { left: 0; top: 0; }
  .note-one { left: 8%; top: 20px; }
  .social-button { min-width: 160px; height: 59px; font-size: 21px; }
  .about, .now-section, .manifesto { padding-block: 85px; }
  .stats-inner, .future-section { padding-block: 85px; }
  .character-sheet { grid-template-columns: 1fr; }
  .profile-card { grid-row: auto; }
  .identity-section { padding-block: 90px 105px; }
  .identity-intro { grid-template-columns: 1fr; }
  .identity-orbit { width: min(100%, 720px); height: 650px; justify-self: center; margin-top: 20px; }
  .now-section { grid-template-columns: 1fr; }
  .now-poster { justify-self: center; max-width: 740px; }
  .future-grid { grid-template-columns: 1fr; }
  .future-visual { height: 360px; }
}

@media (max-width: 600px) {
  html { overflow-x: hidden; }
  .hero-art { min-height: 390px; }
  .hero-brush { top: -25px; left: -24%; width: 163%; height: 135%; }
  .hero-scene-photo { top: 34px; right: -2%; width: 97%; padding: 7px 7px 27px; transform: rotate(3deg); }
  .hero-character { width: 1050px; height: auto; left: calc(50% - 540px); right: auto; bottom: -170px; }
  .tape { width: 110px; height: 29px; }
  .dossier { width: 82%; right: 0; bottom: -8px; gap: 7px; padding: 15px 102px 18px 18px; }
  .dossier strong { font-size: 17px; }
  .dossier span { font-size: 11px; }
  .dossier i { display: none; }
  .dossier .dossier-portrait { width: 68px; height: 68px; right: 18px; top: 20px; }
  .doodle { font-size: 40px; }
  .hero-copy { padding-top: 8px; }
  .hero-title-wordmark { width: 114%; margin: -12px 0 -38px -20px; }
  .copy-note, .copy-star { display: none; }
  .button-arrow { left: -22px; bottom: -1px; width: 62px; height: 44px; }
  .button-rays { right: 4px; bottom: 42px; }
  .hero-lead { margin-top: 27px; }
  .social-row { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
  .social-button { min-width: 0; height: 58px; padding: 0 12px; gap: 9px; font-size: 18px; }
  .social-button span { font-size: 22px; }
  .universe-ribbon { padding-inline: 17px; }
  .ribbon-title-row { gap: 8px; margin-top: 1px; }
  .ribbon-title-row p { font-size: 21px; letter-spacing: .035em; }
  .reference-rays { width: 38px; height: 44px; flex-basis: 38px; -webkit-mask-size: 394px 44px; mask-size: 394px 44px; }
  .universe-ribbon h2 { font-size: 15px; line-height: 1.35; }
  .universe-tags { font-size: 12px; gap: 9px 12px; }
  .ribbon-icons { gap: 13px; }
  .ribbon-icons span { width: 46px; height: 46px; font-size: 24px; }
  .section-heading h2, .now-copy h2, .follow-section h2 { font-size: clamp(44px, 14vw, 66px); }
  .section-heading h2, .now-copy h2 { width: 100%; max-width: 100%; }
  .section-heading > p:last-child { font-size: 16px; line-height: 1.55; }
  .feature-grid { grid-template-columns: 1fr; margin-top: 45px; }
  .feature-grid article, .feature-grid article:nth-child(even) { min-height: 240px; transform: rotate(-.5deg); }
  .stats-inner { padding-block: 78px 90px; }
  .stats-heading h2 { font-size: clamp(48px, 15vw, 72px); }
  .character-sheet { margin-top: 40px; gap: 18px; }
  .profile-meta { grid-template-columns: 1fr; }
  .stat-card { padding: 21px 18px 25px; }
  .stat-line p { font-size: 14px; }
  .ability-grid { grid-template-columns: 1fr; }
  .identity-orbit { height: 720px; }
  .identity-ring { inset: 75px 2% 90px; }
  .identity-core { width: 165px; height: 165px; top: 48%; }
  .identity-core b { font-size: 31px; }
  .identity-node { width: 165px; padding: 13px; }
  .identity-node b { font-size: 13px; }
  .identity-node small { font-size: 9px; }
  .inode-1 { left: 0; top: 32%; }
  .inode-2 { left: 0; top: 5%; }
  .inode-3 { right: 0; top: 8%; }
  .inode-4 { right: 0; top: 62%; }
  .inode-5 { left: 7%; bottom: 1%; }
  .now-poster { width: 88%; }
  .now-poster img { height: auto; }
  .wide-cta { grid-template-columns: 38px 1fr; gap: 6px; }
  .wide-cta b { font-size: 17px; }
  .wide-cta small { display: none; }
  .future-grid { margin-top: 48px; }
  .future-visual { height: 250px; }
  .future-copy { padding: 27px 25px 30px; }
  .future-copy p { min-height: 0; }
  .manifesto-card { padding: 65px 24px 50px; }
  .manifesto-card > span { left: 20px; }
  .follow-section { padding: 85px 17px 95px; }
  .follow-section .social-row { max-width: 520px; margin-inline: auto; }
  .site-footer { padding-block: 26px; flex-direction: column; text-align: center; }
}

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