@font-face {
  font-family: "Bebas Hero";
  src: url("./assets/fonts/BebasNeue-Regular.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Graduate Hero";
  src: url("./assets/fonts/Graduate-Regular.ttf") format("truetype");
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg: #090a0d;
  --bg-soft: #101216;
  --panel: #14161b;
  --panel-warm: #1b1511;
  --cream: #f5edda;
  --muted: #aaa79f;
  --gold: #e7a62d;
  --gold-light: #f6d780;
  --red: #b83a23;
  --green: #61c795;
  --line: rgba(245, 237, 218, 0.13);
  --line-gold: rgba(231, 166, 45, 0.32);
  --max: 1240px;
  --display: "Bebas Hero", Impact, sans-serif;
  --stamp: "Graduate Hero", Georgia, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::before {
  position: fixed;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: .22;
  z-index: 20;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.17'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}
.scroll-progress { position: fixed; z-index: 60; inset: 0 0 auto; height: 2px; pointer-events: none; background: rgba(255,255,255,.025); }
.scroll-progress span { display: block; width: 100%; height: 100%; transform: scaleX(0); transform-origin: left; background: linear-gradient(90deg, var(--red), var(--gold), var(--gold-light)); box-shadow: 0 0 16px rgba(231,166,45,.55); will-change: transform; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }
p { color: var(--muted); line-height: 1.7; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: .015em;
  text-transform: uppercase;
}
h1 em, h2 em { color: var(--gold); font-style: normal; }
.section-shell { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
section[id] { scroll-margin-top: 88px; }
.sr-only, .skip-link:not(:focus) { position: absolute; width: 1px; height: 1px; clip: rect(0,0,0,0); overflow: hidden; white-space: nowrap; }
.skip-link:focus { position: fixed; top: 12px; left: 12px; z-index: 100; background: var(--gold); color: var(--bg); padding: 12px 16px; font-weight: 800; }

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  min-height: 78px;
  padding: 13px max(20px, calc((100vw - var(--max)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, min-height .25s ease;
}
.site-header.is-scrolled { min-height: 68px; background: rgba(9,10,13,.88); border-color: var(--line); backdrop-filter: blur(18px); }
.brand { display: inline-flex; align-items: center; gap: 11px; position: relative; z-index: 3; }
.brand-shield {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--gold-light), var(--gold) 54%, var(--red));
  border: 2px solid #090a0d;
  border-radius: 10px 10px 13px 13px;
  box-shadow: 0 0 0 2px var(--gold), inset 0 0 0 2px rgba(255,255,255,.22);
  color: #0a0a0c;
  font-family: var(--stamp);
  font-size: .84rem;
}
.brand-name { font: 400 1.28rem/1 var(--display); letter-spacing: .08em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: clamp(18px, 2.5vw, 36px); }
.site-nav > a { color: #d8d2c3; font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; transition: color .2s ease; position: relative; }
.site-nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -9px; height: 1px; background: var(--gold); transition: right .25s ease; }
.site-nav > a:not(.nav-cta):hover::after, .site-nav > a:not(.nav-cta).is-active::after { right: 0; }
.site-nav > a.is-active { color: var(--gold-light); }
.site-nav > a:hover, .site-nav > a:focus-visible { color: var(--gold-light); }
.site-nav .nav-cta { border: 1px solid var(--line-gold); border-radius: 4px; color: var(--gold-light); padding: 12px 15px; }
.menu-toggle { display: none; border: 0; background: transparent; padding: 12px; position: relative; z-index: 3; }
.menu-toggle > span:not(.sr-only) { display: block; width: 25px; height: 2px; margin: 6px 0; background: var(--cream); transition: transform .2s ease; }

.eyebrow { color: var(--gold-light); font-size: .68rem; font-weight: 850; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 17px; }
.hero {
  min-height: 860px;
  height: 100svh;
  max-height: 1020px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(410px, .98fr);
  align-items: center;
  gap: clamp(40px, 7vw, 105px);
  padding-top: 100px;
  position: relative;
  overflow: clip;
}
.hero::before {
  content: "";
  position: absolute;
  width: 880px;
  height: 880px;
  right: -280px;
  top: -130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,58,35,.22), rgba(231,166,45,.06) 45%, transparent 68%);
  filter: blur(10px);
}
.hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--line-gold), transparent); }
.hero-copy { position: relative; z-index: 2; }
.status-pill { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 36px; padding: 8px 12px; border: 1px solid var(--line); border-radius: 100px; color: #d5d0c4; font-size: .65rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; background: rgba(255,255,255,.025); }
.status-pill span { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(97,199,149,.1); }
.hero h1 { max-width: 690px; font-size: clamp(4.9rem, 7.7vw, 8.15rem); line-height: .82; margin-bottom: 28px; }
.hero-lede { max-width: 615px; color: #c9c5bb; font-size: clamp(1rem, 1.5vw, 1.18rem); line-height: 1.72; }
.button-row { display: flex; align-items: center; gap: 13px; flex-wrap: wrap; margin: 36px 0 34px; }
.button { min-height: 53px; display: inline-flex; align-items: center; justify-content: center; gap: 14px; padding: 0 22px; border: 1px solid transparent; border-radius: 3px; font-size: .72rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; transition: transform .2s ease, background .2s ease, border-color .2s ease; position: relative; overflow: hidden; }
.button::after { content: ""; position: absolute; inset: -2px; background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,.28) 48%, transparent 66%); transform: translateX(-120%); transition: transform .65s ease; }
.button:hover::after { transform: translateX(120%); }
.button > span { position: relative; z-index: 1; }
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { background: var(--gold); color: #161006; box-shadow: 0 14px 36px rgba(231,166,45,.15); }
.button-primary:hover { background: var(--gold-light); }
.button-ghost { border-color: var(--line); color: #dad5c9; }
.button-ghost:hover { border-color: var(--line-gold); }
.proof-line { display: flex; align-items: center; flex-wrap: wrap; gap: 11px; color: #827f78; font-size: .61rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.proof-line i { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); }
.hero-art-stage { min-height: 700px; display: grid; place-items: center; position: relative; z-index: 2; }
.hero-art-stage::before { content: ""; position: absolute; width: 92%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle,rgba(231,166,45,.18),rgba(184,58,35,.08) 48%,transparent 70%); filter: blur(16px); }
.hero-art-stage > img { width: min(100%,680px); max-height: 760px; object-fit: contain; position: relative; filter: drop-shadow(0 50px 70px rgba(0,0,0,.58)); transform: rotate(1.5deg); transition: transform .35s ease, filter .35s ease; }
.hero-art-stage:hover > img { transform: rotate(0) scale(1.025); filter: drop-shadow(0 58px 85px rgba(0,0,0,.68)); }
.hero-art-note { position: absolute; left: -28px; bottom: 88px; width: min(340px,74%); padding: 16px 18px; border: 1px solid rgba(246,215,128,.42); border-radius: 6px; background: rgba(9,10,13,.9); box-shadow: 0 18px 45px rgba(0,0,0,.42); backdrop-filter: blur(12px); }
.hero-art-note small { display: block; color: var(--gold); font-size: .47rem; letter-spacing: .15em; }.hero-art-note strong { display: block; margin-top: 5px; font-size: .72rem; line-height: 1.45; }

.hero-visual { --tilt-x: 0deg; --tilt-y: 0deg; --glow-x: 50%; --glow-y: 42%; min-height: 665px; display: grid; place-items: center; position: relative; z-index: 2; perspective: 1200px; }
.hero-visual::before { content: ""; position: absolute; width: 650px; height: 650px; border-radius: 50%; background: radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(246,215,128,.2), rgba(184,58,35,.08) 34%, transparent 68%); filter: blur(20px); }
.phone { width: 338px; height: 682px; border: 8px solid #25272d; border-radius: 42px; overflow: hidden; background: #0d0f13; box-shadow: 0 70px 100px rgba(0,0,0,.55), 0 0 0 1px #4d4f55, inset 0 0 0 1px #000; transform: rotateX(var(--tilt-y)) rotateY(var(--tilt-x)) rotateZ(2.5deg); transform-style: preserve-3d; transition: transform .2s cubic-bezier(.2,.7,.2,1), box-shadow .2s ease; position: relative; z-index: 3; will-change: transform; }
.hero-visual:hover .phone { box-shadow: 0 85px 120px rgba(0,0,0,.62), 0 0 0 1px #5d6068, inset 0 0 0 1px #000; }
.phone-top { height: 30px; padding: 8px 20px 0; display: flex; justify-content: space-between; font-size: .48rem; color: #d8d8d8; }
.phone-top b { width: 75px; height: 18px; position: absolute; left: 50%; top: 5px; transform: translateX(-50%); background: #030405; border-radius: 20px; }
.app-bar { height: 75px; display: flex; align-items: center; gap: 11px; padding: 12px 17px; border-bottom: 1px solid rgba(255,255,255,.07); }
.mini-shield { width: 35px; height: 35px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 8px 8px 10px 10px; color: #151009; background: linear-gradient(145deg, var(--gold-light), var(--gold) 58%, var(--red)); font: .62rem var(--stamp); }
.app-bar div { display: flex; flex-direction: column; }
.app-bar small { color: #777b82; font-size: .43rem; letter-spacing: .18em; }
.app-bar strong { font: 1.08rem var(--display); letter-spacing: .06em; }
.app-bar button { margin-left: auto; width: 30px; height: 30px; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; background: #17191e; color: var(--gold); }
.map-ui { height: 507px; position: relative; overflow: hidden; background: #11151a; background-image: linear-gradient(27deg, transparent 47%, rgba(255,255,255,.05) 48%, rgba(255,255,255,.05) 50%, transparent 51%), linear-gradient(117deg, transparent 42%, rgba(255,255,255,.04) 43%, rgba(255,255,255,.04) 46%, transparent 47%); background-size: 105px 87px, 130px 140px; }
.map-ui::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 52% 46%, transparent 10%, rgba(9,10,13,.28) 78%); }
.road { position: absolute; z-index: 1; height: 14px; background: #1c2228; border-block: 1px solid #293138; transform-origin: center; }
.road-a { width: 480px; left: -80px; top: 180px; transform: rotate(-23deg); }
.road-b { width: 420px; left: -60px; top: 315px; transform: rotate(32deg); }
.road-c { width: 300px; left: 65px; top: 85px; transform: rotate(76deg); }
.map-label { position: absolute; z-index: 2; color: #555c62; font-size: .44rem; letter-spacing: .13em; }
.label-a { left: 35px; top: 105px; } .label-b { right: 28px; bottom: 148px; }
.pin { position: absolute; z-index: 3; width: 39px; height: 47px; display: grid; place-items: center; border-radius: 50% 50% 50% 4px; transform: rotate(-45deg); background: var(--gold); color: #12100b; box-shadow: 0 8px 30px rgba(231,166,45,.32); animation: pin-pulse 2.8s ease-in-out infinite; }
.pin b { transform: rotate(45deg); font: .75rem var(--stamp); }
.pin-a { left: 145px; top: 145px; } .pin-b { right: 41px; top: 245px; background: var(--red); color: white; animation-delay: -.9s; } .pin-c { left: 65px; top: 305px; transform: rotate(-45deg) scale(.8); animation-delay: -1.8s; }
@keyframes pin-pulse { 0%, 100% { filter: brightness(1); } 50% { filter: brightness(1.28); box-shadow: 0 8px 38px rgba(231,166,45,.52); } }
.nearby-card { position: absolute; z-index: 4; left: 13px; right: 13px; bottom: 14px; display: flex; align-items: center; gap: 10px; padding: 13px; border: 1px solid rgba(255,255,255,.1); border-radius: 14px; background: rgba(16,18,22,.92); backdrop-filter: blur(12px); }
.avatar-stack { display: flex; }
.avatar-stack span { width: 26px; height: 26px; display: grid; place-items: center; margin-right: -7px; border: 2px solid #16181d; border-radius: 50%; background: #2b3037; color: var(--gold-light); font-size: .39rem; font-weight: 850; }
.nearby-card > div:nth-child(2) { display: flex; flex-direction: column; }
.nearby-card strong { font-size: .65rem; }.nearby-card small { color: #777c83; font-size: .47rem; margin-top: 3px; }.nearby-card > b { margin-left: auto; color: var(--gold); }
.phone-tabs { position: absolute; z-index: 8; left: 0; right: 0; bottom: 0; height: 72px; display: flex; align-items: center; justify-content: space-around; background: #0b0d10; border-top: 1px solid rgba(255,255,255,.08); }
.phone-tabs button { width: 48px; height: 58px; padding: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; border: 0; border-radius: 0; background: transparent; color: #686d74; font: .85rem var(--sans); cursor: pointer; transition: color .2s ease, transform .2s ease; }.phone-tabs small { display: block; font-size: .4rem; }.phone-tabs button:hover, .phone-tabs button.active { color: var(--gold); transform: translateY(-2px); }.phone-tabs .checkin-open { width: 46px; height: 46px; border-radius: 50%; background: var(--gold); color: #181108; font-size: 1.2rem; box-shadow: 0 6px 24px rgba(231,166,45,.24); }.phone-tabs .checkin-open:hover { color: #181108; transform: translateY(-3px) rotate(8deg); }
.app-screens { height: 507px; position: relative; overflow: hidden; }.app-screen { display: none; position: absolute; inset: 0; overflow: hidden; }.app-screen.is-active { display: block; animation: app-screen-in .32s ease both; }@keyframes app-screen-in { from { opacity: 0; transform: translateY(8px); } }
.screen-heading { padding: 18px 18px 13px; display: flex; flex-direction: column; border-bottom: 1px solid rgba(255,255,255,.07); }.screen-heading span { color: var(--gold); font-size: .42rem; letter-spacing: .16em; }.screen-heading strong { margin-top: 3px; font: 1.55rem var(--display); text-transform: uppercase; }
.feed-screen, .heroes-screen, .passport-screen { padding-bottom: 10px; overflow-y: auto; background: linear-gradient(160deg,#111318,#0b0d10); scrollbar-width: none; }.feed-screen::-webkit-scrollbar, .heroes-screen::-webkit-scrollbar { display: none; }.feed-post { margin: 12px; padding: 12px; border: 1px solid rgba(255,255,255,.08); border-radius: 13px; background: #15181d; }.feed-author { display: flex; align-items: center; gap: 8px; }.feed-author > span { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: var(--red); font-size: .43rem; font-weight: 850; }.feed-author div { display: flex; flex-direction: column; }.feed-author strong { font-size: .6rem; }.feed-author small { color: #777b82; font-size: .4rem; }.feed-author b { margin-left: auto; color: var(--gold); font-size: .42rem; }.feed-photo { height: 190px; margin-top: 11px; display: grid; place-items: end start; padding: 14px; background: radial-gradient(circle at 68% 35%,rgba(246,215,128,.55),transparent 14%),linear-gradient(145deg,#503020,#bd6931 43%,#201815 44%,#0c0d10); }.feed-photo span { color: white; font: 2.2rem/.8 var(--display); text-shadow: 0 3px 14px #000; }.feed-post p { margin: 10px 0 0; font-size: .55rem; line-height: 1.5; }.feed-post p em { color: var(--gold); font-style: normal; }.mini-post { margin-top: 0; }
.your-rank { margin: 12px; padding: 14px; display: grid; grid-template-columns: 1fr auto; align-items: center; border-radius: 12px; background: linear-gradient(115deg,var(--red),#722217); }.your-rank small { font-size: .42rem; letter-spacing: .12em; }.your-rank strong { grid-row: span 2; font: 2.3rem var(--display); }.your-rank span { font-size: .56rem; }.hero-ranking { margin: 5px 12px; padding: 0; list-style: none; }.hero-ranking li { display: flex; align-items: center; gap: 8px; padding: 10px 2px; border-bottom: 1px solid rgba(255,255,255,.07); }.hero-ranking li > b { width: 14px; color: #72767d; font-size: .55rem; }.rank-avatar { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: #30343b; color: var(--gold-light); font-size: .43rem; font-weight: 850; }.rank-avatar.red { background: var(--red); color: white; }.rank-avatar.gold { background: var(--gold); color: #171008; }.rank-avatar.me { outline: 2px solid var(--gold); }.hero-ranking div { display: flex; flex-direction: column; }.hero-ranking strong { font-size: .58rem; }.hero-ranking small { color: #777b82; font-size: .4rem; }.hero-ranking em { margin-left: auto; color: var(--gold); font: normal .6rem var(--stamp); }
.passport-screen { padding: 17px 15px; background: #15120d; }.digital-passport { min-height: 310px; padding: 18px; position: relative; text-align: center; border-radius: 12px; overflow: hidden; background: #dfc382; color: #302817; box-shadow: inset 0 0 0 1px rgba(48,40,23,.24); }.digital-passport::after { content: "BH"; position: absolute; right: -15px; bottom: -28px; color: rgba(48,40,23,.08); font: 8rem var(--display); }.digital-passport > small { display: block; font: .44rem var(--stamp); letter-spacing: .1em; }.passport-monogram { width: 75px; height: 75px; margin: 24px auto 11px; display: grid; place-items: center; border-radius: 50%; background: #302817; color: #dfc382; font: 1.1rem var(--stamp); }.digital-passport h3 { margin: 0; font-size: 1.8rem; }.digital-passport p { margin: 3px 0 13px; color: #6a5933; font: .48rem var(--stamp); }.passport-progress { height: 5px; background: rgba(48,40,23,.18); }.passport-progress i { display: block; width: 77%; height: 100%; background: var(--red); }.digital-passport b { display: block; margin-top: 7px; font-size: .45rem; }.badge-row { display: flex; justify-content: space-around; margin-top: -35px; position: relative; z-index: 2; }.badge-row span { width: 65px; height: 65px; display: grid; place-items: center; text-align: center; border: 3px double var(--red); border-radius: 50%; background: #dfc382; color: #7f3123; font: .43rem var(--stamp); transform: rotate(-7deg); }.badge-row span:nth-child(2) { transform: rotate(5deg); }.passport-numbers { display: grid; grid-template-columns: repeat(3,1fr); margin-top: 18px; }.passport-numbers span { text-align: center; border-right: 1px solid rgba(255,255,255,.08); }.passport-numbers span:last-child { border: 0; }.passport-numbers strong { display: block; color: var(--gold); font: 1.2rem var(--display); }.passport-numbers small { color: #777b82; font-size: .35rem; letter-spacing: .08em; }
.checkin-sheet { position: absolute; z-index: 10; inset: 30px 0 0; padding: 45px 18px 20px; background: rgba(12,14,17,.98); transform: translateY(105%); transition: transform .38s cubic-bezier(.2,.8,.2,1); }.checkin-sheet.is-open { transform: none; }.sheet-close { position: absolute; top: 12px; right: 14px; width: 30px; height: 30px; border: 0; border-radius: 50%; background: #22252b; color: white; font-size: 1rem; cursor: pointer; }.checkin-form > small { color: var(--gold); font-size: .43rem; letter-spacing: .14em; }.checkin-form h3, .checkin-success h3 { margin: 4px 0 14px; font-size: 2rem; }.photo-drop { height: 118px; margin-bottom: 14px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; border: 1px dashed rgba(231,166,45,.5); border-radius: 10px; background: rgba(231,166,45,.06); }.photo-drop span { color: var(--gold); font-size: 1.5rem; }.photo-drop strong { font-size: .54rem; }.checkin-form label { display: block; margin-top: 10px; color: #777b82; font-size: .4rem; letter-spacing: .12em; }.checkin-form input { width: 100%; margin-top: 4px; padding: 10px 0; border: 0; border-bottom: 1px solid rgba(255,255,255,.12); outline: 0; background: transparent; color: white; font: .68rem var(--sans); }.checkin-form input:focus { border-color: var(--gold); }.post-checkin, .checkin-success button { width: 100%; margin-top: 20px; padding: 13px 8px; border: 0; border-radius: 4px; background: var(--gold); color: #181108; font-size: .54rem; font-weight: 900; cursor: pointer; }.checkin-success { display: none; height: 100%; text-align: center; flex-direction: column; align-items: center; justify-content: center; }.checkin-success.is-active { display: flex; }.checkin-form.is-hidden { display: none; }.checkin-success > span { width: 72px; height: 72px; display: grid; place-items: center; border-radius: 50%; background: var(--green); color: #07130d; font-size: 2rem; }.checkin-success h3 { margin-top: 20px; }.checkin-success p { font-size: .65rem; }
.hero-emblem { position: absolute; z-index: 2; width: 185px; height: 185px; right: -45px; top: 35px; border-radius: 50%; overflow: hidden; border: 1px solid var(--line-gold); background: #161009; box-shadow: 0 20px 50px rgba(0,0,0,.4); transform: rotate(11deg); }
.hero-emblem img { width: 100%; height: 100%; object-fit: cover; }
.orbit { position: absolute; border: 1px solid rgba(231,166,45,.1); border-radius: 50%; }.orbit-one { width: 570px; height: 570px; }.orbit-two { width: 700px; height: 700px; }
.float-card { position: absolute; z-index: 5; border: 1px solid var(--line-gold); border-radius: 9px; background: rgba(16,18,22,.92); box-shadow: 0 20px 50px rgba(0,0,0,.45); backdrop-filter: blur(12px); transition: transform .25s ease, border-color .25s ease; }
.hero-visual:hover .checkin-card { transform: rotate(-5deg) translate(-5px,-5px); border-color: rgba(246,215,128,.58); }
.hero-visual:hover .level-card { transform: rotate(4deg) translate(5px,-4px); border-color: rgba(246,215,128,.58); }
.checkin-card { left: -33px; top: 215px; display: flex; align-items: center; gap: 10px; padding: 12px 15px; transform: rotate(-4deg); }
.float-icon { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: var(--green); color: #07130d; font-weight: 900; }.checkin-card div { display: flex; flex-direction: column; }.checkin-card small { color: var(--green); font-size: .43rem; letter-spacing: .1em; }.checkin-card strong { margin-top: 3px; font-size: .66rem; }
.level-card { right: -50px; bottom: 110px; width: 155px; padding: 13px 15px; transform: rotate(3deg); }.level-card > span { color: var(--gold); font-size: .43rem; letter-spacing: .14em; }.level-card strong { display: block; font: 1.15rem var(--display); margin: 4px 0 8px; text-transform: uppercase; }.level-card div { height: 4px; border-radius: 4px; background: #303238; overflow: hidden; }.level-card div i { display: block; width: 72%; height: 100%; background: var(--gold); }.level-card small { display: block; margin-top: 6px; color: #797c82; font-size: .43rem; }

.ticker { overflow: hidden; border-bottom: 1px solid var(--line); background: var(--gold); color: #14100a; }
.ticker div { width: max-content; display: flex; align-items: center; gap: 25px; padding: 11px 0; animation: ticker 24s linear infinite; }
.ticker span { font: 1.05rem var(--display); letter-spacing: .1em; }.ticker b { color: var(--red); }
@keyframes ticker { to { transform: translateX(-50%); } }

.why { padding-block: 150px; }
.section-intro { max-width: 870px; }.section-intro h2 { font-size: clamp(3.2rem, 6vw, 6.1rem); line-height: .92; margin-bottom: 24px; }.section-intro > p:last-child { max-width: 650px; font-size: 1.06rem; }.section-intro.compact { margin-bottom: 66px; }.section-intro.compact h2 { max-width: 780px; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(50px, 10vw, 150px); align-items: end; margin-top: 74px; padding-top: 40px; border-top: 1px solid var(--line); }
.why-grid > p { max-width: 570px; font-size: 1.15rem; }
.thesis-card { position: relative; min-height: 225px; padding: 33px; border: 1px solid var(--line-gold); background: linear-gradient(145deg, rgba(231,166,45,.08), rgba(184,58,35,.08)); }
.thesis-card .number { position: absolute; right: 18px; top: 3px; color: rgba(231,166,45,.11); font: 8rem/1 var(--display); }.thesis-card p { position: relative; color: #a8a59e; margin-bottom: 8px; }.thesis-card strong { position: relative; display: block; max-width: 450px; color: var(--cream); font: 2.2rem/1 var(--display); text-transform: uppercase; }
.moments { padding-bottom: 145px; }.moment-filters { display: flex; flex-wrap: wrap; gap: 8px; margin: 35px 0 30px; }.moment-filters button { padding: 10px 14px; border: 1px solid var(--line); border-radius: 100px; background: transparent; color: #8f8c85; font-size: .58rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; transition: .2s ease; }.moment-filters button:hover, .moment-filters button.is-active { border-color: var(--gold); background: var(--gold); color: #161006; }.moment-grid { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid var(--line); }.moment-option { min-width: 0; border-right: 1px solid var(--line); background: #0d0f12; transition: transform .3s ease, background .3s ease; }.moment-option:last-child { border-right: 0; }.moment-option:hover { transform: translateY(-7px); background: #141217; }.moment-option.is-hidden { display: none; }.moment-option > img { width: 100%; aspect-ratio: 1/.82; object-fit: cover; object-position: center 22%; border-bottom: 1px solid var(--line-gold); }.moment-option > div { padding: 26px; }.moment-option small { color: var(--gold); font-size: .5rem; font-weight: 850; letter-spacing: .14em; }.moment-option h3 { margin: 8px 0 10px; font-size: 2rem; }.moment-option p { min-height: 86px; font-size: .82rem; line-height: 1.55; }.moment-option a { color: var(--gold-light); font-size: .6rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }.moment-option a span { margin-left: 8px; }
.community-visual { width: min(calc(100% - 40px), 1440px); height: min(78vh, 800px); min-height: 610px; margin: 0 auto 140px; position: relative; overflow: hidden; border: 1px solid var(--line-gold); background: #1a120d; }.community-visual > img { width: 100%; height: 100%; object-fit: cover; }.community-shade { position: absolute; inset: 0; background: linear-gradient(90deg,rgba(7,8,10,.92),rgba(7,8,10,.32) 58%,rgba(7,8,10,.08)),linear-gradient(0deg,rgba(7,8,10,.78),transparent 50%); }.community-copy { position: absolute; left: 50%; bottom: 72px; transform: translateX(-50%); }.community-copy h2 { max-width: 760px; margin-bottom: 18px; font-size: clamp(3.7rem,6vw,6.5rem); line-height: .88; }.community-copy > p:last-child { max-width: 520px; color: #d6d0c5; }.moment-card { position: absolute; min-width: 200px; padding: 15px 17px; border: 1px solid rgba(246,215,128,.36); border-radius: 7px; background: rgba(12,14,17,.82); backdrop-filter: blur(12px); box-shadow: 0 18px 50px rgba(0,0,0,.32); }.moment-card small { display: block; color: var(--gold); font-size: .43rem; letter-spacing: .13em; }.moment-card strong { display: block; margin: 5px 0 3px; font: 1.15rem var(--display); text-transform: uppercase; }.moment-card span { color: #8f8c86; font-size: .52rem; }.moment-one { right: 5%; top: 13%; transform: rotate(2deg); }.moment-two { right: 12%; bottom: 12%; transform: rotate(-2deg); }

.moment-option.is-hidden { display: none !important; }
.campaign-worlds { padding-bottom: 145px; }.campaign-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(45px,8vw,120px); align-items: end; margin-bottom: 55px; }.campaign-heading h2 { max-width: 760px; margin: 0; font-size: clamp(3.6rem,6vw,6.5rem); line-height: .88; }.campaign-heading > div:last-child p { font-size: .95rem; }.campaign-heading .button { margin-top: 18px; }.campaign-grid { display: grid; grid-template-columns: repeat(4,1fr); grid-template-rows: repeat(2,minmax(260px,1fr)); gap: 10px; }.campaign-tile { min-height: 300px; position: relative; overflow: hidden; border: 1px solid var(--line-gold); background: #0b0c0e; }.campaign-tile::after { content: ""; position: absolute; inset: 28% 0 0; background: linear-gradient(transparent,rgba(5,6,8,.94)); }.campaign-tile img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; transition: transform .45s cubic-bezier(.2,.7,.2,1),filter .45s ease; }.campaign-tile:hover img { transform: scale(1.045); filter: brightness(1.08); }.campaign-tile > div { position: absolute; z-index: 2; left: 22px; right: 22px; bottom: 20px; }.campaign-tile small { color: var(--gold); font-size: .46rem; font-weight: 850; letter-spacing: .15em; }.campaign-tile h3 { margin: 5px 0 0; font-size: 1.8rem; }.campaign-tile p { margin: 6px 0 0; color: #bbb6ac; font-size: .72rem; line-height: 1.45; }.campaign-feature { grid-column: span 2; grid-row: span 2; }.campaign-feature h3 { font-size: 2.8rem; }

.world-atlas {
  margin-bottom: 62px;
  border: 1px solid var(--line-gold);
  background: linear-gradient(145deg, #15110d, #0b0c0f 68%);
  box-shadow: 0 34px 90px rgba(0,0,0,.28);
}
.world-atlas-meta { min-height: 108px; display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 24px 28px; }
.world-atlas-meta span { color: var(--gold); font-size: .54rem; font-weight: 850; letter-spacing: .17em; text-transform: uppercase; }
.world-atlas-meta h3 { margin: 6px 0 0; font-size: clamp(2rem,3vw,3.2rem); }
.atlas-launch { min-height: 48px; padding: 0 18px; border: 1px solid var(--line-gold); border-radius: 3px; background: transparent; color: var(--gold-light); font-size: .62rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; transition: background .2s ease, color .2s ease, transform .2s ease; }
.atlas-launch:hover, .atlas-launch:focus-visible { background: var(--gold); color: #151006; transform: translateY(-2px); }
.atlas-launch span { margin-left: 10px; color: inherit; font-size: .85rem; }
.world-atlas-poster { width: 100%; padding: 0; position: relative; overflow: hidden; border: 0; border-block: 1px solid var(--line-gold); background: #08090b; cursor: zoom-in; }
.world-atlas-poster img { width: 100%; aspect-ratio: 3/2; object-fit: cover; transition: transform .6s cubic-bezier(.2,.75,.2,1), filter .4s ease; }
.world-atlas-poster::after { content: ""; position: absolute; inset: 0; border: 0 solid var(--gold); transition: border-width .25s ease; pointer-events: none; }
.world-atlas-poster:hover img { filter: brightness(1.06); }
.world-atlas-poster:hover::after, .world-atlas-poster:focus-visible::after { border-width: 4px; }
.atlas-hint { position: absolute; right: 20px; bottom: 20px; display: flex; align-items: center; gap: 10px; padding: 10px 13px; border: 1px solid rgba(246,215,128,.5); border-radius: 4px; background: rgba(8,9,11,.9); color: #d4cec0; font-size: .53rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(12px); }
.atlas-hint b { color: var(--gold-light); }
.world-atlas-strip { display: flex; gap: 7px; padding: 16px 18px; overflow-x: auto; scrollbar-width: thin; scrollbar-color: var(--gold) transparent; }
.world-atlas-strip span { flex: 0 0 auto; padding: 7px 10px; border: 1px solid var(--line); border-radius: 100px; color: #8f8c86; font-size: .48rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
body.atlas-is-open { overflow: hidden; }
.atlas-dialog { width: min(96vw, 1600px); max-width: none; height: min(94vh, 1080px); max-height: none; margin: auto; padding: 0; overflow: hidden; border: 1px solid rgba(246,215,128,.46); background: #090a0d; color: var(--cream); box-shadow: 0 0 0 100vmax rgba(3,4,6,.9), 0 60px 160px rgba(0,0,0,.8); }
.atlas-dialog[open] { position: fixed; inset: 0; z-index: 80; display: block; }
.atlas-dialog::backdrop { background: rgba(3,4,6,.9); backdrop-filter: blur(12px); }
.atlas-dialog-shell { height: 100%; display: grid; grid-template-rows: auto minmax(0,1fr) auto; }
.atlas-dialog-bar { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 15px 20px 13px 24px; border-bottom: 1px solid var(--line-gold); }
.atlas-dialog-bar span { color: var(--gold); font-size: .48rem; font-weight: 850; letter-spacing: .16em; }
.atlas-dialog-bar h2 { margin: 3px 0 0; font-size: 2.05rem; line-height: 1; }
.atlas-controls { display: flex; align-items: center; gap: 7px; }
.atlas-controls button, .atlas-controls output { min-width: 42px; height: 42px; display: grid; place-items: center; padding: 0 10px; border: 1px solid var(--line); background: #121419; color: var(--cream); font: 800 .72rem var(--sans); }
.atlas-controls button { cursor: pointer; transition: border-color .2s ease, color .2s ease, background .2s ease; }
.atlas-controls button:hover, .atlas-controls button:focus-visible { border-color: var(--gold); color: var(--gold-light); }
.atlas-controls .atlas-reset { min-width: 64px; font-size: .51rem; letter-spacing: .08em; text-transform: uppercase; }
.atlas-controls .atlas-close { margin-left: 5px; background: var(--gold); color: #151006; border-color: var(--gold); font-size: 1.4rem; }
.atlas-viewport { min-height: 0; overflow: auto; background: #050608; cursor: grab; scrollbar-color: var(--gold) #111318; touch-action: pan-x pan-y; overscroll-behavior: contain; }
.atlas-viewport.is-dragging { cursor: grabbing; user-select: none; }
.atlas-viewport img { width: 100%; max-width: none; height: auto; transition: width .22s ease; pointer-events: none; }
.atlas-dialog-shell > p { margin: 0; padding: 10px 20px; border-top: 1px solid var(--line); color: #777a80; font-size: .58rem; text-align: center; }
.experience { padding-block: 135px; background: var(--bg-soft); border-block: 1px solid var(--line); }
.steps { margin: 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); }
.steps li { min-width: 0; padding: 22px; border-right: 1px solid var(--line); transition: background .3s ease, transform .3s ease; }.steps li:hover { background: rgba(231,166,45,.035); transform: translateY(-5px); }.steps li:last-child { border-right: 0; }.steps h3 { font-size: 1.7rem; margin: 13px 0 10px; }.steps p { font-size: .86rem; line-height: 1.6; }.step-no { display: block; color: var(--gold); font-size: .54rem; font-weight: 850; letter-spacing: .14em; }
.step-art { height: 190px; margin-bottom: 25px; position: relative; overflow: hidden; display: grid; place-items: center; background: #0c0e12; border-bottom: 1px solid var(--line); }
.step-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center 23%; transition: transform .35s ease; }.steps li:hover .step-visual img { transform: scale(1.06); }.step-community img { object-position: 55% center; }
.camera-art span { width: 92px; height: 72px; border: 4px solid var(--gold); border-radius: 12px; }.camera-art span::before { content: ""; position: absolute; left: 50%; top: 48px; transform: translateX(-50%); width: 32px; height: 18px; background: var(--gold); border-radius: 5px 5px 0 0; }.camera-art b { position: absolute; color: var(--red); font-size: 2.8rem; }
.location-art span { position: relative; z-index: 2; display: grid; place-items: center; width: 66px; height: 66px; border-radius: 50% 50% 50% 6px; transform: rotate(-45deg); background: var(--gold); color: #151008; font-size: 2.1rem; }.location-art span::first-letter { transform: rotate(45deg); }.location-art i { position: absolute; width: 180px; height: 180px; border: 1px solid rgba(231,166,45,.13); border-radius: 50%; }.location-art i:nth-of-type(2) { width: 125px; height: 125px; }.location-art i:nth-of-type(3) { width: 235px; height: 235px; }
.people-art { display: flex; justify-content: center; }.people-art span { width: 64px; height: 64px; display: grid; place-items: center; margin: 0 -8px; border: 3px solid #0c0e12; border-radius: 50%; background: #23262d; color: var(--gold-light); font: .85rem var(--stamp); }.people-art span:nth-child(2) { width: 78px; height: 78px; background: var(--red); color: white; z-index: 2; }
.passport-art { display: flex; align-items: flex-end; justify-content: center; gap: 7px; padding-bottom: 48px; }.passport-art > span { position: absolute; top: 25px; width: 47px; height: 47px; display: grid; place-items: center; border-radius: 10px; background: var(--gold); color: #171008; font: .65rem var(--stamp); }.passport-art b { width: 57px; height: 57px; display: grid; place-items: center; border: 3px double rgba(231,166,45,.6); border-radius: 50%; color: var(--gold-light); font: .55rem var(--stamp); transform: rotate(-8deg); }.passport-art b:nth-of-type(2) { transform: rotate(8deg); }

.product-showcase { padding-block: 140px; }
.passport-panel { min-height: 610px; display: grid; grid-template-columns: .95fr 1.05fr; gap: 70px; align-items: center; padding: clamp(34px, 6vw, 78px); background: linear-gradient(135deg, #17130e, #111318 70%); border: 1px solid var(--line-gold); position: relative; overflow: hidden; }
.passport-panel::after { content: "BH"; position: absolute; left: -20px; bottom: -80px; color: rgba(231,166,45,.035); font: 22rem/1 var(--display); }
.passport-copy { position: relative; z-index: 2; }.passport-copy h2 { font-size: clamp(3rem, 5vw, 5.2rem); line-height: .9; }.passport-copy > p:not(.eyebrow) { max-width: 590px; }
.check-list { list-style: none; margin: 30px 0 0; padding: 0; display: grid; gap: 15px; color: #d7d2c6; font-size: .84rem; }.check-list li { display: flex; gap: 11px; align-items: center; }.check-list span { color: var(--gold); }
.passport-book { justify-self: end; width: min(100%, 460px); min-height: 525px; padding: 30px 35px 25px 46px; background: #e1c486; color: #302817; border-radius: 7px 16px 16px 7px; box-shadow: -15px 18px 0 #9b7437, 0 40px 70px rgba(0,0,0,.42); transform: rotate(2.8deg); position: relative; font-family: var(--stamp); overflow: hidden; }
.passport-artwork { width: min(100%,540px); margin: 0; justify-self: end; position: relative; }.passport-artwork img { width: 100%; height: auto; border: 1px solid var(--line-gold); box-shadow: 0 40px 80px rgba(0,0,0,.48); transform: rotate(1.5deg); }.passport-artwork figcaption { position: absolute; left: 18px; right: 18px; bottom: 18px; display: flex; justify-content: center; gap: 6px; flex-wrap: wrap; }.passport-artwork figcaption span { padding: 8px 10px; border: 1px solid rgba(246,215,128,.45); border-radius: 100px; background: rgba(9,10,13,.86); color: var(--gold-light); font-size: .45rem; font-weight: 850; letter-spacing: .1em; }
.passport-system { width: min(100%,680px); }
.passport-artwork-button { all: unset; width: 100%; display: block; position: relative; cursor: zoom-in; }
.passport-artwork-button img { transform: rotate(.7deg); transition: transform .35s ease, filter .35s ease; }
.passport-artwork-button:hover img, .passport-artwork-button:focus-visible img { transform: rotate(0) scale(1.012); filter: brightness(1.06); }
.passport-artwork-button:focus-visible { outline: 2px solid var(--gold); outline-offset: 5px; }
.passport-open-hint { position: absolute; right: 14px; top: 14px; padding: 9px 11px; border: 1px solid rgba(246,215,128,.5); border-radius: 3px; background: rgba(9,10,13,.88); color: var(--gold-light); font-size: .48rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; backdrop-filter: blur(10px); }
.passport-open-hint b { margin-left: 7px; font-size: .7rem; }
.passport-system figcaption { pointer-events: none; }
.passport-book::after { content: ""; position: absolute; inset: 0; opacity: .17; background-image: radial-gradient(#35250e 1px, transparent 1px); background-size: 5px 5px; pointer-events: none; }.book-spine { position: absolute; inset: 0 auto 0 14px; width: 11px; border-inline: 1px solid rgba(48,40,23,.25); }.book-header { display: flex; align-items: center; justify-content: space-between; padding-bottom: 18px; border-bottom: 3px double rgba(48,40,23,.4); }.book-header small { font-size: .72rem; letter-spacing: .1em; }.book-header b { font-size: .85rem; }.passport-id { display: grid; grid-template-columns: 115px 1fr; gap: 20px; margin: 24px 0; }.passport-photo { height: 135px; background: #302817; overflow: hidden; filter: sepia(.7); }.passport-photo img { width: 100%; height: 100%; object-fit: cover; }.passport-id > div:last-child { display: flex; flex-direction: column; }.passport-id small { font: .42rem var(--sans); color: #6a5933; letter-spacing: .12em; margin: 5px 0; }.passport-id strong { font-size: 1.25rem; }.passport-id b { font-size: .8rem; }.passport-stats { display: grid; grid-template-columns: repeat(3,1fr); border-block: 2px solid rgba(48,40,23,.4); padding: 13px 0; }.passport-stats span { text-align: center; border-right: 1px solid rgba(48,40,23,.3); }.passport-stats span:last-child { border: 0; }.passport-stats strong { display: block; font-size: 1.1rem; }.passport-stats small { font: .38rem var(--sans); letter-spacing: .1em; }.passport-stamps { display: flex; justify-content: space-around; margin: 25px 0 20px; }.passport-stamps span { width: 72px; height: 72px; display: grid; place-items: center; border: 4px double rgba(127,49,35,.65); border-radius: 50%; color: #7f3123; font-size: .72rem; text-align: center; transform: rotate(-10deg); }.passport-stamps span:nth-child(2) { transform: rotate(8deg); }.passport-stamps small { font-size: .42rem; }.passport-code { font-size: .45rem; letter-spacing: .13em; white-space: nowrap; opacity: .7; }
.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); border-inline: 1px solid var(--line); }.feature-card { min-height: 350px; padding: 42px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .3s ease, transform .3s ease; }.feature-card:hover { background: linear-gradient(145deg, rgba(231,166,45,.075), rgba(184,58,35,.025)); transform: translateY(-7px); }.feature-card:first-child { border-left: 0; }.feature-card .feature-icon { width: 53px; height: 53px; display: grid; place-items: center; margin-bottom: 55px; border: 1px solid var(--line-gold); color: var(--gold); font-size: 1.4rem; transition: background .25s ease, color .25s ease, transform .25s ease; }.feature-card:hover .feature-icon { background: var(--gold); color: var(--bg); transform: rotate(-5deg); }.feature-card > small { color: #777a80; font-size: .54rem; font-weight: 800; letter-spacing: .15em; }.feature-card h3 { font-size: 2.1rem; margin: 8px 0 12px; }.feature-card p { min-height: 78px; font-size: .85rem; }.feature-card a { color: var(--gold-light); font-size: .64rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }.feature-card a span { margin-left: 8px; transition: margin .2s ease; }.feature-card a:hover span { margin-left: 14px; }

.responsible { padding-bottom: 140px; }.responsible-card { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; padding: clamp(35px, 6vw, 78px); border: 1px solid rgba(97,199,149,.27); background: linear-gradient(135deg, rgba(97,199,149,.08), transparent 55%); }.responsible h2 { font-size: clamp(3rem, 5vw, 5.4rem); line-height: .92; }.responsible h2 em { color: var(--green); }.principles { display: grid; }.principles article { display: flex; gap: 20px; padding: 25px 0; border-bottom: 1px solid var(--line); }.principles article:last-child { border: 0; }.principles article > span { color: var(--green); font: 1.2rem var(--display); }.principles strong { font-size: .9rem; color: #e8e4db; }.principles p { margin: 6px 0 0; font-size: .8rem; line-height: 1.55; }

.partners { padding-block: 140px; background: #16110e; border-block: 1px solid var(--line-gold); }.partners-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(70px, 10vw, 150px); align-items: center; }.partners .section-intro h2 { font-size: clamp(3.4rem, 5.8vw, 6rem); }.partners .section-intro > p:last-of-type { margin-bottom: 30px; }.partner-stack article { display: grid; grid-template-columns: 64px 1fr; gap: 20px; padding: 28px 0; border-bottom: 1px solid var(--line-gold); transition: padding-left .25s ease, background .25s ease; }.partner-stack article:hover { padding-left: 14px; background: linear-gradient(90deg, rgba(231,166,45,.055), transparent); }.partner-stack article > span { color: var(--gold); font: 2.5rem var(--display); }.partner-stack strong { font: 1.45rem var(--display); letter-spacing: .04em; text-transform: uppercase; }.partner-stack p { margin: 5px 0 0; font-size: .84rem; }

.vision { padding-block: 145px; }.vision-line { display: flex; align-items: center; gap: 16px; margin-bottom: 100px; color: #777a80; font-size: .58rem; font-weight: 850; letter-spacing: .13em; }.vision-line i { flex: 1; height: 1px; background: var(--line); }.vision-line span:first-child { color: var(--gold); }.vision-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 90px; align-items: end; }.vision-grid h2 { font-size: clamp(3.6rem, 6vw, 6.5rem); line-height: .88; }.vision-grid > div:last-child > p { font-size: 1.02rem; }.future-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 25px; }.future-tags span { padding: 9px 11px; border: 1px solid var(--line); border-radius: 100px; color: #8e8c86; font-size: .55rem; font-weight: 750; letter-spacing: .09em; text-transform: uppercase; }

.final-cta { padding-bottom: 120px; }.cta-card { min-height: 570px; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; position: relative; overflow: hidden; padding: 65px 25px; background: var(--red); }.cta-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 40%, rgba(246,215,128,.3), transparent 40%), linear-gradient(rgba(8,7,6,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(8,7,6,.05) 1px, transparent 1px); background-size: auto, 46px 46px, 46px 46px; }.cta-card img { position: absolute; width: 520px; right: -150px; bottom: -210px; opacity: .18; transform: rotate(18deg); }.cta-card > *:not(img) { position: relative; z-index: 2; }.cta-card .eyebrow { color: var(--gold-light); }.cta-card h2 { max-width: 900px; font-size: clamp(3.7rem, 7vw, 7.4rem); line-height: .86; margin-bottom: 22px; }.cta-card h2 em { color: var(--gold-light); }.cta-card > p:not(.eyebrow) { color: rgba(255,255,255,.75); }.button-light { margin-top: 20px; background: var(--cream); color: #15100d; }

.site-footer { min-height: 160px; padding-block: 45px; display: grid; grid-template-columns: 1fr auto 1fr; gap: 30px; align-items: center; border-top: 1px solid var(--line); }.site-footer > p { margin: 0; font: 1.2rem var(--display); color: #8b8983; letter-spacing: .04em; text-transform: uppercase; }.site-footer > div { justify-self: end; display: flex; gap: 19px; color: #696b70; font-size: .58rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }.site-footer > div a:hover { color: var(--gold); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }.reveal.is-visible { opacity: 1; transform: none; }.steps li:nth-child(2), .feature-card:nth-child(2) { transition-delay: .08s; }.steps li:nth-child(3), .feature-card:nth-child(3) { transition-delay: .16s; }.steps li:nth-child(4) { transition-delay: .24s; }

@media (max-width: 1050px) {
  .hero { height: auto; min-height: 980px; grid-template-columns: 1fr 440px; gap: 20px; }.hero h1 { font-size: clamp(4.7rem, 8.3vw, 6.8rem); }.hero-visual { transform: scale(.86); transform-origin: center; }.hero-art-stage { min-height: 590px; }.hero-art-note { left: 0; }.moment-grid { grid-template-columns: repeat(2,1fr); }.moment-option { border-bottom: 1px solid var(--line); }.moment-option:nth-child(2) { border-right: 0; }.moment-option:last-child { grid-column: 1/-1; display: grid; grid-template-columns: 1fr 1fr; }.moment-option:last-child > img { height: 100%; aspect-ratio: auto; border-bottom: 0; border-right: 1px solid var(--line-gold); }
  .steps { grid-template-columns: repeat(2,1fr); }.steps li:nth-child(2) { border-right: 0; }.steps li:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .passport-panel { grid-template-columns: 1fr; }.passport-book { justify-self: center; }.feature-card { padding: 30px; }
  .campaign-grid { grid-template-columns: repeat(2,1fr); grid-template-rows: minmax(430px,1.35fr) repeat(2,300px); }.campaign-feature { grid-column: span 2; grid-row: auto; }.responsible-card, .partners-inner, .vision-grid { gap: 55px; }
  .site-footer { grid-template-columns: 1fr 1fr; }.site-footer > p { display: none; }
}

@media (max-width: 820px) {
  .section-shell { width: min(calc(100% - 30px), var(--max)); }
  .site-header { min-height: 68px; padding-inline: 20px; }
  .menu-toggle { display: block; }
  .menu-toggle[aria-expanded="true"] > span:first-child { transform: translateY(4px) rotate(45deg); }.menu-toggle[aria-expanded="true"] > span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
  .site-nav { display: none; position: fixed; inset: 0; padding: 105px 25px 35px; flex-direction: column; align-items: stretch; justify-content: flex-start; background: rgba(9,10,13,.98); }.site-nav.is-open { display: flex; }.site-nav > a { padding: 16px 0; font: 2rem var(--display); border-bottom: 1px solid var(--line); }.site-nav > a::after { display: none; }.site-nav .nav-cta { margin-top: 15px; text-align: center; }
  .hero { display: block; min-height: 0; max-height: none; padding-top: 135px; padding-bottom: 70px; }.hero-copy { max-width: 700px; }.hero h1 { font-size: clamp(4.4rem, 16vw, 7rem); }.hero-visual { width: 520px; margin: 55px auto -20px; transform: scale(.88); }.hero-art-stage { min-height: 0; margin: 45px auto 0; }.hero-art-stage > img { width: min(100%,620px); }.hero-art-note { left: 5%; bottom: 7%; }.moments { padding-bottom: 100px; }.moment-grid { grid-template-columns: 1fr; }.moment-option, .moment-option:nth-child(2) { border-right: 0; }.moment-option:last-child { grid-column: auto; display: block; }.moment-option:last-child > img { height: auto; aspect-ratio: 1/.82; border-right: 0; border-bottom: 1px solid var(--line-gold); }
  .why { padding-block: 100px; }.why-grid, .responsible-card, .partners-inner, .vision-grid, .campaign-heading { grid-template-columns: 1fr; }.why-grid { gap: 30px; }.experience, .product-showcase, .partners, .vision { padding-block: 100px; }.community-visual { width: calc(100% - 30px); margin-bottom: 100px; }.community-copy { bottom: 45px; }.moment-one { right: 4%; top: 7%; }.moment-two { display: none; }.campaign-worlds { padding-bottom: 100px; }.campaign-heading { gap: 25px; }.campaign-grid { grid-template-rows: 380px repeat(2,270px); }
  .world-atlas-meta { align-items: flex-end; }.atlas-dialog { width: 100vw; height: 100dvh; border: 0; }.atlas-dialog-bar { min-height: 72px; padding: 12px 14px; }.atlas-dialog-bar h2 { font-size: 1.65rem; }.atlas-dialog-bar > div:first-child span { display: none; }.atlas-dialog-shell > p { padding-block: 8px; }
  .passport-panel { padding: 45px 25px; gap: 45px; }.feature-grid { grid-template-columns: 1fr; }.feature-card { min-height: 0; border-left: 1px solid var(--line); }.feature-card .feature-icon { margin-bottom: 25px; }.feature-card p { min-height: 0; }
  .responsible { padding-bottom: 100px; }.responsible-card { gap: 20px; padding: 45px 28px; }.vision-line { margin-bottom: 65px; }.vision-grid { gap: 30px; }
  .site-footer > div { flex-wrap: wrap; justify-content: flex-end; }
}

@media (max-width: 560px) {
  .brand-name { font-size: 1.1rem; }.brand-shield { width: 38px; height: 38px; }
  .hero { padding-top: 115px; }.status-pill { margin-bottom: 26px; }.hero h1 { font-size: clamp(4rem, 20vw, 5.8rem); }.hero-lede { font-size: .94rem; }.button-row { align-items: stretch; }.button { width: 100%; }.proof-line { gap: 8px; }
  .hero-visual { width: 430px; left: 50%; margin-left: -215px; transform: scale(.72); margin-top: -10px; margin-bottom: -90px; }.checkin-card { left: 5px; }.level-card { right: 0; }.hero-emblem { right: 0; }.hero-art-stage { margin-top: 30px; }.hero-art-stage > img { width: 118%; max-width: none; }.hero-art-note { left: 0; bottom: 3%; width: 86%; }.moment-filters { gap: 6px; }.moment-filters button { padding: 9px 11px; }.moment-option > div { padding: 22px; }
  .section-intro h2, .passport-copy h2, .responsible h2, .partners .section-intro h2, .vision-grid h2 { font-size: clamp(3rem, 15vw, 4.5rem); }.why-grid { margin-top: 45px; }.thesis-card { padding: 25px; }.thesis-card strong { font-size: 1.8rem; }.community-visual { width: 100%; min-height: 620px; border-inline: 0; }.community-visual > img { object-position: 57% center; }.community-shade { background: linear-gradient(0deg,rgba(7,8,10,.96),rgba(7,8,10,.12) 78%); }.community-copy { bottom: 32px; }.community-copy h2 { font-size: clamp(3.4rem,16vw,4.8rem); }.moment-one { top: 20px; right: 15px; min-width: 180px; }
  .steps { grid-template-columns: 1fr; }.steps li { border-right: 0; border-bottom: 1px solid var(--line); }.steps li:last-child { border-bottom: 0; }
  .passport-panel { margin-inline: -15px; border-inline: 0; }.passport-book { width: 390px; transform: scale(.78) rotate(2.8deg); margin: -55px -55px; }.feature-grid { margin-inline: -15px; }.responsible-card { margin-inline: -15px; border-inline: 0; }.partner-stack article { grid-template-columns: 48px 1fr; }.partner-stack article > span { font-size: 2rem; }
  .vision-line { gap: 8px; font-size: .45rem; }.future-tags { gap: 5px; }.campaign-heading h2 { font-size: clamp(3.3rem,15vw,4.7rem); }.campaign-grid { grid-template-columns: 1fr; grid-template-rows: none; }.campaign-feature { grid-column: auto; }.campaign-tile, .campaign-feature { min-height: 390px; }.campaign-feature h3 { font-size: 2.25rem; }.cta-card { margin-inline: -15px; min-height: 520px; }.cta-card h2 { font-size: clamp(3.8rem, 17vw, 5.4rem); }
  .world-atlas { margin-inline: -15px; border-inline: 0; }.world-atlas-meta { min-height: 0; display: block; padding: 22px 15px 17px; }.world-atlas-meta h3 { font-size: 2.4rem; }.atlas-launch { width: 100%; margin-top: 15px; }.world-atlas-poster { border-bottom: 1px solid var(--line-gold); }.atlas-hint { right: 9px; bottom: 9px; padding: 8px 9px; font-size: .44rem; }.atlas-hint b { display: none; }.world-atlas-strip { padding: 12px 15px; }.atlas-dialog-bar > div:first-child { display: none; }.atlas-dialog-bar { justify-content: flex-end; }.atlas-controls { width: 100%; }.atlas-controls output { flex: 1; }.atlas-controls .atlas-reset { display: none; }.atlas-controls .atlas-close { margin-left: auto; }.atlas-viewport img { min-width: 100%; }
  .site-footer { grid-template-columns: 1fr; }.site-footer > div { justify-self: start; justify-content: flex-start; }
}

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