:root {
  --black: #050505;
  --ink: #0a0a0a;
  --white: #f5f5f0;
  --muted: #aaa9a4;
  --line: rgba(245,245,240,.18);
  --pad: clamp(44px, 4.4vw, 88px);
  --ease: cubic-bezier(.2,.8,.2,1);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--black); }
body { margin: 0; color: var(--white); background: var(--black); font-family: Arial, Helvetica, sans-serif; overflow-x: hidden; cursor: default; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; color: inherit; }
::selection { background: var(--white); color: var(--black); }

.grain { position: fixed; inset: 0; pointer-events: none; z-index: 9998; opacity: .13; mix-blend-mode: soft-light; 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='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E"); }
.cursor-dot { width: 12px; height: 12px; border: 1px solid rgba(255,255,255,.7); border-radius: 50%; position: fixed; left: 0; top: 0; transform: translate(-50%,-50%); pointer-events: none; z-index: 9999; transition: width .25s, height .25s, background .25s, border-color .25s; mix-blend-mode: difference; }
.cursor-dot.is-active { width: 34px; height: 34px; background: white; border-color: white; }

.topbar { position: fixed; z-index: 1000; left: 0; top: 0; width: 100%; height: 88px; padding: 0 var(--pad); display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.1); background: linear-gradient(to bottom, rgba(5,5,5,.88), rgba(5,5,5,.58)); backdrop-filter: blur(14px); }
.brand-lockup { display: flex; align-items: center; gap: 13px; min-width: 240px; }
.brand-mark { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid white; font: 900 22px/1 Arial Black, Arial, sans-serif; transform: skewX(-8deg); }
.brand-copy { display: flex; flex-direction: column; text-transform: uppercase; line-height: 1; }
.brand-copy strong { font-size: 12px; letter-spacing: .15em; }
.brand-copy small { margin-top: 6px; color: var(--muted); font-size: 10px; letter-spacing: .18em; }
.nav { display: flex; align-items: center; gap: 34px; text-transform: uppercase; font-size: 10px; font-weight: 800; letter-spacing: .16em; }
.nav a { position: relative; padding: 12px 0; }
.nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 6px; height: 1px; background: white; transition: right .25s var(--ease); }
.nav a:hover::after { right: 0; }
.nav-cta { border: 1px solid var(--white); padding: 12px 16px !important; transition: background .25s, color .25s; }
.nav-cta:hover { background: var(--white); color: var(--black); }

.panel { position: relative; min-height: 92vh; padding: 120px var(--pad) 90px; overflow: hidden; }
.hero { min-height: 100vh; padding-top: 116px; display: flex; align-items: center; background: radial-gradient(circle at 74% 45%, rgba(255,255,255,.055), transparent 31%), var(--black); }
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px); background-size: 80px 80px; mask-image: linear-gradient(to bottom, black, transparent 90%); pointer-events: none; }
.hero-grid { width: 100%; max-width: 1780px; margin: 0 auto; display: grid; grid-template-columns: minmax(560px, .95fr) minmax(600px, 1.05fr); align-items: center; gap: 2vw; position: relative; z-index: 2; }
.eyebrow, .section-kicker { text-transform: uppercase; font-weight: 800; letter-spacing: .22em; font-size: 10px; color: var(--muted); }
.eyebrow { display: flex; gap: 12px; align-items: center; margin-bottom: 30px; }
.eyebrow span { width: 34px; height: 1px; background: white; }
.hero h1, .arena h2, .bull-room h2, .community h2 { margin: 0; font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif; text-transform: uppercase; font-weight: 900; letter-spacing: -.035em; line-height: .82; }
.hero h1 { font-size: clamp(104px, 8.3vw, 166px); }
.hero h1 .outline { color: transparent; -webkit-text-stroke: 2px var(--white); }
.hero-line { max-width: 610px; margin: 34px 0 30px; color: #d2d2cc; font-size: 17px; line-height: 1.55; letter-spacing: .01em; }
.ca-block { width: min(670px, 100%); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 16px 0; margin: 20px 0 24px; }
.ca-label { margin-bottom: 12px; color: var(--muted); font-size: 9px; font-weight: 900; letter-spacing: .22em; }
.ca-row { display: flex; gap: 12px; align-items: stretch; }
.ca-row code { flex: 1; display: flex; align-items: center; padding: 0 16px; min-width: 0; height: 48px; border: 1px solid rgba(255,255,255,.15); color: #d8d8d4; font-size: 12px; letter-spacing: .05em; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.copy-btn { min-width: 118px; border: 1px solid var(--white); background: var(--white); color: var(--black); font-size: 10px; font-weight: 900; letter-spacing: .16em; cursor: pointer; transition: transform .18s var(--ease), background .25s, color .25s; }
.copy-btn:hover { background: transparent; color: white; }
.copy-btn:active { transform: scale(.97); }
.hero-actions { display: flex; gap: 12px; }
.btn { height: 48px; display: inline-flex; align-items: center; justify-content: space-between; min-width: 188px; padding: 0 18px; border: 1px solid white; font-size: 10px; font-weight: 900; letter-spacing: .16em; transition: background .25s, color .25s, transform .25s var(--ease); }
.btn span { font-size: 18px; line-height: 1; }
.btn-light { background: white; color: black; }
.btn-light:hover { background: transparent; color: white; }
.btn-dark { background: transparent; color: white; }
.btn-dark:hover { background: white; color: black; }
.hero-meta { margin-top: 28px; display: flex; gap: 34px; color: #7d7d79; font-size: 9px; font-weight: 800; letter-spacing: .2em; }

.hero-art-wrap { position: relative; height: min(790px, 76vh); display: grid; place-items: center; }
.hero-art { width: min(90%, 760px); height: auto; filter: drop-shadow(0 35px 35px rgba(0,0,0,.45)); animation: breathe 5.8s ease-in-out infinite; position: relative; z-index: 3; user-select: none; }
@keyframes breathe { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-8px) scale(1.008); } }
.hero-ring { position: absolute; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; width: 630px; height: 630px; }
.ring-a { animation: spin 22s linear infinite; border-style: dashed; }
.ring-b { width: 470px; height: 470px; opacity: .7; animation: spinReverse 18s linear infinite; }
.ring-a::before, .ring-b::before { content: ""; position: absolute; width: 7px; height: 7px; border-radius: 50%; background: white; top: 7%; left: 29%; box-shadow: 0 0 22px white; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spinReverse { to { transform: rotate(-360deg); } }
.hero-pulse { position: absolute; width: 64%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.12), transparent 68%); filter: blur(8px); animation: pulse 3.2s ease-in-out infinite; }
@keyframes pulse { 50% { transform: scale(1.08); opacity: .55; } }
.bull-tag { position: absolute; right: 2%; bottom: 10%; z-index: 5; text-align: right; font-size: 9px; line-height: 1.45; letter-spacing: .18em; color: var(--muted); }
.bull-tag strong { color: white; font-size: 11px; }
.hero-number { position: absolute; right: var(--pad); top: 112px; font-size: 10px; letter-spacing: .18em; color: #666; }
.scroll-cue { position: absolute; left: var(--pad); bottom: 32px; font-size: 9px; font-weight: 800; letter-spacing: .18em; color: #777; }
.scroll-cue span { display: inline-block; margin-left: 10px; animation: scrollCue 1.6s ease-in-out infinite; }
@keyframes scrollCue { 50% { transform: translateY(5px); } }


.arena { min-height: 1050px; background: var(--white); color: var(--black); padding-top: 110px; }
.arena .section-kicker { color: #777; }
.arena-grid { max-width: 1700px; margin: 60px auto 0; display: grid; grid-template-columns: 1.02fr .98fr; gap: 8vw; }
.arena-title h2 { font-size: clamp(88px, 7vw, 138px); }
.arena-title h2 span { color: transparent; -webkit-text-stroke: 2px var(--black); }
.arena-title p { margin: 50px 0 0; max-width: 620px; font-size: 20px; line-height: 1.55; }
.arena-stories { display: flex; flex-direction: column; border-top: 1px solid #bbb; }
.story-card { display: grid; grid-template-columns: 62px 1fr; gap: 12px 26px; padding: 32px 0 36px; border-bottom: 1px solid #bbb; }
.story-card span { grid-row: 1 / span 2; font-size: 10px; font-weight: 900; letter-spacing: .16em; color: #777; }
.story-card h3 { margin: 0; font: 900 25px/1 Arial Black, Arial, sans-serif; letter-spacing: -.02em; }
.story-card p { margin: 0; max-width: 570px; color: #444; font-size: 15px; line-height: 1.55; }
.arena-word { position: absolute; left: 2.5vw; bottom: -10vh; font: 900 38vw/.68 Impact, sans-serif; letter-spacing: -.08em; color: rgba(0,0,0,.025); pointer-events: none; }

.bull-room { min-height: 1080px; display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; background: #050505; }
.bull-room-bg { position: absolute; inset: -10%; opacity: .11; background-image: linear-gradient(rgba(0,0,0,.2), rgba(0,0,0,.55)), url('../assets/images/paid-bull-source.jpg'); background-size: cover; background-position: center; filter: blur(1px) grayscale(1); transform: scale(1.05); }
.bull-room::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 68% 50%, transparent 0 18%, rgba(0,0,0,.72) 52%, #050505 82%); }
.bull-room-copy { position: relative; z-index: 4; align-self: center; max-width: 700px; }
.bull-room h2 { margin-top: 34px; font-size: clamp(105px, 8vw, 160px); }
.bull-room h2 span { color: transparent; -webkit-text-stroke: 2px white; }
.bull-room-copy p { max-width: 540px; color: #a3a39e; line-height: 1.65; font-size: 16px; margin-top: 30px; }
.bull-seal { position: relative; z-index: 5; justify-self: center; width: 530px; aspect-ratio: 1; border-radius: 50%; border: 1px solid rgba(255,255,255,.28); background: #050505; overflow: visible; cursor: pointer; transition: transform .35s var(--ease), box-shadow .35s; }
.bull-seal:hover { transform: scale(1.025); box-shadow: 0 0 0 18px rgba(255,255,255,.03), 0 0 70px rgba(255,255,255,.08); }
.bull-seal img { width: 84%; height: 84%; object-fit: cover; border-radius: 50%; filter: grayscale(1) contrast(1.12); }
.seal-ring { position: absolute; inset: -52px; display: grid; place-items: center; font-size: 10px; font-weight: 900; letter-spacing: .35em; color: #777; animation: spin 18s linear infinite; pointer-events: none; }
.bull-seal.is-awake { animation: hornJolt .55s var(--ease); box-shadow: 0 0 0 24px rgba(255,255,255,.06), 0 0 100px rgba(255,255,255,.18); }
@keyframes hornJolt { 0%{transform:rotate(0) scale(1)} 25%{transform:rotate(-2deg) scale(1.03)} 55%{transform:rotate(2deg) scale(.99)} 100%{transform:rotate(0) scale(1)} }
.bull-whisper { position: absolute; z-index: 6; right: 7vw; bottom: 76px; font-size: 10px; font-weight: 900; letter-spacing: .2em; color: transparent; transition: color .25s; }
.bull-whisper.show { color: white; }

.mark { min-height: 980px; background: #0a0a0a; }
.mark-composition { max-width: 1700px; margin: 48px auto 0; display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; min-height: 660px; position: relative; z-index: 2; }
.giant-p { font: 900 520px/.75 Impact, sans-serif; letter-spacing: -.08em; color: transparent; -webkit-text-stroke: 2px rgba(255,255,255,.9); transform: skewX(-3deg); }
.mark-intro { max-width: 580px; font-size: 26px; line-height: 1.35; margin: -8px 0 0 18px; }
.mark-intro em { font-style: normal; background: white; color: black; padding: 0 .18em; }
.mark-spec { border-top: 1px solid var(--line); }
.spec-row { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; border-bottom: 1px solid var(--line); text-transform: uppercase; }
.spec-row span { color: #777; font-size: 9px; font-weight: 900; letter-spacing: .2em; }
.spec-row strong { font-size: 20px; letter-spacing: .03em; }
.mark-watermark { position: absolute; width: 620px; right: -160px; bottom: -180px; opacity: .025; transform: rotate(-10deg); }

.community { min-height: 860px; background: var(--white); color: var(--black); display: flex; align-items: center; }
.community-grid { width: 100%; max-width: 1700px; margin: 0 auto; display: grid; grid-template-columns: .9fr 1.1fr; align-items: end; gap: 7vw; }
.community .section-kicker { color: #777; }
.community h2 { margin-top: 32px; font-size: clamp(100px, 8vw, 158px); }
.community p { max-width: 560px; margin-top: 28px; color: #444; font-size: 16px; line-height: 1.6; }
.community-actions { display: grid; gap: 14px; }
.door-card { min-height: 166px; border: 2px solid var(--black); display: grid; grid-template-columns: 1fr auto; grid-template-rows: auto 1fr; padding: 22px 26px; transition: background .25s, color .25s, transform .28s var(--ease); overflow: hidden; position: relative; }
.door-card::after { content: ""; position: absolute; inset: 0; background: black; transform: translateY(101%); transition: transform .35s var(--ease); z-index: -1; }
.door-card:hover { color: white; transform: translateY(-4px); }
.door-card:hover::after { transform: translateY(0); }
.door-card.inverse { background: black; color: white; }
.door-card.inverse::after { background: white; }
.door-card.inverse:hover { color: black; }
.door-index { font-size: 9px; font-weight: 900; letter-spacing: .16em; color: #777; }
.door-card strong { align-self: end; font: 900 42px/1 Arial Black, Arial, sans-serif; letter-spacing: -.04em; }
.door-arrow { grid-row: 1 / span 2; grid-column: 2; align-self: center; font-size: 42px; }

.final { min-height: 980px; display: grid; place-items: center; text-align: center; background: #030303; }
.final::before { content: ""; position: absolute; width: 740px; height: 740px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; }
.final-mark { position: absolute; width: 720px; opacity: .07; filter: blur(.2px); animation: breathe 7s ease-in-out infinite; }
.final-copy { position: relative; z-index: 2; margin-top: -110px; }
.final-overline { color: #777; font-size: 9px; font-weight: 900; letter-spacing: .24em; }
.final-copy h2 { margin: 20px 0 0; font: 900 clamp(110px, 9vw, 180px)/.82 Impact, sans-serif; text-transform: uppercase; letter-spacing: -.045em; }
.final-copy p { margin: 14px 0 0; font-size: 20px; font-weight: 900; letter-spacing: .16em; }
.final-ca { position: absolute; z-index: 3; left: 50%; transform: translateX(-50%); bottom: 120px; width: min(760px, 68vw); display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 16px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 14px 0; }
.final-ca > span { color: #777; font-size: 8px; font-weight: 900; letter-spacing: .18em; }
.final-ca code { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; text-align: left; font-size: 11px; color: #b7b7b2; }
.final-copy-btn { height: 44px; }
.footer-line { position: absolute; left: var(--pad); right: var(--pad); bottom: 28px; display: flex; justify-content: space-between; color: #5d5d59; font-size: 8px; font-weight: 900; letter-spacing: .2em; }

.toast { position: fixed; z-index: 9997; left: 50%; bottom: 38px; transform: translate(-50%, 18px); background: white; color: black; padding: 13px 18px; font-size: 9px; font-weight: 900; letter-spacing: .18em; opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s var(--ease); }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

@media (max-width: 1500px) {
  :root { --pad: 52px; }
  .topbar { height: 78px; }
  .hero { padding-top: 100px; }
  .hero-grid { grid-template-columns: minmax(510px,.98fr) minmax(510px,1.02fr); }
  .hero-art-wrap { height: 690px; }
  .hero-ring { width: 540px; height: 540px; }
  .ring-b { width: 390px; height: 390px; }
  .bull-seal { width: 450px; }
  .giant-p { font-size: 430px; }
  .door-card strong { font-size: 34px; }
}
@media (max-width: 1180px) {
  :root { --pad: 34px; }
  .nav { gap: 20px; }
  .hero-grid, .arena-grid, .community-grid { gap: 34px; }
  .hero-art-wrap { height: 610px; }
  .bull-seal { width: 390px; }
}
