@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap");

:root {
  color-scheme: light;
  --ink: #050505;
  --outside: #d0d0d0;
  --paper: #fffef8;
  --paper-line: rgba(5, 5, 5, 0.07);
  --yellow: #ffe05f;
  --blue: #88def1;
  --pink: #ff77aa;
  --green: #bcebd7;
  --mint: #aee8d5;
  --muted: #343434;
  --soft: #f5f0e5;
  --shadow: 8px 8px 0 var(--ink);
  --shadow-sm: 4px 4px 0 var(--ink);
  --radius: 6px;
  --wrap: 1240px;
  --z-header: 20;
  --z-intro: 100;
  font-family: "Space Grotesk", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 132px;
}

html.mobile-start-top-lock,
html.mobile-start-top-lock body {
  overflow: hidden;
  overscroll-behavior: none;
}

body {
  min-height: 100dvh;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(5, 5, 5, 0.08) 1px, transparent 1px),
    var(--outside);
  background-size: 28px 28px;
  color: var(--ink);
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.42;
  background-image:
    radial-gradient(circle at 18% 14%, rgba(255, 224, 95, 0.6) 0 12%, transparent 26%),
    radial-gradient(circle at 78% 10%, rgba(136, 222, 241, 0.42) 0 9%, transparent 22%);
  mix-blend-mode: multiply;
}

.page-v12 {
  background: var(--ink);
  background-image: none;
}

.page-v12::before {
  display: none;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  background: var(--yellow);
  color: var(--ink);
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 18px;
  z-index: calc(var(--z-intro) + 1);
  transform: translateY(-160%);
  border: 4px solid var(--ink);
  background: var(--blue);
  box-shadow: var(--shadow-sm);
  padding: 10px 14px;
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.page-frame {
  position: relative;
  z-index: 1;
  max-width: 1510px;
  margin: 22px auto 34px;
  border: 8px solid var(--ink);
  background:
    linear-gradient(90deg, var(--paper-line) 1px, transparent 1px),
    linear-gradient(var(--paper-line) 1px, transparent 1px),
    var(--paper);
  background-size: 24px 24px;
  box-shadow: 14px 14px 0 var(--ink);
  overflow: clip;
}

.wrap {
  width: min(100%, var(--wrap));
  margin: 0 auto;
  padding: 0 clamp(18px, 3vw, 42px);
}

/* Intro */
.intro-loader {
  position: fixed;
  inset: 0;
  z-index: var(--z-intro);
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--yellow);
  animation: intro-out 0.26s cubic-bezier(0.77, 0, 0.18, 1) 0.75s forwards;
}

.intro-logo {
  display: flex;
  gap: 20px;
  transform: translateY(-16px);
}

.intro-logo img {
  width: clamp(120px, 18vw, 180px);
  height: auto;
  display: block;
}

.intro-logo span {
  display: grid;
  width: clamp(88px, 11vw, 132px);
  aspect-ratio: 1;
  place-items: center;
  border: 7px solid var(--ink);
  background: var(--blue);
  box-shadow: 11px 11px 0 var(--ink);
  font-size: clamp(54px, 7vw, 88px);
  font-weight: 700;
  line-height: 1;
}

.intro-logo span:nth-child(2) {
  background: var(--pink);
}

.intro-bar {
  position: absolute;
  left: 50%;
  top: calc(50% + 94px);
  width: min(310px, 52vw);
  height: 24px;
  transform: translateX(-50%);
  border: 6px solid var(--ink);
  background: var(--paper);
  box-shadow: 6px 6px 0 var(--ink);
}

.intro-bar i {
  display: block;
  width: 84%;
  height: 100%;
  background: var(--paper);
  border-right: 6px solid var(--ink);
  animation: intro-load 0.56s steps(10) both;
}

@keyframes intro-load {
  from { width: 8%; }
  to { width: 86%; }
}

@keyframes intro-out {
  to {
    transform: translateY(-100%);
    visibility: hidden;
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  padding: 26px 22px 20px;
  background: transparent;
}

.page-v12 .site-header {
  background: var(--yellow);
}

.header-wrap,
.site-header > .wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border: 5px solid var(--ink);
  background: var(--yellow);
  box-shadow: 8px 8px 0 var(--ink);
  padding-top: 10px;
  padding-bottom: 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark,
.brand > img {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  flex: 0 0 auto;
  border: 4px solid var(--ink);
  border-radius: 9px;
  background: var(--blue);
  box-shadow: var(--shadow-sm);
}

.brand-mark img,
.brand > img {
  object-fit: contain;
  padding: 5px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(10px, 2vw, 24px);
  font-weight: 700;
}

.nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 16px;
  text-decoration: none;
  transition: transform 180ms cubic-bezier(0.22, 1, 0.36, 1), background 180ms ease, box-shadow 180ms ease;
}

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

.legal-nav {
  gap: clamp(8px, 1.4vw, 18px);
  flex-wrap: wrap;
}

.nav a[aria-current="page"] {
  border: 3px solid var(--ink);
  background: var(--paper);
  box-shadow: 3px 3px 0 var(--ink);
  padding: 7px 10px;
}

.nav-cta {
  white-space: nowrap;
}

.nav .nav-v12-cta,
.nav .nav-v12-cta[aria-current="page"] {
  min-height: 48px;
  border: 4px solid var(--ink);
  background: var(--pink);
  box-shadow: 6px 6px 0 var(--ink);
  padding: 12px 16px;
  white-space: nowrap;
  transform: rotate(-1deg);
}

.nav .nav-v12-cta:hover {
  background: #ff94bd;
  box-shadow: 8px 8px 0 var(--ink);
  transform: translate(-2px, -2px) rotate(0deg);
}

.nav .nav-v12-cta:active {
  box-shadow: 1px 1px 0 var(--ink);
  transform: translate(3px, 3px) rotate(0deg);
}

.mobile-menu-toggle,
.mobile-quick-cta {
  display: none;
}

.btn {
  appearance: none;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 4px solid var(--ink);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  color: var(--ink);
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
  padding: 14px 22px;
  text-align: center;
  text-decoration: none;
  transition:
    transform 180ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 180ms cubic-bezier(0.22, 1, 0.36, 1),
    background 180ms ease;
}

.btn.mobile-quick-cta {
  display: none;
}

.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--ink);
}

.btn:active {
  transform: translate(3px, 3px);
  box-shadow: 1px 1px 0 var(--ink);
}

.btn.is-disabled,
.btn[aria-disabled="true"],
.btn:disabled {
  color: var(--ink);
  cursor: default;
  opacity: 1;
  pointer-events: none;
}

.btn.is-disabled:hover,
.btn[aria-disabled="true"]:hover,
.btn:disabled:hover,
.btn.is-disabled:active,
.btn[aria-disabled="true"]:active,
.btn:disabled:active {
  transform: none;
  box-shadow: var(--shadow-sm);
}

.btn:focus-visible,
.nav a:focus-visible,
.nav button:focus-visible,
.brand:focus-visible,
.mobile-menu-toggle:focus-visible,
.legal-back:focus-visible,
.foot-col a:focus-visible {
  outline: 4px solid var(--pink);
  outline-offset: 3px;
}

.btn-blue,
.btn.blue {
  background: var(--blue);
}

.btn-yellow,
.btn.yellow {
  background: var(--yellow);
}

.btn-ghost {
  background: var(--paper);
}

.btn-big {
  min-height: 68px;
  font-size: clamp(18px, 2vw, 26px);
  padding: 18px 28px;
}

/* Sections */
.section {
  position: relative;
  scroll-margin-top: 132px;
  padding: clamp(58px, 8vw, 112px) 0;
}

.section + .section {
  border-top: 5px solid var(--ink);
}

.section-kicker {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  line-height: 1;
}

#about .section-kicker,
#arena .section-kicker,
#indir .section-kicker {
  color: var(--yellow);
  text-shadow: 1.5px 1.5px 0 var(--ink);
}

.section-title,
.section h2 {
  max-width: 930px;
  color: var(--ink);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.96;
  text-wrap: balance;
}

.section-heading {
  max-width: 840px;
  margin-bottom: clamp(28px, 5vw, 58px);
}

.section-heading p:not(.section-kicker) {
  max-width: 720px;
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
  text-wrap: pretty;
}

/* Hero */
.hero {
  min-height: calc(100dvh - 116px);
  display: flex;
  align-items: center;
  padding-top: clamp(28px, 3.6vw, 54px);
  padding-bottom: clamp(28px, 3.8vw, 58px);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: clamp(34px, 7vw, 88px);
}

.hero-copy {
  position: relative;
  z-index: 5;
}

.release-ribbon {
  width: fit-content;
  display: flex;
  align-items: stretch;
  margin-bottom: 24px;
  color: var(--ink);
  text-decoration: none;
  transform: rotate(-1.2deg);
  transition: transform 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.release-ribbon:hover {
  transform: rotate(0) translateY(-3px);
}

.release-ribbon strong,
.release-ribbon span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  border: 4px solid var(--ink);
  box-shadow: none;
  font-weight: 700;
  padding: 8px 14px;
}

.release-ribbon strong {
  background: var(--pink);
  text-transform: uppercase;
}

.release-ribbon span {
  margin-left: -4px;
  background: var(--yellow);
}

.hero-announcements {
  position: absolute;
  left: clamp(18px, 3vw, 42px);
  top: 42px;
  z-index: 7;
  display: flex;
  align-items: center;
  gap: calc(18px + 3rem);
}

.hero-release-card {
  position: relative;
  isolation: isolate;
  width: max-content;
  max-width: 100%;
  flex-direction: column;
  align-items: stretch;
  margin: 0;
}

.hero-release-card::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 3px -8px -8px 3px;
  background: var(--ink);
}

.hero-release-card strong,
.hero-release-card span {
  width: 100%;
  justify-content: flex-start;
  padding-inline: 18px;
}

.hero-release-card strong {
  min-height: 52px;
  font-size: 18px;
}

.hero-release-card span {
  min-height: 72px;
  margin: -4px 0 0;
  font-size: 25px;
  line-height: 1.05;
}

.maarif-badge {
  position: relative;
  isolation: isolate;
  width: 220px;
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.08;
  text-align: center;
  text-wrap: balance;
  transform: rotate(1.4deg);
}

.maarif-badge::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 3px -8px -8px 3px;
  background: var(--ink);
}

.maarif-badge > span {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 92px;
  box-sizing: border-box;
  display: grid;
  place-items: center;
  border: 4px solid var(--ink);
  background: var(--blue);
  padding: 10px 12px;
}

.maarif-badge::before {
  content: "!";
  position: absolute;
  z-index: 2;
  left: -14px;
  top: -18px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 4px solid var(--ink);
  background: var(--pink);
  box-shadow: 3px 3px 0 1px var(--ink);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  transform: rotate(-8deg);
}

.hello {
  margin-bottom: 14px;
  color: var(--yellow);
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 700;
  line-height: 1;
  text-shadow: 1.5px 1.5px 0 var(--ink);
}

.hero h1 {
  max-width: 640px;
  font-size: clamp(52px, 6.4vw, 82px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.93;
  text-wrap: balance;
}

.lead {
  max-width: 680px;
  margin-top: 18px;
  color: var(--ink);
  font-size: clamp(17px, 1.65vw, 21px);
  font-weight: 500;
  line-height: 1.55;
  text-wrap: pretty;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.social-row span {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border: 4px solid var(--ink);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  font-size: 16px;
  font-weight: 700;
  padding: 8px 13px;
}

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

.side-ticket {
  position: absolute;
  right: -3px;
  top: 44%;
  z-index: 3;
  writing-mode: vertical-rl;
  border: 5px solid var(--ink);
  border-right: 0;
  background: var(--yellow);
  box-shadow: -5px 5px 0 var(--ink);
  font-size: 17px;
  font-weight: 700;
  padding: 16px 10px;
}

.hero-art {
  position: relative;
  min-height: 980px;
}

.mockup-stage {
  position: absolute;
  top: -4px;
  right: 52px;
  width: min(548px, 108%);
  height: 560px;
  isolation: isolate;
  transform: scale(1.86);
  transform-origin: center top;
}

.iphone-mockup-img {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 3;
  width: 1000px;
  max-width: none;
  height: auto;
  transform: translateX(-50%) rotate(2.5deg);
  user-select: none;
}

.float-card {
  position: absolute;
  z-index: 4;
  display: grid;
  place-items: center;
  border: 5px solid var(--ink);
  border-radius: 10px;
  box-shadow: 7px 7px 0 var(--ink);
  color: var(--ink);
  font-weight: 700;
  line-height: 1;
  animation: floaty 4.6s ease-in-out infinite;
}

.float-code {
  left: 5px;
  top: 92px;
  width: 92px;
  height: 84px;
  transform: rotate(-8deg);
  background: var(--blue);
  font-size: 28px;
}

.float-map {
  left: -88px;
  top: 286px;
  bottom: auto;
  width: 112px;
  height: 82px;
  transform: rotate(-12deg);
  background: var(--green);
  font-size: 20px;
  animation-name: floaty-map;
  animation-delay: 0.5s;
}

.float-arena {
  right: 0;
  top: 168px;
  width: 112px;
  height: 78px;
  transform: rotate(3deg);
  background: var(--yellow);
  font-size: 21px;
  animation-delay: 1s;
}

.hand-note {
  display: none;
}

@keyframes floaty {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -12px; }
}

@keyframes floaty-map {
  0%, 100% {
    transform: rotate(-12deg) translate3d(0, 0, 0);
  }

  50% {
    transform: rotate(-12deg) translate3d(-4px, -14px, 0);
  }
}

.about-copy,
.timeline-item,
.skill-board article,
.feature-card,
.project-card,
.download-panel {
  --card-float-base: translate3d(0, 0, 0);
  --card-float-x: 0px;
  --card-float-y: -10px;
  transform: var(--card-float-base);
  transform-origin: center;
  backface-visibility: hidden;
  animation: card-float 5.4s ease-in-out infinite;
}

@keyframes card-float {
  0%, 100% {
    transform:
      translate3d(var(--reveal-x, 0px), var(--reveal-y, 0px), 0)
      rotate(var(--reveal-rotate, 0deg))
      var(--card-float-base)
      translate3d(0, 0, 0);
  }

  50% {
    transform:
      translate3d(var(--reveal-x, 0px), var(--reveal-y, 0px), 0)
      rotate(var(--reveal-rotate, 0deg))
      var(--card-float-base)
      translate3d(var(--card-float-x), var(--card-float-y), 0);
  }
}

.motion-ready .parallax-item {
  opacity: var(--reveal-opacity, 1);
  will-change: transform, opacity;
}

.typewriter-text {
  position: relative;
}

.typewriter-reserve {
  display: block;
  visibility: hidden;
}

.typewriter-visible {
  position: absolute;
  inset: 0 0 auto 0;
  display: block;
  white-space: pre-wrap;
}

.typewriter-caret {
  display: inline-block;
  width: 0.08em;
  height: 0.86em;
  margin-left: 0.06em;
  background: currentColor;
  transform: translateY(0.1em);
  animation: type-caret 0.75s steps(2, start) infinite;
}

.typewriter-text.is-typed .typewriter-caret {
  display: none;
}

@keyframes type-caret {
  50% { opacity: 0; }
}

/* About */
.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(300px, 1fr);
  gap: clamp(30px, 7vw, 92px);
  align-items: start;
}

.about-copy {
  border: 5px solid var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
  padding: clamp(24px, 4vw, 40px);
  --card-float-base: rotate(1deg);
  --card-float-x: 3px;
  --card-float-y: -12px;
  animation-delay: 0.2s;
}

.about-copy p {
  color: var(--ink);
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 500;
  line-height: 1.55;
  text-wrap: pretty;
}

.about-copy p + p {
  margin-top: 18px;
}

/* Journey */
.journey-section {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(5, 5, 5, 0.06) 1px, transparent 1px),
    #faf7ef;
  background-size: 22px 22px;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.timeline-item {
  position: relative;
  border: 5px solid var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
  padding: clamp(22px, 3vw, 34px);
}

.timeline-item:nth-child(1) {
  --card-float-x: 2px;
  animation-delay: 0.05s;
}

.timeline-item:nth-child(2),
.timeline-item:nth-child(4) {
  margin-top: 0;
}

.timeline-item:nth-child(2) {
  --card-float-x: -3px;
  --card-float-y: -11px;
  animation-delay: 0.45s;
}

.timeline-item:nth-child(3) {
  --card-float-x: 3px;
  --card-float-y: -9px;
  animation-delay: 0.85s;
}

.timeline-item:nth-child(4) {
  --card-float-x: -2px;
  --card-float-y: -12px;
  animation-delay: 1.2s;
}

.timeline-date,
.timeline-place {
  display: inline-flex;
  border: 3px solid var(--ink);
  background: var(--blue);
  box-shadow: 3px 3px 0 var(--ink);
  font-size: 14px;
  font-weight: 700;
  padding: 6px 10px;
}

.timeline-item h3 {
  margin-top: 18px;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.timeline-item p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.52;
}

.timeline-place {
  margin-top: 20px;
  background: var(--yellow);
}

/* Skills */
.skills-section {
  background: var(--yellow);
}

.skills-section .section-kicker {
  color: var(--paper);
  text-shadow: 3px 3px 0 var(--ink);
}

.skill-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.skill-board article {
  border: 5px solid var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
  padding: clamp(22px, 3vw, 34px);
  --card-float-x: 2px;
  --card-float-y: -10px;
  animation-delay: 0.15s;
}

.skill-board article:nth-child(2) {
  background: var(--blue);
  --card-float-base: translateY(28px);
  --card-float-x: -3px;
  --card-float-y: -13px;
  animation-delay: 0.55s;
}

.skill-board article:nth-child(3) {
  background: var(--green);
  --card-float-x: 3px;
  --card-float-y: -11px;
  animation-delay: 0.95s;
}

.skill-board h3 {
  margin-bottom: 18px;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.035em;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip-list span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 3px solid var(--ink);
  background: var(--paper);
  box-shadow: 3px 3px 0 var(--ink);
  font-size: 15px;
  font-weight: 700;
  padding: 7px 10px;
}

/* Features */
.feature-section {
  background: var(--green);
}

.feature-section .section-kicker {
  color: var(--paper);
  text-shadow: 3px 3px 0 var(--ink);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.feature-card {
  display: grid;
  grid-template-rows: auto minmax(250px, 1fr);
  gap: 24px;
  min-height: 560px;
  border: 6px solid var(--ink);
  background: var(--paper);
  box-shadow: 12px 12px 0 var(--ink);
  padding: clamp(24px, 4vw, 42px);
}

.feature-garden {
  background: var(--yellow);
  --card-float-x: 3px;
  --card-float-y: -12px;
  animation-delay: 0.2s;
}

.feature-clan {
  background: var(--blue);
  --card-float-x: -3px;
  --card-float-y: -10px;
  animation-delay: 0.65s;
}

.feature-tag {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border: 3px solid var(--ink);
  background: var(--paper);
  box-shadow: 3px 3px 0 var(--ink);
  font-size: 15px;
  font-weight: 700;
  padding: 7px 12px;
}

.feature-card h3 {
  max-width: 560px;
  margin-top: 20px;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.95;
  text-wrap: balance;
}

.feature-card p {
  max-width: 600px;
  margin-top: 16px;
  color: var(--ink);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 500;
  line-height: 1.5;
  text-wrap: pretty;
}

.garden-preview {
  align-self: end;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.garden-stage-preview {
  display: grid;
  min-height: 150px;
  align-content: center;
  justify-items: center;
  gap: 7px;
  border: 4px solid var(--ink);
  background: var(--paper);
  box-shadow: 5px 5px 0 var(--ink);
  padding: 14px 10px;
  text-align: center;
}

.garden-stage-preview:nth-child(2),
.garden-stage-preview:nth-child(4) {
  transform: translateY(18px);
}

.garden-stage-icon {
  display: grid;
  width: clamp(44px, 5vw, 58px);
  aspect-ratio: 1;
  place-items: center;
  color: var(--ink);
  --red: #ed4a4a;
  --green-strong: #159b5f;
}

.garden-stage-preview b {
  font-size: 17px;
  line-height: 1;
}

.garden-stage-preview small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.15;
}

.clan-preview {
  align-self: end;
  border: 5px solid var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
  padding: clamp(18px, 3vw, 26px);
}

.clan-preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-weight: 700;
}

.clan-preview-head span {
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1;
}

.clan-preview-head b {
  flex: 0 0 auto;
  border: 3px solid var(--ink);
  background: var(--yellow);
  box-shadow: 3px 3px 0 var(--ink);
  font-size: 14px;
  padding: 7px 10px;
}

.clan-progress {
  height: 24px;
  margin: 20px 0;
  border: 4px solid var(--ink);
  background: var(--soft);
}

.clan-progress span {
  display: block;
  height: 100%;
  border-right: 4px solid var(--ink);
  background: var(--green);
}

.clan-row {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border: 4px solid var(--ink);
  background: var(--paper);
  box-shadow: 4px 4px 0 var(--ink);
  font-weight: 700;
  padding: 12px;
}

.clan-row + .clan-row {
  margin-top: 12px;
}

.clan-row span {
  display: grid;
  width: 34px;
  aspect-ratio: 1;
  place-items: center;
  border: 3px solid var(--ink);
  background: var(--blue);
}

.clan-row-top span {
  background: var(--yellow);
}

.clan-row strong {
  min-width: 0;
  overflow-wrap: anywhere;
}

.clan-row b {
  white-space: nowrap;
}

/* Projects */
.project-section {
  background: var(--paper);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.project-card {
  position: relative;
  min-height: 290px;
  overflow: hidden;
  border: 5px solid var(--ink);
  box-shadow: var(--shadow);
  padding: clamp(24px, 4vw, 42px);
}

.project-card:nth-child(1) {
  --card-float-x: 2px;
  --card-float-y: -10px;
  animation-delay: 0.1s;
}

.project-card:nth-child(2) {
  --card-float-x: -3px;
  --card-float-y: -12px;
  animation-delay: 0.45s;
}

.project-card:nth-child(3) {
  --card-float-x: 3px;
  --card-float-y: -11px;
  animation-delay: 0.8s;
}

.project-card:nth-child(4) {
  --card-float-x: -2px;
  --card-float-y: -9px;
  animation-delay: 1.15s;
}

.project-card:nth-child(5) {
  --card-float-x: 3px;
  --card-float-y: -12px;
  animation-delay: 1.5s;
}

.project-card:nth-child(6) {
  --card-float-x: -3px;
  --card-float-y: -10px;
  animation-delay: 1.85s;
}

.project-yellow { background: var(--yellow); }
.project-blue { background: var(--blue); }
.project-green { background: var(--green); }
.project-pink { background: var(--pink); }

.project-icon {
  display: inline-grid;
  width: 72px;
  height: 64px;
  place-items: center;
  border: 4px solid var(--ink);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  padding: 9px;
  overflow: hidden;
}

.site-icon-svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.project-icon {
  --red: #ed4a4a;
  --green-strong: #159b5f;
}

.project-icon .site-icon-svg {
  width: 46px;
  height: 46px;
}

.project-card h3 {
  margin-top: 28px;
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.project-card p {
  position: relative;
  z-index: 1;
  max-width: 540px;
  margin-top: 16px;
  color: var(--ink);
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 500;
  line-height: 1.5;
}

/* V1.2 page */
.v12-page-hero {
  overflow: hidden;
  background: var(--yellow);
  padding-top: clamp(72px, 9vw, 132px);
  padding-bottom: clamp(72px, 9vw, 126px);
}

.v12-page-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  align-items: center;
  gap: clamp(44px, 7vw, 96px);
}

.v12-page-hero h1 {
  max-width: 840px;
  font-size: clamp(44px, 6vw, 82px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.91;
  text-wrap: balance;
}

.v12-page-hero h1 span {
  display: block;
  white-space: nowrap;
}

.v12-page-hero p {
  max-width: 720px;
  margin-top: 26px;
  color: var(--ink);
  font-size: clamp(18px, 1.8vw, 23px);
  font-weight: 500;
  line-height: 1.55;
  text-wrap: pretty;
}

.v12-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.v12-hero-poster {
  position: relative;
  display: flex;
  min-height: 520px;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  border: 7px solid var(--ink);
  background: var(--ink);
  box-shadow: 14px 14px 0 var(--pink);
  color: var(--paper);
  padding: clamp(28px, 4vw, 54px);
  transform: rotate(2deg);
}

.v12-hero-poster::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 3px solid var(--yellow);
  pointer-events: none;
}

.v12-hero-poster strong,
.v12-hero-poster small,
.v12-hero-poster .poster-label {
  position: relative;
  z-index: 1;
}

.v12-hero-poster strong {
  width: fit-content;
  color: var(--paper);
  font-size: clamp(34px, 4.3vw, 58px);
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.v12-hero-poster strong:nth-of-type(2) {
  color: var(--blue);
}

.v12-hero-poster strong:nth-of-type(3) {
  color: var(--yellow);
}

.v12-hero-poster .poster-label {
  width: fit-content;
  margin-bottom: 18px;
  border: 0;
  background: var(--pink);
  box-shadow: 5px 5px 0 var(--blue);
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
  padding: 8px 13px;
  transform: rotate(-4deg);
}

.v12-hero-poster small {
  margin-top: 26px;
  color: var(--paper);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* V1.2 release story */
.content-jump-section {
  overflow: hidden;
  background: var(--paper);
}

.content-jump-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(430px, 1.55fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
}

.content-jump-intro {
  align-self: start;
}

.v12-stamp {
  display: inline-flex;
  margin-bottom: 22px;
  border: 5px solid var(--ink);
  background: var(--pink);
  box-shadow: 6px 6px 0 var(--ink);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  padding: 8px 14px;
  transform: rotate(-3deg);
}

.content-jump-intro h2 {
  max-width: 520px;
  font-size: clamp(44px, 6.4vw, 84px);
}

@media (min-width: 1061px) {
  .content-jump-intro {
    grid-column: 1 / -1;
  }

  .content-jump-intro h2 {
    max-width: none;
    font-size: clamp(42px, 4.8vw, 76px);
    white-space: nowrap;
  }

}

.content-jump-numbers {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(8px, 1.8vw, 24px);
  white-space: nowrap;
}

.content-jump-numbers span {
  display: grid;
  font-size: clamp(70px, 10.3vw, 146px);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.8;
}

.content-jump-numbers small {
  margin-bottom: 16px;
  font-size: clamp(15px, 1.5vw, 20px);
  letter-spacing: 0;
  line-height: 1;
}

.content-jump-numbers b {
  color: var(--blue);
  font-size: clamp(42px, 6vw, 86px);
  line-height: 1;
  text-shadow: 3px 3px 0 var(--ink);
}

.content-jump-numbers .is-new {
  color: var(--pink);
  text-shadow: 3px 3px 0 var(--ink);
}

.content-jump-numbers .is-new small {
  text-shadow: 1px 1px 0 var(--ink);
}

@media (min-width: 1061px) {
  .content-jump-numbers {
    grid-column: 1 / -1;
    justify-content: center;
  }
}

.content-jump-result {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  border-top: 5px solid var(--ink);
  padding-top: 28px;
}

.content-jump-result strong {
  display: inline-flex;
  border: 4px solid var(--ink);
  background: var(--yellow);
  box-shadow: var(--shadow-sm);
  font-size: clamp(22px, 3vw, 38px);
  padding: 12px 18px;
  transform: rotate(-1deg);
}

.content-jump-result p {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 21px);
  font-weight: 500;
}

@media (min-width: 1061px) {
  .content-jump-result p {
    max-width: none;
    white-space: nowrap;
  }
}

.social-v12-section {
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.social-v12-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(540px, 1.25fr);
  gap: clamp(42px, 6vw, 86px);
  align-items: center;
}

.social-v12-copy h2,
.social-v12-copy p {
  color: var(--paper);
}

.social-v12-copy h2 {
  font-size: clamp(46px, 6.4vw, 84px);
}

.social-v12-copy > p {
  max-width: 600px;
  margin-top: 24px;
  font-size: clamp(17px, 1.8vw, 21px);
}

.social-v12-list {
  display: grid;
  gap: 0;
  margin-top: 34px;
  border-top: 3px solid var(--paper);
  list-style: none;
}

.social-v12-list li {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 14px;
  border-bottom: 3px solid var(--paper);
  padding: 16px 0;
}

.social-v12-list b {
  color: var(--yellow);
}

.social-v12-list span {
  color: #fff;
}

.social-v12-collage {
  position: relative;
  min-height: 720px;
}

.screen-cutout {
  overflow: hidden;
  border: 5px solid var(--ink);
  background: var(--paper);
  box-shadow: 10px 10px 0 2px var(--ink);
  backface-visibility: hidden;
}

.screen-cutout img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.arena-cutout {
  position: absolute;
  right: 18px;
  top: 18px;
  width: min(390px, 62%);
  height: 620px;
  border: 0;
  box-shadow: none;
  transform: rotate(2deg);
}

.arena-cutout img {
  object-position: center top;
}

.arena-sanitized-ranking {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  top: 57%;
  z-index: 2;
  border-top: 4px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  padding: 10px 12px 13px;
}

.arena-sanitized-ranking small {
  display: block;
  margin-bottom: 7px;
  font-size: 11px;
  font-weight: 800;
}

.arena-sanitized-row {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 7px;
  border: 2px solid var(--ink);
  background: var(--yellow);
  padding: 6px 8px;
}

.arena-sanitized-row + .arena-sanitized-row {
  border-top: 0;
  background: #fff;
}

.arena-sanitized-ranking strong,
.arena-sanitized-ranking em,
.arena-sanitized-ranking b {
  white-space: nowrap;
  font-size: 11px;
}

.arena-sanitized-ranking em {
  overflow: hidden;
  color: #086ec8;
  font-style: normal;
  text-overflow: ellipsis;
}

.fake-rank-avatar {
  width: 32px;
  height: 32px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background-image: url("V12/fictional-profile-pair.png");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 200% 100%;
}

.fake-rank-avatar-arda {
  background-position: right center;
}

.identity-cutout,
.friend-request-cutout,
.duel-cutout {
  position: absolute;
  z-index: 2;
  border: 4px solid var(--ink);
  color: var(--ink);
  box-shadow: 7px 7px 0 var(--ink);
}

.identity-cutout {
  left: 0;
  top: 60px;
  width: min(380px, 57%);
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  background: var(--green);
  padding: 14px;
  transform: rotate(-2.5deg);
}

.identity-avatar,
.request-avatar {
  display: grid;
  place-items: center;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background-image: url("V12/fictional-profile-pair.png");
  background-repeat: no-repeat;
  background-size: 200% 100%;
  font-size: 24px;
  font-weight: 700;
}

.identity-avatar {
  width: 58px;
  height: 58px;
  background-position: left center;
}

.identity-cutout strong,
.identity-cutout small,
.friend-request-cutout strong,
.friend-request-cutout small {
  display: block;
}

.identity-cutout small {
  color: #075aa0;
  font-weight: 700;
}

.identity-level {
  border: 3px solid var(--ink);
  background: var(--yellow);
  font-size: 13px;
  font-weight: 700;
  padding: 5px 8px;
}

.friend-request-cutout {
  left: 20px;
  top: 250px;
  width: min(520px, 78%);
  display: grid;
  grid-template-columns: 48px minmax(150px, 1fr) auto auto;
  align-items: center;
  gap: 10px;
  background: var(--pink);
  padding: 14px;
  transform: rotate(1.5deg);
}

.request-avatar {
  width: 48px;
  height: 48px;
  background-position: right center;
}

.friend-request-cutout button {
  min-height: 40px;
  border: 3px solid var(--ink);
  background: var(--yellow);
  box-shadow: 3px 3px 0 var(--ink);
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 9px;
  pointer-events: none;
}

.friend-request-cutout .reject {
  background: var(--paper);
}

.duel-cutout {
  left: 64px;
  bottom: 52px;
  width: min(420px, 66%);
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--yellow);
  padding: 18px;
  transform: rotate(-1.5deg);
}

.duel-cutout > span {
  font-size: 42px;
  line-height: 1;
}

.duel-cutout strong,
.duel-cutout small {
  display: block;
}

.duel-cutout small {
  margin-top: 3px;
}

.clan-league-section {
  background: var(--soft);
}

.clan-league-section .section-kicker {
  text-shadow: 2px 2px 0 var(--ink);
}

.clan-league-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: end;
  margin-bottom: clamp(38px, 6vw, 70px);
}

.clan-league-heading p {
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 21px);
  font-weight: 500;
}

.clan-league-stage {
  position: relative;
  min-height: 620px;
}

.clan-ranking-demo {
  position: absolute;
  left: 0;
  top: 42px;
  z-index: 2;
  width: min(760px, 68%);
  border: 5px solid var(--ink);
  background: var(--ink);
  box-shadow: 11px 11px 0 var(--pink);
  transform: rotate(-1deg);
}

.clan-period-demo {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 4px solid var(--ink);
  background: var(--paper);
}

.clan-period-demo span,
.clan-period-demo b {
  display: grid;
  min-height: 50px;
  place-items: center;
  border-right: 3px solid var(--ink);
  font-size: 15px;
}

.clan-period-demo b {
  background: var(--yellow);
}

.clan-rank-demo {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 90px 120px;
  align-items: center;
  gap: 12px;
  border-bottom: 2px solid #454545;
  color: var(--paper);
  padding: 18px;
}

.clan-rank-demo:last-child {
  border-bottom: 0;
}

.clan-rank-demo em {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 3px solid var(--paper);
  color: var(--paper);
  font-style: normal;
  font-weight: 700;
}

.clan-rank-demo-top em {
  border-color: var(--ink);
  background: var(--yellow);
  color: var(--ink);
}

.clan-rank-demo span {
  color: #d8d8d8;
  font-size: 13px;
}

.league-cutout {
  position: absolute;
  right: 0;
  top: 0;
  width: 360px;
  height: 560px;
  transform: rotate(2deg);
}

.league-cutout img {
  object-position: center 18%;
}

.league-sanitized-user {
  position: absolute;
  top: 57%;
  right: 7%;
  left: 7%;
  z-index: 2;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 7px;
  border-radius: 7px;
  background: var(--ink);
  color: #fff;
  padding: 6px 9px;
}

.league-sanitized-user > span {
  width: 34px;
  height: 34px;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  background-image: url("V12/fictional-profile-pair.png");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 200% 100%;
}

.league-sanitized-user strong,
.league-sanitized-user em,
.league-sanitized-user b {
  white-space: nowrap;
  font-size: 10px;
}

.league-sanitized-user em {
  overflow: hidden;
  color: var(--blue);
  font-style: normal;
  text-overflow: ellipsis;
}

.clan-invite-demo {
  position: absolute;
  left: 110px;
  bottom: 4px;
  z-index: 3;
  width: min(560px, 52%);
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 12px;
  border: 4px solid var(--ink);
  background: var(--blue);
  box-shadow: 7px 7px 0 var(--ink);
  padding: 14px;
  transform: rotate(1deg);
}

.clan-shield {
  position: relative;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 3px solid var(--ink);
  background: var(--yellow);
  color: transparent;
  font-size: 0;
}

.clan-shield::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 16px;
  box-sizing: border-box;
  border: 2px solid var(--ink);
  transform: translate(-50%, -50%) rotate(45deg);
  transform-origin: center;
}

.clan-invite-demo strong,
.clan-invite-demo small {
  display: block;
}

.role-chip {
  border: 3px solid var(--ink);
  background: var(--yellow);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 8px;
}

.role-chip.helper {
  background: var(--green);
}

.identity-safety-section {
  background: var(--paper);
}

.identity-safety-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: stretch;
}

.profile-fragment {
  border: 6px solid var(--ink);
  background: var(--paper);
  box-shadow: 12px 12px 0 var(--ink);
  padding: clamp(22px, 4vw, 46px);
  transform: rotate(-1deg);
}

.profile-fragment-head {
  display: flex;
  align-items: center;
  gap: 20px;
}

.profile-fragment-avatar {
  display: grid;
  width: 108px;
  height: 108px;
  flex: 0 0 auto;
  place-items: center;
  border: 5px solid var(--ink);
  border-radius: 50%;
  background-image: url("V12/fictional-profile-pair.png");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 200% 100%;
  box-shadow: 5px 5px 0 var(--ink);
  font-size: 54px;
  font-weight: 700;
}

.profile-fragment-head small,
.profile-fragment-head strong,
.profile-fragment-head span {
  display: block;
}

.profile-fragment-head strong {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
}

.profile-fragment-head strong em {
  color: #086ec8;
  font-size: 0.48em;
  font-style: normal;
}

.profile-fragment-head div > span {
  width: fit-content;
  margin-top: 10px;
  border: 3px solid var(--ink);
  background: var(--yellow);
  box-shadow: 3px 3px 0 var(--ink);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 9px;
}

.profile-fragment-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
  border: 4px solid var(--ink);
}

.profile-fragment-stats span {
  display: grid;
  min-height: 112px;
  place-items: center;
  align-content: center;
  border-right: 3px solid var(--ink);
}

.profile-fragment-stats span:last-child {
  border-right: 0;
}

.profile-fragment-stats b,
.profile-fragment-stats small {
  display: block;
}

.profile-fragment-stats b {
  font-size: clamp(24px, 3vw, 38px);
}

.profile-fragment-stats small {
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
}

.profile-fragment > p {
  margin-top: 24px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 500;
}

.safety-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 6px solid var(--ink);
  background: var(--green);
  box-shadow: 12px 12px 0 var(--ink);
  padding: clamp(22px, 3vw, 38px);
  transform: rotate(1deg);
}

.safety-mark {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  margin-bottom: 26px;
  border: 5px solid var(--ink);
  background: var(--yellow);
  box-shadow: 5px 5px 0 var(--ink);
  font-size: 42px;
  font-weight: 700;
}

.safety-copy h2 {
  max-width: none;
  font-size: clamp(18px, 2.3vw, 30px);
  letter-spacing: -0.035em;
  line-height: 1;
  white-space: nowrap;
}

.safety-copy p {
  margin-top: 20px;
  color: var(--ink);
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 500;
}

.safety-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 28px;
}

.safety-actions span {
  display: grid;
  min-width: 0;
  place-items: center;
  border: 3px solid var(--ink);
  background: var(--paper);
  font-size: clamp(9px, 0.8vw, 12px);
  font-weight: 700;
  line-height: 1.1;
  padding: 7px 5px;
  text-align: center;
  white-space: nowrap;
}

.yks-countdown-section {
  background: var(--yellow);
}

.yks-countdown-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 38px;
  border: 6px solid var(--ink);
  background: var(--yellow);
  box-shadow: 12px 12px 0 var(--ink);
  padding-top: clamp(24px, 4vw, 46px);
  padding-bottom: clamp(24px, 4vw, 46px);
}

.yks-countdown-panel > div > span {
  font-size: 18px;
  font-weight: 700;
}

.yks-countdown-panel h2 {
  font-size: clamp(38px, 5vw, 68px);
}

.yks-countdown-panel p {
  max-width: 620px;
  margin-top: 12px;
  font-weight: 500;
}

.yks-countdown-panel > strong {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.yks-countdown-panel > strong b {
  display: grid;
  min-width: 210px;
  place-items: center;
  border: 5px solid var(--ink);
  background: var(--paper);
  box-shadow: 7px 7px 0 var(--ink);
  font-size: clamp(72px, 10vw, 132px);
  letter-spacing: -0.055em;
  line-height: 0.92;
  padding: 10px 18px;
}

.yks-countdown-panel > strong span {
  font-size: clamp(30px, 4vw, 52px);
  text-transform: uppercase;
}

/* Download */
.download-section {
  background: var(--blue);
}

.download-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  border: 6px solid var(--ink);
  background: var(--paper);
  box-shadow: 12px 12px 0 var(--ink);
  padding-top: clamp(26px, 4vw, 48px);
  padding-bottom: clamp(26px, 4vw, 48px);
  --card-float-x: 2px;
  --card-float-y: -12px;
  animation-delay: 0.35s;
}

.download-panel p:not(.section-kicker) {
  max-width: 700px;
  margin-top: 16px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
  line-height: 1.5;
}

.store-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.store-badge {
  position: relative;
  display: flex;
  width: 220px;
  min-height: 70px;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--ink);
  border-radius: 9px;
  background: var(--ink);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 180ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 180ms ease;
}

.store-badge:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--ink);
}

.store-badge img {
  width: 100%;
  height: 62px;
  display: block;
  object-fit: contain;
}

.store-badge-coming {
  filter: grayscale(1);
  opacity: 0.62;
}

.store-badge-coming b {
  position: absolute;
  right: 8px;
  top: 8px;
  border: 2px solid var(--ink);
  background: var(--yellow);
  color: var(--ink);
  font-size: 11px;
  padding: 3px 6px;
  text-transform: uppercase;
}

/* Legal pages */
.legal {
  padding: clamp(44px, 7vw, 92px) 0 clamp(74px, 8vw, 120px);
}

.legal .wrap {
  max-width: 940px;
}

.legal-card,
.legal > .wrap {
  border: 6px solid var(--ink);
  background: var(--paper);
  box-shadow: 12px 12px 0 var(--ink);
  padding: clamp(24px, 5vw, 56px);
}

.legal-back {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-bottom: 28px;
  border: 4px solid var(--ink);
  background: var(--blue);
  box-shadow: var(--shadow-sm);
  font-weight: 700;
  padding: 9px 14px;
  text-decoration: none;
}

.legal h1 {
  max-width: 820px;
  font-size: clamp(42px, 7vw, 84px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.95;
  text-wrap: balance;
}

.legal h1.legal-title-single {
  max-width: none;
  white-space: nowrap;
  font-size: 76px;
}

.updated {
  display: inline-flex;
  margin: 18px 0 28px;
  border: 3px solid var(--ink);
  background: var(--yellow);
  box-shadow: 3px 3px 0 var(--ink);
  font-size: 14px;
  font-weight: 700;
  padding: 7px 10px;
}

.legal h2 {
  margin: 34px 0 12px;
  padding-top: 24px;
  border-top: 4px solid var(--ink);
  font-size: clamp(25px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.legal h2:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.legal p,
.legal li {
  color: var(--ink);
  font-size: clamp(16px, 1.4vw, 18px);
  font-weight: 500;
  line-height: 1.65;
}

.legal p + p {
  margin-top: 12px;
}

.legal ul {
  margin: 12px 0 14px;
  padding-left: 22px;
}

.legal li + li {
  margin-top: 7px;
}

.legal strong {
  font-weight: 700;
}

.legal a:not(.legal-back) {
  color: var(--ink);
  font-weight: 700;
  text-decoration-thickness: 3px;
  text-underline-offset: 3px;
}

.legal a.link-plain {
  text-decoration: none;
}

.legal a.link-plain:hover {
  text-decoration: none;
}

.support-page {
  max-width: 1080px;
}

.support-hero {
  max-width: 860px;
}

.support-hero .section-kicker {
  color: var(--yellow);
  text-shadow: 1.5px 1.5px 0 var(--ink);
}

.support-title-line {
  display: inline-block;
  font-size: 0.8em;
  line-height: 1;
  white-space: nowrap;
}

.support-lead {
  max-width: 760px;
  margin-top: 24px;
  color: var(--ink);
  font-size: clamp(19px, 2vw, 25px);
  font-weight: 600;
  line-height: 1.45;
  text-wrap: pretty;
}

.support-direct {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
  margin-top: clamp(30px, 5vw, 58px);
  border: 6px solid var(--ink);
  background: var(--yellow);
  box-shadow: 12px 12px 0 var(--ink);
  padding: clamp(22px, 4vw, 40px);
}

.support-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  border: 3px solid var(--ink);
  background: var(--blue);
  box-shadow: 3px 3px 0 var(--ink);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  padding: 7px 10px;
}

.support-direct h2 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 0.95;
  white-space: nowrap;
  overflow-wrap: normal;
}

.support-direct p:not(.support-label) {
  max-width: 650px;
  margin-top: 16px;
  color: var(--ink);
  font-size: clamp(17px, 1.8vw, 21px);
  font-weight: 600;
  line-height: 1.5;
}

.support-actions {
  display: flex;
  min-width: min(100%, 260px);
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
  align-self: center;
}

.support-actions .btn {
  justify-content: center;
}

.support-actions::after {
  content: "";
  display: block;
  height: 48px;
}

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

.support-grid article {
  border: 5px solid var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  padding: 20px;
}

.support-grid article:nth-child(2) {
  background: var(--blue);
}

.support-grid article:nth-child(3) {
  background: var(--green);
}

.support-grid span {
  display: inline-flex;
  border: 3px solid var(--ink);
  background: var(--paper);
  box-shadow: 3px 3px 0 var(--ink);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  padding: 6px 10px;
}

.support-grid p {
  margin-top: 16px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.note {
  margin: 30px 0 0;
  border: 5px solid var(--ink);
  background: var(--yellow);
  box-shadow: var(--shadow);
  font-size: clamp(16px, 1.4vw, 18px);
  font-weight: 700;
  line-height: 1.55;
  padding: 18px 20px;
}

/* Footer */
.site-footer {
  border-top: 5px solid var(--ink);
  background: var(--yellow);
  padding: clamp(34px, 5vw, 58px) 0 28px;
}

.footer-grid,
.site-footer .wrap:first-child {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto auto;
  gap: 30px;
  align-items: start;
}

.foot-bottom {
  max-width: 430px;
  margin-top: 16px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.foot-col h4 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.foot-col a {
  display: block;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
  text-decoration: none;
}

.foot-col a:hover {
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.copyright {
  margin-top: 34px;
  border-top: 4px solid var(--ink);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  padding-top: 18px;
  text-align: center;
}

@media (max-width: 1060px) {
  .page-frame {
    margin: 12px;
    border-width: 6px;
    box-shadow: 8px 8px 0 var(--ink);
  }

  .site-header {
    padding: 18px 14px 14px;
  }

  .header-wrap {
    flex-wrap: wrap;
  }

  .nav {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .legal h1.legal-title-single {
    font-size: 60px;
  }

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

  .hero-art {
    min-height: 1240px;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }

  .mockup-stage {
    left: 50%;
    right: auto;
    transform: translateX(-50%) scale(2.16);
  }

  .split-section,
  .download-panel {
    grid-template-columns: 1fr;
  }

  .support-direct {
    grid-template-columns: 1fr;
  }

  .support-actions::after {
    display: none;
  }

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

  .feature-card {
    min-height: auto;
  }

  .skill-board {
    grid-template-columns: 1fr;
  }

  .skill-board article:nth-child(2) {
    --card-float-base: translate3d(0, 0, 0);
  }

  .footer-grid,
  .site-footer .wrap:first-child {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  body {
    background-size: 22px 22px;
  }

  html {
    scroll-padding-top: 230px;
  }

  .page-frame {
    margin: 0;
    border-width: 0 0 6px;
    box-shadow: none;
  }

  .header-wrap {
    position: relative;
    border-width: 4px;
    box-shadow: 5px 5px 0 var(--ink);
  }

  :is(.page-home, .page-v12) .header-wrap {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) auto;
    gap: 10px;
    min-height: 76px;
    align-items: center;
    padding: 10px;
  }

  .mobile-menu-toggle {
    display: none;
  }

  :is(.page-home, .page-v12) .mobile-menu-toggle {
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 4px solid var(--ink);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: 4px 4px 0 var(--ink);
    cursor: pointer;
    padding: 8px;
  }

  :is(.page-home, .page-v12) .mobile-menu-toggle span {
    display: block;
    width: 20px;
    height: 4px;
    border-radius: 999px;
    background: var(--ink);
    transition: transform 180ms cubic-bezier(0.22, 1, 0.36, 1), opacity 180ms ease;
  }

  :is(.page-home, .page-v12).mobile-menu-open .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  :is(.page-home, .page-v12).mobile-menu-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  :is(.page-home, .page-v12).mobile-menu-open .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .brand {
    font-size: 17px;
  }

  :is(.page-home, .page-v12) .brand {
    min-width: 0;
    gap: 8px;
  }

  .brand-mark,
  .brand > img {
    width: 46px;
    height: 46px;
  }

  :is(.page-home, .page-v12) .brand-mark,
  :is(.page-home, .page-v12) .brand > img {
    width: 42px;
    height: 42px;
    border-width: 3px;
  }

  :is(.page-home, .page-v12) .mobile-quick-cta {
    display: inline-flex;
    min-height: 42px;
    max-width: 154px;
    padding: 8px 10px;
    font-size: 13px;
    line-height: 1;
    white-space: normal;
  }

  .nav a:not(.btn) {
    display: none;
  }

  :is(.page-home, .page-v12) .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    z-index: 40;
    display: none;
    width: auto;
    margin: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    overflow: visible;
    border: 4px solid var(--ink);
    background: var(--yellow);
    box-shadow: 7px 7px 0 var(--ink);
    padding: 12px;
  }

  :is(.page-home, .page-v12).mobile-menu-open .nav {
    display: flex;
  }

  :is(.page-home, .page-v12) .nav a,
  :is(.page-home, .page-v12) .nav button,
  :is(.page-home, .page-v12) .nav a:not(.btn) {
    display: flex;
    min-height: 42px;
    justify-content: flex-start;
    border: 3px solid var(--ink);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: 3px 3px 0 var(--ink);
    font-size: 15px;
    padding: 9px 12px;
  }

  :is(.page-home, .page-v12) .nav .nav-cta {
    width: 100%;
    max-width: none;
    justify-content: center;
    background: var(--blue);
    white-space: normal;
  }

  .page-legal .legal-nav {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .page-legal .legal-nav a:not(.btn) {
    display: inline-flex;
    flex: 0 0 auto;
  }

  .nav {
    width: auto;
    margin-left: auto;
    padding-bottom: 0;
  }

  .nav-cta {
    font-size: 14px;
    padding-inline: 14px;
  }

  .section {
    scroll-margin-top: 230px;
    padding: 54px 0;
  }

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

  .hero h1 {
    font-size: clamp(48px, 15vw, 72px);
  }

  .legal h1.legal-title-single {
    font-size: 42px;
  }

  .hello {
    font-size: clamp(27px, 8vw, 40px);
  }

  .lead {
    font-size: 18px;
  }

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

  .side-ticket {
    display: none;
  }

  .hero-art {
    min-height: 760px;
    max-width: 390px;
    overflow: visible;
  }

  .mockup-stage {
    top: 18px;
    width: min(390px, 96vw);
    height: 650px;
    transform: translateX(-50%) scale(1.24);
  }

  .iphone-mockup-img {
    width: 820px;
  }

  .float-code {
    left: 0;
    top: 22px;
    width: 78px;
    height: 70px;
    font-size: 22px;
  }

  .float-map {
    left: -6px;
    top: 250px;
    bottom: auto;
    width: 94px;
    height: 68px;
    font-size: 16px;
  }

  .float-arena {
    right: 0;
    top: 126px;
    width: 94px;
    height: 64px;
    font-size: 18px;
  }

  .hand-note {
    display: none;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .timeline-item,
  .timeline-item:nth-child(2),
  .timeline-item:nth-child(4) {
    margin-top: 0;
  }

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

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

  .garden-preview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .garden-stage-preview:nth-child(2),
  .garden-stage-preview:nth-child(4) {
    transform: none;
  }

  .clan-preview-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .project-card {
    min-height: auto;
  }

  .footer-grid,
  .site-footer .wrap:first-child {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .wrap {
    padding-inline: 16px;
  }

  .site-header {
    padding-inline: 10px;
  }

  .header-wrap {
    gap: 12px;
  }

  .nav {
    min-width: 0;
    flex: 1 1 100%;
    width: 100%;
    justify-content: stretch;
    margin-left: 0;
  }

  .brand span:last-child {
    max-width: 96px;
    white-space: normal;
    line-height: 1;
  }

  .page-home .brand span:last-child {
    max-width: none;
    white-space: nowrap;
  }

  .nav-cta {
    width: 100%;
    max-width: none;
    white-space: normal;
    line-height: 1.05;
    padding-inline: 10px;
  }

  .btn {
    min-height: 46px;
    border-width: 3px;
    box-shadow: 3px 3px 0 var(--ink);
    font-size: 14px;
    padding: 12px 14px;
  }

  .legal h1.legal-title-single {
    font-size: 26px;
    letter-spacing: -0.035em;
  }

  .support-direct h2 {
    font-size: 24px;
  }

  .hello {
    font-size: clamp(25px, 7.2vw, 30px);
  }

  .hero h1 {
    font-size: clamp(38px, 10.8vw, 44px);
    letter-spacing: -0.035em;
    line-height: 1;
  }

  .social-row {
    gap: 10px;
  }

  .social-row span {
    min-height: 44px;
    font-size: 14px;
    padding: 8px 10px;
  }

  .hero-art {
    min-height: 1080px;
  }

  .page-home .hero-art {
    min-height: 700px;
    max-width: 100%;
  }

  .mockup-stage {
    width: min(430px, 128vw);
    height: 500px;
  }

  .page-home .mockup-stage {
    top: 14px;
    width: min(360px, 92vw);
    height: 610px;
    transform: translateX(-50%) scale(1.14);
  }

  .iphone-mockup-img {
    width: 820px;
  }

  .page-home .iphone-mockup-img {
    width: 800px;
  }

  .garden-preview {
    grid-template-columns: 1fr;
  }

  .garden-stage-preview {
    min-height: 104px;
  }

  .clan-row {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .clan-row b {
    grid-column: 2;
  }
}

@media (max-width: 1060px) {
  .hero-announcements {
    position: relative;
    left: auto;
    top: auto;
    width: fit-content;
    max-width: 100%;
    margin-bottom: 8px;
  }

  .v12-page-hero-layout {
    grid-template-columns: 1fr;
  }

  .v12-hero-poster {
    width: min(680px, 92%);
    min-height: 440px;
    margin: 0 auto;
  }

  .content-jump-layout,
  .social-v12-layout,
  .clan-league-heading,
  .identity-safety-layout {
    grid-template-columns: 1fr;
  }

  .content-jump-numbers {
    justify-content: flex-start;
  }

  .social-v12-collage {
    width: min(760px, 100%);
    min-height: 680px;
    margin: 0 auto;
  }

  .clan-league-stage {
    min-height: 760px;
  }

  .clan-ranking-demo {
    width: min(720px, 82%);
  }

  .league-cutout {
    top: 240px;
  }

  .clan-invite-demo {
    left: 28px;
    width: min(590px, 68%);
  }

  .download-panel {
    grid-template-columns: 1fr;
  }

  .store-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .hero-announcements {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
  }

  .hero-release-card {
    max-width: 330px;
    flex-direction: column;
    margin: 0;
  }

  .hero-release-card strong,
  .hero-release-card span {
    min-height: auto;
    font-size: 14px;
    padding: 9px 12px;
  }

  .hero-release-card span {
    margin: -4px 0 0;
    font-size: 19px;
  }

  .maarif-badge {
    width: auto;
    max-width: 280px;
    font-size: 16px;
  }

  .maarif-badge > span {
    min-height: auto;
    padding: 12px 14px;
  }

  .v12-page-hero {
    padding-top: 54px;
  }

  .v12-page-hero h1 {
    font-size: clamp(36px, 10.5vw, 44px);
  }

  .v12-page-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .v12-page-actions .btn {
    width: 100%;
  }

  .v12-hero-poster {
    width: calc(100% - 10px);
    min-height: 390px;
    padding: 34px 28px;
    box-shadow: 9px 9px 0 var(--pink);
  }

  .v12-hero-poster strong {
    font-size: clamp(34px, 11vw, 48px);
  }

  :is(.page-home, .page-v12) .nav .nav-v12-cta,
  :is(.page-home, .page-v12) .nav .nav-v12-cta[aria-current="page"] {
    justify-content: center;
    background: var(--pink);
    box-shadow: 4px 4px 0 var(--ink);
    transform: none;
  }

  .release-ribbon {
    max-width: 100%;
    flex-direction: column;
    margin-bottom: 20px;
  }

  .release-ribbon strong,
  .release-ribbon span {
    min-height: 40px;
    font-size: 13px;
    padding: 7px 10px;
  }

  .release-ribbon span {
    margin-left: 0;
    margin-top: -4px;
  }

  .content-jump-numbers {
    gap: 7px;
  }

  .content-jump-numbers span {
    font-size: clamp(48px, 17vw, 72px);
  }

  .content-jump-numbers small {
    margin-bottom: 8px;
    font-size: 12px;
  }

  .content-jump-numbers b {
    font-size: 34px;
    text-shadow: 2px 2px 0 var(--ink);
  }

  .content-jump-result {
    grid-template-columns: 1fr;
  }

  .social-v12-list li {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .social-v12-collage {
    min-height: 650px;
  }

  .arena-cutout {
    right: 0;
    width: 68%;
    height: 540px;
  }

  .identity-cutout {
    top: 34px;
    width: 70%;
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .identity-avatar {
    width: 48px;
    height: 48px;
  }

  .identity-level {
    display: none;
  }

  .friend-request-cutout {
    left: 0;
    top: 220px;
    width: 90%;
    grid-template-columns: 42px minmax(0, 1fr) auto;
  }

  .friend-request-cutout .reject {
    display: none;
  }

  .duel-cutout {
    left: 8px;
    bottom: 34px;
    width: 82%;
  }

  .clan-league-stage {
    min-height: 720px;
  }

  .clan-ranking-demo {
    top: 10px;
    width: 100%;
  }

  .clan-rank-demo {
    grid-template-columns: 38px minmax(0, 1fr) 86px;
    gap: 8px;
    padding: 13px 10px;
  }

  .clan-rank-demo span {
    display: none;
  }

  .clan-rank-demo b {
    font-size: 13px;
    text-align: right;
  }

  .clan-rank-demo em {
    width: 34px;
    height: 34px;
  }

  .league-cutout {
    right: -18px;
    top: 330px;
    width: 54%;
    height: 350px;
  }

  .league-sanitized-user {
    top: 48%;
  }

  .clan-invite-demo {
    left: 0;
    bottom: 44px;
    width: 76%;
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .clan-shield {
    width: 46px;
    height: 46px;
  }

  .role-chip {
    display: none;
  }

  .profile-fragment-head {
    align-items: flex-start;
  }

  .profile-fragment-avatar {
    width: 78px;
    height: 78px;
    font-size: 38px;
  }

  .profile-fragment-head strong {
    font-size: 30px;
  }

  .profile-fragment-head strong em {
    display: block;
    margin-top: 5px;
    font-size: 16px;
  }

  .profile-fragment-stats {
    grid-template-columns: 1fr;
  }

  .profile-fragment-stats span {
    min-height: 74px;
    grid-template-columns: 1fr 1fr;
    border-right: 0;
    border-bottom: 3px solid var(--ink);
  }

  .profile-fragment-stats span:last-child {
    border-bottom: 0;
  }

  .yks-countdown-panel {
    grid-template-columns: 1fr;
  }

  .yks-countdown-panel > strong {
    justify-content: flex-start;
  }

  .yks-countdown-panel > strong b {
    min-width: 150px;
    font-size: 74px;
  }

  .yks-countdown-panel > strong span {
    font-size: 30px;
  }

  .store-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .store-badge {
    width: min(240px, 100%);
  }
}

@media (max-width: 420px) {
  .content-jump-numbers span {
    font-size: 45px;
  }

  .content-jump-result strong {
    font-size: 21px;
  }

  .friend-request-cutout {
    width: 96%;
  }

  .friend-request-cutout button {
    font-size: 11px;
    padding-inline: 6px;
  }

  .duel-cutout {
    width: 90%;
  }

  .league-cutout {
    opacity: 0.82;
  }

  .page-v12 .brand span:last-child {
    max-width: none;
    white-space: nowrap;
  }
}

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

  .intro-loader {
    display: none;
  }

  .float-card,
  .about-copy,
  .timeline-item,
  .skill-board article,
  .feature-card,
  .project-card,
  .download-panel {
    animation: none;
  }
}
