:root {
  --paper: #fafafa;
  --white: #ffffff;
  --ink: #111111;
  --graphite: #232323;
  --muted: #6e6e6e;
  --line: #dddddd;
  --soft: #f1f1f1;
  --silver-1: #f7f7f7;
  --silver-2: #c8c8c8;
  --silver-3: #8f8f8f;
  --lime: #d9ff47;
  --pink: #ff5d92;
  --blue: #3977ff;
  --radius-xl: 48px;
  --radius-lg: 34px;
  --radius-md: 24px;
  --shadow: 0 28px 70px rgba(17, 17, 17, 0.1);
  --shell: min(1280px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 130px;
  max-width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 15% 8%, rgba(255, 255, 255, 0.98), transparent 27%),
    var(--paper);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

button {
  color: inherit;
}

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

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

p,
h1,
h2,
h3,
figure {
  margin: 0;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.scroll-progress {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #777, #fff 48%, #555);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.9);
}

.site-header {
  position: sticky;
  z-index: 80;
  top: 0;
  padding: 10px 12px 0;
  pointer-events: none;
}

.site-header > * {
  pointer-events: auto;
}

.availability-strip {
  position: relative;
  width: min(1040px, calc(100vw - 48px));
  height: 31px;
  margin: 0 auto 8px;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(112deg, #d5d6d7 0%, #fafafa 17%, #c6c8ca 32%, #fff 49%, #c9cbcd 68%, #f5f5f5 84%, #d9dadb 100%);
  color: #111;
  box-shadow: none;
}

.availability-track {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: max-content;
  min-width: 200%;
  height: 100%;
  animation: ticker 24s linear infinite;
}

.availability-track span {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 1040px;
  padding-inline: 18px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  white-space: nowrap;
}

.availability-track i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #111;
  box-shadow: 0 0 0 3px rgba(17, 17, 17, .1), inset 0 0 0 1px rgba(255,255,255,.25);
}

.availability-track i:nth-of-type(2) {
  background: var(--pink);
  box-shadow: 0 0 0 3px rgba(255, 93, 146, 0.2);
}

.availability-track i:nth-of-type(3) {
  background: var(--blue);
  box-shadow: 0 0 0 3px rgba(57, 119, 255, 0.2);
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.nav-shell {
  display: flex;
  align-items: center;
  width: min(1160px, calc(100vw - 24px));
  min-height: 66px;
  margin-inline: auto;
  padding: 8px 10px 8px 22px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  background: rgba(250, 250, 250, 0.86);
  box-shadow: 0 12px 36px rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(20px) saturate(140%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand img {
  width: 118px;
  height: auto;
}

img[src="assets/purency-logo.png"] {
  height: auto;
  object-fit: contain;
}

.brand span {
  padding-left: 11px;
  border-left: 1px solid #aaa;
  color: #555;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.desktop-nav {
  display: flex;
  gap: clamp(18px, 2vw, 34px);
  margin: 0 auto;
}

.desktop-nav a {
  position: relative;
  color: #555;
  font-size: 12px;
  font-weight: 700;
}

.desktop-nav a::after {
  position: absolute;
  right: 50%;
  bottom: -8px;
  left: 50%;
  height: 2px;
  border-radius: 2px;
  background: #111;
  content: "";
  transition: inset 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  right: 0;
  left: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 49px;
  padding: 0 21px;
  border: 0;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button span {
  font-size: 16px;
  line-height: 1;
}

.button-ink {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 8px 22px rgba(17, 17, 17, 0.15);
}

.button-ink:hover {
  box-shadow: 0 13px 30px rgba(17, 17, 17, 0.22);
}

.button-metal {
  position: relative;
  overflow: hidden;
  border: 1px solid #a5a5a5;
  background: linear-gradient(112deg, #f9f9f9 0%, #a9a9a9 22%, #f8f8f8 47%, #858585 72%, #e8e8e8 100%);
  background-size: 180% 100%;
  color: #111;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.85), 0 9px 24px rgba(17, 17, 17, 0.14);
}

.button-metal::before {
  position: absolute;
  top: -80%;
  left: -25%;
  width: 18%;
  height: 260%;
  transform: rotate(24deg);
  background: rgba(255, 255, 255, 0.62);
  content: "";
  transition: left 500ms ease;
}

.button-metal:hover::before {
  left: 112%;
}

.button-large {
  min-height: 58px;
  padding: 0 27px;
}

.nav-cta {
  flex: 0 0 auto;
}

.menu-button {
  display: none;
  width: 47px;
  height: 47px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #111;
}

.menu-button span {
  display: block;
  width: 17px;
  height: 1.5px;
  margin: 5px auto;
  border-radius: 2px;
  background: #fff;
  transition: transform 180ms ease;
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(3.25px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-3.25px) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(470px, 0.98fr);
  gap: 30px 6vw;
  align-items: center;
  min-height: calc(100vh - 110px);
  padding-top: 52px;
  padding-bottom: 52px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-left: clamp(0px, 2vw, 24px);
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.eyebrow i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(217, 255, 71, 0.24);
}

.hero h1 {
  max-width: 720px;
  margin: 24px 0 32px;
  font-size: clamp(58px, 6.7vw, 106px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.046em;
}

.hero h1 span {
  display: block;
  color: #929292;
  font-weight: 500;
}

.hero-lead {
  max-width: 600px;
  color: #555;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 30px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #aaa;
  padding: 10px 1px;
  color: #333;
  font-size: 12px;
  font-weight: 700;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.hero-small {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: #777;
  font-size: 12px;
}

.hero-small i,
.pulse-dot,
.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.hero-visual::before {
  position: absolute;
  top: 5%;
  right: 2%;
  width: 76%;
  height: 79%;
  border: 1px solid #d8d8d8;
  border-radius: 48% 52% 45% 55% / 52% 38% 62% 48%;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.8), rgba(228, 228, 228, 0.38));
  content: "";
  filter: drop-shadow(0 35px 50px rgba(17, 17, 17, 0.09));
  transform: rotate(-4deg);
}

.hero-reel {
  position: absolute;
  overflow: hidden;
  border: 7px solid #111;
  border-radius: 42px;
  background: #111;
  box-shadow: 0 30px 65px rgba(17, 17, 17, 0.22);
}

.hero-reel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-reel-main {
  z-index: 2;
  top: 18px;
  right: 11%;
  width: min(360px, 66%);
  aspect-ratio: 0.68;
  transform: rotate(3deg);
}

.hero-reel-main figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 24px;
  background: rgba(17, 17, 17, 0.72);
  color: #fff;
  backdrop-filter: blur(12px);
}

.hero-reel-main figcaption div {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 7px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.live-dot {
  background: var(--pink);
  box-shadow: 0 0 0 4px rgba(255, 93, 146, 0.18);
  animation: pulse 1.7s ease-in-out infinite;
}

@keyframes pulse {
  50% { opacity: 0.45; transform: scale(0.75); }
}

.hero-reel-main figcaption strong {
  font-size: 15px;
  line-height: 1.05;
}

.hero-reel-back {
  z-index: 1;
  top: 89px;
  left: 1%;
  width: min(248px, 45%);
  aspect-ratio: 0.69;
  border-color: #ececec;
  transform: rotate(-9deg);
  filter: saturate(0.78);
}

.hero-reel-back figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(250, 250, 250, 0.82);
  color: #111;
  font-size: 8px;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.08em;
  backdrop-filter: blur(10px);
}

.hero-level-card {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 6%;
  display: flex;
  flex-direction: column;
  width: 188px;
  padding: 21px;
  border: 1px solid #aaa;
  border-radius: 28px;
  background: linear-gradient(135deg, #fff, #bdbdbd 45%, #f8f8f8 70%, #8f8f8f);
  box-shadow: 0 22px 45px rgba(17, 17, 17, 0.2);
  transform: rotate(5deg);
}

.hero-level-card span,
.hero-level-card small,
.hero-level-card b {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.hero-level-card strong {
  margin: 7px 0 3px;
  font-size: 52px;
  letter-spacing: -0.08em;
}

.hero-level-card b {
  margin-top: 20px;
  padding: 8px 10px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  text-align: center;
}

.hero-color-dot {
  position: absolute;
  z-index: 5;
  top: 6%;
  right: 6%;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 10px rgba(255, 93, 146, 0.15);
}

.hero-stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid #e3e3e3;
  border-radius: 28px;
  background: #ddd;
}

.hero-stats > div {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  min-height: 93px;
  padding: 19px;
  background: rgba(255, 255, 255, 0.89);
}

.hero-stats span {
  position: absolute;
  top: 12px;
  right: 14px;
  color: #aaa;
  font-size: 8px;
  font-weight: 800;
}

.hero-stats strong {
  font-size: clamp(24px, 2.5vw, 38px);
  letter-spacing: -0.06em;
}

.hero-stats small {
  max-width: 105px;
  margin: 0 0 5px 12px;
  color: #666;
  font-size: 11px;
  line-height: 1.25;
}

.ecosystem,
.career,
.content-world,
.support-system,
.missions,
.faq,
.application {
  padding-top: 72px;
  padding-bottom: 72px;
}

.section-head {
  margin-bottom: 38px;
}

.section-head.centered {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-label {
  margin-bottom: 21px;
  color: #555;
}

.section-label span {
  display: inline-grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border: 1px solid #ccc;
  border-radius: 50%;
  font-size: 8px;
}

.section-head h2,
.content-intro h2,
.faq-copy h2,
.application-copy h2,
.hall-copy h2 {
  font-size: clamp(40px, 5.1vw, 76px);
  font-weight: 700;
  line-height: 1.075;
  letter-spacing: -0.039em;
}

.section-head h2 span,
.content-intro h2 span,
.faq-copy h2 span,
.application-copy h2 span,
.hall-copy h2 span {
  color: #969696;
  font-weight: 500;
}

.section-head.centered > p:last-child {
  max-width: 620px;
  margin: 27px auto 0;
  color: #666;
  font-size: 16px;
  line-height: 1.65;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(250px, auto);
  gap: 16px;
}

.ecosystem-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #e1e1e1;
  border-radius: var(--radius-lg);
  background: #f2f2f2;
}

.academy-card {
  grid-column: span 7;
  grid-row: span 2;
  display: grid;
  grid-template-rows: minmax(280px, 1.08fr) auto;
  min-height: 530px;
  padding: 8px;
  background: linear-gradient(145deg, #fff 0%, #f1f2f3 100%);
  color: #111;
}

.academy-media {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 7px);
  background: #eef0f2;
}

.academy-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 53%;
  filter: saturate(0.9) contrast(1.015);
  transition: transform 800ms cubic-bezier(.2,.8,.2,1);
}

.academy-card:hover .academy-image {
  transform: scale(1.04);
}

.academy-media::after {
  position: absolute;
  inset: auto 0 0;
  height: 30%;
  background: linear-gradient(transparent, rgba(17,17,17,.3));
  content: "";
}

.academy-media > span {
  position: absolute;
  z-index: 1;
  right: 17px;
  bottom: 15px;
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px;
  background: rgba(250,250,250,.74);
  color: #111;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .11em;
  backdrop-filter: blur(12px);
}

.ecosystem-card-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 29px;
}

.academy-card .ecosystem-card-content {
  height: auto;
  padding: 21px 22px 23px;
}

.academy-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.product-lockup {
  display: flex;
  align-items: center;
  gap: 11px;
}

.product-lockup img {
  width: 108px;
}

.light-lockup img {
  filter: invert(1);
}

.product-lockup b {
  padding-left: 11px;
  border-left: 1px solid currentColor;
  font-size: 10px;
  letter-spacing: 0.13em;
}

.feature-badge {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  margin-bottom: 14px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.feature-badge.lime {
  background: var(--lime);
  color: #111;
}

.academy-meta .feature-badge {
  flex: 0 0 auto;
  margin-bottom: 0;
}

.academy-card h3 span {
  color: #929292;
  font-weight: 500;
}

.ecosystem-card h3 {
  font-size: clamp(27px, 3.1vw, 46px);
  line-height: 1.045;
  letter-spacing: -0.045em;
}

.ecosystem-card p {
  max-width: 510px;
  margin-top: 13px;
  font-size: 13px;
  line-height: 1.6;
  opacity: 0.78;
}

.ecosystem-card a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 19px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.circle-card {
  grid-column: span 5;
  min-height: 255px;
  background: #fff;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 20px;
  border-radius: 50%;
  color: #111;
  font-size: 12px;
}

.feature-icon.pink { background: var(--pink); }
.feature-icon.blue { background: var(--blue); color: #fff; }
.feature-icon.silver { background: linear-gradient(135deg, #8c8f93, #fff 48%, #a9adb1); }

.circle-card h3,
.kit-card h3 {
  font-size: 27px;
}

.chat-preview {
  display: grid;
  gap: 7px;
  margin-top: 20px;
}

.chat-preview div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 10px;
  padding: 10px 13px;
  border-radius: 16px;
  background: #f1f1f1;
}

.chat-preview div:nth-child(2) {
  margin-left: 17px;
  background: #111;
  color: #fff;
}

.chat-preview b {
  font-size: 8px;
  letter-spacing: 0.06em;
}

.chat-preview span {
  font-size: 9px;
  opacity: 0.7;
}

.kit-card {
  grid-column: span 5;
  min-height: 250px;
}

.kit-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.kit-card:hover > img {
  transform: scale(1.04);
}

.kit-copy {
  position: absolute;
  right: 13px;
  bottom: 13px;
  left: 13px;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 17px;
  border: 1px solid rgba(255,255,255,.56);
  border-radius: 24px;
  background: rgba(250, 250, 250, 0.84);
  backdrop-filter: blur(16px);
}

.kit-copy .feature-icon {
  flex: 0 0 auto;
  margin: 0;
}

.kit-copy p {
  margin-top: 4px;
  font-size: 10px;
}

.rewards-card {
  grid-column: span 12;
  min-height: 250px;
  background: #171717;
  color: #fff;
}

.reward-orbit {
  position: absolute;
  inset: -85% auto auto 52%;
  width: 560px;
  height: 560px;
  border: 1px solid #555;
  border-radius: 50%;
  box-shadow: inset 0 0 100px rgba(255, 255, 255, 0.07);
}

.reward-orbit::before,
.reward-orbit::after {
  position: absolute;
  border: 1px solid #555;
  border-radius: 50%;
  content: "";
}

.reward-orbit::before { inset: 90px; }
.reward-orbit::after { inset: 175px; }

.reward-orbit i {
  position: absolute;
  z-index: 2;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--lime);
}

.reward-orbit i:nth-child(1) { top: 46%; left: -9px; }
.reward-orbit i:nth-child(2) { right: 48px; bottom: 95px; background: var(--pink); }
.reward-orbit i:nth-child(3) { right: 134px; bottom: 164px; width: 12px; height: 12px; background: var(--blue); }

.silver-badge {
  position: absolute;
  z-index: 2;
  top: 24px;
  right: 24px;
  border: 1px solid #777;
  background: linear-gradient(105deg, #fff, #8d8d8d 50%, #eee);
  color: #111;
}

.rewards-content {
  position: relative;
  z-index: 2;
  width: 55%;
  padding: 36px;
}

.rewards-content > span {
  color: #aaa;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.rewards-content h3 {
  margin-top: 13px;
  font-size: clamp(30px, 3.3vw, 48px);
}

.conversion-band {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  min-height: 88px;
  margin-top: 16px;
  margin-bottom: 16px;
  padding: 18px 20px 18px 27px;
  border: 1px solid #d7d7d7;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 15px 45px rgba(17,17,17,.06);
}

.conversion-band > div {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 4px 9px;
}

.conversion-band .pulse-dot {
  grid-row: span 2;
  box-shadow: 0 0 0 6px rgba(217,255,71,.24);
  animation: pulse 1.7s infinite;
}

.conversion-band b {
  font-size: 10px;
  letter-spacing: 0.08em;
}

.conversion-band small {
  color: #888;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.conversion-band > p {
  font-size: clamp(18px, 2vw, 27px);
  font-weight: 600;
  text-align: center;
  letter-spacing: -0.035em;
}

.section-head.split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.65fr);
  gap: 50px;
  align-items: end;
}

.rule-card {
  padding: 23px;
  border: 1px solid #d2d2d2;
  border-radius: 28px;
  background: linear-gradient(140deg, #fff, #e6e6e6);
  box-shadow: inset 0 1px #fff;
}

.rule-card b,
.rule-card strong {
  display: block;
}

.rule-card b {
  color: #777;
  font-size: 8px;
  letter-spacing: 0.12em;
}

.rule-card strong {
  margin-top: 5px;
  font-size: 25px;
  letter-spacing: -0.05em;
}

.rule-card p {
  margin-top: 9px;
  color: #666;
  font-size: 11px;
  line-height: 1.55;
}

.mobile-swipe {
  display: none;
}

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

.rank-card {
  overflow: hidden;
  border: 1px solid #ddd;
  border-radius: 38px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(17,17,17,.06);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.rank-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 65px rgba(17,17,17,.11);
}

.rank-card > figure {
  position: relative;
  height: clamp(230px, 24vw, 310px);
  overflow: hidden;
  margin: 8px;
  border-radius: 31px;
  background: #eee;
}

.rank-card > figure::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17,17,17,.6), transparent 54%);
  content: "";
}

.rank-card > figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.7);
  transition: transform 700ms ease;
}

.rank-card:hover > figure img {
  transform: scale(1.035);
}

.rank-card > figure figcaption {
  position: absolute;
  z-index: 2;
  right: 19px;
  bottom: 17px;
  left: 19px;
  display: flex;
  justify-content: space-between;
  color: #fff;
}

.rank-card > figure figcaption span,
.rank-card > figure figcaption b {
  font-size: 8px;
  letter-spacing: .12em;
}

.rank-body {
  padding: 20px 24px 24px;
}

.rank-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.rank-heading small {
  color: #818181;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .1em;
}

.rank-heading h3 {
  margin-top: 5px;
  font-size: clamp(23px, 2.5vw, 33px);
  line-height: 1.08;
  letter-spacing: -.043em;
  word-spacing: .07em;
}

.rank-heading > strong {
  flex: 0 0 auto;
  font-size: 38px;
  letter-spacing: -.07em;
}

.signature-heading h3 {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .28em;
  line-height: 1;
}

.signature-heading h3 img {
  width: auto;
  height: .7em;
  margin-top: .06em;
  object-fit: contain;
}

.progress {
  position: relative;
  height: 23px;
  margin: 16px 0 18px;
  background: linear-gradient(to bottom, transparent 16px, #ededed 16px, #ededed 23px);
  border-radius: 0 0 999px 999px;
}

.progress span {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: var(--rank-progress);
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, #6d6d6d, #eaeaea 45%, #555);
}

.progress b {
  position: absolute;
  top: 0;
  right: 0;
  color: #666;
  font-size: 9px;
  letter-spacing: .06em;
}

.rank-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rank-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #555;
  font-size: 11px;
}

.rank-card li::before {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #eee;
  color: #111;
  content: "✓";
  font-size: 9px;
  font-weight: 800;
}

.unlock {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding: 12px 15px;
  border-radius: 18px;
  background: #f0f0f0;
}

.unlock span,
.unlock b {
  font-size: 8px;
  letter-spacing: .08em;
}

.rank-bronze .unlock { background: #e7c8ae; }
.rank-silver .unlock { background: linear-gradient(100deg, #e4e4e4, #fff, #bcbcbc); }
.rank-gold .unlock { background: linear-gradient(100deg, #dabd6a, #fff1ba, #b28d35); }
.rank-elite .unlock { background: linear-gradient(100deg, #dfeaff, #fff, #b7cff4); }
.rank-signature .unlock { background: #111; color: #fff; }

.rank-signature {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  background: #171717;
  color: #fff;
}

.rank-signature > figure {
  height: auto;
  min-height: 350px;
}

.rank-signature .rank-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px;
}

.rank-signature .signature-heading h3 img {
  filter: invert(1);
}

.rank-signature .rank-heading small,
.rank-signature li {
  color: #aaa;
}

.rank-signature .progress {
  background: #333;
}

.rank-signature .progress span {
  background: linear-gradient(90deg, #777, #fff 50%, #666);
}

.rank-signature li::before {
  background: #fff;
}

.legal {
  max-width: 930px;
  margin: 21px auto 0;
  color: #888;
  font-size: 9px;
  line-height: 1.6;
  text-align: center;
}

.hall {
  width: min(1440px, calc(100vw - 24px));
  margin: 30px auto;
  overflow: hidden;
  border-radius: 58px;
  background:
    radial-gradient(circle at 78% 20%, rgba(255,255,255,.12), transparent 28%),
    #121212;
  color: #fff;
}

.hall-inner {
  display: grid;
  grid-template-columns: minmax(300px, .68fr) minmax(600px, 1.32fr);
  gap: 70px;
  align-items: center;
  width: min(1280px, calc(100% - 80px));
  min-height: 750px;
  margin-inline: auto;
  padding: 65px 0;
}

.section-label.light {
  color: #bbb;
}

.section-label.light span {
  border-color: #555;
}

.hall-copy > p:not(.section-label) {
  max-width: 410px;
  margin-top: 27px;
  color: #aaa;
  font-size: 15px;
  line-height: 1.65;
}

.hall-copy h2 {
  font-size: clamp(42px, 4vw, 60px);
}

.hall-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 30px;
  padding: 15px 17px;
  border: 1px solid #363636;
  border-radius: 20px;
  background: #1d1d1d;
}

.hall-note i {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--lime);
}

.hall-note span {
  color: #aaa;
  font-size: 9px;
  line-height: 1.5;
}

.plaque-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 19px;
  perspective: 1000px;
}

.plaque {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1.12;
  overflow: hidden;
  border: 7px solid #505050;
  border-radius: 36px;
  color: #111;
  text-align: center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.8), inset 0 0 50px rgba(0,0,0,.16), 0 28px 38px rgba(0,0,0,.45);
  transform: rotateY(-5deg) rotateX(2deg);
}

.plaque:nth-child(even) {
  transform: translateY(38px) rotateY(5deg) rotateX(2deg);
}

.plaque::before {
  position: absolute;
  inset: -20%;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.76) 43%, transparent 55%);
  content: "";
  transform: translateX(-60%);
  transition: transform 900ms ease;
}

.plaque:hover::before {
  transform: translateX(65%);
}

.plaque-silver {
  background: linear-gradient(135deg, #8e8e8e 0%, #fdfdfd 21%, #b6b6b6 44%, #fff 64%, #919191 100%);
}

.plaque-gold {
  border-color: #766026;
  background: linear-gradient(135deg, #846819, #ffef9c 23%, #b89332 46%, #fff3bc 66%, #957222);
}

.plaque-diamond {
  border-color: #75869d;
  background: linear-gradient(145deg, #abbfd6, #fbffff 22%, #a7c6eb 46%, #fff 66%, #8ba1bd);
}

.plaque-signature {
  border-color: #666;
  background: linear-gradient(145deg, #050505, #353535 25%, #111 47%, #4c4c4c 66%, #090909);
  color: #fff;
}

.plaque-bolt {
  position: absolute;
  z-index: 2;
  width: 10px;
  height: 10px;
  border: 1px solid rgba(17,17,17,.3);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff, #777 70%);
  box-shadow: 0 1px 2px rgba(0,0,0,.45);
}

.plaque-bolt.b1 { top: 14px; left: 14px; }
.plaque-bolt.b2 { top: 14px; right: 14px; }
.plaque-bolt.b3 { right: 14px; bottom: 14px; }
.plaque-bolt.b4 { bottom: 14px; left: 14px; }

.plaque-brand {
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
}

.plaque-brand img {
  width: 92px;
  margin: 0 auto 4px;
}

.plaque-signature .plaque-brand img,
.plaque-signature .plaque-wordmark {
  filter: invert(1);
}

.plaque-brand span,
.plaque p {
  font-size: 6px;
  font-weight: 800;
  letter-spacing: .13em;
}

.plaque > strong {
  position: relative;
  z-index: 1;
  font-size: clamp(62px, 7vw, 94px);
  line-height: .9;
  letter-spacing: -.09em;
}

.plaque h3 {
  position: relative;
  z-index: 1;
  margin-top: 13px;
  font-size: 13px;
  letter-spacing: .04em;
}

.plaque p {
  position: absolute;
  right: 24px;
  bottom: 26px;
  left: 24px;
}

.plaque-wordmark {
  position: relative;
  z-index: 2;
  width: 112px;
  margin-top: 7px;
}

.content-world {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 54px;
  align-items: center;
  padding-bottom: 18px;
}

.content-intro h2 {
  font-size: clamp(40px, 3.8vw, 58px);
  line-height: 1.075;
}

.content-intro > p:not(.section-label) {
  margin-top: 25px;
  color: #666;
  font-size: 14px;
  line-height: 1.65;
}

.content-resources {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 25px;
}

.content-resources span {
  padding: 8px 12px;
  border: 1px solid #d1d1d1;
  border-radius: 999px;
  background: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
}

.content-resources span:nth-child(2) { border-color: var(--pink); }
.content-resources span:nth-child(4) { border-color: var(--lime); }

.reel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 25px;
  padding-top: 19px;
  border-top: 1px solid #dddddd;
}

.reel-controls small {
  color: #777;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .11em;
}

.reel-controls > div {
  display: flex;
  gap: 7px;
}

.reel-controls button {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid #d2d2d2;
  border-radius: 50%;
  background: #fff;
  color: #111;
  font-size: 17px;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, opacity 180ms ease;
}

.reel-controls button:hover:not(:disabled) {
  transform: translateY(-2px);
  background: #111;
  color: #fff;
}

.reel-controls button:disabled {
  opacity: .3;
  cursor: default;
}

.content-reels {
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: none;
  grid-auto-columns: clamp(172px, 17vw, 210px);
  gap: 11px;
  overflow-x: auto;
  padding: 14px 4px 42px;
  scroll-padding-inline: 4px;
  scroll-snap-type: x mandatory;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
}

.content-reels::-webkit-scrollbar {
  display: none;
}

.content-reel {
  position: relative;
  aspect-ratio: .62;
  overflow: hidden;
  border: 5px solid #111;
  border-radius: 29px;
  background: #111;
  box-shadow: 0 20px 35px rgba(17,17,17,.16);
  scroll-snap-align: start;
  transition: transform 250ms ease;
}

.content-reel:nth-child(even) { transform: translateY(28px); }
.content-reel:hover { transform: translateY(-5px) rotate(-1deg); z-index: 2; }
.content-reel:nth-child(even):hover { transform: translateY(20px) rotate(1deg); }

.content-reel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-reel::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17,17,17,.88), transparent 52%);
  content: "";
}

.content-reel figcaption {
  position: absolute;
  z-index: 2;
  right: 12px;
  bottom: 14px;
  left: 12px;
  color: #fff;
}

.content-reel figcaption b {
  display: block;
  font-size: 10px;
  letter-spacing: .08em;
}

.content-reel figcaption span {
  display: block;
  margin-top: 5px;
  color: #d6d6d6;
  font-size: 10px;
  line-height: 1.35;
}

.content-reel > i {
  position: absolute;
  z-index: 3;
  top: 12px;
  right: 12px;
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(250,250,250,.82);
  color: #111;
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .1em;
  backdrop-filter: blur(10px);
}

.flow-bridge {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  min-height: 36px;
  color: #8b8b8b;
}

.flow-bridge span {
  height: 1px;
  background: linear-gradient(90deg, transparent, #bebebe, #f7f7f7, #9e9e9e);
}

.flow-bridge span:last-child {
  transform: scaleX(-1);
}

.flow-bridge small {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .15em;
}

.support-system .section-head.split > p {
  max-width: 490px;
  color: #666;
  font-size: 15px;
  line-height: 1.65;
}

.support-system {
  padding-top: 28px;
}

.support-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 35px;
  background: #fff;
}

.support-timeline article {
  position: relative;
  min-height: 215px;
  padding: 19px;
  border-radius: 26px;
  background: #f2f2f2;
}

.support-timeline article:nth-child(4) {
  background: #111;
  color: #fff;
}

.support-timeline article > span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid #ccc;
  border-radius: 50%;
  font-size: 8px;
  font-weight: 800;
}

.support-timeline article > div {
  position: absolute;
  right: 19px;
  bottom: 22px;
  left: 19px;
}

.support-timeline b {
  color: #777;
  font-size: 7px;
  letter-spacing: .1em;
}

.support-timeline h3 {
  margin-top: 5px;
  font-size: 23px;
  letter-spacing: -.05em;
}

.support-timeline p {
  margin-top: 8px;
  color: #777;
  font-size: 10px;
  line-height: 1.5;
}

.support-timeline article:nth-child(4) p,
.support-timeline article:nth-child(4) b {
  color: #aaa;
}

.creator-paths {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 15px;
}

.creator-path {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  padding: 34px;
  border-radius: 35px;
}

.creator-path::before {
  position: absolute;
  right: -70px;
  bottom: -110px;
  width: 300px;
  height: 300px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: .14;
  content: "";
}

.start-path {
  background: linear-gradient(135deg, #e9e9e9, #fff);
}

.scale-path {
  background: #111;
  color: #fff;
}

.creator-path small {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .1em;
}

.creator-path h3 {
  max-width: 380px;
  margin-top: 36px;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.05;
  letter-spacing: -.047em;
}

.creator-path p {
  max-width: 420px;
  margin-top: 10px;
  color: #666;
  font-size: 12px;
  line-height: 1.6;
}

.scale-path p { color: #aaa; }

.creator-path button {
  position: absolute;
  right: 27px;
  bottom: 25px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  font-size: 8px;
  font-weight: 800;
  cursor: pointer;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 0;
  list-style: none;
}

.mission-grid li {
  position: relative;
  min-height: 235px;
  overflow: hidden;
  padding: 23px;
  border: 1px solid #ddd;
  border-radius: 32px;
  background: #fff;
}

.mission-grid li::after {
  position: absolute;
  right: -45px;
  bottom: -55px;
  width: 160px;
  height: 160px;
  border: 28px solid #eee;
  border-radius: 50%;
  content: "";
}

.mission-grid li:nth-child(2)::after { border-color: rgba(255,93,146,.18); }
.mission-grid li:nth-child(3)::after { border-color: rgba(57,119,255,.13); }
.mission-grid li:nth-child(4) { background: #111; color: #fff; }
.mission-grid li:nth-child(4)::after { border-color: rgba(217,255,71,.34); }

.mission-grid li > span {
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .1em;
}

.mission-grid li > strong {
  display: block;
  margin-top: 50px;
  font-size: 21px;
  letter-spacing: -.04em;
}

.mission-grid p {
  position: relative;
  z-index: 2;
  max-width: 200px;
  margin-top: 9px;
  color: #777;
  font-size: 10px;
  line-height: 1.5;
}

.mission-grid li:nth-child(4) p { color: #aaa; }

.mission-grid li > b {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 16px;
  font-size: 44px;
  letter-spacing: -.08em;
}

.faq {
  display: grid;
  grid-template-columns: minmax(300px, .7fr) minmax(480px, 1.3fr);
  gap: 75px;
  align-items: start;
}

.faq-copy {
  position: sticky;
  top: 140px;
}

.faq-copy h2 {
  font-size: clamp(40px, 3.7vw, 56px);
}

.faq-copy > p:not(.section-label) {
  max-width: 430px;
  margin-top: 25px;
  color: #666;
  font-size: 13px;
  line-height: 1.65;
}

.faq-copy .button {
  margin-top: 25px;
}

.faq-list {
  overflow: hidden;
  border: 1px solid #ddd;
  border-radius: 34px;
  background: #fff;
}

.faq-list details {
  border-bottom: 1px solid #e6e6e6;
}

.faq-list details:last-child {
  border-bottom: 0;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary span {
  position: relative;
  flex: 0 0 auto;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: #f1f1f1;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 1px;
  background: #111;
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-list details[open] summary {
  padding-bottom: 11px;
}

.faq-list details p {
  max-width: 690px;
  padding: 0 65px 23px 24px;
  color: #666;
  font-size: 11px;
  line-height: 1.65;
}

.application-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, .82fr) minmax(500px, 1.18fr);
  gap: 48px;
  overflow: hidden;
  padding: clamp(34px, 4.4vw, 60px);
  border: 1px solid #aaa;
  border-radius: 54px;
  background:
    radial-gradient(circle at 3% 96%, rgba(255,255,255,.88), transparent 26%),
    linear-gradient(125deg, #ebebeb 0%, #fff 29%, #bdbdbd 58%, #f4f4f4 78%, #a7a7a7 100%);
  box-shadow: inset 0 1px rgba(255,255,255,.9), 0 35px 80px rgba(17,17,17,.13);
}

.application-card::after {
  position: absolute;
  top: -170px;
  right: -100px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(17,17,17,.14);
  border-radius: 50%;
  content: "";
}

.application-copy,
.application-form {
  position: relative;
  z-index: 2;
}

.application-copy h2 {
  font-size: clamp(40px, 3.8vw, 58px);
}

.application-copy > p:not(.section-label) {
  margin-top: 26px;
  color: #555;
  font-size: 13px;
  line-height: 1.7;
}

.application-status {
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 350px;
  margin-top: 28px;
  padding: 15px 17px;
  border: 1px solid rgba(17,17,17,.15);
  border-radius: 21px;
  background: rgba(255,255,255,.42);
  backdrop-filter: blur(12px);
}

.application-status .pulse-dot {
  flex: 0 0 auto;
  box-shadow: 0 0 0 6px rgba(217,255,71,.35);
}

.application-status div {
  display: grid;
  gap: 4px;
}

.application-status b {
  font-size: 11px;
  letter-spacing: .08em;
}

.application-status small {
  color: #666;
  font-size: 11px;
}

.application-form {
  display: grid;
  gap: 13px;
  padding: 27px;
  border: 1px solid rgba(255,255,255,.76);
  border-radius: 34px;
  background: rgba(250,250,250,.77);
  box-shadow: 0 20px 50px rgba(17,17,17,.08);
  backdrop-filter: blur(18px);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
}

.application-form label:not(.consent) {
  display: grid;
  gap: 7px;
  color: #555;
  font-size: 12px;
  font-weight: 700;
}

.application-form input,
.application-form select,
.application-form textarea {
  width: 100%;
  border: 1px solid #d3d3d3;
  border-radius: 17px;
  outline: 0;
  background: rgba(255,255,255,.9);
  color: #111;
  font-size: 12px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.application-form input,
.application-form select {
  height: 49px;
  padding: 0 15px;
}

.application-form textarea {
  min-height: 80px;
  padding: 14px 15px;
  resize: vertical;
}

.application-form input:focus,
.application-form select:focus,
.application-form textarea:focus {
  border-color: #777;
  box-shadow: 0 0 0 4px rgba(17,17,17,.06);
}

.application-form :invalid:not(:placeholder-shown) {
  border-color: #b74646;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #666;
  font-size: 12px;
  line-height: 1.45;
}

.consent input {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: #111;
}

.consent a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.application-form .hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.turnstile-slot:empty {
  display: none;
}

.turnstile-slot {
  min-height: 0;
}

.application-form .submit {
  width: 100%;
  margin-top: 2px;
}

.application-form .submit[disabled] {
  opacity: .68;
  cursor: wait;
}

.form-status {
  min-height: 16px;
  color: #555;
  font-size: 12px;
  text-align: center;
}

.form-status.is-success {
  color: #286213;
  font-weight: 700;
}

.form-status.is-error {
  color: #8f2f2f;
  font-weight: 700;
}

.terms {
  display: grid;
  grid-template-columns: .45fr 1.55fr;
  gap: 60px;
  padding-top: 18px;
  padding-bottom: 40px;
}

.terms h2 {
  font-size: 12px;
  letter-spacing: .1em;
}

.terms > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.terms p {
  color: #888;
  font-size: 11px;
  line-height: 1.65;
}

.terms b {
  color: #555;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 265px;
  padding: 44px 0;
  border-top: 1px solid #ddd;
  text-align: center;
}

.footer-brand-lockup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.footer-brand-lockup img {
  width: clamp(175px, 17vw, 225px);
}

.footer-brand-lockup span {
  padding-left: 22px;
  border-left: 1px solid #bdbdbd;
  color: #4e4e4e;
  font-size: clamp(13px, 1.25vw, 17px);
  font-weight: 700;
  letter-spacing: .2em;
}

.footer p {
  margin-top: 24px;
  color: #666;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .18em;
}

.footer small {
  color: #888;
  font-size: 9px;
  letter-spacing: .06em;
}

.footer-meta {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-top: 24px;
}

.footer-meta nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  color: #555;
  font-size: 10px;
  font-weight: 700;
}

.footer-meta a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.mobile-profile-cta {
  display: none;
}

.profile-dialog {
  width: min(730px, calc(100vw - 28px));
  max-width: none;
  max-height: calc(100vh - 28px);
  padding: 0;
  overflow: auto;
  border: 1px solid #d0d0d0;
  border-radius: 40px;
  background: #fafafa;
  color: #111;
  box-shadow: 0 45px 120px rgba(0,0,0,.36);
}

.profile-dialog::backdrop {
  background: rgba(12,12,12,.66);
  backdrop-filter: blur(12px);
}

.profile-check {
  padding: 28px;
}

.profile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.profile-head > div {
  display: grid;
  gap: 5px;
}

.profile-head span {
  color: #777;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .13em;
}

.profile-head strong {
  font-size: 11px;
  letter-spacing: .05em;
}

.dialog-close {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-size: 21px;
  cursor: pointer;
}

.profile-progress {
  height: 5px;
  margin: 22px 0 7px;
  overflow: hidden;
  border-radius: 999px;
  background: #e2e2e2;
}

.profile-progress span {
  display: block;
  width: 33.333%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #555, #fff, #777);
  transition: width 320ms ease;
}

.quiz-step {
  padding: 34px 5px 5px;
}

.quiz-step small {
  color: #777;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .12em;
}

.quiz-step h2 {
  max-width: 590px;
  margin-top: 8px;
  font-size: clamp(34px, 5vw, 55px);
  line-height: 1.04;
  letter-spacing: -.05em;
}

.quiz-options {
  display: grid;
  gap: 9px;
  margin-top: 27px;
}

.quiz-options button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 0 19px;
  border: 1px solid #d5d5d5;
  border-radius: 20px;
  background: #fff;
  font-size: 12px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.quiz-options button:hover {
  transform: translateX(4px);
  border-color: #999;
  background: #f4f4f4;
}

.quiz-options button span {
  font-size: 18px;
}

.quiz-back {
  margin-top: 19px;
  padding: 7px 0;
  border: 0;
  border-bottom: 1px solid #aaa;
  background: transparent;
  color: #666;
  font-size: 8px;
  font-weight: 800;
  cursor: pointer;
}

.quiz-result {
  text-align: center;
}

.quiz-result .result-mark {
  display: grid;
  place-items: center;
  width: 55px;
  height: 55px;
  margin: 0 auto 17px;
  border-radius: 50%;
  background: var(--lime);
  font-size: 23px;
  font-weight: 800;
}

.quiz-result h2 {
  margin-right: auto;
  margin-left: auto;
}

.quiz-result p {
  max-width: 520px;
  margin: 16px auto 23px;
  color: #666;
  font-size: 12px;
  line-height: 1.6;
}

.quiz-result .button {
  width: min(100%, 360px);
}

.quiz-result em {
  display: block;
  margin-top: 13px;
  color: #888;
  font-size: 8px;
  font-style: normal;
}

.quiz-result .quiz-back {
  display: block;
  margin: 18px auto 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.75,.2,1);
}

.reveal-delay {
  transition-delay: 110ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

:focus-visible {
  outline: 3px solid rgba(57,119,255,.55);
  outline-offset: 4px;
}

@media (max-width: 1080px) {
  :root { --shell: min(100% - 36px, 960px); }
  .desktop-nav { display: none; }
  .nav-shell { justify-content: space-between; }
  .nav-cta { margin-left: auto; margin-right: 7px; }
  .hero { grid-template-columns: .9fr 1.1fr; gap: 20px; }
  .hero h1 { font-size: clamp(54px, 7.4vw, 78px); }
  .hero-visual { min-height: 520px; }
  .hero-reel-main { right: 7%; }
  .hall-inner { grid-template-columns: .7fr 1.3fr; gap: 35px; width: calc(100% - 50px); }
  .content-world { grid-template-columns: .74fr 1.26fr; gap: 35px; }
  .content-reels { grid-template-columns: none; grid-auto-columns: clamp(165px, 20vw, 190px); }
}

@media (max-width: 820px) {
  :root {
    --shell: calc(100vw - 28px);
    --radius-xl: 38px;
    --radius-lg: 30px;
  }
  html { scroll-padding-top: 105px; }
  .site-header { padding: 8px 8px 0; }
  .availability-strip { width: calc(100vw - 32px); }
  .availability-track span { width: 760px; }
  .nav-shell { width: 100%; min-height: 59px; padding: 7px 7px 7px 17px; }
  .brand img { width: 101px; }
  .brand span { font-size: 9px; }
  .nav-cta { display: none; }
  .menu-button { display: block; }
  .mobile-nav {
    position: absolute;
    top: 104px;
    right: 8px;
    left: 8px;
    z-index: 90;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 30px;
    background: rgba(250,250,250,.97);
    box-shadow: 0 28px 70px rgba(17,17,17,.2);
    backdrop-filter: blur(20px);
  }
  .mobile-nav:not([hidden]) { display: grid; }
  .mobile-nav a {
    display: flex;
    justify-content: space-between;
    padding: 16px 9px;
    border-bottom: 1px solid #e5e5e5;
    font-size: 14px;
    font-weight: 700;
  }
  .mobile-nav a span { color: #777; font-size: 10px; }
  .mobile-nav .button { margin-top: 12px; }
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .hero-copy { padding: 0 4px; }
  .hero h1 { max-width: 650px; font-size: clamp(55px, 14vw, 88px); line-height: .98; }
  .hero-lead { max-width: 600px; }
  .hero-visual { grid-row: 2; min-height: 520px; }
  .hero-stats { grid-row: 3; grid-template-columns: repeat(2, 1fr); }
  .hero-reel-main { right: 13%; width: min(360px, 59%); }
  .hero-reel-back { left: 6%; width: min(250px, 40%); }
  .hero-level-card { right: 8%; }
  .ecosystem, .career, .content-world, .support-system, .missions, .faq, .application { padding-top: 56px; padding-bottom: 56px; }
  .ecosystem-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: auto; }
  .academy-card { grid-column: 1 / -1; grid-row: auto; grid-template-rows: minmax(300px, 1fr) auto; min-height: 560px; }
  .circle-card, .kit-card { grid-column: span 1; min-height: 300px; }
  .rewards-card { grid-column: 1 / -1; }
  .section-head.split { grid-template-columns: 1fr; gap: 25px; }
  .rank-grid { grid-template-columns: 1fr 1fr; }
  .rank-signature { grid-template-columns: 1fr; }
  .rank-signature > figure { min-height: 300px; }
  .hall-inner { grid-template-columns: 1fr; min-height: 0; width: calc(100% - 48px); padding: 55px 0 76px; }
  .hall-copy { max-width: 660px; }
  .plaque-showcase { max-width: 680px; margin-inline: auto; }
  .content-world { grid-template-columns: 1fr; }
  .content-world { padding-bottom: 30px; }
  .support-system { padding-top: 32px; }
  .content-intro { max-width: 660px; }
  .content-reels { grid-template-columns: none; grid-auto-columns: minmax(210px, 30vw); padding: 15px 4px 45px; }
  .content-reels::-webkit-scrollbar { display: none; }
  .content-reel { scroll-snap-align: start; }
  .support-timeline { grid-template-columns: repeat(2,1fr); }
  .creator-paths { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: repeat(2,1fr); }
  .faq { grid-template-columns: 1fr; gap: 30px; }
  .faq-copy { position: static; }
  .application-card { grid-template-columns: 1fr; gap: 30px; }
  .terms { grid-template-columns: 1fr; gap: 25px; }
}

@media (max-width: 680px) {
  :root { --shell: calc(100vw - 22px); }
  .availability-strip { width: calc(100vw - 26px); height: 29px; }
  .availability-track span { width: 650px; font-size: 10px; }
  .site-header .brand img { width: 92px; }
  .site-header .brand span { display: none; }
  .hero { gap: 24px; padding-top: 38px; padding-bottom: 46px; }
  .hero h1 { margin: 22px 0 30px; font-size: clamp(46px, 13.5vw, 64px); line-height: .99; letter-spacing: -.044em; }
  .hero-lead { font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 9px; margin-top: 24px; }
  .hero-actions .button { width: 100%; }
  .text-link { align-self: center; }
  .hero-small { justify-content: center; text-align: center; }
  .hero-visual { min-height: 430px; }
  .hero-visual::before { top: 8%; right: 0; width: 88%; height: 77%; }
  .hero-reel { border-width: 5px; border-radius: 31px; }
  .hero-reel-main { top: 12px; right: 6%; width: 66%; }
  .hero-reel-back { top: 77px; left: 1%; width: 42%; }
  .hero-reel-main figcaption { right: 8px; bottom: 8px; left: 8px; padding: 11px; border-radius: 18px; }
  .hero-reel-main figcaption strong { font-size: 11px; }
  .hero-reel-main figcaption div { font-size: 9px; }
  .hero-level-card { right: 1%; bottom: 0; width: 145px; padding: 16px; border-radius: 22px; }
  .hero-level-card strong { font-size: 39px; }
  .hero-level-card b { margin-top: 13px; font-size: 9px; }
  .hero-color-dot { right: 2%; width: 15px; height: 15px; }
  .hero-stats { border-radius: 23px; }
  .hero-stats > div { min-height: 87px; padding: 15px; }
  .hero-stats strong { font-size: 26px; }
  .hero-stats small { font-size: 10px; }
  .ecosystem, .career, .content-world, .support-system, .missions, .faq, .application { padding-top: 46px; padding-bottom: 46px; }
  .section-head { margin-bottom: 38px; }
  .section-head h2, .content-intro h2, .faq-copy h2, .application-copy h2, .hall-copy h2 { font-size: clamp(36px, 10.2vw, 49px); line-height: 1.085; letter-spacing: -.034em; }
  .section-head.centered { text-align: left; }
  .section-head.centered > p:last-child { margin-left: 0; font-size: 14px; }
  .ecosystem-grid { display: block; }
  .ecosystem-card { margin-bottom: 11px; }
  .academy-card { grid-template-rows: 265px auto; min-height: 0; }
  .circle-card { min-height: 310px; }
  .kit-card { min-height: 330px; }
  .rewards-card { min-height: 340px; }
  .ecosystem-card-content { padding: 23px; }
  .academy-card .ecosystem-card-content { padding: 20px 16px 23px; }
  .academy-meta { align-items: flex-start; flex-direction: column; gap: 12px; margin-bottom: 17px; }
  .academy-card h3 { font-size: 35px; }
  .rewards-content { width: 100%; padding: 28px 23px; }
  .reward-orbit { top: 20%; left: 28%; width: 430px; height: 430px; }
  .silver-badge { top: auto; right: auto; bottom: 22px; left: 23px; }
  .conversion-band { display: flex; flex-direction: column; align-items: stretch; gap: 15px; min-height: 0; padding: 21px; border-radius: 30px; }
  .conversion-band > p { order: 1; font-size: 20px; line-height: 1.24; text-align: left; }
  .conversion-band > div { order: 2; grid-template-columns: auto 1fr; width: 100%; padding: 11px 13px; border-radius: 18px; background: #f1f1f1; }
  .conversion-band .button { order: 3; width: 100%; min-height: 49px; padding-inline: 15px; font-size: 11px; }
  .rule-card { padding: 19px; }
  .mobile-swipe { display: flex; justify-content: space-between; margin: 0 4px 12px; color: #777; font-size: 10px; font-weight: 800; letter-spacing: .08em; }
  .rank-grid { display: grid; grid-auto-flow: column; grid-template-columns: none; grid-auto-columns: min(78vw, 520px); gap: 11px; width: 100%; margin-left: 0; padding: 0 18vw 18px 0; overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .rank-grid::-webkit-scrollbar { display: none; }
  .rank-card, .rank-signature { display: block; grid-column: auto; scroll-snap-align: start; }
  .rank-card > figure, .rank-signature > figure { height: 218px; min-height: 0; }
  .rank-signature .rank-body { padding: 22px 27px 27px; }
  .rank-heading h3 { font-size: 24px; }
  .rank-heading > strong { font-size: 33px; }
  .rank-signature .signature-heading h3 { flex-direction: column; align-items: flex-start; gap: 7px; }
  .rank-signature .signature-heading h3 img { width: auto; height: 17px; margin: 0; }
  .hall { width: calc(100vw - 12px); border-radius: 42px; }
  .hall-inner { width: calc(100% - 28px); gap: 30px; padding: 44px 0 64px; }
  .hall-swipe { margin-top: 20px; color: #aaa; }
  .plaque-showcase { display: grid; grid-auto-flow: column; grid-template-columns: none; grid-auto-columns: min(72vw, 460px); width: 100%; margin-left: 0; padding: 10px 18vw 45px 0; overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .plaque-showcase::-webkit-scrollbar { display: none; }
  .plaque { scroll-snap-align: start; transform: none; }
  .plaque:nth-child(even) { transform: none; }
  .plaque > strong { font-size: 86px; }
  .content-world { gap: 22px; padding-bottom: 20px; }
  .support-system { padding-top: 24px; }
  .flow-bridge { min-height: 32px; gap: 10px; }
  .flow-bridge small { font-size: 7px; letter-spacing: .11em; }
  .content-reels { grid-template-columns: none; grid-auto-columns: 67vw; width: 100%; }
  .content-reel:nth-child(even) { transform: translateY(15px); }
  .support-timeline { grid-template-columns: 1fr; border-radius: 30px; }
  .support-timeline article { min-height: 185px; }
  .creator-path { min-height: 280px; padding: 24px; }
  .creator-path h3 { margin-top: 42px; }
  .creator-path button { right: 24px; bottom: 23px; }
  .mission-grid { display: grid; grid-auto-flow: column; grid-template-columns: none; grid-auto-columns: 76vw; width: 100%; padding-right: 11px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .mission-grid::-webkit-scrollbar { display: none; }
  .mission-grid li { scroll-snap-align: start; }
  .faq-list summary { padding: 17px 19px; font-size: 12px; }
  .faq-list details p { padding: 0 48px 20px 19px; }
  .application-card { padding: 25px 16px; border-radius: 36px; }
  .application-form { padding: 17px; border-radius: 26px; }
  .field-row { grid-template-columns: 1fr; }
  .terms > div { grid-template-columns: 1fr; gap: 12px; }
  .footer { min-height: 0; padding: 44px 0 92px; }
  .footer-brand-lockup { gap: 14px; }
  .footer-brand-lockup img { width: 145px; }
  .footer-brand-lockup span { padding-left: 14px; font-size: 11px; letter-spacing: .15em; }
  .footer p { margin-top: 20px; font-size: 8px; letter-spacing: .13em; }
  .footer-meta { margin-top: 22px; }
  .mobile-profile-cta {
    position: fixed;
    z-index: 70;
    right: auto;
    bottom: 10px;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    width: min(278px, calc(100vw - 32px));
    min-height: 42px;
    padding: 0 11px;
    border: 1px solid #7e7e7e;
    border-radius: 999px;
    background: linear-gradient(110deg, #fff, #aaa 35%, #f6f6f6 68%, #888);
    color: #111;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .06em;
    box-shadow: 0 10px 24px rgba(17,17,17,.2);
    transform: translateX(-50%);
    transition: transform 250ms ease, opacity 250ms ease;
  }
  .mobile-profile-cta.is-hidden { opacity: 0; transform: translate(-50%, 70px); pointer-events: none; }
  .mobile-profile-cta .pulse-dot { width: 7px; height: 7px; box-shadow: 0 0 0 4px rgba(217,255,71,.3); }
  .mobile-profile-cta b { margin-left: auto; margin-right: 3px; font-size: 14px; }
  .profile-dialog { border-radius: 30px; }
  .profile-check { padding: 20px; }
  .quiz-step { padding-top: 27px; }
  .quiz-step h2 { font-size: 36px; }
  .quiz-options button { min-height: 56px; }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 44px; }
  .hero-lead { font-size: 15px; }
  .button-large { padding-inline: 18px; font-size: 11px; }
  .rank-grid { grid-auto-columns: 90vw; }
  .rank-heading { align-items: flex-start; }
  .rank-heading > strong { font-size: 30px; }
  .rank-heading h3 { font-size: 22px; }
  .conversion-band > p { font-size: 18px; }
}

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