:root {
  --ink: #090a09;
  --paper: #f0f0eb;
  --white: #fff;
  --lime: #b8ff20;
  --muted: #a7aba2;
  --line: rgba(255,255,255,.16);
  --pad: clamp(22px, 5vw, 82px);
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --body: "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--ink); color: var(--white); font-family: var(--body); overflow-x: hidden; }
body::before { content: ""; position: fixed; z-index: 999; inset: 0; pointer-events: none; opacity: .025; 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='.8'/%3E%3C/svg%3E"); }
body.menu-open, body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
img { display: block; max-width: 100%; }
::selection { background: var(--lime); color: var(--ink); }

.preloader { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; background: var(--ink); transition: transform .8s cubic-bezier(.76,0,.24,1); }
.preloader.is-hidden { transform: translateY(-100%); }
.preloader__mark { font: 900 clamp(54px, 10vw, 130px)/1 var(--display); letter-spacing: -.04em; }
.preloader__line { position: absolute; bottom: 25%; width: min(320px, 60vw); height: 2px; background: #242624; overflow: hidden; }
.preloader__line span { display: block; width: 100%; height: 100%; background: var(--lime); transform: translateX(-100%); animation: load 1s ease forwards; }
@keyframes load { to { transform: translateX(0); } }

.scroll-progress { position: fixed; z-index: 100; top: 0; left: 0; height: 2px; width: 0; background: var(--lime); }
.cursor-glow { position: fixed; z-index: 1; width: 440px; aspect-ratio: 1; border-radius: 50%; pointer-events: none; background: radial-gradient(circle, rgba(184,255,32,.07), transparent 68%); translate: -50% -50%; opacity: 0; transition: opacity .25s; }

.site-header { position: fixed; z-index: 90; top: 0; left: 0; width: 100%; height: 92px; padding: 0 var(--pad); display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid transparent; transition: .3s ease; }
.site-header.scrolled { height: 72px; background: rgba(9,10,9,.88); backdrop-filter: blur(18px); border-color: var(--line); }
.brand { display: flex; align-items: center; gap: 12px; position: relative; z-index: 2; }
.brand__mark { width: 38px; height: 38px; }
.brand__mark-img { object-fit: contain; filter: drop-shadow(0 0 14px rgba(184,255,32,.32)); }
.brand span { display: flex; flex-direction: column; line-height: .8; }
.brand strong { font: 900 26px/1 var(--display); letter-spacing: -.03em; }
.brand small { color: var(--lime); font-size: 8px; letter-spacing: .36em; }
.desktop-nav { display: flex; align-items: center; gap: clamp(24px, 3vw, 54px); margin-left: 8vw; }
.desktop-nav a { position: relative; color: #d7d9d3; font-size: 12px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; bottom: -8px; width: 100%; height: 1px; background: var(--lime); transform: scaleX(0); transform-origin: right; transition: transform .3s; }
.desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { display: flex; align-items: center; gap: 30px; padding: 13px 16px 13px 20px; border: 1px solid rgba(255,255,255,.25); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }
.nav-cta span { color: var(--lime); font-size: 17px; }
.menu-toggle { display: none; position: relative; z-index: 95; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span { position: absolute; left: 8px; width: 28px; height: 2px; background: #fff; transition: .3s; }
.menu-toggle span:first-child { top: 17px; }
.menu-toggle span:last-child { top: 26px; }
.menu-toggle[aria-expanded="true"] span:first-child { top: 22px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { top: 22px; transform: rotate(-45deg); }
.mobile-menu { position: fixed; inset: 0; z-index: 80; display: flex; flex-direction: column; justify-content: center; padding: 120px var(--pad) 50px; background: #0c0d0c; transform: translateY(-100%); transition: transform .7s cubic-bezier(.76,0,.24,1); }
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu nav { display: grid; }
.mobile-menu nav a { display: flex; gap: 20px; align-items: baseline; padding: 12px 0; border-bottom: 1px solid var(--line); font: 900 clamp(45px, 12vw, 80px)/1 var(--display); text-transform: uppercase; }
.mobile-menu nav span { font: 600 11px/1 var(--body); color: var(--lime); }
.mobile-menu p { margin-top: auto; color: var(--muted); font-size: 12px; line-height: 1.7; }

.hero { position: relative; min-height: 100svh; overflow: hidden; display: flex; align-items: center; padding: 130px var(--pad) 75px; }
.hero__grid { position: absolute; inset: 0; opacity: .17; background-image: linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px); background-size: 80px 80px; mask-image: linear-gradient(to bottom, #000, transparent 92%); }
.hero__orb { position: absolute; width: clamp(460px, 53vw, 860px); aspect-ratio: 1; right: -8%; top: 44%; translate: 0 -50%; border-radius: 50%; background: radial-gradient(circle at 42% 40%, rgba(184,255,32,.3), rgba(85,116,25,.08) 38%, transparent 65%); filter: blur(10px); }
.hero::after { content: ""; position: absolute; z-index: 3; inset: 0; pointer-events: none; opacity: .055; background: repeating-linear-gradient(to bottom, transparent 0 4px, #fff 5px); mix-blend-mode: overlay; }
.hero__beams { position: absolute; z-index: 1; inset: 0; overflow: hidden; pointer-events: none; }
.hero__beams span { position: absolute; left: 60%; top: -35%; width: 2px; height: 150%; transform-origin: 50% 100%; background: linear-gradient(to bottom, transparent, rgba(184,255,32,.5), transparent); box-shadow: 0 0 55px 12px rgba(184,255,32,.12); animation: beamSweep 9s ease-in-out infinite alternate; }
.hero__beams span:nth-child(2) { left: 78%; rotate: 22deg; animation-delay: -3s; }.hero__beams span:nth-child(3) { left: 91%; rotate: -19deg; animation-delay: -6s; }
@keyframes beamSweep { 0% { rotate: -24deg; opacity: .15; } 100% { rotate: 25deg; opacity: .65; } }
.hero__content { position: relative; z-index: 4; width: 100%; }
.eyebrow, .section-kicker { margin: 0; color: #b4b7af; font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: clamp(30px, 5vh, 60px); }
.eyebrow span { width: 33px; height: 1px; background: var(--lime); }
.hero h1 { position: relative; z-index: 2; max-width: 1140px; margin: 0; font: 900 clamp(86px, 15vw, 245px)/.71 var(--display); letter-spacing: -.045em; text-transform: uppercase; }
.hero-line { display: block; overflow: hidden; }
.hero-line > span { display: block; transform: translateY(110%); animation: heroUp 1s 1.05s cubic-bezier(.16,1,.3,1) forwards; }
.hero-line:nth-child(2)>span { animation-delay: 1.15s; }
.hero-line--outline { margin-left: clamp(28px, 7vw, 120px); color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,.8); }
@keyframes heroUp { to { transform: translateY(0); } }
.hero__bottom { display: flex; align-items: center; gap: clamp(30px, 6vw, 100px); margin: clamp(40px, 7vh, 75px) 0 0 clamp(10px, 8vw, 135px); }
.hero__bottom > p { max-width: 360px; margin: 0; color: #b6b8b2; font-size: 14px; line-height: 1.7; }
.circle-link { width: 114px; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; padding: 18px; display: flex; flex-direction: column; justify-content: space-between; flex-shrink: 0; transition: color .3s, background .3s, transform .3s; }
.circle-link span { font-size: 10px; line-height: 1.35; text-transform: uppercase; letter-spacing: .13em; }
.circle-link b { align-self: end; color: var(--lime); font-size: 22px; }
.circle-link:hover { background: var(--lime); color: var(--ink); border-color: var(--lime); transform: rotate(-5deg); }
.circle-link:hover b { color: var(--ink); }
.hero__visual { position: absolute; z-index: 2; width: min(48vw, 720px); aspect-ratio: 1; right: -2%; top: 48%; translate: 0 -50%; display: grid; place-items: center; opacity: .88; }
.hero__rings, .hero__rings i { position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.07); border-radius: 50%; }
.hero__rings { opacity: .7; animation: spin 42s linear infinite; }
.hero__rings::before, .hero__rings::after { content: ""; position: absolute; width: 8px; aspect-ratio: 1; border-radius: 50%; background: var(--lime); }
.hero__rings::before { top: 14%; left: 15%; box-shadow: 0 0 30px var(--lime); }
.hero__rings::after { bottom: 2%; right: 37%; }
.hero__rings i:nth-child(1) { inset: 10%; border-style: dashed; }
.hero__rings i:nth-child(2) { inset: 25%; }
.hero__rings i:nth-child(3) { inset: 39%; border-color: rgba(184,255,32,.16); }
@keyframes spin { to { rotate: 360deg; } }
.hero-crest { position: relative; z-index: 2; width: 39%; min-width: 190px; filter: drop-shadow(0 35px 45px rgba(0,0,0,.55)); transition: transform .25s ease-out; }
.hero-crest svg { display: block; width: 100%; overflow: visible; }
.hero-crest__frame { fill: rgba(9,10,9,.74); stroke: rgba(255,255,255,.24); stroke-width: 1.2; }
.hero-crest__inner { fill: none; stroke: rgba(184,255,32,.2); stroke-width: 1; }
.hero-crest__word { fill: #f3f4ef; font: 900 78px/1 var(--display); letter-spacing: -5px; }
.hero-crest__accent { fill: var(--lime); }
.hero-crest span { display: block; margin-top: 12px; color: #767b72; font-size: 7px; letter-spacing: .2em; text-align: center; }
.coordinate { position: absolute; padding: 7px 10px; background: rgba(9,10,9,.5); border: 1px solid var(--line); color: #b9bbb6; font-size: 8px; letter-spacing: .15em; }
.coordinate--one { top: 17%; right: 18%; }.coordinate--two { bottom: 20%; left: 7%; }.coordinate--three { right: 2%; bottom: 37%; }
.hero-country { position: absolute; z-index: 6; right: var(--pad); top: 112px; min-width: 270px; display: grid; grid-template-columns: 48px 1fr auto; align-items: center; gap: 13px; padding: 9px 12px; background: rgba(9,10,9,.7); border: 1px solid var(--line); backdrop-filter: blur(12px); }
.hero-country strong, .hero-country span { display: block; }.hero-country strong { font: 900 12px/1 var(--display); letter-spacing: .08em; }.hero-country span { margin-top: 5px; color: #797e74; font-size: 6px; letter-spacing: .18em; }.hero-country b { color: var(--lime); font: 900 20px/1 var(--display); }
.de-flag { display: grid; grid-template-rows: repeat(3,1fr); width: 112px; aspect-ratio: 5/3; overflow: hidden; border: 1px solid rgba(255,255,255,.18); box-shadow: 0 15px 45px rgba(0,0,0,.35); transform: skewY(-3deg) rotate(-3deg); }
.de-flag i:nth-child(1) { background: #050505; }.de-flag i:nth-child(2) { background: #dd0000; }.de-flag i:nth-child(3) { background: #ffce00; }
.de-flag--small { width: 48px; box-shadow: none; transform: none; }
.hero__meta { position: absolute; z-index: 5; left: var(--pad); right: var(--pad); bottom: 25px; display: flex; align-items: center; gap: 18px; color: #777b73; font-size: 8px; text-transform: uppercase; letter-spacing: .22em; }
.hero__meta div { height: 1px; flex: 1; background: rgba(255,255,255,.12); }

.ticker { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--lime); color: var(--ink); transform: rotate(-1deg) scale(1.02); }
.ticker__track { display: flex; width: max-content; animation: marquee 28s linear infinite; }
.ticker span { padding: 20px 28px; white-space: nowrap; font: 900 18px/1 var(--display); letter-spacing: .05em; }
.ticker b { margin-left: 50px; }
@keyframes marquee { to { transform: translateX(-50%); } }

.section { padding: clamp(110px, 13vw, 200px) var(--pad); }
.section-heading { display: grid; grid-template-columns: .8fr 2fr 1fr; align-items: end; gap: 40px; margin-bottom: clamp(55px, 8vw, 110px); }
.section-heading h2, .manifesto h2, .partners h2, .germany h2, .contact h2 { margin: 0; font: 900 clamp(60px, 9vw, 145px)/.85 var(--display); letter-spacing: -.035em; }
.section-heading h2 em, .contact h2 em { color: transparent; font-style: normal; -webkit-text-stroke: 1px rgba(255,255,255,.5); }
.section-copy { max-width: 330px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.75; }
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; perspective: 1400px; }
.team-card { position: relative; min-height: clamp(470px, 42vw, 650px); overflow: hidden; border: 1px solid var(--line); background: #0b0c0b; transform-style: preserve-3d; transition: transform .2s ease-out, border .3s, box-shadow .3s; }
.team-card::before { content: ""; position: absolute; z-index: 2; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(7,8,7,.18), transparent 35%, rgba(7,8,7,.92) 87%), linear-gradient(90deg, rgba(7,8,7,.42), transparent 58%); }
.team-card::after { content: ""; position: absolute; z-index: 4; left: 0; bottom: 0; width: 0; height: 3px; background: var(--lime); transition: width .55s cubic-bezier(.16,1,.3,1); }
.team-card:hover { border-color: rgba(184,255,32,.58); box-shadow: 0 30px 65px rgba(0,0,0,.3); }
.team-card:hover::after { width: 100%; }
.team-card__media { position: absolute; inset: 0; overflow: hidden; }
.team-card__media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.03); filter: saturate(.82) contrast(1.08); transition: transform .9s cubic-bezier(.16,1,.3,1), filter .5s; }
.team-card:hover .team-card__media img { transform: scale(1.09); filter: saturate(1) contrast(1.05); }
.team-card__top { position: absolute; z-index: 3; top: 24px; left: 24px; right: 24px; display: flex; justify-content: space-between; color: #c5c8c0; font-size: 8px; letter-spacing: .16em; text-transform: uppercase; }
.live-dot::before { content: ""; display: inline-block; width: 5px; height: 5px; margin: 0 7px 1px 0; border-radius: 50%; background: var(--lime); box-shadow: 0 0 8px var(--lime); }
.team-card--lime .live-dot::before { background: var(--ink); box-shadow: none; }
.team-card__content { position: absolute; z-index: 3; left: 24px; right: 24px; bottom: 23px; transform: translateZ(28px); }
.team-card__content p { margin: 0 0 12px; color: #b0b4ac; font-size: 9px; text-transform: uppercase; letter-spacing: .15em; }
.team-card__content h3 { max-width: 90%; margin: 0 0 25px; font: 900 clamp(42px, 5vw, 78px)/.82 var(--display); letter-spacing: -.02em; text-transform: uppercase; }
.team-card__content a { display: flex; justify-content: space-between; padding-top: 17px; border-top: 1px solid rgba(255,255,255,.3); font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }

.roster-showcase { position: relative; overflow: hidden; padding: clamp(100px, 12vw, 180px) var(--pad); background: #0d0f0d; }
.roster-showcase::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .16; background: linear-gradient(90deg, transparent 49.9%, rgba(184,255,32,.25) 50%, transparent 50.1%), linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px); background-size: 100% 100%, 100% 70px; }
.roster-showcase__head { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 55px; }
.roster-showcase__head .section-kicker { margin-bottom: 25px; }
.roster-showcase__head h2 { margin: 0; font: 900 clamp(62px, 9vw, 145px)/.82 var(--display); letter-spacing: -.035em; }
.roster-showcase__head h2 em { color: transparent; font-style: normal; -webkit-text-stroke: 1px rgba(255,255,255,.55); }
.roster-status { min-width: 170px; padding: 18px; border: 1px solid var(--line); background: rgba(255,255,255,.025); }
.roster-status i { display: inline-block; width: 6px; height: 6px; margin-right: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 12px var(--lime); }
.roster-status span, .roster-status strong { display: block; }.roster-status span { color: #a9aca5; font-size: 8px; letter-spacing: .16em; }.roster-status strong { margin-top: 22px; font: 900 24px/1 var(--display); }
.roster-stage { position: relative; overflow: hidden; border: 1px solid var(--line); background: #070807; box-shadow: 0 45px 100px rgba(0,0,0,.35); }
.roster-photo { position: relative; min-height: 610px; overflow: hidden; }
.roster-photo::before { content: ""; position: absolute; z-index: 2; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(4,5,4,.08), rgba(4,5,4,.25) 70%, rgba(4,5,4,.72) 100%), linear-gradient(90deg, rgba(4,5,4,.28), transparent 22%, transparent 78%, rgba(4,5,4,.28)); }
.roster-photo > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; transform: scale(1.015); transition: transform .2s ease-out; }
.roster-stage__scan { position: absolute; z-index: 3; inset: 0; pointer-events: none; opacity: .07; background: repeating-linear-gradient(to bottom, transparent 0 5px, #fff 6px); }
.roster-names { position: relative; z-index: 4; display: grid; grid-template-columns: repeat(5,1fr); align-items: end; gap: 10px; padding: 24px clamp(18px,2.5vw,34px) 28px; border-top: 1px solid rgba(255,255,255,.12); background: linear-gradient(180deg, rgba(10,12,10,.96), #040504); }
.roster-names > div { min-width: 0; padding-left: 13px; border-left: 1px solid rgba(255,255,255,.24); }
.roster-names span { display: block; color: #858a80; font-size: 7px; letter-spacing: .14em; }
.roster-names strong { display: block; margin-top: 7px; overflow: hidden; font: 900 clamp(28px, 3.6vw, 56px)/1 var(--display); letter-spacing: 0; text-overflow: clip; }
.roster-names b { display: inline-block; margin-top: 5px; padding: 4px 6px; background: var(--lime); color: var(--ink); font-size: 6px; letter-spacing: .14em; }
.roster-showcase__foot { position: relative; z-index: 2; display: flex; justify-content: space-between; gap: 30px; padding: 24px 0 0; color: #747970; font-size: 8px; letter-spacing: .15em; }
.roster-showcase__foot a { color: #d9dcd4; }

.manifesto { display: grid; grid-template-columns: .7fr 2fr; gap: clamp(40px, 8vw, 140px); padding: clamp(110px, 14vw, 220px) var(--pad); background: var(--paper); color: var(--ink); }
.manifesto__crest { position: relative; align-self: center; width: min(260px,100%); padding: 32px; background: rgba(0,0,0,.035); border: 1px solid rgba(0,0,0,.16); clip-path: polygon(14% 0,86% 0,100% 12%,100% 88%,86% 100%,14% 100%,0 88%,0 12%); }
.manifesto__crest svg { display: block; width: 100%; filter: drop-shadow(0 18px 18px rgba(0,0,0,.14)); }
.manifesto__crest-frame { fill: var(--ink); }.manifesto__crest-word { fill: var(--paper); font: 900 78px/1 var(--display); letter-spacing: -5px; }.manifesto__crest-accent { fill: var(--lime); }
.manifesto__crest span { display: block; margin-top: 18px; color: #595d55; font-size: 6px; font-weight: 800; letter-spacing: .16em; text-align: center; }
.manifesto .section-kicker { color: #555850; margin-bottom: 35px; }
.manifesto h2 { font-size: clamp(60px, 8.2vw, 135px); }
.manifesto h2 span { color: var(--lime); -webkit-text-stroke: 1px var(--ink); }
.manifesto__details { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; align-items: end; margin-top: 70px; padding-top: 28px; border-top: 1px solid rgba(0,0,0,.2); }
.manifesto__details > p { max-width: 390px; margin: 0; color: #53564f; font-size: 14px; line-height: 1.8; }
.stat-row { display: grid; grid-template-columns: repeat(3,1fr); }
.stat-row div { padding-left: 22px; border-left: 1px solid rgba(0,0,0,.18); }
.stat-row strong { display: block; font: 900 clamp(45px, 5vw, 74px)/1 var(--display); }
.stat-row strong::after { content: "+"; color: #6a9714; font-size: .4em; }
.stat-row span { display: block; margin-top: 9px; color: #666a62; font-size: 8px; text-transform: uppercase; letter-spacing: .14em; }

.jersey { min-height: 900px; display: grid; grid-template-columns: 1.25fr .75fr; background: #d8dad3; color: var(--ink); }
.jersey__visual { position: relative; min-height: 760px; overflow: hidden; display: grid; place-items: center; background: radial-gradient(circle at 52% 42%, #f9faf6 0 18%, #e6e8e2 58%, #ced1c8 100%); }
.jersey__visual::before { content: "VGK"; position: absolute; color: rgba(0,0,0,.035); font: 900 27vw/1 var(--display); letter-spacing: -.08em; }
.jersey__visual img { position: relative; z-index: 1; width: min(900px, 92%); mix-blend-mode: multiply; filter: contrast(1.05); transition: transform .7s cubic-bezier(.16,1,.3,1); }
.jersey__visual:hover img { transform: scale(1.035) rotate(-1deg); }
.product-badge { position: absolute; z-index: 3; top: 32px; left: 32px; padding: 10px 13px; background: var(--ink); color: #fff; font-size: 8px; text-transform: uppercase; letter-spacing: .17em; }
.jersey__caption { position: absolute; z-index: 3; left: 32px; right: 32px; bottom: 26px; display: flex; justify-content: space-between; font-size: 8px; text-transform: uppercase; letter-spacing: .16em; }
.jersey__info { display: flex; flex-direction: column; justify-content: center; padding: clamp(60px, 7vw, 110px); background: var(--lime); }
.jersey__info .section-kicker { color: rgba(0,0,0,.55); }
.jersey__info h2 { margin: 35px 0; font: 900 clamp(80px, 10vw, 160px)/.73 var(--display); letter-spacing: -.05em; }
.jersey__info h2 em { font-style: normal; color: #fff; -webkit-text-stroke: 2px var(--ink); }
.jersey__info > p { max-width: 460px; margin: 0; font-size: 14px; line-height: 1.8; }
.jersey__info ul { list-style: none; margin: 45px 0; padding: 0; border-top: 1px solid rgba(0,0,0,.25); }
.jersey__info li { display: flex; gap: 25px; padding: 15px 0; border-bottom: 1px solid rgba(0,0,0,.25); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.jersey__info li span { color: rgba(0,0,0,.46); }
.product-actions { display: flex; align-items: center; gap: 25px; }
.button { border: 0; cursor: pointer; padding: 18px 22px; font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.button--dark { background: var(--ink); color: #fff; }
.button span { margin-left: 35px; color: var(--lime); }
.price { font: 900 22px/1 var(--display); }
.price small { display: block; margin-top: 7px; font: 700 7px/1 var(--body); letter-spacing: .15em; }

.partners { padding: clamp(110px, 14vw, 210px) var(--pad); background: var(--paper); color: var(--ink); }
.partners__heading { display: grid; grid-template-columns: .7fr 2fr .8fr; align-items: end; gap: 30px; margin-bottom: 85px; }
.handwritten { align-self: start; margin: 0; color: #74a70c; font-family: "Segoe Script", cursive; font-size: clamp(28px, 4vw, 55px); rotate: -8deg; }
.partners h2 { font-size: clamp(75px, 10vw, 160px); }
.partners h2 span { display: block; color: transparent; -webkit-text-stroke: 1px var(--ink); }
.partners__heading > p:last-child { margin: 0 0 10px; color: #60635d; font-size: 13px; line-height: 1.7; }
.partner-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(0,0,0,.2); border-left: 1px solid rgba(0,0,0,.2); }
.partner-card { position: relative; min-height: 270px; padding: 22px; display: flex; flex-direction: column; justify-content: space-between; border-right: 1px solid rgba(0,0,0,.2); border-bottom: 1px solid rgba(0,0,0,.2); transition: background .3s, color .3s; }
.partner-card > span, .partner-card b { color: #777b73; font-size: 8px; letter-spacing: .15em; }
.partner-card img { align-self: center; max-width: 73%; max-height: 74px; object-fit: contain; }
.partner-card--dark { background: var(--ink); color: #fff; }
.partner-card--dark img { max-height: 100px; }
.partner-card:hover { background: var(--lime); color: var(--ink); }
.partner-card--dark:hover img { filter: invert(1); mix-blend-mode: multiply; }
.partner-cta { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-top: 35px; }
.partner-cta p { color: #5e625a; font-size: 12px; }
.partner-cta a { padding-bottom: 8px; border-bottom: 1px solid var(--ink); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.partner-cta span { color: #5f8d05; margin-left: 20px; }

.germany { position: relative; min-height: 850px; overflow: hidden; display: grid; grid-template-columns: 1.1fr 1fr; align-items: center; padding: clamp(110px, 13vw, 190px) var(--pad); }
.germany__code { position: absolute; left: -4vw; bottom: -8vw; color: rgba(255,255,255,.025); font: 900 60vw/.7 var(--display); letter-spacing: -.1em; }
.germany__map { position: relative; display: grid; place-items: center; }
.germany__map svg { width: min(390px, 70%); overflow: visible; filter: drop-shadow(0 0 50px rgba(184,255,32,.13)); }
.germany__map path { fill: rgba(184,255,32,.025); stroke: var(--lime); stroke-width: 1.35; stroke-linejoin: round; vector-effect: non-scaling-stroke; }
.germany__map > i { position: absolute; left: 51%; top: 50%; width: 10px; height: 10px; border: 2px solid var(--lime); border-radius: 50%; box-shadow: 0 0 20px var(--lime); }
.germany__map > i::after { content: "VGK HQ"; position: absolute; left: 18px; top: -2px; width: max-content; color: var(--lime); font: 700 8px/1 var(--body); letter-spacing: .16em; }
.de-flag-card { position: absolute; left: 1%; bottom: -10%; display: flex; align-items: center; gap: 20px; padding: 17px 20px; background: rgba(16,17,16,.88); border: 1px solid var(--line); backdrop-filter: blur(14px); animation: flagFloat 5s ease-in-out infinite; }
.de-flag-card strong, .de-flag-card span { display: block; }.de-flag-card strong { font: 900 20px/1 var(--display); }.de-flag-card span { margin-top: 7px; color: #747870; font-size: 6px; letter-spacing: .18em; }
@keyframes flagFloat { 50% { transform: translateY(-10px) rotate(1deg); } }
.germany__copy { position: relative; z-index: 2; }
.germany .section-kicker { margin-bottom: 35px; }
.national-tag { width: max-content; margin: -10px 0 30px; padding: 9px 13px; border: 1px solid rgba(255,255,255,.18); color: #aeb2aa; font-size: 8px; font-weight: 800; letter-spacing: .16em; }
.mini-de-flag { width: 22px; height: 14px; margin-right: 9px; display: inline-grid; grid-template-rows: repeat(3,1fr); vertical-align: -3px; overflow: hidden; border: 1px solid rgba(255,255,255,.2); }.mini-de-flag i:nth-child(1) { background:#050505; }.mini-de-flag i:nth-child(2) { background:#dd0000; }.mini-de-flag i:nth-child(3) { background:#ffce00; }
.germany h2 span { color: var(--lime); }
.germany__copy > p { max-width: 430px; margin: 40px 0; color: var(--muted); font-size: 14px; line-height: 1.8; }
.coordinates { display: flex; gap: 30px; padding-top: 20px; border-top: 1px solid var(--line); color: #777b73; font-size: 8px; letter-spacing: .15em; }

.contact { scroll-margin-top: 90px; padding: clamp(105px, 12vw, 180px) var(--pad); background: radial-gradient(circle at 78% 18%, rgba(184,255,32,.18), transparent 32%), #080908; color: #f4f6ef; }
.contact .section-kicker { margin-bottom: 34px; color: var(--lime); }
.contact h2 { font-size: clamp(70px, 10vw, 155px); line-height: .78; }
.contact h2 em { color: transparent; font-style: normal; -webkit-text-stroke: 1px var(--lime); }
.contact__top, .contact__bottom, .contact-options { display: none; }
.contact-shell { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(36px, 7vw, 110px); align-items: end; }
.contact-copy p { max-width: 460px; margin: 30px 0 0; color: #a5aaa0; font-size: 14px; line-height: 1.8; }
.contact-badge { width: max-content; display: flex; align-items: center; gap: 12px; margin-bottom: 26px; padding: 9px 12px; border: 1px solid rgba(184,255,32,.34); background: rgba(184,255,32,.07); color: var(--lime); font-size: 8px; font-weight: 900; letter-spacing: .18em; }
.contact-badge img { width: 34px; height: 34px; object-fit: contain; }
.contact-form { padding: clamp(22px, 3vw, 34px); border: 1px solid rgba(255,255,255,.14); background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025)); box-shadow: 0 28px 90px rgba(0,0,0,.42); backdrop-filter: blur(18px); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form label { display: block; margin-bottom: 14px; }
.contact-form label span { display: block; margin-bottom: 8px; color: #878d82; font-size: 8px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid rgba(255,255,255,.13); background: rgba(0,0,0,.42); color: #fff; padding: 15px 14px; font: 800 13px/1.3 var(--sans); outline: none; }
.contact-form select option { background: #080908; color: #fff; }
.contact-form textarea { resize: vertical; min-height: 135px; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--lime); box-shadow: 0 0 0 1px rgba(184,255,32,.36); }
.contact-submit { width: 100%; display: flex; justify-content: space-between; border: 0; background: var(--lime); color: var(--ink); padding: 18px 20px; cursor: pointer; font-size: 10px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.form-note { margin: 12px 0 0; color: #73796f; font-size: 10px; line-height: 1.5; }
.site-footer { padding: 80px var(--pad) 25px; }
.footer__top, .footer__bottom { display: flex; align-items: center; justify-content: space-between; }
.brand--footer .brand__mark { width: 55px; height: 55px; }
.brand--footer strong { font-size: 40px; }
.socials { display: flex; gap: 10px; }
.socials a { position: relative; width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; transition: .3s; }
.socials svg { width: 18px; height: 18px; fill: currentColor; }
.socials svg rect, .socials svg circle { fill: none; stroke: currentColor; stroke-width: 1.8; }.socials svg .fill-dot { fill: currentColor; stroke: none; }.socials svg .play { fill: var(--ink); stroke: none; }
.socials a::after { content: attr(data-label); position: absolute; bottom: -26px; left: 50%; translate: -50% 0; color: #777b73; font-size: 6px; letter-spacing: .1em; opacity: 0; transition: .3s; }
.socials a:hover { background: var(--lime); color: var(--ink); border-color: var(--lime); transform: translateY(-5px); box-shadow: 0 0 28px rgba(184,255,32,.25); }
.socials a:hover::after { opacity: 1; }
.footer__middle { margin: 90px 0; display: flex; justify-content: space-between; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.25); font: 900 clamp(46px, 8vw, 130px)/1 var(--display); }
.footer__bottom { padding-top: 24px; border-top: 1px solid var(--line); color: #6f736b; font-size: 8px; text-transform: uppercase; letter-spacing: .12em; }
.footer__bottom div { display: flex; gap: 25px; }
.footer__bottom button { padding: 0; border: 0; background: none; cursor: pointer; text-transform: uppercase; color: inherit; font-size: inherit; letter-spacing: inherit; }

.cookie-banner { position: fixed; z-index: 200; left: 20px; right: 20px; bottom: 20px; padding: 16px 18px 16px 24px; display: flex; align-items: center; justify-content: space-between; gap: 25px; background: #fff; color: var(--ink); box-shadow: 0 20px 70px rgba(0,0,0,.4); transition: transform .6s cubic-bezier(.76,0,.24,1), opacity .4s; }
.cookie-banner.is-hidden { transform: translateY(150%); opacity: 0; pointer-events: none; }
.cookie-banner > div { display: flex; align-items: center; gap: 25px; }
.cookie-banner div > span { padding-right: 25px; border-right: 1px solid #d7d8d2; color: #7a7e75; font-size: 8px; letter-spacing: .15em; }
.cookie-banner p { margin: 0; font-size: 12px; }
.cookie-banner p button { padding: 0; border: 0; background: none; color: inherit; text-decoration: underline; cursor: pointer; }
.cookie-accept { border: 0; background: var(--ink); padding: 12px 14px 12px 18px; color: #fff; cursor: pointer; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.cookie-accept span { color: var(--lime); margin-left: 25px; }

.privacy-modal { width: min(600px, calc(100% - 36px)); padding: clamp(35px, 6vw, 70px); border: 1px solid #444840; background: var(--paper); color: var(--ink); }
.privacy-modal::backdrop { background: rgba(0,0,0,.78); backdrop-filter: blur(10px); }
.privacy-modal h2 { margin: 20px 0 30px; font: 900 clamp(46px, 8vw, 90px)/.9 var(--display); text-transform: uppercase; }
.privacy-modal p:not(.section-kicker) { color: #52564f; font-size: 13px; line-height: 1.8; }
.modal-close { position: absolute; right: 18px; top: 14px; border: 0; background: none; color: var(--ink); font-size: 30px; cursor: pointer; }
.modal-done { margin-top: 20px; }
.chat-widget { position: fixed; right: 22px; bottom: 22px; z-index: 260; width: min(390px, calc(100vw - 28px)); color: #f2f4ef; font-family: var(--sans); }
.chat-launcher { margin-left: auto; width: 210px; height: 58px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 10px; padding: 11px 14px 11px 16px; border: 1px solid rgba(184,255,32,.55); background: rgba(6,7,6,.92); color: #fff; box-shadow: 0 18px 55px rgba(0,0,0,.45), 0 0 30px rgba(184,255,32,.16); cursor: pointer; text-align: left; backdrop-filter: blur(16px); }
.chat-launcher span { color: var(--lime); font-size: 7px; font-weight: 900; letter-spacing: .25em; }
.chat-launcher strong { grid-column: 1; font: 900 18px/1 var(--display); letter-spacing: 0; text-transform: uppercase; }
.chat-launcher i { grid-row: 1 / span 2; grid-column: 2; width: 10px; height: 10px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 18px var(--lime); }
.chat-panel { position: absolute; right: 0; bottom: 74px; width: 100%; padding: 14px; border: 1px solid rgba(255,255,255,.14); background: linear-gradient(180deg, rgba(13,15,13,.98), rgba(4,5,4,.98)); box-shadow: 0 30px 100px rgba(0,0,0,.6); transform: translateY(18px) scale(.97); opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s; }
.chat-widget.is-open .chat-panel { transform: translateY(0) scale(1); opacity: 1; pointer-events: auto; }
.chat-panel__head { display: flex; align-items: center; gap: 12px; padding-bottom: 13px; border-bottom: 1px solid rgba(255,255,255,.12); }
.chat-panel__head img { width: 42px; height: 42px; object-fit: contain; filter: drop-shadow(0 0 12px rgba(184,255,32,.35)); }
.chat-panel__head span { display: block; color: #83887f; font-size: 8px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.chat-panel__head strong { display: block; margin-top: 3px; font: 900 26px/1 var(--display); text-transform: uppercase; }
.chat-close { margin-left: auto; width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.18); background: transparent; color: #fff; font-size: 24px; cursor: pointer; }
.chat-feed { display: grid; gap: 8px; padding: 15px 0; }
.chat-message { max-width: 86%; padding: 11px 12px; font-size: 12px; line-height: 1.45; }
.chat-message--bot { background: rgba(255,255,255,.07); border-left: 2px solid var(--lime); }
.chat-message--user { justify-self: end; background: var(--lime); color: var(--ink); font-weight: 800; }
.chat-panel label { display: block; margin-bottom: 10px; }
.chat-panel label span { display: block; margin-bottom: 6px; color: #858a80; font-size: 8px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.chat-panel input, .chat-panel textarea, .chat-panel select { width: 100%; border: 1px solid rgba(255,255,255,.13); background: rgba(255,255,255,.055); color: #fff; padding: 12px; font: 700 13px/1.3 var(--sans); outline: none; }
.chat-panel select option { background: #080908; color: #fff; }
.chat-panel textarea { resize: vertical; min-height: 96px; }
.chat-panel input:focus, .chat-panel textarea:focus, .chat-panel select:focus { border-color: var(--lime); box-shadow: 0 0 0 1px rgba(184,255,32,.3); }
.chat-submit { width: 100%; display: flex; justify-content: space-between; border: 0; background: var(--lime); color: var(--ink); padding: 15px; cursor: pointer; font-size: 10px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.chat-note { margin: 10px 0 0; color: #777d73; font-size: 10px; line-height: 1.45; }
.toast { position: fixed; z-index: 300; right: 24px; bottom: 24px; padding: 16px 20px; background: var(--lime); color: var(--ink); font-size: 11px; font-weight: 800; transform: translateY(150%); transition: transform .4s; }
.toast.is-visible { transform: translateY(0); }

.reveal { opacity: 0; transform: translateY(45px); transition: opacity .85s ease, transform .85s cubic-bezier(.16,1,.3,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .desktop-nav, .nav-cta { display: none; }
  .menu-toggle { display: block; }
  .hero h1 { font-size: clamp(78px, 18vw, 150px); }
  .hero__visual { width: 70vw; right: -28%; opacity: .6; }
  .hero-country { right: var(--pad); }
  .section-heading { grid-template-columns: 1fr; }
  .section-heading .section-copy { margin-left: 35%; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .team-card { min-height: 470px; }
  .roster-showcase__head { align-items: flex-start; }
  .roster-photo { min-height: 540px; }
  .manifesto { grid-template-columns: 1fr; }
  .manifesto__crest { width: 210px; justify-self: center; }
  .jersey { grid-template-columns: 1fr; }
  .partners__heading { grid-template-columns: .5fr 2fr; }
  .partners__heading > p:last-child { grid-column: 2; }
  .partner-grid { grid-template-columns: 1fr; }
  .partner-card { min-height: 230px; }
  .germany { grid-template-columns: .8fr 1.2fr; }
  .footer__middle { margin: 70px 0; }
}

@media (max-width: 680px) {
  :root { --pad: 22px; }
  .site-header { height: 72px; }
  .brand__mark { width: 33px; height: 33px; }
  .brand strong { font-size: 22px; }
  .hero { min-height: 850px; padding-top: 110px; align-items: flex-start; }
  .hero h1 { margin-top: 80px; font-size: clamp(68px, 22vw, 105px); line-height: .76; }
  .hero-line--outline { margin-left: 0; }
  .hero__visual { width: 110vw; right: -55%; top: 47%; }
  .hero-crest { width: 31%; min-width: 135px; }
  .hero-country { right: 22px; top: 88px; min-width: 0; grid-template-columns: 44px 1fr; }.hero-country b { display: none; }
  .hero__bottom { margin: 75px 0 0; align-items: end; }
  .hero__bottom > p { max-width: 220px; font-size: 12px; }
  .circle-link { width: 96px; }
  .coordinate { display: none; }
  .ticker span { padding: 16px 20px; font-size: 15px; }
  .section-heading h2, .manifesto h2, .partners h2, .germany h2 { font-size: clamp(56px, 19vw, 95px); }
  .section-heading .section-copy { margin-left: 0; }
  .team-grid { grid-template-columns: 1fr; }
  .team-card { min-height: 480px; }
  .team-card__content h3 { font-size: 49px; }
  .roster-showcase__head { align-items: flex-start; flex-direction: column; }
  .roster-showcase__head h2 { font-size: clamp(54px,17vw,80px); }
  .roster-status { width: 100%; }
  .roster-stage { overflow: hidden; }
  .roster-photo { min-height: 0; aspect-ratio: 16/9; }
  .roster-photo::before { background: linear-gradient(180deg,transparent 45%,rgba(8,9,8,.82) 100%); }
  .roster-photo > img { transform: none; }
  .roster-names { grid-template-columns: 1fr 1fr; padding: 24px 18px; gap: 20px 10px; }
  .roster-names strong { font-size: 36px; }
  .roster-showcase__foot { align-items: flex-start; flex-direction: column; }
  .manifesto__crest { width: 170px; padding: 24px; }
  .manifesto__details { grid-template-columns: 1fr; gap: 45px; }
  .stat-row strong { font-size: 44px; }
  .jersey__visual { min-height: 500px; }
  .jersey__visual img { width: 100%; }
  .jersey__info { padding: 80px 22px; }
  .jersey__info h2 { font-size: 100px; }
  .product-actions { align-items: flex-start; flex-direction: column; }
  .partners__heading { grid-template-columns: 1fr; }
  .partners__heading > p:last-child { grid-column: auto; }
  .handwritten { margin-bottom: -12px; }
  .partners h2 span { display: inline; }
  .partner-card { min-height: 210px; }
  .partner-cta { align-items: flex-start; flex-direction: column; }
  .germany { grid-template-columns: 1fr; gap: 80px; }
  .germany__map { order: 2; }
  .germany__map svg { width: 78%; }
  .de-flag-card { left: 0; bottom: -18%; }.de-flag-card .de-flag { width: 78px; }
  .coordinates { flex-wrap: wrap; }
  .contact h2 { font-size: clamp(58px, 18vw, 86px); }
  .contact-shell { grid-template-columns: 1fr; align-items: start; }
  .contact-badge img { width: 28px; height: 28px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 20px; }
  .footer__top { align-items: flex-start; flex-direction: column; gap: 35px; }
  .socials { flex-wrap: wrap; }
  .footer__middle { flex-direction: column; margin: 65px 0; font-size: 22vw; }
  .footer__bottom { align-items: flex-start; flex-direction: column; gap: 22px; line-height: 1.6; }
  .footer__bottom div { flex-wrap: wrap; }
  .cookie-banner { left: 10px; right: 10px; bottom: 10px; align-items: flex-end; padding: 16px; }
  .cookie-banner > div { display: block; }
  .cookie-banner div > span { display: block; margin-bottom: 8px; padding: 0; border: 0; }
  .cookie-banner p { max-width: 260px; font-size: 11px; line-height: 1.5; }
  .cookie-accept { font-size: 0; }
  .cookie-accept span { margin: 0; font-size: 12px; }
}

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