:root {
  --bg: #07100f;
  --bg-2: #0b1514;
  --bg-alt: #0c1715;
  --surface: rgba(16, 29, 27, .82);
  --surface-solid: #101d1b;
  --card: rgba(14, 26, 24, .82);
  --card-border: rgba(255,255,255,.10);
  --line: rgba(255,255,255,.11);
  --line-strong: rgba(255,255,255,.18);
  --text: #f5f1e8;
  --muted: #aeb7b1;
  --orange: #ff6b35;
  --orange-2: #ff8f5d;
  --green: #57d58a;
  --yellow: #ffd267;
  --gold: #ffd267;
  --max: 1240px;
  --nav-h: 86px;
  --ease: cubic-bezier(.2,.75,.2,1);
  --font-display: "Archivo Black", "Poppins", system-ui, sans-serif;
  --font-mono: "Space Mono", "JetBrains Mono", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 24px); }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Manrope", system-ui, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
img { max-width: 100%; display: block; }
svg { display: block; }
::selection { background: var(--orange); color: #fff; }

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .035;
  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='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
}

.cursor-glow {
  width: 420px;
  height: 420px;
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 2;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,53,.12), transparent 68%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity .25s ease;
}
body:hover .cursor-glow { opacity: 1; }

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-h);
  border-bottom: 0;
  background: rgba(5, 13, 12, .12);
  -webkit-backdrop-filter: blur(8px) saturate(115%);
  backdrop-filter: blur(8px) saturate(115%);
  transform: translate3d(0, 0, 0);
  will-change: transform, background-color, backdrop-filter;
  transition:
    background .55s ease,
    box-shadow .55s ease,
    backdrop-filter .55s ease;
}
.site-nav.at-top {
  background: linear-gradient(180deg, rgba(4, 11, 10, .34), rgba(4, 11, 10, .08));
  box-shadow: none;
  -webkit-backdrop-filter: blur(6px) saturate(110%);
  backdrop-filter: blur(6px) saturate(110%);
}
.site-nav.scrolled {
  background: linear-gradient(90deg, rgba(5, 14, 13, .82), rgba(8, 19, 17, .72));
  -webkit-backdrop-filter: blur(20px) saturate(135%);
  backdrop-filter: blur(20px) saturate(135%);
  box-shadow: 0 14px 38px rgba(0,0,0,.14);
}
.site-nav.scrolled[data-section="iskustvo"] {
  background: linear-gradient(90deg, rgba(12, 20, 17, .80), rgba(35, 21, 13, .68));
}
.site-nav.scrolled[data-section="kako-igrati"] {
  background: linear-gradient(90deg, rgba(7, 18, 16, .82), rgba(30, 25, 13, .66));
}
.site-nav.scrolled[data-section="prijave"] {
  background: linear-gradient(90deg, rgba(7, 18, 16, .83), rgba(11, 29, 22, .70));
}
.site-nav.scrolled[data-section="faq"] {
  background: linear-gradient(90deg, rgba(7, 16, 15, .84), rgba(27, 18, 13, .68));
}
.site-nav.nav-hidden {
  pointer-events: none;
}
.site-nav.is-scrolling {
  /* Zadržava istu glatku brzinu i dok se navigacija vraća tokom skrolanja. */
}
.nav-hover-zone {
  position: fixed;
  inset: 0 0 auto;
  height: 26px;
  z-index: 99;
  pointer-events: auto;
}
.nav-hover-zone::after { display: none; }
.nav-shell {
  width: min(calc(100% - 48px), var(--max));
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 34px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; flex: 0 0 auto; }
.brand img { width: 42px; height: 42px; object-fit: contain; }
.brand-copy { display: grid; line-height: 1; gap: 3px; }
.brand-copy strong { font-family: "Archivo Black", sans-serif; font-size: 18px; letter-spacing: .045em; }
.brand-copy small { font-family: "Space Mono", monospace; color: var(--orange); font-size: 8px; letter-spacing: .34em; }
.nav-links { margin-left: auto; display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 13px; font-weight: 700; color: #d5dcd7; position: relative; transition: color .2s ease; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -9px; width: 100%; height: 2px; background: var(--orange); transform: scaleX(0); transform-origin: right; transition: transform .3s var(--ease); }
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after, .nav-links a.active-link::after { transform: scaleX(1); transform-origin: left; }
.nav-discord {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 17px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.nav-discord svg { width: 18px; fill: currentColor; }
.nav-discord:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.35); transform: translateY(-2px); }
.nav-toggle { display: none; margin-left: auto; width: 44px; height: 44px; border: 1px solid var(--line); background: rgba(0,0,0,.2); border-radius: 50%; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.nav-toggle span { width: 17px; height: 1.5px; background: #fff; transition: transform .25s ease, opacity .25s ease; }

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center center; z-index: -4; transform: none; animation: none; }
.hero-shade { position: absolute; inset: 0; z-index: -3; background:
  linear-gradient(90deg, rgba(3,9,8,.92) 0%, rgba(3,9,8,.72) 38%, rgba(3,9,8,.34) 64%, rgba(3,9,8,.6) 100%),
  linear-gradient(180deg, rgba(3,9,8,.45) 0%, transparent 32%, rgba(3,9,8,.22) 72%, var(--bg) 100%);
}
.hero-grid { position: absolute; inset: 0; z-index: -2; opacity: .15; 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: 72px 72px; mask-image: linear-gradient(90deg, #000, transparent 72%); }
.hero::before { content: ""; position: absolute; width: 640px; height: 640px; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; right: -170px; top: 120px; box-shadow: 0 0 0 90px rgba(255,255,255,.025), 0 0 0 180px rgba(255,255,255,.018); z-index: -1; }
.hero-shell { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; padding: calc(var(--nav-h) + 74px) 0 100px; display: grid; grid-template-columns: minmax(0, 1.2fr) 390px; align-items: center; gap: 78px; }
.hero-copy { max-width: 780px; }
.hero-kicker { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; font: 700 11px/1 "Space Mono", monospace; letter-spacing: .19em; color: #e6ded0; }
.hero-kicker span { width: 34px; height: 2px; background: var(--orange); }
.hero h1, .section-head h2, .split-head h2, .start-copy h2, .faq-intro h2, .panorama h2, .final-cta h2 {
  margin: 0;
  font-family: "Archivo Black", sans-serif;
  line-height: .94;
  letter-spacing: -.045em;
  text-transform: uppercase;
}
.hero h1 { font-size: clamp(52px, 6.35vw, 94px); max-width: 850px; text-wrap: balance; text-shadow: 0 10px 35px rgba(0,0,0,.45); }
em { font-style: normal; color: var(--orange); }
.hero-copy > p { max-width: 650px; margin: 25px 0 32px; color: #d0d6d1; font-size: clamp(16px, 1.25vw, 19px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.btn { min-height: 54px; padding: 0 22px; border-radius: 3px; border: 1px solid transparent; display: inline-flex; align-items: center; justify-content: center; gap: 12px; font: 800 12px/1 "Manrope", sans-serif; letter-spacing: .06em; text-transform: uppercase; cursor: pointer; position: relative; overflow: hidden; transition: transform .25s var(--ease), box-shadow .25s ease, border-color .25s ease, background .25s ease; }
.btn svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 16px 40px rgba(255,107,53,.2); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 22px 46px rgba(255,107,53,.32); background: var(--orange-2); }
.btn-secondary { border-color: rgba(255,255,255,.24); background: rgba(7,16,15,.35); backdrop-filter: blur(10px); color: #fff; }
.btn-secondary:hover { transform: translateY(-3px); background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.42); }
.btn-full { width: 100%; }
.btn-pulse { width: 8px; height: 8px; background: #fff; border-radius: 50%; box-shadow: 0 0 0 0 rgba(255,255,255,.7); animation: pulse 1.8s infinite; }
.hero-proof { display: flex; flex-wrap: wrap; margin-top: 38px; gap: 0; }
.hero-proof div { min-width: 132px; padding: 0 25px; border-left: 1px solid var(--line-strong); display: grid; gap: 3px; }
.hero-proof div:first-child { padding-left: 0; border-left: 0; }
.hero-proof strong { font: 700 16px "Space Mono", monospace; color: #fff; }
.hero-proof span { font-size: 11px; color: #aeb8b1; text-transform: uppercase; letter-spacing: .08em; }

.server-console { border: 1px solid rgba(255,255,255,.18); border-radius: 8px; padding: 22px; background: linear-gradient(145deg, rgba(10,22,20,.78), rgba(5,12,11,.9)); backdrop-filter: blur(22px); box-shadow: 0 30px 80px rgba(0,0,0,.42), inset 0 1px rgba(255,255,255,.08); position: relative; overflow: hidden; }
.server-console::before { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, transparent 25%, rgba(255,255,255,.05) 50%, transparent 75%); transform: translateX(-100%); animation: glassSweep 6s ease-in-out infinite; pointer-events: none; }
.console-top { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--line); padding-bottom: 16px; }
.console-label { font: 700 10px "Space Mono", monospace; letter-spacing: .18em; color: #c9d2cc; }
.live-state { display: inline-flex; align-items: center; gap: 8px; font: 700 10px "Space Mono", monospace; color: var(--muted); text-transform: uppercase; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; background: var(--yellow); box-shadow: 0 0 13px rgba(255,210,103,.7); }
.status-dot.online { background: var(--green); box-shadow: 0 0 15px rgba(87,213,138,.8); }
.status-dot.offline { background: #ff5b65; box-shadow: 0 0 15px rgba(255,91,101,.7); }
.console-logo { display: flex; align-items: center; gap: 14px; padding: 23px 0 19px; }
.console-logo img { width: 54px; height: 54px; }
.console-logo div { display: grid; gap: 4px; }
.console-logo strong { font: 700 13px "Space Mono", monospace; letter-spacing: .08em; }
.console-logo span { color: var(--orange); font: 700 9px "Space Mono", monospace; letter-spacing: .14em; }
.console-player-row { display: flex; justify-content: space-between; align-items: end; padding: 17px 18px; background: rgba(255,255,255,.045); border: 1px solid var(--line); }
.console-player-row > div:first-child { display: grid; gap: 3px; }
.console-player-row span, .console-address span { font: 700 9px "Space Mono", monospace; letter-spacing: .16em; color: #8f9c94; }
.console-player-row strong { font: 700 32px/1 "Space Mono", monospace; }
.console-player-row strong small { font-size: 15px; color: #8f9c94; }
.signal-bars { display: flex; align-items: flex-end; gap: 4px; height: 24px; }
.signal-bars i { width: 4px; background: var(--green); border-radius: 1px; animation: signal 1.8s ease-in-out infinite; }
.signal-bars i:nth-child(1){height:35%}.signal-bars i:nth-child(2){height:55%;animation-delay:.15s}.signal-bars i:nth-child(3){height:75%;animation-delay:.3s}.signal-bars i:nth-child(4){height:100%;animation-delay:.45s}
.console-address { margin: 13px 0; padding: 15px 16px; display: flex; align-items: center; justify-content: space-between; border: 1px solid var(--line); }
.console-address > div { display: grid; gap: 5px; min-width: 0; }
.console-address code { font: 700 13px "Space Mono", monospace; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.console-address button { width: 38px; height: 38px; flex: 0 0 auto; border: 1px solid var(--line); border-radius: 3px; background: rgba(255,255,255,.04); display: grid; place-items: center; cursor: pointer; transition: background .2s ease, border-color .2s ease; }
.console-address button:hover, .console-address button.copied { background: rgba(87,213,138,.13); border-color: rgba(87,213,138,.45); }
.console-address svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.console-connect { height: 49px; display: flex; align-items: center; justify-content: center; gap: 10px; background: #f0eee8; color: #0a1211; font: 800 11px "Space Mono", monospace; letter-spacing: .13em; border-radius: 3px; transition: background .2s ease, transform .2s ease; }
.console-connect:hover { background: #fff; transform: translateY(-2px); }
.console-connect svg { width: 16px; fill: currentColor; }
.scroll-cue { position: absolute; left: 50%; bottom: 27px; transform: translateX(-50%); display: flex; align-items: center; gap: 10px; font: 700 9px "Space Mono", monospace; letter-spacing: .18em; color: #bbc3be; }
.scroll-cue span { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.24); border-radius: 50%; position: relative; }
.scroll-cue span::after { content: ""; position: absolute; left: 50%; top: 8px; width: 1px; height: 9px; background: #fff; transform: translateX(-50%); animation: scrollDrop 1.8s ease infinite; }

.ticker { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--orange); color: #1b0d08; overflow: hidden; height: 48px; display: flex; align-items: center; }
.ticker-track { display: flex; width: max-content; gap: 25px; align-items: center; white-space: nowrap; animation: ticker 36s linear infinite; font: 800 11px "Space Mono", monospace; letter-spacing: .12em; }
.ticker-track i { font-style: normal; }

.section { padding: 135px 0; position: relative; }
.section-shell, .footer-shell { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; }
.experience { background: radial-gradient(circle at 90% 8%, rgba(255,107,53,.12), transparent 28%), linear-gradient(180deg, var(--bg), #091412); }
.section-head { display: grid; grid-template-columns: .8fr 1.5fr .9fr; gap: 44px; align-items: start; margin-bottom: 64px; }
.section-head > div:first-child, .split-head > div:first-child, .start-copy > :first-child, .faq-intro > :first-child { display: inline; }
.section-index { font: 700 11px "Space Mono", monospace; color: var(--orange); margin-right: 14px; }
.overline { font: 700 10px "Space Mono", monospace; letter-spacing: .18em; color: #a7b1aa; }
.section-head h2, .split-head h2, .start-copy h2, .faq-intro h2 { font-size: clamp(43px, 5vw, 72px); }
.section-head p { margin: 8px 0 0; color: var(--muted); font-size: 15px; }

.bento-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: auto auto; gap: 14px; }
.bento-card { min-height: 330px; border: 1px solid var(--line); background: rgba(255,255,255,.026); padding: 29px; display: flex; flex-direction: column; position: relative; overflow: hidden; transition: background .3s ease, transform .3s var(--ease), border-color .3s ease; }
.bento-card::after { content: ""; position: absolute; width: 180px; height: 180px; border: 1px solid rgba(255,255,255,.055); border-radius: 50%; right: -80px; bottom: -80px; transition: transform .45s var(--ease); }
.bento-card:hover { background: rgba(255,255,255,.055); border-color: rgba(255,107,53,.35); transform: translateY(-5px); }
.bento-card:hover::after { transform: scale(1.25); }
.bento-large { grid-column: span 2; background: linear-gradient(145deg, rgba(255,107,53,.15), rgba(255,255,255,.025)); }
.bento-wide { grid-column: span 4; min-height: 260px; flex-direction: row; align-items: end; justify-content: space-between; gap: 60px; }
.card-number { position: absolute; right: 24px; top: 21px; font: 700 10px "Space Mono", monospace; color: #78847d; }
.card-icon { width: 52px; height: 52px; border: 1px solid rgba(255,107,53,.35); display: grid; place-items: center; color: var(--orange); margin-bottom: auto; }
.card-icon svg { width: 24px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.bento-card h3 { margin: 30px 0 10px; font-size: 23px; line-height: 1.15; letter-spacing: -.03em; }
.bento-card p { margin: 0; color: var(--muted); font-size: 14px; max-width: 620px; }
.mini-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.mini-tags span { padding: 7px 10px; border: 1px solid var(--line); font: 700 9px "Space Mono", monospace; letter-spacing: .07em; color: #c6cec8; }
.bento-wide .card-copy { max-width: 560px; }
.bento-wide .card-icon { margin-bottom: 0; }
.bento-wide h3 { margin-top: 22px; }
.community-meter { width: min(430px, 45%); display: grid; grid-template-columns: 130px 1fr; gap: 14px 16px; align-items: center; }
.community-meter span { font: 700 9px "Space Mono", monospace; letter-spacing: .08em; color: #a7b0aa; }
.community-meter div { height: 4px; background: rgba(255,255,255,.09); overflow: hidden; }
.community-meter i { display: block; height: 100%; width: var(--meter); background: linear-gradient(90deg, var(--orange), var(--orange-2)); transform-origin: left; animation: meterFill 1.5s var(--ease) both; }

.routes { background: #0b1514; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.split-head { display: grid; grid-template-columns: .75fr 2fr; gap: 40px; align-items: start; margin-bottom: 60px; }
.route-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.route-card { min-height: 390px; padding: 27px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); position: relative; display: flex; flex-direction: column; transition: background .3s ease; overflow: hidden; }
.route-card::before { content: ""; position: absolute; inset: auto 0 0; height: 0; background: linear-gradient(180deg, transparent, rgba(255,107,53,.12)); transition: height .45s var(--ease); }
.route-card:hover::before { height: 75%; }
.route-card:hover { background: rgba(255,255,255,.025); }
.route-code { font: 700 9px "Space Mono", monospace; color: #79857e; letter-spacing: .1em; }
.route-card > svg { width: 48px; height: 48px; fill: none; stroke: var(--orange); stroke-width: 1.2; stroke-linecap: round; stroke-linejoin: round; margin: 63px 0 auto; position: relative; }
.route-card h3 { font-size: 23px; margin: 31px 0 11px; line-height: 1.1; position: relative; }
.route-card p { color: var(--muted); font-size: 13px; margin: 0; position: relative; }
.route-arrow { position: absolute; right: 24px; top: 22px; color: var(--orange); font-size: 20px; transition: transform .25s var(--ease); }
.route-card:hover .route-arrow { transform: translate(4px,-4px); }

.panorama { min-height: 720px; position: relative; display: flex; align-items: center; overflow: hidden; }
.panorama-image { position: absolute; inset: 0; background: url('/images/panorama-uhd-v25.jpg') center center/cover no-repeat; transform: none; will-change: auto; }
.panorama-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,9,8,.95), rgba(3,9,8,.72) 42%, rgba(3,9,8,.36) 68%, rgba(3,9,8,.58) 100%), linear-gradient(180deg, rgba(3,9,8,.28), rgba(3,9,8,.42)); }
.panorama-content { width: min(calc(100% - 48px), var(--max)); margin: auto; position: relative; }
.panorama-content img { width: 56px; height: 56px; margin-bottom: 20px; }
.panorama-content p { margin: 0 0 12px; font: 700 11px "Space Mono", monospace; letter-spacing: .14em; text-transform: uppercase; }
.panorama h2 { font-size: clamp(48px, 5.7vw, 80px); max-width: 790px; text-shadow: 0 8px 28px rgba(0,0,0,.45); }
.text-link { display: inline-flex; align-items: center; gap: 14px; margin-top: 30px; padding-bottom: 6px; border-bottom: 1px solid rgba(255,255,255,.4); font: 800 11px "Space Mono", monospace; letter-spacing: .08em; text-transform: uppercase; }
.text-link span { color: var(--orange); font-size: 18px; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }

.start { background: radial-gradient(circle at 15% 50%, rgba(255,107,53,.11), transparent 30%), var(--bg); }
.start-shell { display: grid; grid-template-columns: .8fr 1.15fr; gap: 100px; align-items: start; }
.start-copy { position: sticky; top: 130px; }
.start-copy h2 { margin-top: 25px; }
.start-copy p { color: var(--muted); max-width: 490px; margin: 25px 0 31px; }
.timeline { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line); }
.timeline li { min-height: 190px; display: grid; grid-template-columns: 90px 1fr; gap: 25px; padding: 34px 0; border-bottom: 1px solid var(--line); position: relative; }
.timeline-number { font: 700 28px "Space Mono", monospace; color: var(--orange); }
.timeline small { font: 700 9px "Space Mono", monospace; color: #839087; letter-spacing: .15em; }
.timeline h3 { font-size: 25px; margin: 9px 0 8px; }
.timeline p { margin: 0; color: var(--muted); font-size: 14px; }
.timeline li::after { content: ""; position: absolute; left: 0; bottom: -1px; width: 0; height: 1px; background: var(--orange); transition: width .5s var(--ease); }
.timeline li:hover::after { width: 100%; }

.applications { background: #0b1514; border-block: 1px solid var(--line); }
.application-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.application-card { min-height: 430px; text-align: left; border: 1px solid var(--line); background: rgba(255,255,255,.025); padding: 31px; cursor: pointer; position: relative; overflow: hidden; transition: transform .3s var(--ease), border-color .3s ease, background .3s ease; }
.application-card::after { content: ""; position: absolute; width: 360px; height: 360px; border: 1px solid rgba(255,107,53,.1); border-radius: 50%; right: -170px; bottom: -230px; box-shadow: 0 0 0 70px rgba(255,107,53,.025); transition: transform .5s var(--ease); }
.application-card:hover { transform: translateY(-7px); border-color: rgba(255,107,53,.42); background: rgba(255,107,53,.055); }
.application-card:hover::after { transform: scale(1.18); }
.application-top { display: flex; justify-content: space-between; gap: 20px; font: 700 10px "Space Mono", monospace; letter-spacing: .1em; }
.availability-dot { color: var(--green); display: flex; align-items: center; gap: 7px; }
.availability-dot::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; box-shadow: 0 0 12px currentColor; }
.application-card > svg { width: 72px; height: 72px; fill: none; stroke: var(--orange); stroke-width: 1.15; stroke-linecap: round; stroke-linejoin: round; margin: 64px 0 30px; }
.application-card h3 { font-size: 31px; margin: 0 0 12px; letter-spacing: -.035em; }
.application-card p { max-width: 560px; color: var(--muted); margin: 0; }
.application-cta { position: absolute; left: 31px; bottom: 30px; font: 800 10px "Space Mono", monospace; letter-spacing: .09em; }
.application-cta b { color: var(--orange); font-size: 17px; margin-left: 10px; }

.faq-section { background: var(--bg); }
.faq-shell { display: grid; grid-template-columns: .78fr 1.22fr; gap: 100px; align-items: start; }
.faq-intro { position: sticky; top: 130px; }
.faq-intro h2 { margin-top: 25px; }
.faq-intro p { color: var(--muted); max-width: 430px; margin: 23px 0 0; }
.faq-list { border-top: 1px solid var(--line); background: rgba(255,255,255,.02); border-radius: 16px; overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--line); background: rgba(255,255,255,.015); }
.faq-item summary { list-style: none; min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 25px; cursor: pointer; font-size: 18px; font-weight: 700; color: #fff; padding: 0 24px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i { width: 28px; height: 28px; border: 1px solid var(--line); border-radius: 50%; flex: 0 0 auto; position: relative; }
.faq-item summary i::before, .faq-item summary i::after { content: ""; position: absolute; left: 50%; top: 50%; width: 9px; height: 1px; background: #fff; transform: translate(-50%,-50%); transition: transform .25s ease; }
.faq-item summary i::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq-item[open] { background: rgba(255,255,255,.04); }
.faq-item[open] summary i { border-color: rgba(255,107,53,.5); }
.faq-item[open] summary i::after { transform: translate(-50%,-50%) rotate(0); }
.faq-item > div { overflow: hidden; }
.faq-item p { margin: -4px 24px 28px 24px; color: #d6dcd8; font-size: 16px; line-height: 1.7; max-width: 92%; }
.faq-item code { color: var(--orange-2); font-family: "Space Mono", monospace; }

.final-cta { min-height: 690px; display: grid; place-items: center; text-align: center; position: relative; overflow: hidden; }
.final-cta > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center center; transform: none; will-change: auto; }
.final-cta-shade { position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(5,13,12,.35), rgba(5,13,12,.82) 64%, var(--bg)); }
.final-cta-content { position: relative; width: min(calc(100% - 40px), 1050px); }
.final-cta-content > span { font: 700 11px "Space Mono", monospace; letter-spacing: .2em; }
.final-cta h2 { font-size: clamp(55px, 7vw, 104px); margin: 20px 0 32px; }
.final-cta-content > div { display: flex; justify-content: center; flex-wrap: wrap; gap: 13px; }

.footer { background: #050b0a; border-top: 1px solid var(--line); padding: 75px 0 25px; }
.footer-main { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 70px; padding-bottom: 60px; }
.footer-brand > p { color: #8d9991; font-size: 13px; max-width: 390px; margin: 20px 0 25px; }
.social-links { display: flex; gap: 8px; }
.social-links a { width: 42px; height: 42px; border: 1px solid var(--line); display: grid; place-items: center; color: #f5f1e8; transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease; }
.social-links a svg { width: 18px; height: 18px; fill: currentColor; }
.social-links a:hover { background: var(--orange); border-color: var(--orange); color: #fff; transform: translateY(-2px); }
.footer-column { display: grid; align-content: start; gap: 13px; }
.footer-column h3 { margin: 0 0 10px; font: 700 10px "Space Mono", monospace; letter-spacing: .15em; color: var(--orange); }
.footer-column a { font-size: 13px; color: #a9b2ac; transition: color .2s ease, transform .2s ease; }
.footer-column a:hover { color: #fff; transform: translateX(3px); }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 22px; display: flex; align-items: start; justify-content: space-between; gap: 40px; color: #69746d; font: 700 9px/1.6 "Space Mono", monospace; letter-spacing: .05em; }
.footer-bottom p { margin: 0; max-width: 700px; text-align: right; }

.toast { position: fixed; left: 50%; bottom: 28px; transform: translate(-50%, 30px); z-index: 300; opacity: 0; pointer-events: none; background: #f4f0e7; color: #0b1412; padding: 13px 18px; border-radius: 3px; font: 800 10px "Space Mono", monospace; letter-spacing: .06em; transition: opacity .25s ease, transform .25s var(--ease); }
.toast.show { opacity: 1; transform: translate(-50%,0); }

.modal-overlay { position: fixed; inset: 0; z-index: 500; display: grid; place-items: center; padding: 24px; background: rgba(3,8,7,.82); backdrop-filter: blur(14px); opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease; }
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal { width: min(680px, 100%); max-height: min(880px, calc(100svh - 48px)); overflow-y: auto; background: #0d1917; border: 1px solid var(--line-strong); box-shadow: 0 40px 120px rgba(0,0,0,.65); transform: translateY(24px) scale(.985); transition: transform .3s var(--ease); }
.modal-overlay.open .modal { transform: translateY(0) scale(1); }
.modal-head { padding: 25px 28px; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: start; }
.modal-head span { font: 700 9px "Space Mono", monospace; letter-spacing: .15em; color: var(--orange); }
.modal-head h3 { font-size: 26px; margin: 4px 0 0; }
.modal-close { width: 38px; height: 38px; border: 1px solid var(--line); background: transparent; font-size: 25px; line-height: 1; cursor: pointer; }
.modal form { padding: 27px 28px 30px; display: grid; gap: 17px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.modal label { display: grid; gap: 9px; font: 700 12px "Space Mono", monospace; letter-spacing: .065em; color: #d7dfda; }
.modal input, .modal textarea { width: 100%; border: 1px solid var(--line); border-radius: 2px; background: rgba(255,255,255,.035); color: #fff; padding: 14px 15px; outline: none; resize: vertical; font: 500 15px "Manrope", sans-serif; transition: border-color .2s ease, background .2s ease; }
.modal input:focus, .modal textarea:focus { border-color: rgba(255,107,53,.6); background: rgba(255,107,53,.04); }
.modal input::placeholder, .modal textarea::placeholder { color: #647068; }
.field-hint { color: #8f9d95; font: 500 11px/1.55 "Manrope", sans-serif; letter-spacing: 0; }
.form-status { min-height: 20px; margin: 0; text-align: center; font-size: 12px; }
.form-status.success { color: var(--green); }
.form-status.error { color: #ff7b83; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: calc(var(--reveal-index, 0) * 45ms); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

@keyframes heroDrift { from { transform: scale(1.015) translate3d(0,0,0); } to { transform: scale(1.055) translate3d(0,-1.2%,0); } }
@keyframes pulse { 70% { box-shadow: 0 0 0 9px rgba(255,255,255,0); } 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); } }
@keyframes glassSweep { 0%,65% { transform: translateX(-120%); } 100% { transform: translateX(120%); } }
@keyframes signal { 0%,100% { opacity: .45; } 50% { opacity: 1; } }
@keyframes scrollDrop { 0% { transform: translate(-50%,0); opacity: 0; } 35% { opacity: 1; } 100% { transform: translate(-50%,10px); opacity: 0; } }
@keyframes ticker { to { transform: translateX(-50%); } }
@keyframes meterFill { from { transform: scaleX(0); } to { transform: scaleX(1); } }

@media (max-width: 1100px) {
  .hero-shell { grid-template-columns: 1fr 340px; gap: 35px; }
  .hero h1 { font-size: clamp(48px, 7vw, 72px); }
  .section-head { grid-template-columns: .55fr 1.45fr; }
  .section-head > p { grid-column: 2; }
  .bento-grid { grid-template-columns: repeat(2,1fr); }
  .bento-large { grid-column: span 2; }
  .bento-wide { grid-column: span 2; }
  .route-grid { grid-template-columns: repeat(2,1fr); }
  .start-shell, .faq-shell { gap: 55px; }
  .footer-main { grid-template-columns: 1.7fr repeat(3,1fr); gap: 35px; }
}

@media (max-width: 900px) {
  :root { --nav-h: 74px; }
  .nav-shell { width: min(calc(100% - 30px), var(--max)); }
  .nav-toggle { display: flex; }
  .nav-discord { display: none; }
  .nav-links { position: fixed; left: 15px; right: 15px; top: calc(var(--nav-h) + 8px); margin: 0; padding: 15px; background: rgba(6,14,13,.97); border: 1px solid var(--line-strong); backdrop-filter: blur(18px); display: grid; gap: 0; transform: translateY(-12px); opacity: 0; visibility: hidden; transition: opacity .25s ease, transform .25s ease, visibility .25s ease; }
  .nav-links a { padding: 14px 10px; border-bottom: 1px solid var(--line); }
  .nav-links a:last-child { border-bottom: 0; }
  .nav-links a::after { display: none; }
  .mobile-menu-open .nav-links { opacity: 1; visibility: visible; transform: translateY(0); }
  .mobile-menu-open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .mobile-menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .mobile-menu-open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  .hero-shell { grid-template-columns: 1fr; padding-top: calc(var(--nav-h) + 80px); gap: 45px; }
  .hero-copy { max-width: 740px; }
  .server-console { width: min(100%, 500px); }
  .scroll-cue { display: none; }
  .section { padding: 100px 0; }
  .section-shell, .footer-shell, .panorama-content { width: min(calc(100% - 30px), var(--max)); }
  .section-head, .split-head { grid-template-columns: 1fr; gap: 24px; }
  .section-head > p { grid-column: auto; max-width: 620px; }
  .panorama { min-height: 610px; }
  .panorama-image { background-position: center center; }
  .start-shell, .faq-shell { grid-template-columns: 1fr; }
  .start-copy, .faq-intro { position: static; }
  .application-card { min-height: 460px; }
  .footer-main { grid-template-columns: 1.7fr 1fr 1fr; }
  .footer-column:last-child { grid-column: 2 / 3; }
}

@media (max-width: 650px) {
  .cursor-glow { display: none; }
  .hero { min-height: auto; }
  .hero-image { object-position: 58% 31%; }
  .hero-shade { background: linear-gradient(180deg, rgba(3,9,8,.64), rgba(3,9,8,.74) 48%, var(--bg) 100%); }
  .hero-shell { width: min(calc(100% - 30px), var(--max)); padding-bottom: 75px; }
  .hero-kicker { font-size: 9px; letter-spacing: .12em; }
  .hero h1 { font-size: clamp(43px, 13.1vw, 66px); line-height: .97; }
  .hero-copy > p { font-size: 15px; }
  .hero-actions { display: grid; }
  .btn { width: 100%; }
  .hero-proof { display: grid; grid-template-columns: repeat(3,1fr); }
  .hero-proof div { min-width: 0; padding: 0 10px; }
  .hero-proof strong { font-size: 14px; }
  .hero-proof span { font-size: 8px; }
  .server-console { padding: 17px; }
  .ticker { height: 42px; }
  .section { padding: 80px 0; }
  .section-head h2, .split-head h2, .start-copy h2, .faq-intro h2 { font-size: clamp(39px, 12vw, 58px); }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-large, .bento-wide { grid-column: auto; }
  .bento-card { min-height: 300px; padding: 24px; }
  .bento-wide { display: flex; flex-direction: column; align-items: stretch; gap: 40px; }
  .community-meter { width: 100%; grid-template-columns: 110px 1fr; }
  .route-grid { grid-template-columns: 1fr; }
  .route-card { min-height: 350px; }
  .panorama { min-height: 550px; }
  .panorama-image { background-position: center center; }
  .panorama-overlay { background: rgba(3,9,8,.7); }
  .panorama h2 { font-size: clamp(43px, 13vw, 65px); }
  .timeline li { grid-template-columns: 62px 1fr; }
  .application-grid { grid-template-columns: 1fr; }
  .application-card { min-height: 440px; padding: 24px; }
  .application-top { align-items: start; }
  .availability-dot { text-align: right; }
  .application-cta { left: 24px; }
  .faq-item summary { font-size: 16px; }
  .final-cta { min-height: 580px; }
  .final-cta h2 { font-size: clamp(47px, 14vw, 70px); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 45px 30px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-column:last-child { grid-column: auto; }
  .footer-bottom { display: grid; }
  .footer-bottom p { text-align: left; }
  .form-grid { grid-template-columns: 1fr; }
  .modal-overlay { padding: 12px; }
  .modal { max-height: calc(100svh - 24px); }
  .modal-head, .modal form { padding-left: 20px; padding-right: 20px; }
}

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


/* ---------- EXTRA MOTION & FOOTER POLISH ---------- */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: "";
  position: absolute;
  top: -20%;
  bottom: -20%;
  left: -130%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  transform: skewX(-20deg);
  animation: btnSweep 4.8s ease-in-out infinite;
}
.panorama-content img {
  animation: badgeFloat 4.2s ease-in-out infinite;
}
.text-link {
  position: relative;
  overflow: hidden;
}
.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--orange), rgba(255,255,255,.18));
  transform-origin: left;
  animation: linkPulse 2.8s ease-in-out infinite;
}
.footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 24%, rgba(255,107,53,.10), transparent 22%),
    radial-gradient(circle at 88% 12%, rgba(255,210,103,.06), transparent 18%),
    #050b0a;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: -18%;
  width: 40%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,107,53,.95), transparent);
  animation: footerSweep 7s linear infinite;
}
.footer::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,53,.10), transparent 70%);
  filter: blur(14px);
}
.footer-shell,
.footer-main,
.footer-bottom { position: relative; z-index: 1; }
.footer-brand .brand {
  width: fit-content;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.footer-brand .brand:hover {
  transform: translateY(-2px);
  border-color: rgba(255,107,53,.28);
  box-shadow: 0 18px 40px rgba(0,0,0,.24);
}
.social-links a {
  background: rgba(255,255,255,.02);
  box-shadow: inset 0 0 0 0 rgba(255,107,53,0);
}
.social-links a:hover svg {
  transform: scale(1.08);
}
.social-links a svg {
  transition: transform .2s ease;
}
.footer-column a {
  position: relative;
  width: fit-content;
}
.footer-column a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}
.footer-column a:hover::after {
  transform: scaleX(1);
}
.footer-bottom {
  border-top-color: rgba(255,255,255,.08);
}

@keyframes badgeFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes btnSweep {
  0%, 72% { left: -130%; }
  100% { left: 160%; }
}
@keyframes linkPulse {
  0%,100% { opacity: .72; transform: scaleX(.82); }
  50% { opacity: 1; transform: scaleX(1); }
}
@keyframes footerSweep {
  0% { transform: translateX(0); }
  100% { transform: translateX(340%); }
}


/* ---------- HOW TO PLAY ENHANCED ---------- */
.start {
  background:
    radial-gradient(circle at 12% 38%, rgba(255,107,53,.13), transparent 24%),
    radial-gradient(circle at 86% 16%, rgba(255,210,103,.05), transparent 18%),
    var(--bg);
}
.start-copy {
  padding: 26px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.01));
  box-shadow: 0 22px 60px rgba(0,0,0,.18);
}
.start-note {
  margin-top: 22px;
  padding: 16px 18px;
  border: 1px solid rgba(255,107,53,.22);
  border-radius: 16px;
  background: rgba(255,107,53,.055);
}
.start-note strong {
  display: block;
  margin-bottom: 6px;
  font: 800 11px "Space Mono", monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
}
.start-note p { margin: 0; font-size: 14px; color: #d7ddd9; }
.timeline {
  display: grid;
  gap: 16px;
  border-top: none;
}
.timeline li {
  min-height: unset;
  grid-template-columns: 82px 1fr;
  gap: 20px;
  padding: 0;
  border-bottom: none;
  align-items: stretch;
}
.timeline-number {
  display: grid;
  place-items: start;
  padding-top: 30px;
  font-size: 34px;
  color: var(--orange);
}
.timeline-card {
  position: relative;
  padding: 24px 26px 22px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
  overflow: hidden;
  transition: transform .28s var(--ease), border-color .28s ease, background .28s ease, box-shadow .28s ease;
}
.timeline-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--orange), rgba(255,107,53,.06));
}
.timeline-card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -100px;
  top: -100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,53,.12), transparent 70%);
  opacity: .6;
  pointer-events: none;
}
.timeline li:hover .timeline-card {
  transform: translateY(-4px);
  border-color: rgba(255,107,53,.28);
  background: linear-gradient(180deg, rgba(255,107,53,.07), rgba(255,255,255,.018));
  box-shadow: 0 24px 60px rgba(0,0,0,.24);
}
.timeline-highlight .timeline-card {
  border-color: rgba(255,107,53,.26);
  background: linear-gradient(180deg, rgba(255,107,53,.09), rgba(255,255,255,.018));
}
.timeline-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.timeline small { color: #9ca7a0; }
.timeline-badge {
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  font: 800 10px "Space Mono", monospace;
  letter-spacing: .1em;
  color: #cfd6d1;
  background: rgba(255,255,255,.04);
}
.timeline-badge.hot {
  color: #fff0e8;
  border-color: rgba(255,107,53,.28);
  background: rgba(255,107,53,.16);
}
.timeline h3 { font-size: 29px; margin: 8px 0 10px; }
.timeline p { font-size: 15px; line-height: 1.75; color: #d0d8d2; }
.timeline-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.timeline-meta span {
  padding: 8px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  font: 700 10px "Space Mono", monospace;
  letter-spacing: .06em;
  color: #d4dbd6;
}
.timeline li::after { display: none; }

/* ---------- FAQ ENHANCED ---------- */
.faq-list {
  display: grid;
  gap: 14px;
  border-top: none;
  background: transparent;
  border-radius: 0;
  overflow: visible;
}
.faq-item {
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.024), rgba(255,255,255,.015));
  overflow: hidden;
  transition: border-color .25s ease, background .25s ease, transform .25s ease, box-shadow .25s ease;
}
.faq-item:hover {
  transform: translateY(-2px);
  border-color: rgba(255,107,53,.16);
}
.faq-featured {
  border-color: rgba(255,107,53,.22);
  background: linear-gradient(180deg, rgba(255,107,53,.06), rgba(255,255,255,.016));
}
.faq-item summary {
  min-height: 100px;
  padding: 22px 24px;
  gap: 20px;
}
.faq-copy {
  display: grid;
  gap: 6px;
}
.faq-copy small {
  font: 800 10px "Space Mono", monospace;
  letter-spacing: .12em;
  color: var(--orange);
  text-transform: uppercase;
}
.faq-copy > span:last-child {
  font-size: 20px;
  line-height: 1.3;
}
.faq-item summary i {
  width: 36px;
  height: 36px;
  border-color: rgba(255,255,255,.12);
  background: rgba(255,255,255,.02);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.faq-item summary i::before,
.faq-item summary i::after { width: 10px; }
.faq-item[open] {
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.024));
  border-color: rgba(255,107,53,.24);
  box-shadow: 0 18px 46px rgba(0,0,0,.2);
}
.faq-item[open] summary i {
  transform: rotate(180deg);
  background: rgba(255,107,53,.12);
}
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .28s ease;
}
.faq-item[open] .faq-answer {
  grid-template-rows: 1fr;
}
.faq-answer > p {
  min-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0 24px 24px 24px;
  font-size: 16px;
  line-height: 1.78;
}

@media (max-width: 1100px) {
  .start-shell, .faq-shell { gap: 46px; }
  .start-copy, .faq-intro { position: static; }
}
@media (max-width: 760px) {
  .start-copy { padding: 22px 18px; border-radius: 20px; }
  .timeline li { grid-template-columns: 1fr; }
  .timeline-number { padding-top: 0; font-size: 26px; }
  .timeline-card { padding: 20px 18px; border-radius: 18px; }
  .timeline h3 { font-size: 24px; }
  .faq-item summary { padding: 18px 18px; min-height: 86px; }
  .faq-copy > span:last-child { font-size: 18px; }
  .faq-answer > p { padding: 0 18px 20px 18px; }
}


/* ---------- HERO LUXURY UPGRADE ---------- */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 24%, rgba(255,107,53,.16), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(255,255,255,.08), transparent 16%);
  pointer-events: none;
}
.hero-shell { position: relative; z-index: 2; }
.hero-copy {
  position: relative;
  padding: 28px 30px 26px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(9,18,17,.42), rgba(9,18,17,.18));
  backdrop-filter: blur(10px);
  box-shadow: 0 30px 90px rgba(0,0,0,.28);
}
.hero-copy::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,.04);
  pointer-events: none;
}
.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.hero-highlights span {
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  font: 700 10px "Space Mono", monospace;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #d8dfd9;
}
.hero-float {
  position: absolute;
  z-index: 2;
  width: min(250px, calc(100vw - 48px));
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(11,22,20,.82), rgba(7,15,14,.74));
  backdrop-filter: blur(18px);
  box-shadow: 0 26px 60px rgba(0,0,0,.32);
}
.hero-float span {
  display: inline-block;
  margin-bottom: 6px;
  font: 800 10px "Space Mono", monospace;
  letter-spacing: .14em;
  color: var(--orange);
}
.hero-float strong {
  display: block;
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 6px;
}
.hero-float p {
  margin: 0;
  color: #cfd6d1;
  font-size: 13px;
  line-height: 1.55;
}
.hero-float-left { display: none; }
.hero-float-right { right: max(24px, calc((100vw - min(calc(100% - 48px), var(--max))) / 2)); top: calc(var(--nav-h) + 96px); animation: heroFloat 5.5s ease-in-out infinite reverse; }
.server-console {
  border-radius: 20px;
  box-shadow: 0 34px 90px rgba(0,0,0,.48), inset 0 1px rgba(255,255,255,.08);
}
.server-console::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at top right, rgba(255,107,53,.12), transparent 34%);
  pointer-events: none;
}
.console-player-row,
.console-address {
  border-radius: 14px;
  background: rgba(255,255,255,.04);
}
.console-connect { border-radius: 14px; }

/* ---------- APPLICATIONS PREMIUM ---------- */
.applications {
  background:
    radial-gradient(circle at 16% 24%, rgba(255,107,53,.10), transparent 20%),
    radial-gradient(circle at 84% 15%, rgba(255,255,255,.04), transparent 16%),
    #0b1514;
}
.application-card {
  border-radius: 20px;
  min-height: 520px;
  padding: 34px 34px 100px;
  box-shadow: 0 22px 60px rgba(0,0,0,.18);
}
.application-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.03), transparent 40%);
  pointer-events: none;
}
.application-ribbon {
  position: absolute;
  right: 28px;
  top: 74px;
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  font: 800 9px "Space Mono", monospace;
  letter-spacing: .1em;
  color: #f0eee8;
}
.application-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.application-tags span {
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.035);
  font: 700 10px "Space Mono", monospace;
  letter-spacing: .08em;
  color: #d2d9d4;
}
.application-points {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 11px;
}
.application-points li {
  position: relative;
  padding-left: 18px;
  color: #d6ddd8;
  line-height: 1.6;
  font-size: 14px;
}
.application-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .58em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--orange), var(--orange-2));
  box-shadow: 0 0 10px rgba(255,107,53,.55);
}
.application-cta {
  left: 34px;
  bottom: 34px;
  padding: 13px 15px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  background: rgba(255,255,255,.03);
}
.application-card:hover .application-cta {
  border-color: rgba(255,107,53,.28);
  background: rgba(255,107,53,.08);
}

@keyframes heroFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 1220px) {
  .hero-float { display: none; }
}
@media (max-width: 900px) {
  .hero-copy { padding: 24px 20px; border-radius: 22px; }
  .hero-highlights { margin-top: 18px; }
  .application-grid { grid-template-columns: 1fr; }
  .application-card { min-height: 460px; padding: 28px 24px 94px; border-radius: 22px; }
  .application-ribbon { right: 22px; top: 70px; }
  .application-cta { left: 24px; bottom: 24px; }
}


/* ---------- PEOPLE BEHIND FAVELA ---------- */
.founders-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 18%, rgba(255,107,53,.11), transparent 24%),
    radial-gradient(circle at 90% 24%, rgba(255,210,103,.055), transparent 20%),
    linear-gradient(180deg, #081210, #0b1514);
  border-top: 1px solid var(--line);
}
.founders-head { margin-bottom: 52px; }
.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.founder-card {
  min-height: 390px;
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.038), rgba(255,255,255,.015)),
    rgba(8,18,16,.76);
  box-shadow: 0 30px 80px rgba(0,0,0,.24);
  transition: transform .3s var(--ease), border-color .3s ease, box-shadow .3s ease;
}
.founder-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 24%, rgba(255,255,255,.05) 48%, transparent 72%);
  transform: translateX(-115%);
  transition: transform .9s var(--ease);
  pointer-events: none;
}
.founder-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255,107,53,.34);
  box-shadow: 0 38px 95px rgba(0,0,0,.34);
}
.founder-card:hover::before { transform: translateX(115%); }
.founder-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  right: -150px;
  bottom: -180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,53,.17), transparent 70%);
  filter: blur(8px);
  pointer-events: none;
}
.founder-owner .founder-glow {
  background: radial-gradient(circle, rgba(255,210,103,.12), transparent 70%);
}
.founder-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}
.founder-avatar {
  width: 70px;
  height: 70px;
  position: relative;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255,107,53,.18), rgba(255,255,255,.03));
  box-shadow: inset 0 1px rgba(255,255,255,.08), 0 18px 40px rgba(0,0,0,.22);
}
.founder-avatar img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  opacity: .34;
}
.founder-avatar span {
  position: absolute;
  right: -8px;
  bottom: -8px;
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--orange);
  color: #fff;
  font: 800 15px "Space Mono", monospace;
  box-shadow: 0 12px 24px rgba(255,107,53,.3);
}
.founder-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
  color: #cfd7d1;
  font: 800 9px "Space Mono", monospace;
  letter-spacing: .12em;
}
.founder-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px rgba(87,213,138,.75);
}
.founder-role {
  margin-bottom: 12px;
  color: var(--orange);
  font: 800 10px "Space Mono", monospace;
  letter-spacing: .16em;
}
.founder-card h3 {
  margin: 0 0 14px;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(34px, 3.8vw, 50px);
  line-height: .96;
  letter-spacing: -.04em;
  text-transform: uppercase;
}
.founder-card > p {
  max-width: 560px;
  margin: 0;
  color: #c8d0ca;
  font-size: 14px;
  line-height: 1.65;
}
.founder-link {
  position: absolute;
  left: 26px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255,255,255,.25);
  color: #f2eee5;
  font: 800 10px "Space Mono", monospace;
  letter-spacing: .10em;
  text-transform: uppercase;
}
.founder-link span {
  color: var(--orange);
  font-size: 17px;
  transition: transform .2s ease;
}
.founder-link:hover span { transform: translate(4px,-4px); }

@media (max-width: 800px) {
  .founders-grid { grid-template-columns: 1fr; }
  .founder-card {
    min-height: 475px;
    padding: 24px;
    border-radius: 22px;
  }
  .founder-link { left: 24px; bottom: 24px; }
  .founder-avatar {
    width: 72px;
    height: 72px;
    border-radius: 20px;
  }
}


/* ---------- TEAM SECTION COMPACT FIX ---------- */
.founders-section { padding-top: 105px; padding-bottom: 105px; }
.founders-head { margin-bottom: 38px; }
.founders-grid { max-width: 1040px; margin: 0 auto; }
.founder-card { min-height: 385px; padding: 26px 26px 82px; }
.founder-card h3 { margin-bottom: 10px; }
.founder-role { margin-bottom: 9px; }
.founder-link { left: 26px; bottom: 24px; }
@media (max-width: 800px) {
  .founder-card { min-height: 360px; padding: 22px 22px 76px; }
  .founder-link { left: 22px; bottom: 22px; }
}


/* Navigacija: hover-reveal i mekani active indikator */
.site-nav .nav-shell {
  transition: opacity .32s ease, transform .52s cubic-bezier(.16, 1, .3, 1);
}
.site-nav.nav-hidden .nav-shell {
  opacity: 1;
  transform: none;
}
.nav-links a.active-link {
  color: #fff;
  text-shadow: 0 0 18px rgba(255,107,53,.22);
}
@media (hover: none), (pointer: coarse), (max-width: 900px) {
  .site-nav.nav-hidden { transform: translate3d(0, 0, 0); }
  .nav-hover-zone { display: none; }
}


/* Navbar v12: bez tvrde linije i sa sporijim, mekanim klizanjem */
.site-nav::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -18px;
  height: 18px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(4,11,10,.18), transparent);
  opacity: 0;
  transition: opacity .55s ease;
}
.site-nav.scrolled::after { opacity: .45; }
.site-nav.nav-hidden::after { opacity: 0; }


/* Navbar v13: animaciju transformacije vodi Web Animations API. */
.site-nav {
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.site-nav:not(.nav-hidden) { pointer-events: auto; }
.nav-hover-zone { z-index: 101; }


/* Navbar v14: animirana linija koja se puni na hover */
.nav-links a {
  padding-bottom: 10px;
  isolation: isolate;
}
.nav-links a::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255,107,53,.16);
  opacity: 0;
  transform: scaleX(.18);
  transform-origin: center;
  transition: opacity .22s ease, transform .36s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff5f2e 0%, #ff9a62 48%, #fff1dc 58%, #ff6b35 100%);
  background-size: 220% 100%;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: right center;
  box-shadow: 0 0 0 rgba(255,107,53,0);
  transition:
    transform .58s cubic-bezier(.16, 1, .3, 1),
    opacity .18s ease,
    box-shadow .35s ease;
}
.nav-links a:hover::before,
.nav-links a:focus-visible::before,
.nav-links a.active-link::before {
  opacity: 1;
  transform: scaleX(1);
}
.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.active-link::after {
  opacity: 1;
  transform: scaleX(1);
  transform-origin: left center;
  box-shadow: 0 0 13px rgba(255,107,53,.46);
  animation: navLineFlow 1.65s linear infinite;
}
.nav-links a:not(:hover):not(:focus-visible):not(.active-link)::after {
  transform-origin: right center;
}
@keyframes navLineFlow {
  from { background-position: 100% 0; }
  to { background-position: -120% 0; }
}

/* Jasniji font na Pokreni FiveM dugmetu */
.console-connect {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}


/* Navbar v15: stvarno punjenje linije s lijeva na desno */
.nav-links a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: rgba(255,107,53,.15);
  opacity: 0 !important;
  transform: none !important;
  transition: opacity .25s ease !important;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0 !important;
  right: auto !important;
  bottom: -9px;
  width: 0 !important;
  height: 2px;
  border-radius: 999px;
  transform: none !important;
  transform-origin: left center !important;
  opacity: 1 !important;
  background: linear-gradient(90deg, #ff5f2e 0%, #ff8a50 62%, #ffe0cf 100%) !important;
  box-shadow: 0 0 0 rgba(255,107,53,0) !important;
  animation: none !important;
  transition:
    width .82s cubic-bezier(.16, 1, .3, 1) !important,
    box-shadow .35s ease !important;
}
.nav-links a:hover::before,
.nav-links a:focus-visible::before,
.nav-links a.active-link::before {
  opacity: 1 !important;
}
/* Aktivna kategorija ima kratku liniju, pa se na hover jasno dopuni do kraja. */
.nav-links a.active-link:not(:hover):not(:focus-visible)::after {
  width: 38% !important;
  box-shadow: 0 0 8px rgba(255,107,53,.30) !important;
}
.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  width: 100% !important;
  box-shadow: 0 0 14px rgba(255,107,53,.52) !important;
}
.nav-links a:not(:hover):not(:focus-visible):not(.active-link)::after {
  width: 0 !important;
}

/* Zadrži animaciju linije čak i ako je Windows Reduced Motion uključen */
@media (prefers-reduced-motion: reduce) {
  .nav-links a::before {
    transition: opacity .25s ease !important;
  }
  .nav-links a::after {
    transition:
      width .82s cubic-bezier(.16, 1, .3, 1) !important,
      box-shadow .35s ease !important;
  }
}


/* Navbar v17: stvarna DOM linija, bez konfliktnih pseudo-elemenata */
.nav-links a::before,
.nav-links a::after {
  content: none !important;
  display: none !important;
  animation: none !important;
  transition: none !important;
}
.nav-links a {
  overflow: visible;
}
.nav-fill-line {
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 2px;
  display: block;
  border-radius: 999px;
  pointer-events: none;
  background: linear-gradient(90deg, #ff5f2e 0%, #ff8a50 72%, #ffe0cf 100%);
  box-shadow: 0 0 10px rgba(255,107,53,.35);
  will-change: width;
}
@media (max-width: 900px) {
  .nav-fill-line { display: none; }
}

/* Box "Priča prije svega" je uklonjen iz HTML-a; ovo sprečava prikaz stare cache verzije. */
.hero-float-right { display: none !important; }


/* ---------- MOBILE HORIZONTAL OVERFLOW FIX ---------- */
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip !important;
}
body { position: relative; }
main, section, header, footer, .site-nav, .nav-shell, .hero-shell,
.section-shell, .footer-shell, .start-shell, .timeline, .timeline li,
.timeline-card, .application-grid, .faq-shell, .founders-grid {
  min-width: 0;
  max-width: 100%;
}
.timeline-card, .start-copy, .application-card, .founder-card {
  overflow: hidden;
}
.timeline-meta {
  max-width: 100%;
}
.timeline-meta span {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.console-address code, .founder-id code, code {
  overflow-wrap: anywhere;
  word-break: break-word;
}
@media (max-width: 760px) {
  .section-shell, .footer-shell, .panorama-content, .hero-shell, .nav-shell {
    width: calc(100% - 30px) !important;
    max-width: calc(100% - 30px) !important;
  }
  .timeline, .timeline li, .timeline-card, .start-copy {
    width: 100%;
    max-width: 100%;
  }
  .timeline-meta {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
  .timeline-meta span {
    flex: 0 1 auto;
    min-width: 0;
  }
  .hero-float, .cursor-glow { display: none !important; }
}


/* ---------- SERVER OPENING COUNTDOWN ---------- */
.console-countdown {
  margin: 13px 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.04);
}
.countdown-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}
.countdown-heading span {
  font: 700 9px "Space Mono", monospace;
  letter-spacing: .16em;
  color: #8f9c94;
}
.countdown-heading strong {
  color: var(--orange-2);
  font: 700 10px "Space Mono", monospace;
  letter-spacing: .05em;
  white-space: nowrap;
}
.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 7px;
}
.countdown-grid > div {
  min-width: 0;
  padding: 10px 5px 9px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  background: rgba(0,0,0,.16);
  text-align: center;
}
.countdown-grid strong {
  display: block;
  color: #fff;
  font: 700 22px/1 "Space Mono", monospace;
  font-variant-numeric: tabular-nums;
}
.countdown-grid span {
  display: block;
  margin-top: 7px;
  color: #87938c;
  font: 700 8px "Space Mono", monospace;
  letter-spacing: .11em;
}
.console-connect.is-locked,
.btn.is-locked {
  cursor: not-allowed;
  opacity: .68;
  filter: saturate(.45);
  pointer-events: auto;
}
.console-connect.is-locked {
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.08);
  color: #aab2ad;
}
.console-connect.is-locked:hover,
.btn.is-locked:hover {
  transform: none;
  box-shadow: none;
}
.console-connect.is-locked svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@media (max-width: 420px) {
  .console-countdown { padding: 13px; }
  .countdown-heading { align-items: start; flex-direction: column; gap: 5px; }
  .countdown-grid { gap: 5px; }
  .countdown-grid strong { font-size: 18px; }
  .countdown-grid span { font-size: 7px; }
}


/* ---------- V20 SECTION POSITIONING + SOFT SNAP ---------- */
html {
  scroll-padding-top: calc(var(--nav-h) + 24px);
  scroll-snap-type: y proximity;
}
main > section[id],
main > section.hero,
main > section.panorama,
main > section.final-cta {
  scroll-snap-align: start;
  scroll-snap-stop: normal;
}
#iskustvo,
#kako-igrati,
#prijave,
#faq,
#tim {
  scroll-margin-top: calc(var(--nav-h) + 24px);
}

/* Discord izgleda isto kao ostale stavke navigacije */
.nav-discord { display: none !important; }
.nav-links .nav-discord-link {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0 0 10px;
  min-height: auto;
  display: inline-block;
  color: #d5dcd7;
  font: inherit;
  box-shadow: none;
  transform: none;
}
.nav-links .nav-discord-link:hover {
  color: #fff;
  background: transparent;
  border-color: transparent;
  transform: none;
}

@media (max-width: 900px) {
  html { scroll-snap-type: none; }
  .nav-links .nav-discord-link {
    display: block;
    padding: 14px 10px;
    border-bottom: 0;
  }
}


/* ---------- V21 PRIJAVE ANCHOR FIX ---------- */
#prijave { scroll-snap-align: none; }
#prijave .section-head { scroll-margin-top: calc(var(--nav-h) + 28px); }


/* v22 disabled social links */
.social-links a[aria-disabled="true"],
.footer-column a[aria-disabled="true"] {
  cursor: default;
  opacity: .55;
}
.social-links a[aria-disabled="true"]:hover,
.footer-column a[aria-disabled="true"]:hover {
  transform: none;
  background: rgba(255,255,255,.02);
  border-color: var(--line);
  color: #a9b2ac;
}
.social-links a[aria-disabled="true"]::after,
.footer-column a[aria-disabled="true"]::after { display: none; }


/* ---------- LEADER ORGANIZATION SELECTOR ---------- */
.leader-organization-field {
  min-width: 0;
  margin: 2px 0 0;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.012));
}
.leader-organization-field[hidden] { display: none !important; }
.leader-organization-field legend {
  padding: 0 8px;
  color: #f5f1e8;
  font: 800 13px "Space Mono", monospace;
  letter-spacing: .06em;
}
.organization-help {
  margin: 0 0 12px;
  color: #9eaaa2;
  font: 500 13px "Manrope", sans-serif;
  line-height: 1.55;
}
.organization-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
  color: #b8c2bc;
  font: 700 10px "Space Mono", monospace;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.organization-legend span { display: inline-flex; align-items: center; gap: 7px; }
.organization-legend i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.organization-legend .is-free { background: var(--green); box-shadow: 0 0 10px rgba(87,213,138,.65); }
.organization-legend .is-occupied { background: #ff727d; box-shadow: 0 0 10px rgba(255,114,125,.45); }
.organization-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-height: 330px;
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,107,53,.65) rgba(255,255,255,.03);
}
.organization-grid::-webkit-scrollbar { width: 5px; }
.organization-grid::-webkit-scrollbar-track { background: rgba(255,255,255,.025); border-radius: 999px; }
.organization-grid::-webkit-scrollbar-thumb { background: rgba(255,107,53,.65); border-radius: 999px; }
.organization-option {
  position: relative;
  display: grid;
  gap: 7px;
  padding: 14px 14px 13px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 13px;
  background: rgba(255,255,255,.025);
  color: #e8ece8;
  cursor: pointer;
  text-align: left;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.organization-option:hover:not(.occupied) {
  transform: translateY(-2px);
  border-color: rgba(255,107,53,.30);
  background: rgba(255,107,53,.055);
}
.organization-option.selected {
  border-color: rgba(255,107,53,.72);
  background: linear-gradient(180deg, rgba(255,107,53,.12), rgba(255,107,53,.055));
  box-shadow: inset 3px 0 0 var(--orange), 0 12px 30px rgba(0,0,0,.16);
}
.organization-option.occupied {
  opacity: .48;
  cursor: not-allowed;
  filter: saturate(.65);
}
.organization-option-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 9px;
}
.organization-option-name {
  color: #f4f0e8;
  font: 800 14px "Manrope", sans-serif;
  line-height: 1.25;
}
.organization-option-category {
  color: #8f9b94;
  font: 700 9px "Space Mono", monospace;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.organization-option-status {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 7px;
  border-radius: 999px;
  font: 800 8px "Space Mono", monospace;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.organization-option-status::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.organization-option-status.free {
  color: #92edb5;
  background: rgba(87,213,138,.10);
  border: 1px solid rgba(87,213,138,.20);
}
.organization-option-status.free::before { background: var(--green); box-shadow: 0 0 8px rgba(87,213,138,.7); }
.organization-option-status.occupied {
  color: #ff9ca5;
  background: rgba(255,114,125,.09);
  border: 1px solid rgba(255,114,125,.18);
}
.organization-option-status.occupied::before { background: #ff727d; }
.organization-error {
  min-height: 18px;
  margin: 10px 0 0;
  color: #ff8f98;
  font: 700 11px "Manrope", sans-serif;
}
.organization-grid-loading {
  grid-column: 1 / -1;
  padding: 18px;
  border: 1px dashed rgba(255,255,255,.10);
  border-radius: 12px;
  color: #9eaaa2;
  text-align: center;
  font-size: 13px;
}
@media (max-width: 620px) {
  .organization-grid { grid-template-columns: 1fr; max-height: 300px; }
  .leader-organization-field { padding: 15px; }
}
