:root {
  --gold: #c9a84e;
  --gold-soft: #e7d18a;
  --blue: #1d5b7a;
  --blue-deep: #174760;
  --teal: #123c42;
  --ink: #070809;
  --graphite: #111416;
  --graphite-soft: #1a1e21;
  --stone: #7a7569;
  --muted: #747474;
  --warm: #fffdf7;
  --paper: #f7f5ef;
  --paper-deep: #eee9df;
  --line: rgba(17, 20, 22, 0.115);
  --line-soft: rgba(17, 20, 22, 0.075);
  --line-dark: rgba(255, 253, 248, 0.13);
  --surface-shadow: 0 14px 34px rgba(17, 20, 22, 0.055);
  --surface-shadow-hover: 0 18px 40px rgba(17, 20, 22, 0.072);
  --feature-shadow: 0 24px 62px rgba(17, 20, 22, 0.082);
  --focus: #1a5a8a;
  --frame: min(84.86vw, 1763px);
  --radius-sm: 0;
  --radius-md: 0;
  --radius-lg: 0;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 20px;
  --space-5: 24px;
  --space-6: 32px;
  --section-space: 104px;
  --section-space-tablet: 82px;
  --section-space-mobile: 56px;
  --head-gap: 72px;
  --card-pad: 30px;
  --card-pad-compact: 26px;
  --grid-gap: var(--space-3);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  background: #fff;
}

body {
  min-width: 320px;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  background: #fff;
  color: var(--ink);
  font-family: "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

button {
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
}

input {
  min-width: 0;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 16px;
  z-index: 1000;
  padding: 12px 16px;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.logo:focus-visible,
.nav a:focus-visible,
.footer a:focus-visible {
  outline-offset: 6px;
}

/* Header */
.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  height: 112px;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.96);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transition: border-color 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.topbar.is-scrolled {
  border-bottom-color: var(--line-soft);
  background: rgba(255, 255, 255, 0.985);
  box-shadow: 0 10px 28px rgba(17, 20, 22, 0.045);
}

.header-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: var(--space-4);
  height: 100%;
}

.logo {
  display: inline-flex;
  justify-self: start;
  align-items: center;
  width: max-content;
  min-height: 44px;
  color: #040404;
  line-height: 0.88;
  white-space: nowrap;
}

.logo .mbn {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.095em;
}

.logo .club {
  margin-left: 10px;
  font-size: 36px;
  font-weight: 300;
  letter-spacing: -0.085em;
}

.nav {
  display: flex;
  justify-self: center;
  align-items: center;
  justify-content: center;
  gap: clamp(26px, 2.6vw, 46px);
  color: #111;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.018em;
  white-space: nowrap;
}

.nav a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding-block: 10px;
  color: rgba(17, 17, 17, 0.84);
}

.nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.55);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav a[aria-current="true"] {
  color: var(--ink);
}

.nav a[aria-current="true"]::after {
  opacity: 0.8;
  transform: scaleX(1);
}

.actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  gap: var(--space-3);
  min-width: 0;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  color: rgba(17, 17, 17, 0.48);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
}

.language-switch a {
  display: inline-grid;
  place-items: center;
  min-width: 36px;
  min-height: 44px;
  color: inherit;
}

.language-switch a[aria-current="page"] {
  color: var(--ink);
}

.header-btn,
.hero-btn,
.hero-btn-secondary,
.submit {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-height: 52px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.012em;
  text-align: center;
}

.header-btn {
  width: auto;
  min-width: 0;
  height: 52px;
  padding-inline: 22px 54px;
  white-space: nowrap;
  background: #000;
  color: #fff;
  font-size: 15px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.06);
}

.button-icon {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
}

.header-btn .button-icon,
.hero-btn .button-icon,
.hero-btn-secondary .button-icon,
.submit .button-icon {
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
}

.header-btn .button-icon,
.hero-btn .button-icon {
  filter: invert(1);
}

.mobile-drawer-foot .header-btn .button-icon {
  filter: none;
}

.burger {
  position: relative;
  display: none;
  width: 46px;
  height: 46px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
}

.burger::before,
.burger::after,
.burger span {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 20px;
  height: 1.5px;
  border-radius: 999px;
  background: #111;
  transform-origin: center;
}

.burger::before {
  transform: translate(-50%, -7px);
}

.burger span {
  transform: translate(-50%, -50%);
}

.burger::after {
  transform: translate(-50%, 5px);
}

.mobile-overlay,
.mobile-drawer {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  height: auto;
  min-height: 890px;
  overflow: visible;
  background: #fff;
}

.hero .frame {
  position: relative;
  min-height: 890px;
}

.hero-copy {
  position: absolute;
  top: 98px;
  left: 0;
  z-index: 5;
  width: 905px;
  max-width: 62vw;
}

.hero-title {
  color: #000;
  font-weight: 900;
  line-height: 1.01;
  letter-spacing: -0.052em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-title .line-1,
.hero-title .line-2 {
  display: block;
  font-size: clamp(54px, 3.7vw, 74px);
}

.hero-title .line-1 {
  color: var(--stone);
}

.hero-title .line-2 {
  color: #000;
}

.hero-title .line-2::after {
  content: none;
}

.hero-sub {
  width: 715px;
  max-width: 50vw;
  margin-top: 28px;
  color: #747474;
  font-size: clamp(20px, 1.28vw, 24px);
  font-weight: 500;
  line-height: 1.48;
  letter-spacing: -0.018em;
}

.hero-note {
  max-width: 720px;
  margin-top: 22px;
  color: #898989;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.012em;
}

.hero-rule {
  width: 706px;
  max-width: 49.2vw;
  height: 2px;
  margin-top: 40px;
  background: #111;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 24px;
  width: 706px;
  max-width: 49.2vw;
  margin-top: 28px;
}

.stat {
  display: grid;
  grid-template-rows: minmax(1.2em, auto) minmax(3.3em, auto);
  align-content: start;
  min-width: 0;
  padding-inline: 0;
}

.stat b {
  display: block;
  margin: 0;
  color: #050505;
  font-size: clamp(26px, 2vw, 33px);
  font-weight: 850;
  line-height: 1.06;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.stat span {
  display: block;
  max-width: 24ch;
  margin-top: 10px;
  color: #888;
  font-size: 15px;
  line-height: 1.38;
  letter-spacing: -0.005em;
}

.hero-cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 42px;
}

.hero-btn,
.hero-btn-secondary {
  height: 72px;
  font-size: 17px;
}

.hero-btn {
  width: min(100%, 348px);
  padding-inline: 28px 56px;
  background: #000;
  color: #fff;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.07);
}

.hero-btn-secondary {
  width: min(100%, 300px);
  padding-inline: 28px 56px;
  border-color: #111;
  background: #fff;
  color: #111;
}

.phone-wrap {
  position: absolute;
  top: 82px;
  right: clamp(-90px, calc((100vw - 1440px) * 0.64 + 12px), 12px);
  z-index: 2;
  width: clamp(450px, 35.1vw, 505px);
  height: auto;
  pointer-events: none;
  filter: drop-shadow(0 28px 32px rgba(0, 0, 0, 0.13)) drop-shadow(52px 26px 58px rgba(0, 0, 0, 0.07));
}

.phone-wrap picture,
.phone-wrap img {
  width: 100%;
  height: auto;
}

/* Sections */
.section {
  padding-block: var(--section-space);
  background: #fff;
}

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

.section.dark {
  background: #0e1012;
  color: #fff;
}

.section.deep {
  background: linear-gradient(135deg, #101315 0%, #151a1e 48%, #0a2328 100%);
  color: #fff;
}

#statuses {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 0%, rgba(26, 90, 138, 0.075), transparent 31%),
    linear-gradient(180deg, #f4f1e9 0%, #efece4 100%);
}

#statuses::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(17, 19, 21, 0.1);
  pointer-events: none;
}

#statuses > .frame {
  position: relative;
  z-index: 1;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.68fr);
  align-items: end;
  gap: clamp(48px, 5vw, var(--head-gap));
  margin-bottom: 56px;
  padding-top: 50px;
  border-top: 2px solid currentColor;
}

.section-kicker,
.ledger-kicker,
.panel-label,
.form-code {
  color: var(--stone);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.35;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-kicker {
  margin-bottom: 18px;
}

.dark .section-kicker,
.deep .section-kicker,
.dark .panel-label,
.deep .panel-label {
  color: var(--gold-soft);
}

.section-title {
  max-width: 15ch;
  color: inherit;
  font-size: clamp(47px, 4vw, 72px);
  font-weight: 900;
  line-height: 1.105;
  letter-spacing: -0.042em;
  text-transform: uppercase;
  text-wrap: balance;
}

.section-title .tone {
  color: var(--stone);
}

.dark .section-title .tone,
.deep .section-title .tone {
  color: var(--gold-soft);
}

.section-copy {
  max-width: 48ch;
  color: #6f6f6f;
  font-size: clamp(18px, 1.25vw, 21px);
  font-weight: 500;
  line-height: 1.58;
  letter-spacing: -0.016em;
  text-wrap: pretty;
}

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

.dark .section-copy,
.deep .section-copy {
  color: rgba(255, 255, 255, 0.68);
}

/* Shared card language */
.folio-card,
.op-card,
.format-card,
.life-card,
.service-node,
.step {
  border: 1px solid var(--line);
  background: var(--warm);
}

/* Token */
.token-system {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: var(--space-6);
  align-items: stretch;
}

.token-system > *,
.access-matrix > *,
.format-layout > *,
.lifestyle > *,
.service-ecosystem > *,
.form-box > *,
.footer-grid > * {
  min-width: 0;
}

.token-ledger {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 650px;
  padding: 42px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #fffdf7 0%, #f7f5ef 56%, #efe9da 100%);
  box-shadow: 0 32px 84px rgba(17, 19, 21, 0.07);
}

.token-ledger::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 78, 0.11), transparent 68%);
  pointer-events: none;
}

.ledger-kicker {
  display: flex;
  align-items: center;
  gap: 24px;
}

.ledger-kicker::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(17, 20, 22, 0.18);
}

.token-ledger h3 {
  max-width: 11ch;
  margin-top: 64px;
  font-size: clamp(44px, 3.75vw, 66px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.052em;
  text-transform: uppercase;
  text-wrap: balance;
}

.token-ledger h3 span {
  color: var(--stone);
}

.ledger-bottom {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  margin-top: auto;
  padding-top: 28px;
  border-top: 2px solid #111;
}

.ledger-bottom p {
  color: #6e6e6e;
  font-size: 16px;
  line-height: 1.56;
  letter-spacing: -0.01em;
}

.token-stack,
.access-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  grid-auto-rows: 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.token-mini,
.access-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 310px;
  padding: var(--card-pad);
  border-top: 0;
  border-left: 0;
  background: transparent;
}

.token-mini > div,
.access-item > div {
  display: grid;
  grid-template-rows: minmax(2.4em, auto) minmax(4.8em, auto);
  align-content: end;
}

.token-mini small,
.access-item small,
.op-no,
.format-card > span,
.life-card > span,
.service-node > span,
.step > span,
.status > span:first-child {
  color: var(--stone);
  font-size: 10px;
  font-weight: 850;
  line-height: 1.3;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.token-mini small::before,
.access-item small::before,
.life-card > span::before {
  content: "◇";
  margin-right: 9px;
  font-size: 9px;
}

.token-mini h3,
.access-item h3 {
  margin-bottom: 13px;
  font-size: 23px;
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: -0.028em;
  text-transform: uppercase;
}

.token-mini p,
.access-item p {
  color: #747474;
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: -0.008em;
}

/* Access */
.access-matrix {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.04fr);
  gap: var(--space-6);
  align-items: stretch;
}

.access-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 570px;
  padding: 38px;
  overflow: hidden;
  border: 1px solid rgba(17, 19, 21, 0.12);
  background: #111315;
  color: #fff;
  box-shadow: 0 32px 92px rgba(17, 19, 21, 0.14);
}

.access-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 14%, rgba(244, 196, 48, 0.20), transparent 31%),
    radial-gradient(circle at 14% 82%, rgba(19, 101, 101, 0.28), transparent 38%);
  pointer-events: none;
}

.panel-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.panel-label {
  color: var(--gold-soft);
}

.panel-mark,
.form-monogram {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(201, 168, 78, 0.48);
  border-radius: 50%;
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.access-panel h3 {
  position: relative;
  z-index: 1;
  max-width: 11ch;
  margin-top: 72px;
  font-size: clamp(43px, 3.2vw, 58px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.052em;
  text-transform: uppercase;
  text-wrap: balance;
}

.access-panel p {
  position: relative;
  z-index: 1;
  max-width: 38ch;
  margin-top: auto;
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
  line-height: 1.58;
  letter-spacing: -0.01em;
}

.access-item-top {
  display: block;
}

/* Opportunities */
.op-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  grid-auto-rows: 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.op-card {
  display: grid;
  grid-template-rows: auto minmax(4.9em, 1fr) minmax(6.2em, auto);
  min-height: 304px;
  padding: var(--card-pad);
  border-top: 0;
  border-left: 0;
  background: #fffdf8;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62);
  isolation: isolate;
}

.op-card:nth-child(2),
.op-card:nth-child(4),
.op-card:nth-child(6) {
  background: #f4f0e7;
}

.op-top {
  display: flex;
  align-items: center;
  gap: 15px;
}

.op-top::after {
  content: "";
  width: 46px;
  height: 1px;
  background: rgba(17, 20, 22, 0.18);
}

.op-dot {
  display: none;
}

.op-card h3 {
  max-width: 14ch;
  align-self: end;
  margin-top: 34px;
  font-size: clamp(26px, 2.35vw, 34px);
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: -0.024em;
  text-transform: uppercase;
  text-wrap: balance;
}

.op-card p {
  margin-top: 16px;
  color: #686868;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.01em;
  text-wrap: pretty;
}

/* Formats */
.format-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.04fr);
  gap: var(--space-6);
  align-items: stretch;
}

.format-intro {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 690px;
  padding: 40px;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.045);
}

.format-intro h3 {
  max-width: 10ch;
  margin-top: 26px;
  font-size: clamp(45px, 3.9vw, 68px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.052em;
  text-transform: uppercase;
  text-wrap: balance;
}

.format-intro p {
  max-width: 38ch;
  color: rgba(255, 255, 255, 0.66);
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: -0.01em;
}

.format-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  grid-auto-rows: 1fr;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.format-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 226px;
  padding: var(--card-pad-compact);
  border-top: 0;
  border-left: 0;
  border-color: var(--line-dark);
  background: rgba(255, 255, 255, 0.038);
}

.format-card > div {
  display: grid;
  grid-template-rows: minmax(3.9em, auto) minmax(4.5em, auto);
  align-content: end;
}

.format-card > span {
  color: var(--gold-soft);
}

.format-card h3 {
  margin: 22px 0 10px;
  font-size: clamp(25px, 2.15vw, 31px);
  font-weight: 850;
  line-height: 1.18;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.format-card p {
  color: rgba(255, 255, 255, 0.64);
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: -0.006em;
}

/* Membership levels */
.status-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  box-shadow: 0 22px 58px rgba(17, 20, 22, 0.085);
}

.status {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 356px;
  padding: var(--card-pad);
  border: 0;
  color: #fff;
}

.status:nth-child(1) {
  background: linear-gradient(150deg, #1a5876 0%, #12435d 100%);
}

.status:nth-child(2) {
  background: linear-gradient(150deg, #f4f5f3 0%, #e8e9e7 72%, #d9dcdb 100%);
  color: #111416;
}

.status:nth-child(3) {
  background: linear-gradient(145deg, #f0e1ae 0%, #d6b55d 72%, #b88e31 100%);
  color: #17140d;
}

.status:nth-child(4) {
  background: linear-gradient(145deg, #353d45 0%, #252b31 58%, #11161b 100%);
}

.status > span:first-child {
  color: currentColor;
  opacity: 0.68;
}

.status > span:first-child::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  margin-top: 18px;
  background: currentColor;
  opacity: 0.44;
}

.status > div {
  display: grid;
  grid-template-rows: minmax(1.25em, auto) minmax(5em, auto);
  align-content: end;
  margin-top: auto;
  padding-top: 42px;
}

.status h3 {
  margin-bottom: 15px;
  color: inherit;
  font-size: clamp(34px, 2.7vw, 44px);
  font-weight: 850;
  line-height: 1.15;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.status p {
  max-width: 31ch;
  color: currentColor;
  font-size: 15px;
  line-height: 1.58;
  letter-spacing: -0.008em;
  opacity: 0.72;
}

/* Lifestyle */
.lifestyle {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: var(--space-6);
  align-items: stretch;
}

.life-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 590px;
  padding: 40px;
  border: 1px solid var(--line-dark);
  background: linear-gradient(145deg, #17191b, #0d0f10);
}

.life-panel h3 {
  max-width: 11ch;
  margin-top: 25px;
  font-size: clamp(43px, 3.85vw, 66px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  text-wrap: balance;
}

.life-panel p {
  max-width: 40ch;
  color: rgba(255, 255, 255, 0.66);
  font-size: 17px;
  line-height: 1.58;
  letter-spacing: -0.008em;
}

.life-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  grid-auto-rows: 1fr;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.life-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr minmax(2.35em, auto) minmax(4.75em, auto);
  min-height: 292px;
  padding: var(--card-pad-compact);
  border-top: 0;
  border-left: 0;
  border-color: var(--line-dark);
  background: rgba(255, 255, 255, 0.035);
}

.life-card > span {
  color: var(--gold-soft);
}

.life-icon {
  position: absolute;
  top: var(--card-pad-compact);
  right: var(--card-pad-compact);
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  color: var(--gold-soft);
}

.life-card:nth-child(even) .life-icon {
  color: rgba(255, 255, 255, 0.86);
}

.life-icon img {
  width: 25px;
  height: 25px;
  filter: none;
}

.life-card h3 {
  max-width: 10ch;
  align-self: end;
  margin-top: 28px;
  font-size: clamp(27px, 2.45vw, 36px);
  font-weight: 850;
  line-height: 1.18;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  text-wrap: balance;
}

.life-card p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: -0.006em;
}

/* Service layer */
.service-ecosystem {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 36px;
  align-items: stretch;
  margin-top: 54px;
}

.service-map {
  order: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.52);
}

.service-node {
  display: grid;
  align-content: space-between;
  min-height: 204px;
  padding: var(--card-pad-compact);
  border: 0;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  background: transparent;
}

.service-node:nth-child(-n + 2) {
  border-top: 0;
}

.service-node:nth-child(2n) {
  border-right: 0;
}

.service-node b {
  display: block;
  max-width: 16ch;
  overflow-wrap: break-word;
  font-size: 23px;
  font-weight: 850;
  line-height: 1.24;
  letter-spacing: -0.024em;
  text-transform: uppercase;
}

.club-layer-card {
  position: relative;
  order: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: 42px;
  gap: 42px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 100% 0%, rgba(214, 181, 93, 0.18), transparent 35%),
    linear-gradient(145deg, #fffdf8 0%, #f7f3e9 66%, #eee6d3 100%);
  box-shadow: 0 28px 76px rgba(17, 19, 21, 0.075);
}

.club-layer-card::after {
  content: "";
  position: absolute;
  right: -96px;
  bottom: -118px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 78, 0.07), transparent 68%);
  pointer-events: none;
}

.layer-copy,
.layer-points {
  position: relative;
  z-index: 1;
}

.club-layer-card h3 {
  max-width: 10ch;
  font-size: clamp(41px, 3.15vw, 55px);
  font-weight: 900;
  line-height: 1.09;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  text-wrap: balance;
}

.club-layer-card p {
  max-width: 36ch;
  margin-top: 20px;
  color: #666;
  font-size: 16px;
  line-height: 1.58;
  letter-spacing: -0.01em;
}

.layer-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 38px;
  border-top: 1px solid rgba(17, 20, 22, 0.14);
}

.layer-points span {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 64px;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid rgba(17, 20, 22, 0.14);
  background: transparent;
  color: #171717;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.layer-points span:nth-child(odd) {
  padding-right: 18px;
  border-right: 1px solid rgba(17, 20, 22, 0.14);
}

.layer-points span:nth-child(even) {
  padding-left: 18px;
}

.layer-points span::before {
  content: attr(data-index);
  flex: 0 0 24px;
  color: var(--stone);
  font-size: 9px;
  letter-spacing: 0.18em;
}

/* Journey */
.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--grid-gap);
  margin-top: 54px;
}

.step {
  display: flex;
  flex-direction: column;
  min-height: 228px;
  padding: 24px;
  overflow: hidden;
  border-color: var(--line-dark);
  background: linear-gradient(180deg, rgba(255, 253, 247, 0.043), rgba(255, 253, 247, 0.016));
}

.step > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(201, 168, 78, 0.42);
  border-radius: 50%;
  color: var(--gold-soft);
  letter-spacing: 0.1em;
}

.step > div {
  display: grid;
  grid-template-rows: minmax(2.35em, auto) minmax(4.5em, auto);
  align-content: end;
  margin-top: auto;
}

.step h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: -0.024em;
  text-transform: uppercase;
}

.step p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.48;
}

/* Form */
.form-section {
  padding-block: 92px;
  background: #fff;
}

.form-box {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(48px, 5.7vw, 82px);
  padding: 64px;
  background: linear-gradient(135deg, #101315 0%, #171b1d 72%, #122423 100%);
  color: #fff;
  box-shadow: var(--feature-shadow);
}

.form-title {
  max-width: 11ch;
  font-size: clamp(48px, 4vw, 70px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  text-wrap: balance;
}

.form-text {
  max-width: 34ch;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 19px;
  line-height: 1.58;
  letter-spacing: -0.012em;
}

.form {
  min-width: 0;
}

.form-concierge-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.form-code {
  color: rgba(255, 255, 255, 0.56);
}

.form-fields {
  display: grid;
}

.field {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
  min-height: 94px;
  padding-block: 20px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.field-index {
  padding-top: 5px;
  color: var(--gold-soft);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.18em;
}

.field-body {
  min-width: 0;
}

.field-label {
  display: block;
  color: rgba(255, 255, 255, 0.54);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.field input {
  width: 100%;
  min-height: 44px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.35;
}

.field input::placeholder {
  color: rgba(255, 255, 255, 0.26);
}

.field:focus-within {
  border-bottom-color: rgba(255, 255, 255, 0.4);
}

.field.has-error {
  border-bottom-color: #dca9a3;
}

.field-error {
  display: block;
  min-height: 16px;
  margin-top: 3px;
  color: #f0b9b1;
  font-size: 12px;
  line-height: 1.35;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.privacy-consent {
  position: relative;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 11px;
  margin-top: 19px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.5;
}

.privacy-consent input {
  position: absolute;
  opacity: 0;
}

.privacy-box {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
}

.privacy-consent input:checked + .privacy-box {
  border-color: var(--gold-soft);
  background: var(--gold-soft);
  box-shadow: inset 0 0 0 4px #15191b;
}

.privacy-consent input:focus-visible + .privacy-box {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.privacy-text a {
  color: rgba(255, 255, 255, 0.83);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.privacy-error {
  grid-column: 2;
  margin-top: -4px;
}

.form-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 28px;
  margin-top: 24px;
}

.micro {
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  line-height: 1.55;
}

.submit {
  position: relative;
  width: 276px;
  height: 62px;
  padding-inline: 28px 56px;
  background: #d5b65d;
  color: #111;
  font-size: 15px;
  white-space: nowrap;
}

.submit .button-icon {
  position: absolute;
  right: 22px;
}

.submit[disabled] {
  cursor: wait;
  opacity: 0.7;
}

.form-status {
  min-height: 22px;
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.5;
}

.form-status[data-state="error"] {
  color: #f0b9b1;
}

.form-status[data-state="success"] {
  color: #dcebcf;
}

/* Footer */
.footer {
  padding-block: 58px 46px;
  background: #080808;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.7fr 0.7fr 1.1fr;
  gap: clamp(36px, 4.4vw, 64px);
  align-items: start;
}

.footer-grid > div:first-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer .logo {
  margin-bottom: 18px;
  color: #fff;
}

.footer .logo .mbn,
.footer .logo .club {
  font-size: 30px;
}

.footer p {
  max-width: 44ch;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  line-height: 1.62;
}

.footer h4 {
  margin-bottom: 14px;
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.footer a:not(.logo) {
  display: block;
  min-height: 44px;
  padding-block: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.5;
}

.footer-copyright {
  margin-top: 18px;
}


.language-switch--mobile,
.language-switch--footer {
  color: rgba(255, 255, 255, 0.52);
}

.language-switch--mobile {
  justify-content: flex-start;
  margin-bottom: 12px;
}

.language-switch--footer {
  display: inline-grid;
  grid-template-columns: repeat(2, 44px);
  justify-content: flex-start;
  min-height: 44px;
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.language-switch--footer > span {
  display: none;
}

.footer .language-switch--footer a {
  display: grid;
  place-items: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  line-height: 1;
}

.footer .language-switch--footer a + a {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.language-switch--mobile a[aria-current="page"] {
  color: var(--gold-soft);
}

.footer .language-switch--footer a[aria-current="page"] {
  background: #d8c07d;
  color: #111416;
}

/* Legal */
.legal-page {
  min-height: 70vh;
  padding-block: 88px;
  background: #fff;
}

.legal-page h1 {
  max-width: 900px;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 900;
  line-height: 1.07;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.legal-page h2 {
  margin-top: 42px;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.legal-page p,
.legal-page li {
  max-width: 760px;
  margin-top: 15px;
  color: #626262;
  font-size: 17px;
  line-height: 1.62;
}

.legal-page ul {
  padding-left: 24px;
}

.legal-note {
  margin-top: 38px;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--paper);
}

/* Fine-pointer interactions only */
@media (hover: hover) and (pointer: fine) {
  .nav a:hover::after {
    opacity: 0.48;
    transform: scaleX(1);
  }

  .header-btn,
  .hero-btn,
  .hero-btn-secondary,
  .submit {
    transition: background-color 200ms var(--ease), color 200ms var(--ease), box-shadow 200ms var(--ease), border-color 200ms var(--ease);
  }

  .header-btn:hover,
  .hero-btn:hover {
    background: #171717;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.09);
  }

  .hero-btn-secondary:hover {
    background: #111;
    color: #fff;
  }

  .submit:hover {
    background: #caaa51;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
  }

  .hero-btn-secondary:hover .button-icon {
    filter: invert(1);
  }

  .button-icon {
    transition: filter 200ms var(--ease);
  }

  .folio-card,
  .op-card,
  .format-card,
  .life-card,
  .service-node,
  .step,
  .status {
    position: relative;
    cursor: default;
    transition: transform 220ms var(--ease), background-color 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease), filter 220ms var(--ease);
  }

  .folio-card:not(.status):not(.access-item):hover {
    z-index: 2;
    transform: none;
    background-color: rgba(255, 255, 255, 0.48);
    box-shadow: inset 0 -2px 0 rgba(199, 163, 70, 0.58);
  }

  .op-card:hover {
    z-index: 2;
    transform: none;
    border-color: rgba(200, 165, 72, 0.52);
    background-color: #fffdf7;
    box-shadow: 0 18px 44px rgba(17, 19, 21, 0.065), inset 0 -2px 0 rgba(200, 165, 72, 0.62);
  }

  .access-item:hover {
    z-index: 2;
    transform: none;
    border-top-color: rgba(117, 111, 97, 0.52);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(247, 245, 239, 0.30));
    box-shadow: inset 0 -2px 0 rgba(199, 163, 70, 0.58);
  }

  .service-node:hover {
    z-index: 2;
    transform: none;
    background-color: rgba(244, 196, 48, 0.045);
    box-shadow: inset 0 -2px 0 rgba(200, 165, 72, 0.52);
  }

  .format-card:hover,
  .life-card:hover {
    z-index: 2;
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.064);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
  }

  .step:hover {
    z-index: 2;
    transform: none;
    border-color: rgba(244, 196, 48, 0.28);
    background: linear-gradient(180deg, rgba(255, 253, 247, 0.06), rgba(255, 253, 247, 0.02));
    box-shadow: none;
  }

  .status:hover {
    z-index: 2;
    transform: translateY(-2px);
    filter: brightness(1.035);
    box-shadow: 0 16px 34px rgba(17, 20, 22, 0.13);
  }

  .status:nth-child(2):hover,
  .status:nth-child(3):hover {
    transform: none;
    filter: brightness(1.025) saturate(1.015);
    box-shadow: none;
  }

  .footer a:not(.logo),
  .language-switch a {
    transition: color 180ms var(--ease), background-color 180ms var(--ease), box-shadow 180ms var(--ease), transform 180ms var(--ease);
  }

  .footer a:not(.logo):hover {
    color: #fff;
    transform: translateX(2px);
  }

  .language-switch a:hover {
    color: var(--ink);
  }

  .language-switch:not(.language-switch--mobile):not(.language-switch--footer) a:hover {
    background: transparent;
    box-shadow: inset 0 -1px 0 rgba(17, 20, 22, 0.28);
  }

  .language-switch--mobile a:hover,
  .footer .language-switch a:hover {
    background: rgba(201, 168, 78, 0.12);
    color: currentColor;
    transform: none;
  }
}

/* Tablet */
@media (max-width: 1279px) {
  :root {
    --frame: calc(100vw - 48px);
    --head-gap: 32px;
  }

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

  .topbar {
    height: 82px;
  }

  .header-row {
    display: flex;
    justify-content: space-between;
  }

  .logo .mbn,
  .logo .club {
    font-size: 32px;
  }

  .nav,
  .header-btn {
    display: none;
  }

  .language-switch:not(.language-switch--mobile):not(.language-switch--footer) {
    display: none;
  }

  .burger {
    display: grid;
  }

  .mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: block;
    background: rgba(5, 5, 5, 0.32);
    opacity: 0;
    visibility: hidden;
    transition: opacity 260ms ease, visibility 260ms ease;
  }

  .mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    display: flex;
    flex-direction: column;
    width: min(420px, 100vw);
    padding: 28px;
    background: #101214;
    color: #fff;
    visibility: hidden;
    transform: translateX(102%);
    transition: transform 300ms var(--ease), visibility 300ms ease;
  }

  .menu-open .mobile-overlay {
    opacity: 1;
    visibility: visible;
  }

  .menu-open .mobile-drawer {
    visibility: visible;
    transform: translateX(0);
  }

  .mobile-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .mobile-drawer .logo {
    color: #fff;
  }

  .drawer-close {
    position: relative;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0;
    line-height: 1;
  }

  .drawer-close::before,
  .drawer-close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 19px;
    height: 1.5px;
    border-radius: 999px;
    background: currentColor;
    transform-origin: center;
  }

  .drawer-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .drawer-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .mobile-links {
    display: grid;
    margin-top: 28px;
  }

  .mobile-links a {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 58px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.82);
    font-size: 21px;
    font-weight: 650;
    letter-spacing: -0.025em;
  }

  .mobile-links a[aria-current="true"] {
    color: var(--gold-soft);
  }

  .mobile-drawer-foot {
    margin-top: auto;
    padding-top: 26px;
  }

  .mobile-drawer-foot p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 12px;
    line-height: 1.5;
  }

  .mobile-drawer-foot .header-btn {
    display: inline-flex;
    width: 100%;
    margin-top: 18px;
    padding-inline: 22px 56px;
    background: var(--gold-soft);
    color: #111;
  }

  .hero,
  .hero .frame {
    min-height: 0;
  }

  .hero-copy {
    position: relative;
    top: auto;
    width: auto;
    max-width: none;
    padding-block: 64px 76px;
  }

  .hero-title {
    max-width: 100%;
    white-space: normal;
  }

  .hero-title .line-1,
  .hero-title .line-2 {
    max-width: 100%;
    font-size: clamp(40px, 5.2vw, 56px);
    line-height: 1.04;
    overflow-wrap: normal;
  }

  .hero-sub {
    width: min(100%, 680px);
    max-width: 100%;
  }

  .hero-note {
    max-width: 680px;
  }

  .hero-rule,
  .stats {
    width: 100%;
    max-width: none;
  }

  .stats {
    column-gap: 22px;
  }

  .stat {
    min-width: 0;
    grid-template-rows: auto auto;
  }

  .stat b {
    font-size: clamp(21px, 2.75vw, 27px);
    line-height: 1.12;
    letter-spacing: -0.02em;
    white-space: normal;
    overflow-wrap: break-word;
  }

  .stat span {
    max-width: none;
  }

  .phone-wrap {
    display: none;
  }

  .section {
    padding-block: var(--section-space-tablet);
  }

  .section-head {
    grid-template-columns: 1fr;
    align-items: start;
    margin-bottom: 46px;
    padding-top: 40px;
  }

  .section-title {
    max-width: 17ch;
    font-size: 48px;
  }

  .section-copy {
    max-width: 62ch;
  }

  .token-system,
  .access-matrix,
  .format-layout,
  .lifestyle,
  .service-ecosystem,
  .form-box,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .token-ledger,
  .access-panel,
  .format-intro,
  .life-panel {
    min-height: 420px;
  }

  .token-ledger h3,
  .access-panel h3,
  .format-intro h3,
  .life-panel h3,
  .club-layer-card h3 {
    font-size: 48px;
  }

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

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

  .status {
    min-height: 286px;
  }

  .service-ecosystem {
    margin-top: 48px;
  }

  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 48px;
  }

  .timeline .step:last-child {
    grid-column: 1 / -1;
  }

  .form-box {
    gap: 38px;
    padding: 46px;
  }

  .form-title {
    max-width: 14ch;
    font-size: 54px;
  }

  .footer-grid {
    gap: 36px;
  }
}


@media (min-width: 761px) and (max-width: 959px) {
  .hero-copy {
    padding-block: 58px 68px;
  }

  .hero-title .line-1,
  .hero-title .line-2 {
    font-size: clamp(39px, 5.25vw, 46px);
  }

  .hero-sub {
    margin-top: 26px;
    font-size: 19px;
  }

  .hero-note {
    font-size: 15px;
  }

  .hero-rule {
    margin-top: 34px;
  }

  .stats {
    gap: 18px;
    margin-top: 24px;
  }

  .stat b {
    font-size: clamp(20px, 2.7vw, 24px);
  }

  .stat span {
    font-size: 14px;
    line-height: 1.45;
  }

  .hero-cta {
    margin-top: 34px;
  }

  .hero-btn,
  .hero-btn-secondary {
    min-height: 64px;
    height: auto;
  }

  .section-title {
    font-size: clamp(42px, 5.5vw, 48px);
  }

  .token-ledger,
  .access-panel,
  .format-intro,
  .life-panel {
    min-height: 390px;
  }

  .token-ledger h3,
  .access-panel h3,
  .format-intro h3,
  .life-panel h3,
  .club-layer-card h3 {
    font-size: clamp(40px, 5.4vw, 48px);
  }

  .op-card,
  .status,
  .life-card,
  .format-card,
  .token-mini,
  .access-item,
  .service-node,
  .step {
    min-width: 0;
  }
}

/* Mobile */
@media (max-width: 760px) {
  :root {
    --frame: calc(100vw - 28px);
    --section-space-mobile: 54px;
  }

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

  .topbar {
    height: 74px;
  }

  .logo .mbn,
  .logo .club {
    font-size: 30px;
  }

  .logo .club {
    margin-left: 8px;
  }

  .burger,
  .drawer-close {
    width: 44px;
    height: 44px;
  }

  .mobile-drawer {
    width: 100vw;
    padding: 22px 20px 24px;
  }

  .mobile-links {
    margin-top: 22px;
  }

  .mobile-links a {
    min-height: 56px;
    padding-inline: 2px;
    font-size: 19px;
  }

  .hero {
    height: auto;
    min-height: 0;
  }

  .hero-copy {
    position: relative;
    top: auto;
    width: auto;
    max-width: none;
    padding-block: 44px 58px;
  }

  .hero-title {
    white-space: normal;
  }

  .hero-title .line-1,
  .hero-title .line-2 {
    font-size: clamp(36px, 10.8vw, 42px);
    line-height: 1.04;
  }

  .hero-sub {
    width: auto;
    max-width: none;
    margin-top: 26px;
    font-size: 17px;
    line-height: 1.54;
  }

  .hero-note {
    max-width: none;
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.5;
  }

  .hero-rule {
    width: 100%;
    max-width: none;
    margin-top: 32px;
  }

  .stats {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: none;
    margin-top: 22px;
  }

  .stat {
    grid-template-rows: auto;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
  }

  .stat:first-child {
    padding-top: 0;
  }

  .stat b {
    font-size: 31px;
  }

  .stat span {
    max-width: 34ch;
    margin-top: 8px;
    font-size: 15px;
  }

  .hero-cta {
    display: grid;
    gap: 14px;
    margin-top: 32px;
  }

  .hero-btn,
  .hero-btn-secondary {
    width: 100%;
    height: auto;
    min-height: 66px;
    padding: 16px 58px 16px 22px;
    font-size: 15px;
    line-height: 1.25;
    text-align: center;
    white-space: normal;
  }

  .phone-wrap {
    display: none;
  }

  .section {
    padding-block: var(--section-space-mobile);
  }

  #statuses {
    background: linear-gradient(180deg, #f4f1e9 0%, #eeeae1 100%);
  }

  .section-head {
    gap: 20px;
    margin-bottom: 32px;
    padding-top: 30px;
    border-top-width: 1.5px;
  }

  .section-kicker {
    margin-bottom: 14px;
    font-size: 11px;
  }

  .section-title {
    max-width: none;
    font-size: clamp(35px, 10vw, 40px);
    line-height: 1.1;
    letter-spacing: -0.045em;
  }

  .section-copy {
    font-size: 16px;
    line-height: 1.58;
  }

  .token-system,
  .access-matrix,
  .format-layout,
  .lifestyle,
  .service-ecosystem {
    gap: 16px;
  }

  .token-ledger,
  .format-intro,
  .life-panel,
  .club-layer-card {
    min-height: 0;
    padding: 24px;
  }

  .access-panel {
    min-height: 0;
    padding: 28px;
  }

  .token-ledger {
    min-height: 470px;
  }

  .token-ledger h3,
  .access-panel h3,
  .format-intro h3,
  .life-panel h3,
  .club-layer-card h3 {
    margin-top: 38px;
    font-size: 36px;
    line-height: 1.1;
  }

  .ledger-bottom {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 54px;
    padding-top: 22px;
  }

  .token-stack,
  .access-list,
  .service-map,
  .op-grid,
  .format-list,
  .status-row,
  .life-cards,
  .layer-points,
  .timeline {
    grid-template-columns: 1fr;
  }

  .token-mini,
  .access-item {
    min-height: 174px;
    padding: 20px;
  }

  .token-mini > div,
  .access-item > div,
  .format-card > div,
  .status > div,
  .step > div {
    grid-template-rows: auto;
  }

  .access-panel h3 {
    margin-top: 48px;
  }

  .access-panel p {
    margin-top: 44px;
  }

  .format-list,
  .life-cards {
    gap: 0;
  }

  #opportunities .op-grid {
    gap: 12px;
    border: 0;
  }

  #opportunities .op-card {
    grid-template-rows: auto auto auto;
    min-height: 194px;
    padding: 24px;
    border: 1px solid var(--line);
  }

  .op-card h3 {
    font-size: 27px;
  }

  .op-card p {
    margin-top: 14px;
    font-size: 15px;
  }

  .format-intro,
  .life-panel {
    min-height: 372px;
  }

  .format-card {
    min-height: 164px;
    padding: 20px;
  }

  .format-card h3 {
    margin-top: 18px;
    font-size: 25px;
  }

  .status-row {
    gap: 0;
    box-shadow: 0 14px 36px rgba(17, 20, 22, 0.08);
  }

  .status {
    min-height: 196px;
    padding: 22px;
  }

  .status > div {
    padding-top: 30px;
  }

  .status h3 {
    font-size: 32px;
  }

  .life-card {
    grid-template-rows: auto minmax(18px, 1fr) auto auto;
    min-height: 184px;
    padding: 20px;
  }

  .life-icon {
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
  }

  .life-card h3 {
    margin-top: 20px;
    font-size: 28px;
  }

  .life-card p {
    margin-top: 10px;
  }

  .service-ecosystem {
    margin-top: 34px;
  }

  .service-node {
    min-height: 118px;
    padding: 18px;
    border-top: 1px solid var(--line);
    border-right: 0;
  }

  .service-node:first-child {
    border-top: 0;
  }

  .service-node b {
    font-size: 21px;
  }

  .club-layer-card p {
    font-size: 15px;
  }

  .layer-points {
    gap: 0;
    margin-top: 30px;
  }

  .layer-points span,
  .layer-points span:nth-child(odd),
  .layer-points span:nth-child(even) {
    min-height: 58px;
    padding: 12px 0;
    border-right: 0;
  }

  .timeline {
    gap: 14px;
    margin-top: 34px;
  }

  .timeline .step:last-child {
    grid-column: auto;
  }

  .step {
    min-height: 136px;
    padding: 18px;
  }

  .form-section {
    padding-block: 54px;
  }

  .form-box {
    gap: 26px;
    padding: 24px;
  }

  .form-title {
    font-size: 39px;
    line-height: 1.09;
  }

  .form-text {
    margin-top: 20px;
    font-size: 16px;
  }

  .field {
    grid-template-columns: 34px minmax(0, 1fr);
    min-height: 86px;
    padding-block: 18px 14px;
  }

  .field input {
    font-size: 18px;
  }

  .privacy-consent {
    font-size: 11.5px;
  }

  .form-actions {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 18px;
    margin-top: 20px;
  }

  .submit {
    width: 100%;
    height: 60px;
  }

  .footer {
    padding-block: 48px 36px;
  }

  .footer-grid {
    gap: 30px;
  }

  .footer a:not(.logo) {
    min-height: 44px;
  }

  .legal-page {
    padding-block: 62px;
  }

  .legal-page p,
  .legal-page li {
    font-size: 16px;
  }
}

@media (max-width: 360px) {
  :root {
    --frame: calc(100vw - 24px);
  }

  .hero-title .line-1,
  .hero-title .line-2 {
    font-size: 35px;
  }

  .section-title,
  .form-title {
    font-size: 34px;
  }

  .token-ledger h3,
  .access-panel h3,
  .format-intro h3,
  .life-panel h3,
  .club-layer-card h3 {
    font-size: 33px;
  }

  .form-box {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}


/* v7 premium alignment: hero + buttons + four-card density */
.token-mini,
.access-item,
.status,
.life-card {
  padding: 24px;
}

.token-mini,
.access-item {
  min-height: 288px;
}

.status {
  min-height: 334px;
}

.life-card {
  min-height: 276px;
  grid-template-rows: auto 1fr minmax(2.3em, auto) minmax(4.5em, auto);
}

.token-mini > div,
.access-item > div {
  grid-template-rows: minmax(2.45em, auto) minmax(4.65em, auto);
}

.token-mini h3,
.access-item h3 {
  min-height: 2.45em;
}

.format-card h3 {
  min-height: 2.4em;
}

.op-card h3 {
  min-height: 2.5em;
}

.life-card h3 {
  min-height: 2.35em;
}

.status h3 {
  min-height: 1.25em;
}

.status > div {
  padding-top: 34px;
  grid-template-rows: minmax(1.25em, auto) minmax(4.8em, auto);
}

.mobile-links {
  justify-items: center;
}

.mobile-links a {
  justify-content: center;
  text-align: center;
}


/* v8 premium polish */
.logo {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
}

.logo-mark {
  display: block;
  width: clamp(154px, 12.2vw, 186px);
  height: auto;
}

.footer .logo-mark,
.mobile-drawer .logo-mark {
  filter: none;
  opacity: 1;
}

.footer .logo-mark {
  width: 168px;
}

.mobile-drawer .logo-mark {
  width: 160px;
}

.hero {
  min-height: 838px;
  overflow: hidden;
}

.hero .frame {
  min-height: 838px;
}

.hero-copy {
  top: 82px;
  width: 922px;
  max-width: 64vw;
}

.hero-title .line-1,
.hero-title .line-2 {
  font-size: clamp(55px, 3.78vw, 74px);
}

.hero-sub {
  width: 700px;
  max-width: 48.6vw;
  margin-top: 30px;
  line-height: 1.5;
}

.hero-note {
  margin-top: 24px;
}

.hero-rule,
.stats {
  width: 712px;
  max-width: 49.4vw;
}

.hero-rule {
  margin-top: 42px;
}

.stats {
  column-gap: 28px;
  margin-top: 26px;
}

.stat {
  grid-template-rows: minmax(1.3em, auto) minmax(3.1em, auto);
}

.stat b {
  font-size: clamp(27px, 2.02vw, 34px);
  line-height: 1.04;
}

.stat span {
  margin-top: 9px;
  font-size: 15px;
  line-height: 1.34;
}

.hero-cta {
  margin-top: 40px;
}

.phone-wrap {
  top: auto;
  bottom: -118px;
  right: clamp(-52px, calc((100vw - 1440px) * 0.58 - 18px), 8px);
  width: clamp(494px, 35.8vw, 560px);
  filter: drop-shadow(0 28px 32px rgba(0, 0, 0, 0.14)) drop-shadow(44px 26px 56px rgba(0, 0, 0, 0.08));
}

/* denser, content-led card systems */
.token-stack,
.access-list,
.format-list,
.status-row,
.life-cards,
.service-map {
  box-shadow: none;
}

.card-meta,
.op-top,
.format-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.card-meta {
  justify-content: flex-start;
  gap: 18px;
}

.card-meta small {
  min-width: 42px;
}

.op-top::after {
  display: none;
}

.card-meta span,
.op-label,
.format-meta small,
.life-label,
.step-label {
  color: var(--stone);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.card-copy {
  align-self: end;
}

.card-footer,
.status-footer,
.life-context,
.step-note {
  margin-top: auto;
  color: var(--stone);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.38;
  letter-spacing: 0.025em;
}

.card-footer span {
  display: block;
  margin-bottom: 4px;
  color: rgba(17, 20, 22, 0.48);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.token-mini,
.access-item {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  min-height: 0;
  padding: 24px;
}

.token-mini > div,
.access-item > div {
  display: block;
}

.token-mini h3,
.access-item h3 {
  min-height: 0;
  margin-bottom: 10px;
  font-size: 23px;
  line-height: 1.16;
  text-wrap: balance;
}

.token-mini p,
.access-item p {
  font-size: 15px;
  line-height: 1.5;
}

.access-item .card-footer {
  color: #5e5b53;
}

.op-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 0;
  min-height: 300px;
  padding: 25px;
}

.op-top {
  justify-content: flex-start;
}

.op-label {
  color: rgba(17, 20, 22, 0.45);
}

.op-card h3 {
  align-self: start;
  min-height: 2.35em;
  margin-top: 26px;
  font-size: clamp(25px, 2.15vw, 32px);
  line-height: 1.15;
  text-wrap: balance;
}

.op-card > p:not(.card-footer) {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.52;
}

.op-card .card-footer {
  margin-top: 18px;
}

.format-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  min-height: 220px;
  padding: 24px;
}

.format-meta span {
  color: var(--gold-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.format-meta small {
  color: rgba(255, 255, 255, 0.46);
  text-align: right;
}

.format-card > div:not(.format-meta) {
  align-self: end;
  display: block;
}

.format-card h3 {
  min-height: 0;
  margin: 0 0 9px;
  font-size: clamp(24px, 1.95vw, 29px);
  line-height: 1.16;
  text-wrap: balance;
}

.format-card p {
  font-size: 15px;
  line-height: 1.5;
}

.format-card .card-footer {
  color: rgba(255, 255, 255, 0.48);
}

.status {
  min-height: 356px;
  padding: 26px;
}

.status > div {
  display: grid;
  grid-template-rows: auto minmax(4.7em, auto) auto auto;
  gap: 14px;
  margin-top: auto;
  padding-top: 34px;
}

.status h3 {
  min-height: 0;
  margin: 0;
}

.status p {
  font-size: 15px;
  line-height: 1.5;
}

.status-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 2px 0 0;
}

.status-meta div {
  min-width: 0;
}

.status-meta dt {
  color: currentColor;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.12em;
  opacity: 0.55;
  text-transform: uppercase;
}

.status-meta dd {
  margin-top: 5px;
  color: currentColor;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.status-footer {
  color: currentColor;
  opacity: 0.62;
}

.life-card {
  grid-template-rows: auto auto auto 1fr auto;
  min-height: 300px;
  padding: 24px;
}

.life-icon {
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
}

.life-icon img {
  width: 22px;
  height: 22px;
}

.life-label {
  margin-top: 32px;
  color: var(--gold-soft);
}

.life-card h3 {
  align-self: start;
  min-height: 2.25em;
  margin-top: 12px;
  font-size: clamp(24px, 1.9vw, 29px);
  line-height: 1.16;
  text-transform: none;
  text-wrap: balance;
}

.life-card > p:not(.life-context) {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.5;
}

.life-context {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.5);
}

.service-node {
  grid-template-rows: auto 1fr;
  min-height: 196px;
  padding: 24px;
}

.service-node > div {
  align-self: end;
}

.service-node b {
  font-size: 20px;
  line-height: 1.2;
  text-transform: none;
  text-wrap: balance;
}

.service-node p {
  max-width: 28ch;
  margin-top: 10px;
  color: #6d6b65;
  font-size: 14px;
  line-height: 1.48;
}

.layer-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 38px;
  border: 0;
}

.layer-point {
  position: relative;
  min-width: 0;
  padding-left: 34px;
}

.layer-point::before {
  content: attr(data-index);
  position: absolute;
  top: 2px;
  left: 0;
  color: var(--stone);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.layer-point b {
  display: block;
  color: #171717;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
}

.layer-point span {
  display: block;
  min-height: 0;
  margin-top: 6px;
  padding: 0;
  border: 0;
  color: #706d66;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0;
  text-transform: none;
}

.step {
  min-height: 252px;
  padding: 22px;
}

.step > div {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  align-content: end;
}

.step-label {
  margin-bottom: 8px;
  color: var(--gold-soft);
}

.step h3 {
  font-size: 21px;
}

.step > div > p:not(.step-note) {
  margin-top: 9px;
  font-size: 14px;
  line-height: 1.48;
}

.step-note {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.42);
}

@media (max-width: 1279px) {
  .logo-mark {
    width: 158px;
  }

  .mobile-drawer .logo-mark {
    width: 150px;
  }

  .hero,
  .hero .frame {
    min-height: 0;
  }

  .hero-copy {
    position: relative;
    top: auto;
    width: auto;
    max-width: none;
    padding-block: 64px 76px;
  }

  .hero-title {
    max-width: 100%;
    white-space: normal;
  }

  .hero-title .line-1,
  .hero-title .line-2 {
    max-width: 100%;
    font-size: clamp(40px, 5.4vw, 56px);
    line-height: 1.04;
    white-space: nowrap;
  }

  .hero-sub {
    width: min(100%, 680px);
    max-width: 100%;
  }

  .hero-note {
    max-width: 680px;
  }

  .hero-rule,
  .stats {
    width: 100%;
    max-width: none;
  }

  .stats {
    column-gap: 22px;
  }

  .stat {
    min-width: 0;
    grid-template-rows: auto auto;
  }

  .stat b {
    font-size: clamp(21px, 2.75vw, 27px);
    line-height: 1.12;
    letter-spacing: -0.02em;
    white-space: normal;
    overflow-wrap: break-word;
  }

  .stat span {
    max-width: none;
  }

  .phone-wrap {
    display: none;
  }
}

@media (max-width: 760px) {
  .logo-mark {
    width: 150px;
  }

  .hero-copy {
    padding-block: 44px 58px;
  }

  .hero-title .line-1,
  .hero-title .line-2 {
    font-size: clamp(36px, 10.8vw, 42px);
    line-height: 1.04;
    white-space: normal;
  }

  .hero-sub {
    width: auto;
    max-width: none;
    margin-top: 26px;
    font-size: 17px;
    line-height: 1.54;
  }

  .hero-note {
    max-width: none;
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.5;
  }

  .hero-rule {
    width: 100%;
    max-width: none;
    margin-top: 32px;
  }

  .stats {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: none;
    margin-top: 22px;
  }

  .stat {
    grid-template-rows: auto;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
  }

  .stat:first-child {
    padding-top: 0;
  }

  .stat b {
    font-size: 31px;
  }

  .stat span {
    max-width: 34ch;
    margin-top: 8px;
    font-size: 15px;
  }

  .hero-cta {
    display: grid;
    gap: 14px;
    margin-top: 32px;
  }

  .hero-btn,
  .hero-btn-secondary {
    width: 100%;
    height: auto;
    min-height: 66px;
    padding: 16px 58px 16px 22px;
    font-size: 15px;
    line-height: 1.25;
    white-space: normal;
  }

  .token-mini,
  .access-item,
  .op-card,
  .format-card,
  .status,
  .life-card,
  .service-node {
    padding: 20px;
  }

  .token-mini,
  .access-item {
    min-height: 230px;
  }

  .op-card {
    grid-template-rows: auto auto auto auto;
    min-height: 0;
  }

  .op-card h3,
  .life-card h3 {
    min-height: 0;
  }

  .format-card {
    min-height: 210px;
  }

  .status {
    min-height: 314px;
  }

  .status > div {
    grid-template-rows: auto auto auto auto;
    padding-top: 28px;
  }

  .life-card {
    grid-template-rows: auto auto auto auto auto;
    min-height: 286px;
  }

  .life-icon {
    top: 20px;
    right: 20px;
  }

  .service-node {
    min-height: 156px;
  }

  .layer-points {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .step {
    min-height: 196px;
  }
}

/* v8.7.13 — multilingual interface, partners, events, news and joining page */
.language-menu {
  position: relative;
  z-index: 70;
  display: inline-flex;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.language-menu__trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 8px 10px;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.language-menu__trigger svg {
  width: 10px;
  height: 7px;
  opacity: 0.55;
  transition: transform 180ms ease;
}

.language-menu.is-open .language-menu__trigger {
  border-color: var(--line);
  background: var(--paper);
}

.language-menu.is-open .language-menu__trigger svg {
  transform: rotate(180deg);
}

.language-menu__flag {
  display: inline-grid;
  place-items: center;
  width: 21px;
  height: 16px;
  overflow: hidden;
  border-radius: 2px;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0;
}

.language-menu__panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(138px, 1fr));
  width: 316px;
  padding: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 247, 0.99);
  box-shadow: 0 22px 58px rgba(17, 20, 22, 0.14);
  backdrop-filter: blur(18px);
}

.language-menu__panel[hidden] {
  display: none;
}

.language-menu__panel button {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 8px 10px;
  text-align: left;
  transition: background-color 160ms ease;
}

.language-menu__panel button:hover,
.language-menu__panel button:focus-visible,
.language-menu__panel button.is-current {
  background: var(--paper-deep);
}

.language-menu__option-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.language-menu__option-copy b {
  color: var(--ink);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.11em;
}

.language-menu__option-copy small {
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.language-menu.has-error .language-menu__trigger {
  border-color: rgba(139, 52, 52, 0.42);
  background: #fff2f2;
}

.language-menu--mobile {
  width: 100%;
}

.language-menu--mobile .language-menu__trigger {
  width: 100%;
  justify-content: flex-start;
  min-height: 48px;
  padding-inline: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
}

.language-menu--mobile .language-menu__trigger svg {
  margin-left: auto;
}

.language-menu--mobile .language-menu__panel {
  top: auto;
  right: auto;
  bottom: calc(100% + 8px);
  left: 0;
  width: 100%;
  border-color: rgba(255, 255, 255, 0.12);
  background: #171a1c;
}

.language-menu--mobile .language-menu__panel button:hover,
.language-menu--mobile .language-menu__panel button:focus-visible,
.language-menu--mobile .language-menu__panel button.is-current {
  background: rgba(255, 255, 255, 0.08);
}

.language-menu--mobile .language-menu__option-copy b,
.language-menu--mobile .language-menu__option-copy small {
  color: rgba(255, 255, 255, 0.88);
}

.language-menu--footer {
  margin-top: 22px;
}

.language-menu--footer .language-menu__trigger {
  padding-inline: 0;
  color: rgba(255, 255, 255, 0.78);
}

.language-menu--footer .language-menu__panel {
  top: auto;
  right: auto;
  bottom: calc(100% + 8px);
  left: 0;
  border-color: rgba(255, 255, 255, 0.12);
  background: #151719;
}

.language-menu--footer .language-menu__panel button:hover,
.language-menu--footer .language-menu__panel button:focus-visible,
.language-menu--footer .language-menu__panel button.is-current {
  background: rgba(255, 255, 255, 0.08);
}

.language-menu--footer .language-menu__option-copy b,
.language-menu--footer .language-menu__option-copy small {
  color: rgba(255, 255, 255, 0.85);
}

html.is-translating body {
  cursor: progress;
}

html[dir="rtl"] body {
  text-align: right;
}

html[dir="rtl"] .header-row,
html[dir="rtl"] .section-head,
html[dir="rtl"] .footer-grid {
  direction: rtl;
}

html[dir="rtl"] .language-menu__panel {
  right: auto;
  left: 0;
}

.partners-section {
  background: #fff;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.partner-card {
  display: grid;
  align-content: space-between;
  min-height: 252px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.partner-card--lead {
  background: var(--ink);
  color: #fff;
}

.partner-card > span {
  color: var(--stone);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.partner-card--lead > span {
  color: var(--gold-soft);
}

.partner-card h3 {
  margin-top: 34px;
  font-size: clamp(27px, 2vw, 38px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.045em;
}

.partner-card p {
  align-self: end;
  max-width: 34ch;
  margin-top: 38px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.partner-card--lead p {
  color: rgba(255, 255, 255, 0.64);
}

.partner-note {
  margin-top: 20px;
  color: var(--muted);
  font-size: 12px;
}

.club-events-section {
  background: var(--graphite);
  color: #fff;
}

.club-events-section .section-kicker {
  color: var(--gold-soft);
}

.club-events-section .section-title {
  color: #fff;
}

.club-events-section .section-copy {
  color: rgba(255, 255, 255, 0.58);
}

.events-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.75fr);
  gap: 16px;
}

.event-card {
  display: grid;
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.025);
}

.event-card--featured {
  min-height: 548px;
  padding: 36px;
  background: linear-gradient(145deg, rgba(29, 91, 122, 0.88), rgba(7, 8, 9, 0.98) 72%);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}

.event-card-list {
  display: grid;
  gap: 16px;
}

.event-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.event-card__body {
  align-self: end;
  max-width: 760px;
  padding-block: 80px 44px;
}

.event-card__place {
  color: var(--gold-soft) !important;
  font-size: 11px !important;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-card h3 {
  margin-top: 22px;
  color: #fff;
  font-size: clamp(26px, 2.8vw, 52px);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.event-card:not(.event-card--featured) h3 {
  margin-top: 36px;
  font-size: 27px;
}

.event-card p,
.event-card small {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.55;
}

.event-card small {
  align-self: end;
}

.event-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.event-card__footer a {
  color: #fff;
  font-weight: 800;
}

.club-news-section {
  border-top: 1px solid var(--line);
}

.news-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 16px;
}

.news-card {
  display: grid;
  align-content: start;
  min-height: 370px;
  padding: 30px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.news-card--featured {
  min-height: 480px;
  padding: 38px;
  background: var(--paper-deep);
  box-shadow: var(--feature-shadow);
}

.news-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--stone);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.news-card h3 {
  margin-top: 62px;
  color: var(--ink);
  font-size: 27px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.news-card--featured h3 {
  max-width: 15ch;
  margin-top: 92px;
  font-size: clamp(38px, 3vw, 58px);
}

.news-card p {
  margin-top: 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.news-card a {
  align-self: end;
  width: max-content;
  margin-top: 42px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 800;
}

.join-hero {
  padding-block: 108px;
  background: #fff;
}

.join-hero > .frame {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.65fr);
  gap: clamp(50px, 8vw, 132px);
  align-items: stretch;
}

.join-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.join-hero__copy h1 {
  max-width: 15ch;
  margin-top: 22px;
  font-size: clamp(54px, 5.4vw, 92px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.join-hero__copy > p {
  max-width: 700px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.join-hero__card {
  min-height: 590px;
  padding: 36px;
  background: var(--ink);
  color: #fff;
  box-shadow: var(--feature-shadow);
}

.join-hero__card > span {
  color: var(--gold-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.join-hero__card h2 {
  margin-top: 60px;
  font-size: 38px;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.join-hero__card dl {
  display: grid;
  margin-top: 72px;
}

.join-hero__card dl div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding-block: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.join-hero__card dt {
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 800;
}

.join-hero__card dd {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}

.join-timeline .step {
  min-height: 286px;
}

.join-principles {
  background: #fff;
}

.join-principles__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.join-principles__grid article {
  min-height: 330px;
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.join-principles__grid span {
  color: var(--stone);
  font-size: 11px;
  font-weight: 800;
}

.join-principles__grid h3 {
  margin-top: 70px;
  font-size: 32px;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.join-principles__grid p {
  margin-top: 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.join-final {
  padding-block: 88px;
  background: var(--blue-deep);
  color: #fff;
}

.join-final .frame {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.join-final span {
  color: var(--gold-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.join-final h2 {
  margin-top: 14px;
  font-size: clamp(38px, 4vw, 64px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.join-final p {
  max-width: 620px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.66);
}

@media (max-width: 1279px) {
  .actions > .language-menu:not(.language-menu--mobile):not(.language-menu--footer) {
    display: none;
  }

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

  .events-showcase,
  .news-grid,
  .join-hero > .frame {
    grid-template-columns: 1fr;
  }

  .event-card--featured {
    min-height: 470px;
  }

  .news-card--featured {
    min-height: 420px;
  }

  .join-hero {
    padding-block: 76px;
  }

  .join-hero__card {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .language-menu__panel {
    position: fixed;
    right: 14px;
    bottom: 14px;
    left: 14px;
    top: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: auto;
    max-height: min(72vh, 620px);
    overflow-y: auto;
  }

  .language-menu--mobile .language-menu__panel,
  .language-menu--footer .language-menu__panel {
    position: absolute;
    right: auto;
    bottom: calc(100% + 8px);
    left: 0;
    width: 100%;
  }

  .partner-grid,
  .join-principles__grid {
    grid-template-columns: 1fr;
  }

  .partner-card {
    min-height: 220px;
    padding: 22px;
  }

  .events-showcase {
    gap: 12px;
  }

  .event-card,
  .event-card--featured {
    min-height: 0;
    padding: 22px;
  }

  .event-card__body {
    padding-block: 64px 34px;
  }

  .event-card__meta,
  .event-card__footer,
  .news-card__meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .news-grid {
    gap: 12px;
  }

  .news-card,
  .news-card--featured {
    min-height: 0;
    padding: 22px;
  }

  .news-card h3,
  .news-card--featured h3 {
    max-width: none;
    margin-top: 52px;
    font-size: 31px;
  }

  .join-hero {
    padding-block: 52px;
  }

  .join-hero > .frame {
    gap: 34px;
  }

  .join-hero__copy h1 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .join-hero__copy > p {
    font-size: 17px;
  }

  .join-hero__card,
  .join-principles__grid article {
    padding: 24px;
  }

  .join-final {
    padding-block: 58px;
  }

  .join-final .frame {
    display: grid;
  }
}

/* v8.7.15 — focused premium layout corrections
   Scope: hero principles, digital-pass cards, growth routes, editorial news,
   rules page and card alignment. No global redesign. */

/* Hero: long, approved labels must wrap cleanly without colliding. */
.hero {
  min-height: 930px;
}

.hero .frame {
  min-height: 930px;
}

.stats {
  width: 780px;
  max-width: 54.5vw;
  column-gap: clamp(14px, 1.4vw, 24px);
}

.stat {
  grid-template-rows: minmax(3.15em, auto) minmax(4.25em, auto);
}

.stat b {
  max-width: 13ch;
  font-size: clamp(20px, 1.55vw, 27px);
  line-height: 1.08;
  white-space: normal;
  overflow-wrap: normal;
  text-wrap: balance;
}

.stat span {
  max-width: 25ch;
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.42;
  text-wrap: pretty;
}

/* Digital pass: the four numbers now follow the same hierarchy as Opportunities. */
.token-mini {
  display: grid;
  grid-template-rows: auto 1fr auto;
  justify-content: stretch;
  min-height: 322px;
}

.token-mini > .token-mini__top {
  display: flex;
  grid-template-rows: none;
  align-items: center;
  align-content: initial;
}

.token-mini > .card-copy {
  display: grid;
  grid-template-rows: minmax(3.1em, auto) 1fr;
  align-content: end;
  padding-top: 34px;
}

.token-mini h3 {
  max-width: 12ch;
  min-height: 2.35em;
  margin: 0 0 13px;
  font-size: clamp(20px, 1.65vw, 24px);
  line-height: 1.12;
  overflow-wrap: normal;
  text-wrap: balance;
}

.token-mini .card-footer {
  min-height: 3.6em;
}

/* Keep six core opportunities; show commercial growth as a connected next layer. */
.growth-bridge {
  display: grid;
  grid-template-columns: minmax(0, .82fr) repeat(2, minmax(0, 1fr));
  margin-top: 28px;
  border: 1px solid var(--line);
  background: #fffdf8;
  box-shadow: 0 24px 64px rgba(17, 20, 22, .055);
}

.growth-bridge__intro,
.growth-route {
  min-width: 0;
  padding: 34px;
}

.growth-bridge__intro {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--ink);
  color: #fff;
}

.growth-bridge__intro > span,
.growth-route > span {
  color: var(--stone);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.growth-bridge__intro > span {
  color: var(--gold-soft);
}

.growth-bridge__intro h3 {
  max-width: 14ch;
  margin-top: 58px;
  font-size: clamp(29px, 2.35vw, 40px);
  font-weight: 850;
  line-height: 1.02;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.growth-bridge__intro p {
  margin-top: 28px;
  color: rgba(255, 255, 255, .62);
  font-size: 14px;
  line-height: 1.58;
}

.growth-route {
  display: grid;
  grid-template-rows: auto minmax(3.2em, auto) 1fr auto;
  border-left: 1px solid var(--line);
}

.growth-route h3 {
  max-width: 15ch;
  margin-top: 42px;
  font-size: clamp(25px, 2vw, 32px);
  font-weight: 850;
  line-height: 1.12;
  letter-spacing: -.035em;
  text-transform: uppercase;
  text-wrap: balance;
}

.growth-route p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
  text-wrap: pretty;
}

.growth-route small {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--stone);
  font-size: 11px;
  font-weight: 750;
  line-height: 1.4;
  letter-spacing: .04em;
}

/* Card rhythm: equal title/body zones eliminate the visual "staircase". */
.op-card h3 {
  min-height: 2.45em;
}

.op-card > p:not(.card-footer) {
  min-height: 6.25em;
}

.format-card > div:not(.format-meta) {
  grid-template-rows: minmax(3em, auto) 1fr;
}

.format-card h3 {
  min-height: 2.35em;
  text-wrap: balance;
}

.life-card h3 {
  min-height: 3.5em;
}

.partner-card {
  grid-template-rows: auto minmax(3.2em, auto) 1fr;
}

.partner-card h3 {
  min-height: 2em;
  text-wrap: balance;
}

.service-node > div {
  display: grid;
  grid-template-rows: minmax(3.1em, auto) 1fr;
}

.service-node b {
  min-height: 2.7em;
  text-wrap: balance;
}

/* News: editorial lead story + two concise newsroom briefs. */
.club-news-section {
  overflow: hidden;
  background: #f4f0e7;
}

.news-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(320px, .68fr);
  grid-template-rows: repeat(2, minmax(245px, auto));
  gap: 0;
  border: 1px solid var(--line);
  background: #fff;
}

.news-card {
  position: relative;
  min-height: 0;
  padding: 30px 34px;
  border: 0;
  border-left: 1px solid var(--line);
  background: #fff;
  box-shadow: none;
}

.news-card:nth-child(2) {
  border-bottom: 1px solid var(--line);
}

.news-card--featured {
  grid-row: 1 / 3;
  min-height: 540px;
  padding: 44px;
  overflow: hidden;
  border-left: 0;
  background:
    radial-gradient(circle at 82% 20%, rgba(201, 168, 78, .15), transparent 30%),
    linear-gradient(145deg, #202326 0%, #101214 72%);
  color: #fff;
}

.news-card--featured::after {
  content: "MBN";
  position: absolute;
  right: -12px;
  bottom: -34px;
  color: rgba(255, 255, 255, .035);
  font-size: clamp(130px, 16vw, 260px);
  font-weight: 900;
  line-height: .8;
  letter-spacing: -.08em;
  pointer-events: none;
}

.news-card__meta {
  position: relative;
  z-index: 1;
}

.news-card--featured .news-card__meta {
  color: var(--gold-soft);
}

.news-card h3 {
  max-width: 23ch;
  min-height: 2.3em;
  margin-top: 38px;
  font-size: clamp(24px, 1.9vw, 30px);
  line-height: 1.12;
  text-wrap: balance;
}

.news-card--featured h3 {
  position: relative;
  z-index: 1;
  max-width: 14ch;
  min-height: 0;
  margin-top: auto;
  padding-top: 90px;
  color: #fff;
  font-size: clamp(40px, 3.7vw, 64px);
  line-height: 1;
}

.news-card p {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.58;
  text-wrap: pretty;
}

.news-card--featured p {
  max-width: 54ch;
  color: rgba(255, 255, 255, .66);
  font-size: 15px;
}

.news-card--featured a {
  position: relative;
  z-index: 1;
  color: #fff;
}

/* Join page: substantive, readable rules. */
.join-rules {
  border-top: 1px solid var(--line);
}

.join-rules__layout {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
  border: 1px solid var(--line);
  background: #fff;
}

.join-rules__summary {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 610px;
  padding: 40px;
  background: var(--ink);
  color: #fff;
}

.join-rules__summary > span {
  color: var(--gold-soft);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .16em;
}

.join-rules__summary h3 {
  max-width: 12ch;
  margin-top: auto;
  font-size: clamp(36px, 3.2vw, 54px);
  font-weight: 850;
  line-height: 1.02;
  letter-spacing: -.05em;
  text-transform: uppercase;
  text-wrap: balance;
}

.join-rules__summary p {
  max-width: 39ch;
  margin-top: 26px;
  color: rgba(255, 255, 255, .62);
  font-size: 15px;
  line-height: 1.58;
}

.join-rules__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.join-rules__list article {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 20px;
  min-height: 202px;
  padding: 28px;
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.join-rules__list article:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.join-rules__list article > span {
  color: var(--stone);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .16em;
}

.join-rules__list h3 {
  min-height: 2.45em;
  font-size: 21px;
  font-weight: 850;
  line-height: 1.18;
  letter-spacing: -.025em;
  text-transform: uppercase;
  text-wrap: balance;
}

.join-rules__list p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  text-wrap: pretty;
}

.join-rules__note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

@media (max-width: 1279px) {
  .hero,
  .hero .frame {
    min-height: 900px;
  }

  .stats {
    width: 720px;
    max-width: 57vw;
  }

  .growth-bridge {
    grid-template-columns: 1fr 1fr;
  }

  .growth-bridge__intro {
    grid-column: 1 / -1;
    min-height: 270px;
  }

  .growth-bridge__intro h3 {
    margin-top: 48px;
  }

  .news-grid {
    grid-template-columns: minmax(0, 1.18fr) minmax(300px, .82fr);
  }

  .join-rules__layout {
    grid-template-columns: 1fr;
  }

  .join-rules__summary {
    min-height: 420px;
  }

  .join-rules__summary h3 {
    max-width: 15ch;
  }
}

@media (min-width: 761px) and (max-width: 959px) {
  .hero,
  .hero .frame {
    min-height: 1040px;
  }

  .stats {
    width: 100%;
    max-width: none;
  }

  .stat b {
    font-size: 21px;
  }

  .news-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .news-card,
  .news-card:nth-child(2) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .news-card--featured {
    grid-row: auto;
    min-height: 470px;
    border-top: 0;
  }
}

@media (max-width: 760px) {
  .hero,
  .hero .frame {
    min-height: 0;
  }

  .stats {
    width: 100%;
    max-width: none;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .stat {
    grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
    grid-template-rows: auto;
    gap: 18px;
    padding-block: 18px;
    border-top: 1px solid var(--line);
  }

  .stat:last-child {
    border-bottom: 1px solid var(--line);
  }

  .stat b,
  .stat span {
    max-width: none;
    min-height: 0;
    margin-top: 0;
  }

  .stat b {
    font-size: 19px;
  }

  .growth-bridge {
    grid-template-columns: 1fr;
  }

  .growth-bridge__intro,
  .growth-route {
    padding: 24px;
  }

  .growth-bridge__intro {
    grid-column: auto;
    min-height: 320px;
  }

  .growth-route {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .growth-route h3 {
    min-height: 0;
    margin-top: 38px;
    font-size: 27px;
  }

  .token-mini,
  .token-mini .card-footer,
  .op-card h3,
  .op-card > p:not(.card-footer),
  .format-card h3,
  .life-card h3,
  .partner-card h3,
  .service-node b {
    min-height: 0;
  }

  .news-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .news-card,
  .news-card:nth-child(2) {
    border-left: 0;
    border-top: 1px solid var(--line);
    border-bottom: 0;
  }

  .news-card--featured {
    grid-row: auto;
    min-height: 500px;
    padding: 28px;
    border-top: 0;
  }

  .news-card h3,
  .news-card--featured h3 {
    min-height: 0;
    margin-top: 44px;
    padding-top: 0;
    font-size: 30px;
  }

  .news-card--featured h3 {
    margin-top: auto;
    padding-top: 100px;
    font-size: clamp(38px, 11vw, 50px);
  }

  .join-rules__summary {
    min-height: 470px;
    padding: 26px;
  }

  .join-rules__list {
    grid-template-columns: 1fr;
  }

  .join-rules__list article,
  .join-rules__list article:nth-last-child(-n + 2) {
    min-height: 0;
    padding: 24px;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .join-rules__list article:last-child {
    border-bottom: 0;
  }

  .join-rules__list h3 {
    min-height: 0;
  }
}

/* Join-page mobile min-content containment. */
.join-page .join-hero__copy,
.join-page .join-hero__card,
.join-page .section-head > * {
  min-width: 0;
}

@media (max-width: 760px) {
  .join-page .join-hero > .frame,
  .join-page .section-head {
    grid-template-columns: minmax(0, 1fr);
  }

  .join-page .join-hero__copy h1,
  .join-page .section-title {
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .join-page .join-hero__copy h1 {
    font-size: clamp(38px, 10.5vw, 52px);
  }
}

@media (max-width: 760px) {
  .stat {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }

  .join-rules__summary h3 {
    max-width: 12ch;
    font-size: clamp(34px, 10vw, 42px);
  }
}

/* ========================================================================== 
   MBN 8.7.17 — precise restoration
   Keeps the approved 8.7.16 hero and typography improvements, while restoring
   the original connected-border card system from the membership section onward.
   ========================================================================== */

:where(.section-title, .section-copy, .op-card h3, .format-card h3, .life-card h3,
  .partner-card h3, .service-node b, .event-card h3, .news-card h3,
  .join-rules__list h3, .join-principles__grid h3, .step h3, .form-title) {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: auto;
  text-wrap: balance;
}

.section-head {
  gap: clamp(38px, 4.2vw, 72px);
  margin-bottom: 46px;
  padding-top: 34px;
  border-top-width: 1px;
}

.section-title {
  max-width: 17ch;
  font-size: clamp(38px, 3.25vw, 58px);
  line-height: 1.04;
  letter-spacing: -.046em;
}

.section-copy {
  max-width: 51ch;
  font-size: clamp(16px, 1.05vw, 19px);
  line-height: 1.6;
}

/* Hero remains the only newly composed visual system. */
.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 26%, rgba(201, 168, 78, .10), transparent 24%),
    radial-gradient(circle at 12% 86%, rgba(35, 101, 105, .055), transparent 30%),
    #fff;
}

.hero::after {
  content: "MBN";
  position: absolute;
  right: -1.5vw;
  bottom: -3.5vw;
  color: rgba(17, 19, 21, .025);
  font-size: clamp(190px, 26vw, 420px);
  font-weight: 900;
  line-height: .72;
  letter-spacing: -.09em;
  pointer-events: none;
}

.hero-copy {
  width: 930px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(100%, 706px);
  margin-bottom: 22px;
  color: #6f6f6f;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero-eyebrow::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(17, 19, 21, .16);
}

.hero-eyebrow span:last-child {
  color: var(--stone);
}

.hero-rule {
  display: none;
}

.stats {
  position: relative;
  gap: 0;
  width: 730px;
  max-width: 50.8vw;
  margin-top: 34px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(17, 19, 21, .10);
  border-radius: 22px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 24px 65px rgba(17, 19, 21, .07);
  backdrop-filter: blur(18px);
}

.stats::before {
  content: none;
}

.stat {
  grid-template-rows: minmax(2.5em, auto) minmax(3.1em, auto);
  padding: 16px 18px 10px;
  border-left: 1px solid rgba(17, 19, 21, .09);
}

.stat:first-child {
  border-left: 0;
}

.stat b {
  max-width: 18ch;
  font-size: clamp(20px, 1.45vw, 27px);
  line-height: 1.08;
  white-space: normal;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: auto;
  text-wrap: balance;
}

.stat span {
  max-width: 25ch;
  font-size: 13px;
  line-height: 1.45;
}

.phone-wrap {
  filter: drop-shadow(0 34px 38px rgba(0, 0, 0, .12)) drop-shadow(48px 30px 72px rgba(0, 0, 0, .07));
}

/* /join/ editorial text space in the restored border-grid language. */
.join-rules__editorial {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  margin-top: 18px;
  border: 1px solid var(--line);
  background: #fff;
}

.join-rules__editorial-head,
.join-rules__editorial-copy {
  min-width: 0;
  padding: 40px;
}

.join-rules__editorial-head {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  border-right: 1px solid var(--line);
  background: var(--paper);
}

.join-rules__editorial-head > span {
  color: var(--stone);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .17em;
}

.join-rules__editorial-head h3 {
  max-width: 12ch;
  margin-top: auto;
  font-size: clamp(30px, 2.4vw, 42px);
  font-weight: 850;
  line-height: 1.04;
  letter-spacing: -.045em;
  text-transform: uppercase;
  text-wrap: balance;
}

.join-rules__editorial-head p {
  max-width: 38ch;
  margin-top: 22px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.58;
}

.join-rules__editorial-copy {
  columns: 2 260px;
  column-gap: 34px;
  color: #4f5153;
  font-size: 15px;
  line-height: 1.72;
}

.join-rules__editorial-copy p {
  margin: 0 0 1.2em;
  break-inside: avoid;
}

/* Contrast corrections retained from QA; geometry stays in the original system. */
.join-timeline .step {
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 12%, rgba(201, 168, 78, .08), transparent 28%),
    rgba(255, 255, 255, .92);
}

.join-timeline .step h3 {
  color: var(--ink);
}

.join-timeline .step > div > p:not(.step-note) {
  color: var(--muted);
}

.join-timeline .step-label,
.join-timeline .step-note {
  color: var(--stone);
}

.partner-card--lead {
  background:
    radial-gradient(circle at 82% 16%, rgba(201, 168, 78, .16), transparent 30%),
    var(--ink);
  color: #fff;
}

.partner-card--lead h3 {
  color: #fff;
}

.partner-card--lead p {
  color: rgba(255, 255, 255, .64);
}

@media (max-width: 1279px) {
  .stats {
    width: 720px;
    max-width: 57vw;
  }

  .join-rules__editorial {
    grid-template-columns: 1fr;
  }

  .join-rules__editorial-head {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .join-rules__editorial-head h3 {
    margin-top: 54px;
  }
}

@media (max-width: 959px) {
  .section-title {
    font-size: clamp(36px, 6vw, 50px);
  }

  .stats {
    max-width: none;
  }

  .stat b {
    font-size: 21px;
  }
}

@media (max-width: 760px) {
  .section-head {
    gap: 22px;
    margin-bottom: 34px;
    padding-top: 26px;
  }

  .section-title {
    max-width: 15ch;
    font-size: clamp(32px, 9.2vw, 43px);
    line-height: 1.06;
  }

  .section-copy {
    font-size: 16px;
  }

  .hero::after {
    right: -14vw;
    bottom: 10px;
    font-size: 210px;
  }

  .hero-copy {
    width: auto;
    max-width: 100%;
  }

  .hero-title,
  .hero-title .line-1,
  .hero-title .line-2,
  .hero-sub,
  .hero-note,
  .hero-cta {
    max-width: 100%;
  }

  .hero-title .line-1,
  .hero-title .line-2 {
    white-space: normal;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: auto;
  }

  .hero-eyebrow {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 7px 12px;
    margin-bottom: 18px;
    line-height: 1.35;
  }

  .hero-eyebrow::after {
    flex-basis: 100%;
  }

  .stats {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    padding: 12px 18px;
    border-radius: 18px;
  }

  .stat {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto;
    gap: 7px;
    padding: 17px 2px;
    border-top: 1px solid rgba(17, 19, 21, .09);
    border-left: 0;
  }

  .stat:first-child {
    border-top: 0;
  }

  .stat b {
    max-width: 18ch;
    font-size: 18px;
  }

  .stat span {
    max-width: none;
    font-size: 12px;
  }

  .join-rules__editorial-head,
  .join-rules__editorial-copy {
    padding: 26px;
  }

  .join-rules__editorial-copy {
    columns: 1;
    font-size: 14px;
  }

  :where(.op-card h3, .format-card h3, .life-card h3, .partner-card h3,
    .service-node b, .event-card h3, .news-card h3, .join-rules__list h3,
    .join-principles__grid h3, .step h3) {
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: auto;
  }

  .legal-page,
  .legal-page .frame,
  .legal-page h1 {
    min-width: 0;
    max-width: 100%;
  }

  .legal-page h1 {
    font-size: clamp(30px, 9.4vw, 42px);
    line-height: 1.04;
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: auto;
  }
}


/* ========================================================================== 
   MBN 8.7.18 — two-point precision patch
   Scope only: compact /join/ hero heading and rectilinear hero principles rail.
   ========================================================================== */

/* /join/: shorter headline with quieter scale. */
.join-page .join-hero__copy h1 {
  max-width: 16ch;
  font-size: clamp(42px, 4vw, 64px);
  line-height: 1;
  letter-spacing: -0.052em;
}

/* Home hero: replace the rounded glass card above square buttons with an
   architectural, rectilinear information rail using the same border logic. */
.hero .stats {
  width: 668px;
  max-width: 50.8vw;
  padding: 0;
  overflow: visible;
  border: 1px solid rgba(17, 19, 21, .14);
  border-radius: 0;
  background: rgba(255, 255, 255, .62);
  box-shadow: none;
  backdrop-filter: none;
}

.hero .stat {
  padding: 20px 18px 18px;
  border-left-color: rgba(17, 19, 21, .12);
}

@media (max-width: 760px) {
  .join-page .join-hero__copy h1 {
    max-width: 15ch;
    font-size: clamp(34px, 8.8vw, 42px);
    line-height: 1.02;
  }

  .hero .stats {
    width: 100%;
    max-width: 100%;
    padding: 0 18px;
    border-radius: 0;
  }

  .hero .stat {
    padding: 17px 0;
  }
}


/* ========================================================================== 
   MBN 8.7.19 — rejected-concept correction
   Scope only: shorter /join/ heading and an open editorial hero index.
   ========================================================================== */

/* /join/: two-word heading; exactly 1px below the previous desktop limits. */
.join-page .join-hero__copy h1 {
  max-width: 13ch;
  font-size: clamp(41px, 4vw, 63px);
  line-height: 1;
  letter-spacing: -0.052em;
}

/* Home hero: no card or rail above the square CTAs. The three principles become
   an open editorial index connected by one signal line and precise nodes. */
.hero .stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.25vw, 34px);
  width: 706px;
  max-width: 49.2vw;
  margin-top: 36px;
  padding: 27px 0 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.hero .stats::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, #b69a55 0 74px, rgba(17, 19, 21, .18) 74px 100%);
}

.hero .stat {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(2.5em, auto) minmax(3.1em, auto);
  align-content: start;
  min-width: 0;
  padding: 0;
  border: 0;
}

.hero .stat::before {
  color: #8d7642;
  font-size: 9px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: .16em;
}

.hero .stat:nth-child(1)::before { content: "01"; }
.hero .stat:nth-child(2)::before { content: "02"; }
.hero .stat:nth-child(3)::before { content: "03"; }

.hero .stat::after {
  content: "";
  position: absolute;
  top: -31px;
  left: 0;
  width: 6px;
  height: 6px;
  background: #b69a55;
}

.hero .stat b {
  max-width: 16ch;
  margin-top: 13px;
}

.hero .stat span {
  margin-top: 10px;
}

@media (max-width: 760px) {
  .join-page .join-hero__copy h1 {
    max-width: 13ch;
    font-size: clamp(33px, 8.8vw, 41px);
    line-height: 1.02;
  }

  .hero .stats {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    width: 100%;
    max-width: 100%;
    margin-top: 30px;
    padding: 0 0 0 24px;
  }

  .hero .stats::before {
    top: 0;
    right: auto;
    bottom: 0;
    left: 3px;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, #b69a55 0 54px, rgba(17, 19, 21, .16) 54px 100%);
  }

  .hero .stat {
    grid-template-columns: 34px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 12px;
    padding: 15px 0 17px;
  }

  .hero .stat + .stat {
    border-top: 1px solid rgba(17, 19, 21, .10);
  }

  .hero .stat::before {
    grid-row: 1 / span 2;
    align-self: start;
    padding-top: 5px;
  }

  .hero .stat::after {
    top: 20px;
    left: -24px;
  }

  .hero .stat b {
    grid-column: 2;
    max-width: none;
    margin-top: 0;
  }

  .hero .stat span {
    grid-column: 2;
    max-width: 28ch;
  }
}


/* ========================================================================== 
   MBN 8.7.20 — invitation-ledger hero correction
   Scope only: home hero invitation system. Replaces the rejected gold signal
   line with a rectilinear typographic gate built around the approved phrase.
   ========================================================================== */
.hero .hero-invite {
  width: 706px;
  max-width: 49.2vw;
  margin-top: 34px;
}

.hero .hero-invite__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px auto;
  align-items: stretch;
  min-height: 54px;
  border-top: 1px solid #111;
  border-bottom: 1px solid rgba(17, 19, 21, 0.22);
}

.hero .hero-invite__label,
.hero .hero-invite__access {
  display: flex;
  align-items: center;
  min-width: 0;
  font-size: 11px;
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: 0.145em;
  text-transform: uppercase;
}

.hero .hero-invite__label {
  color: #111;
  padding-right: 20px;
}

.hero .hero-invite__divider {
  display: grid;
  place-items: center;
  background: #111;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.hero .hero-invite__access {
  padding-left: 20px;
  color: #656565;
  white-space: nowrap;
}

.hero .hero-invite .stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  max-width: none;
  margin-top: 0;
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.hero .hero-invite .stats::before {
  content: none;
}

.hero .hero-invite .stat {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(2.5em, auto) minmax(3.1em, auto);
  align-content: start;
  min-width: 0;
  padding: 22px 24px 0 0;
  border: 0;
  border-right: 1px solid rgba(17, 19, 21, 0.13);
}

.hero .hero-invite .stat + .stat {
  padding-left: 24px;
}

.hero .hero-invite .stat:last-child {
  padding-right: 0;
  border-right: 0;
}

.hero .hero-invite .stat::before {
  color: #777;
  font-size: 9px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0.16em;
}

.hero .hero-invite .stat::after {
  content: none;
}

.hero .hero-invite .stat b {
  max-width: 16ch;
  margin-top: 13px;
}

.hero .hero-invite .stat span {
  margin-top: 10px;
}

@media (max-width: 760px) {
  .hero .hero-invite {
    width: 100%;
    max-width: 100%;
    margin-top: 28px;
  }

  .hero .hero-invite__head {
    grid-template-columns: minmax(0, 1fr) 38px;
    grid-template-rows: auto auto;
    min-height: 0;
  }

  .hero .hero-invite__label,
  .hero .hero-invite__access {
    grid-column: 1;
    padding: 12px 14px 12px 0;
    font-size: 10px;
    white-space: normal;
  }

  .hero .hero-invite__label {
    grid-row: 1;
  }

  .hero .hero-invite__access {
    grid-row: 2;
    border-top: 1px solid rgba(17, 19, 21, 0.12);
    color: #676767;
  }

  .hero .hero-invite__divider {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .hero .hero-invite .stats {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero .hero-invite .stat,
  .hero .hero-invite .stat + .stat,
  .hero .hero-invite .stat:last-child {
    grid-template-columns: 34px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 12px;
    padding: 16px 0 17px;
    border-right: 0;
    border-bottom: 1px solid rgba(17, 19, 21, 0.11);
  }

  .hero .hero-invite .stat:last-child {
    border-bottom: 0;
  }

  .hero .hero-invite .stat::before {
    grid-row: 1 / span 2;
    align-self: start;
    padding-top: 5px;
  }

  .hero .hero-invite .stat b {
    grid-column: 2;
    max-width: none;
    margin-top: 0;
  }

  .hero .hero-invite .stat span {
    grid-column: 2;
    max-width: 28ch;
  }
}

/* ========================================================================== 
   MBN 8.7.21 — translation-safe hero geometry
   Scope only: prevent translated hero content from colliding with the phone
   artwork across the complete 320–1920px responsive range.
   ========================================================================== */
.hero-title {
  min-width: 0;
  max-width: 100%;
  white-space: normal;
}

.hero-title .line-1,
.hero-title .line-2 {
  min-width: 0;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
  text-wrap: balance;
}

.hero .hero-invite,
.hero .hero-invite__head,
.hero .hero-invite .stats,
.hero .hero-invite .stat,
.hero .hero-invite .stat b,
.hero .hero-invite .stat span {
  min-width: 0;
}

.hero .hero-invite__label,
.hero .hero-invite__access,
.hero .hero-invite .stat span {
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}

@media (min-width: 761px) {
  html:not([lang="ru"]) .hero .hero-invite .stat {
    padding-right: 16px;
  }

  html:not([lang="ru"]) .hero .hero-invite .stat + .stat {
    padding-left: 16px;
  }

  html:not([lang="ru"]) .hero .hero-invite .stat b {
    max-width: none;
    font-size: clamp(18px, 1.18vw, 20px);
    overflow-wrap: normal;
    word-break: normal;
    hyphens: auto;
  }
}

@media (min-width: 761px) and (max-width: 1279px) {
  .hero .hero-invite {
    width: 100%;
    max-width: 100%;
  }
}

@media (min-width: 1280px) {
  .hero-copy {
    width: min(930px, 61vw);
    max-width: min(930px, 61vw);
  }

  .hero-title {
    width: 706px;
    max-width: 49.2vw;
  }

  html:not([lang="ru"]) .hero-title .line-1,
  html:not([lang="ru"]) .hero-title .line-2 {
    font-size: clamp(48px, 3.42vw, 68px);
    line-height: 1.02;
  }

  html[lang="de"] .hero-title .line-1,
  html[lang="de"] .hero-title .line-2 {
    font-size: clamp(47px, 3.34vw, 66px);
  }
}

@media (min-width: 1280px) and (max-width: 1439px) {
  .phone-wrap {
    right: -140px;
  }

  .hero,
  .hero .frame {
    min-height: 990px;
  }
}

@media (min-width: 1280px) and (max-width: 1519px) {
  .hero-copy {
    width: min(860px, 58.5vw);
    max-width: min(860px, 58.5vw);
  }

  .hero .hero-invite {
    max-width: 56vw;
  }
}

@media (min-width: 1440px) and (max-width: 1799px) {
  .hero,
  .hero .frame {
    min-height: 960px;
  }
}

@media (min-width: 1800px) {
  .hero,
  .hero .frame {
    min-height: 1020px;
  }
}

@media (max-width: 1279px) {
  .hero-title .line-1,
  .hero-title .line-2 {
    white-space: normal;
  }
}

@media (max-width: 420px) {
  .hero-title .line-1,
  .hero-title .line-2 {
    font-size: clamp(32px, 10.1vw, 39px);
    line-height: 1.05;
  }

  .hero .hero-invite__label,
  .hero .hero-invite__access {
    letter-spacing: .11em;
  }
}

/* MBN Club 8.7.25: connected events + Bitrix-driven projects. */
.events-showcase {
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.events-showcase > .event-card,
.event-card-list > .event-card {
  border: 0;
}

.events-showcase > .event-card--featured {
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: none;
}

.event-card-list {
  gap: 0;
}

.event-card-list > .event-card + .event-card {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.event-card h3 a,
.partner-card h3 a {
  color: inherit;
  text-decoration: none;
}

.club-projects-section {
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: #f4f0e7;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: #fff;
}

.project-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 330px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.project-card--lead {
  background: var(--ink);
  color: #fff;
}

.project-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--stone);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.project-card--lead .project-card__meta {
  color: var(--gold-soft);
}

.project-card__body {
  align-self: center;
  padding-block: 44px;
}

.project-card h3 {
  max-width: 16ch;
  color: inherit;
  font-size: clamp(30px, 2.6vw, 48px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.project-card p {
  max-width: 54ch;
  margin-top: 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.project-card--lead p {
  color: rgba(255, 255, 255, 0.64);
}

.project-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--stone);
  font-size: 12px;
}

.project-card--lead .project-card__footer {
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.62);
}

.project-card__footer a {
  color: inherit;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.dynamic-content-notice {
  grid-column: 1 / -1;
  margin: 0;
  padding: 24px;
  border: 1px solid currentColor;
  color: inherit;
  font-size: 14px;
}

@media (max-width: 1279px) {
  .events-showcase > .event-card--featured {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }
}

@media (max-width: 760px) {
  .events-showcase {
    gap: 0;
  }

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

  .project-card {
    min-height: 280px;
    padding: 24px;
  }

  .project-card__body {
    padding-block: 38px;
  }

  .project-card__footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

.events-showcase > .event-card:only-child {
  grid-column: 1 / -1;
}

.news-grid > .news-card--featured:only-child {
  grid-column: 1 / -1;
}

/* ==========================================================================
   MBN 8.7.28 — compact secondary-page headings\n   Scope: top-level headings on /join/ and legal pages only.
   ========================================================================== */
.join-page .join-hero__copy h1 {
  max-width: 13ch;
  font-size: clamp(38px, 3.6vw, 56px);
  line-height: 1.01;
}

.legal-page h1 {
  max-width: 18ch;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.04;
}

@media (max-width: 760px) {
  .join-page .join-hero__copy h1 {
    font-size: clamp(31px, 8vw, 38px);
  }

  .legal-page h1 {
    font-size: clamp(28px, 8.6vw, 36px);
  }
}

/* ========================================================================== 
   MBN 8.7.31 — card-state contrast + Bitrix public-edit grid stability
   Scope: token/access card surfaces and component wrappers only.
   ========================================================================== */

/* The Digital Membership cards are white at rest. */
.token-stack .token-mini {
  background: #fff;
}

/* The Request-to-Decision cards use the former membership surface at rest. */
.access-list .access-item {
  background: var(--paper);
}

/* Preserve the approved hover treatments and keep them visibly distinct. */
@media (hover: hover) and (pointer: fine) {
  .token-stack .token-mini:hover {
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.48);
    box-shadow: inset 0 -2px 0 rgba(199, 163, 70, 0.58);
  }

  .access-list .access-item:hover {
    z-index: 2;
    border-top-color: rgba(117, 111, 97, 0.52);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(247, 245, 239, 0.30));
    box-shadow: inset 0 -2px 0 rgba(199, 163, 70, 0.58);
  }
}

/*
 * Bitrix adds component/edit-area wrappers in public edit mode. These wrappers
 * retain a real box for Hermitage controls, while reproducing the original
 * grid so cards do not collapse into a single vertical column.
 */
.events-showcase > div:has(.event-card),
.events-showcase > div:has(.event-card) > div:has(.event-card) {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.75fr);
  gap: 0;
  width: 100%;
  min-width: 0;
}

.events-showcase > div:has(.event-card) > .event-card,
.events-showcase > div:has(.event-card) > div:has(.event-card) > .event-card,
.events-showcase > div:has(.event-card) .event-card-list > .event-card {
  border: 0;
}

.events-showcase > div:has(.event-card) > .event-card--featured,
.events-showcase > div:has(.event-card) > div:has(.event-card) > .event-card--featured {
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: none;
}

.news-grid > div:has(.news-card),
.news-grid > div:has(.news-card) > div:has(.news-card) {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.32fr) minmax(320px, 0.68fr);
  grid-template-rows: repeat(2, minmax(245px, auto));
  gap: 0;
  width: 100%;
  min-width: 0;
}

.project-grid > div:has(.project-card),
.project-grid > div:has(.project-card) > div:has(.project-card) {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  min-width: 0;
}

.partner-grid > div:has(.partner-card),
.partner-grid > div:has(.partner-card) > div:has(.partner-card) {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  min-width: 0;
}

@media (max-width: 1279px) {
  .events-showcase > div:has(.event-card),
  .events-showcase > div:has(.event-card) > div:has(.event-card) {
    grid-template-columns: 1fr;
  }

  .events-showcase > div:has(.event-card) > .event-card--featured,
  .events-showcase > div:has(.event-card) > div:has(.event-card) > .event-card--featured {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .partner-grid > div:has(.partner-card),
  .partner-grid > div:has(.partner-card) > div:has(.partner-card) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 761px) and (max-width: 959px) {
  .news-grid > div:has(.news-card),
  .news-grid > div:has(.news-card) > div:has(.news-card) {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}

@media (max-width: 760px) {
  .news-grid > div:has(.news-card),
  .news-grid > div:has(.news-card) > div:has(.news-card),
  .project-grid > div:has(.project-card),
  .project-grid > div:has(.project-card) > div:has(.project-card),
  .partner-grid > div:has(.partner-card),
  .partner-grid > div:has(.partner-card) > div:has(.partner-card) {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}

/* ========================================================================== 
   MBN 8.7.32 — exact events/news geometry in Bitrix public edit mode
   Scope: stable internal layout wrappers of the two affected components only.
   ========================================================================== */

/*
 * The component markup now owns the grid. Bitrix service wrappers remain
 * ordinary full-width blocks and therefore cannot become grid items or alter
 * the approved card proportions in public edit mode.
 */
.events-showcase,
.news-grid {
  display: block;
}

.events-showcase > div:has(.events-showcase__items),
.events-showcase > div:has(.events-showcase__items) > div:has(.events-showcase__items),
.news-grid > div:has(.news-grid__items),
.news-grid > div:has(.news-grid__items) > div:has(.news-grid__items) {
  display: block;
  grid-column: auto;
  grid-template-columns: none;
  grid-template-rows: none;
  width: 100%;
  min-width: 0;
}

.events-showcase div.events-showcase__items {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.75fr);
  gap: 0;
  width: 100%;
  min-width: 0;
}

.events-showcase div.events-showcase__items > div.event-card-list {
  display: grid;
  grid-column: auto;
  grid-template-columns: none;
  grid-template-rows: none;
  width: auto;
  min-width: 0;
}

.events-showcase div.events-showcase__items > .event-card {
  border: 0;
}

.events-showcase div.events-showcase__items > .event-card--featured {
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: none;
}

.events-showcase .events-showcase__items .event-card-list > .event-card + .event-card {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.events-showcase div.events-showcase__items > .event-card:only-child {
  grid-column: 1 / -1;
}

.news-grid div.news-grid__items {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(320px, 0.68fr);
  grid-template-rows: repeat(2, minmax(245px, auto));
  gap: 0;
  width: 100%;
  min-width: 0;
}

.news-grid div.news-grid__items > .news-card--featured:only-child {
  grid-column: 1 / -1;
}

@media (max-width: 1279px) {
  .events-showcase div.events-showcase__items {
    grid-template-columns: 1fr;
  }

  .events-showcase div.events-showcase__items > .event-card--featured {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .news-grid div.news-grid__items {
    grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  }
}

@media (min-width: 761px) and (max-width: 959px) {
  .news-grid div.news-grid__items {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}

@media (max-width: 760px) {
  .news-grid div.news-grid__items {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}


/* MBN v9.0.36 — R52 cookie banner visual integration. CSS-only; vendor markup/behaviour untouched. */
.r52-a-cookies {
  z-index: 1200 !important;
  width: min(560px, calc(100vw - 48px)) !important;
  max-width: 560px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  outline: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--ink) !important;
  font-family: "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif !important;
  text-align: left !important;
}
.r52-a-cookies.r52-a-cookies--left {
  left: 24px !important;
  right: auto !important;
  bottom: 24px !important;
}
.r52-a-cookies__inner {
  display: grid !important;
  gap: 18px !important;
  padding: 26px 28px !important;
  border: 1px solid var(--line) !important;
  border-radius: 0 !important;
  background: var(--paper) !important;
  box-shadow: var(--surface-shadow) !important;
  color: var(--ink) !important;
}
.r52-a-cookies__body,
.r52-a-cookies__body p,
.r52-a-cookies__settings,
.r52-a-cookies__s-title,
.r52-a-cookies__s-body {
  color: var(--ink) !important;
}
.r52-a-cookies__body p {
  max-width: 31em !important;
  margin: 0 !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
  letter-spacing: -.012em !important;
}
.r52-a-cookies__settings {
  margin-top: 18px !important;
  padding-top: 16px !important;
  border-top: 1px solid var(--line) !important;
}
.r52-a-cookies__s-title {
  margin: 0 0 14px !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  line-height: 1.3 !important;
  letter-spacing: .09em !important;
  text-transform: uppercase !important;
}
.r52-a-cookies__form {
  display: grid !important;
  gap: 10px !important;
}
.r52-a-cookies__checkbox {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  color: var(--stone) !important;
  font-size: 13px !important;
  line-height: 1.4 !important;
}
.r52-a-cookies__checkbox input { accent-color: var(--ink) !important; }
.r52-a-cookies__footer {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  margin: 0 !important;
}
.r52-a-cookies__btn {
  min-width: 136px !important;
  min-height: 46px !important;
  padding: 0 20px !important;
  border: 1px solid var(--ink) !important;
  border-radius: 0 !important;
  background: var(--ink) !important;
  color: #fff !important;
  box-shadow: none !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  letter-spacing: .02em !important;
  text-transform: none !important;
}
.r52-a-cookies__btn--transparent,
.r52-a-cookies__btn-settings {
  background: transparent !important;
  color: var(--ink) !important;
}
@media (hover:hover) and (pointer:fine) {
  .r52-a-cookies__btn { transition: background-color 180ms var(--ease), color 180ms var(--ease); }
  .r52-a-cookies__btn:hover { background: var(--graphite) !important; color: #fff !important; }
  .r52-a-cookies__btn--transparent:hover,
  .r52-a-cookies__btn-settings:hover { background: var(--ink) !important; color: #fff !important; }
}
@media (max-width: 620px) {
  .r52-a-cookies { width: calc(100vw - 24px) !important; }
  .r52-a-cookies.r52-a-cookies--left { left: 12px !important; bottom: 12px !important; }
  .r52-a-cookies__inner { gap: 16px !important; padding: 20px 18px !important; }
  .r52-a-cookies__body p { font-size: 15px !important; line-height: 1.48 !important; }
  .r52-a-cookies__footer { display: grid !important; grid-template-columns: 1fr 1fr !important; }
  .r52-a-cookies__btn { min-width: 0 !important; min-height: 48px !important; padding-inline: 14px !important; }
}
@media (max-width: 390px) {
  .r52-a-cookies__footer { grid-template-columns: 1fr !important; }
}
