/* =============================================================================
   FLORIDA STATE ROLEPLAY — Ocean Navy / Electric Cyan theme
   (styled after florida-state-network.store)
   ============================================================================= */

:root {
  --bg:        #08090e;
  --bg-2:      #0a0b11;
  --bg-alt:    #0d0e15;
  --surface:   rgba(255, 255, 255, 0.028);
  --surface-2: rgba(255, 255, 255, 0.05);
  --border:    rgba(255, 255, 255, 0.08);
  --border-2:  rgba(255, 255, 255, 0.15);
  --text:      #eef0f5;
  --text-dim:  #868c9a;

  --cyan:      #38bdf8;
  --cyan-hi:   #4de8ff;
  --blue:      #3b82f6;
  --deep:      #1e3a8a;

  --grad:      linear-gradient(135deg, #4de8ff 0%, #22d3ee 45%, #3b82f6 100%);
  --grad-soft: linear-gradient(135deg, rgba(34,211,238,.18), rgba(59,130,246,.18));
  --glow:      0 14px 34px -16px rgba(0, 0, 0, .75);
  --icon-bg:   rgba(59, 130, 246, .13);
  --blue-hi:   #5b9bff;

  --radius:  14px;
  --radius-sm: 10px;
  --shadow:  0 18px 44px -22px rgba(0,0,0,0.75);
  --maxw:    1160px;
  --font:    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Outfit", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; font-family: var(--font); background: var(--bg-2); color: var(--text);
  line-height: 1.6; overflow-x: hidden;
}
h1,h2,h3,h4 { line-height: 1.1; margin: 0; font-weight: 800; letter-spacing: -0.02em; font-family: var(--font-display); }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
code { background: rgba(255,255,255,.08); padding: .1em .4em; border-radius: 6px; font-size: .9em; }
.container { width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto; }

.fish { color: var(--cyan); filter: drop-shadow(0 0 10px rgba(34,211,238,.55)); }

/* ---- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1.7rem; border-radius: 10px; font-weight: 700; font-size: .95rem;
  border: 1px solid transparent; transition: transform .18s ease, background .2s, border-color .2s;
  white-space: nowrap;
}
.btn--primary { background: var(--blue); color: #fff; }
.btn--primary:hover { background: var(--blue-hi); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--border-2); }
.btn--ghost:hover { background: var(--surface); border-color: var(--text-dim); }
.btn--lg { padding: 1.05rem 2.2rem; font-size: 1.05rem; }

/* ---- Music toggle ------------------------------------------------------- */
.music-toggle {
  position: fixed; right: 20px; bottom: 20px; z-index: 120; width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid var(--border-2); background: rgba(8,15,30,.75); backdrop-filter: blur(10px);
  display: grid; place-items: center; box-shadow: var(--shadow); transition: transform .2s, border-color .2s, box-shadow .2s;
}
.music-toggle:hover { transform: scale(1.08); border-color: var(--cyan); box-shadow: var(--glow); }
.music-toggle__bars { display: flex; align-items: flex-end; gap: 3px; height: 20px; }
.music-toggle__bars i { width: 3px; background: var(--grad); border-radius: 2px; height: 40%; animation: eq 1s ease-in-out infinite; }
.music-toggle__bars i:nth-child(2){ animation-delay: .2s; } .music-toggle__bars i:nth-child(3){ animation-delay: .4s; } .music-toggle__bars i:nth-child(4){ animation-delay: .6s; }
@keyframes eq { 0%,100%{ height: 30%; } 50%{ height: 100%; } }
.music-toggle.is-paused .music-toggle__bars i { animation-play-state: paused; height: 45%; opacity: .5; }

/* =============================================================================
   NAVBAR
   ============================================================================= */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 14px 0; transition: padding .3s; }
.nav__wrap { width: min(100% - 2rem, var(--maxw)); margin-inline: auto; display: flex; align-items: center; justify-content: space-between; height: 58px; padding: 0 .8rem 0 1.2rem;
  background: rgba(16,17,23,.7); backdrop-filter: blur(16px); border: 1px solid var(--border); border-radius: 100px; transition: background .3s, border-color .3s; }
.nav.is-scrolled .nav__wrap { background: rgba(12,13,18,.92); }
.nav__brand { display: flex; align-items: center; gap: .55rem; font-weight: 900; letter-spacing: .02em; }
.nav__logo { width: 36px; height: 36px; object-fit: contain; }
.nav__brand-text { font-size: 1.15rem; color: #fff; }
.nav__brand-text b { color: var(--cyan); font-weight: 900; }
.nav__menu { display: flex; align-items: center; gap: 1.6rem; }
.nav__links { display: flex; align-items: center; gap: 1.5rem; }
.nav__links a { color: var(--text-dim); font-weight: 600; font-size: .92rem; transition: color .2s; position: relative; }
.nav__links a:hover { color: var(--text); }
.nav__links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 2px; background: var(--blue); border-radius: 2px; transition: right .25s ease; }
.nav__links a:hover::after { right: 0; }
.nav__cta { padding: .55rem 1.3rem; border-radius: 100px; background: #fff; color: #0a0b11 !important; font-weight: 700; font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; transition: background .2s, transform .18s; }
.nav__cta:hover { background: #d8dbe2; transform: translateY(-1px); }
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; }
.nav__burger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: .25s; }
.nav__burger[aria-expanded="true"] span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* =============================================================================
   HERO
   ============================================================================= */
.hero { position: relative; min-height: 88vh; display: grid; place-items: center; text-align: center; overflow: hidden; background: var(--bg); }
.hero__bg { position: absolute; inset: 0; background:
    radial-gradient(70% 55% at 50% 2%, rgba(59,130,246,.20), transparent 60%),
    radial-gradient(100% 70% at 50% 118%, rgba(20,130,140,.20), transparent 62%),
    linear-gradient(180deg, #0a1a24 0%, #0b1b26 28%, #08131c 66%, var(--bg-2) 100%); }
.hero__glow { display: none; }
.hero__emblem { position: absolute; top: 50%; left: 50%; width: min(560px, 82vw); transform: translate(-50%, -55%);
  opacity: .09; z-index: 1; pointer-events: none; user-select: none; }
.hero__dots { position: absolute; width: 320px; height: 320px; z-index: 1; pointer-events: none; opacity: .45;
  background-image: radial-gradient(rgba(255,255,255,.14) 1.4px, transparent 1.6px); background-size: 15px 15px;
  -webkit-mask-image: radial-gradient(closest-side, #000 0%, transparent 72%); mask-image: radial-gradient(closest-side, #000 0%, transparent 72%); }
.hero__dots--l { top: 9%; left: -70px; }
.hero__dots--r { bottom: 4%; right: -70px; }
@keyframes floaty { 50% { transform: translate(-50%,-46%) scale(1.06); } }
.hero__grid { position: absolute; inset: 0; opacity: .5;
  background-image: linear-gradient(rgba(88,166,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(88,166,255,.06) 1px, transparent 1px);
  background-size: 46px 46px; mask-image: radial-gradient(70% 60% at 50% 40%, #000, transparent 80%); }
.hero__content { position: relative; z-index: 2; padding: 6rem 1.25rem 5rem; }
.hero__live { display: inline-flex; align-items: center; gap: .55rem; padding: .5rem 1.1rem; border-radius: 100px;
  background: rgba(52,209,126,.1); border: 1px solid rgba(52,209,126,.35); color: #b7f5d3; font-weight: 700; font-size: .82rem;
  letter-spacing: .02em; transition: transform .2s, border-color .2s; }
.hero__live:hover { transform: translateY(-2px); border-color: rgba(52,209,126,.6); }
.hero__live-dot { width: 9px; height: 9px; border-radius: 50%; background: #34d17e; box-shadow: 0 0 0 0 rgba(52,209,126,.6); animation: ring2 2s infinite; }
.hero__live.is-offline { background: rgba(255,94,98,.08); border-color: rgba(255,94,98,.3); color: #ffc2c4; }
.hero__live.is-offline .hero__live-dot { background: #ff5e62; animation: none; }
.hero__eyebrow { display: inline-block; text-transform: uppercase; letter-spacing: .24em; font-size: .72rem; font-weight: 700; color: var(--cyan); background: rgba(34,211,238,.08); padding: .45rem 1rem; border-radius: 100px; border: 1px solid var(--border-2); }
.hero__title { font-size: clamp(2.8rem, 9.5vw, 6.4rem); margin-top: 1.4rem; font-weight: 900; color: #fff; letter-spacing: -.02em; line-height: .98; text-shadow: 0 8px 50px rgba(0,0,0,.4); }
.hero__skyline { position: absolute; left: 0; right: 0; bottom: -1px; z-index: 1; line-height: 0; pointer-events: none; }
.hero__skyline svg { width: 100%; height: clamp(90px, 12vw, 165px); display: block; }
.hero__skyline path { fill: var(--bg-2); }
.hero__skyline-edge { fill: none; stroke: var(--cyan); stroke-width: 2; opacity: .5; filter: drop-shadow(0 0 6px rgba(34,211,238,.6)); }
.hero__title-accent { color: var(--blue); }
.hero__tagline { font-size: clamp(1.05rem, 2.4vw, 1.35rem); margin-top: 1rem; color: #c7d6f0; max-width: 42ch; margin-inline: auto; }
.hero__cta { display: flex; gap: 1rem; justify-content: center; margin-top: 2rem; flex-wrap: wrap; }
.hero-stats { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; margin-top: 2.6rem; }
.hero-stat { position: relative; padding: 0 clamp(1.1rem, 3.5vw, 2.4rem); background: none; border: 0; text-align: center; }
.hero-stat:not(:last-child)::after { content: "\2605"; position: absolute; right: -.32em; top: 44%; transform: translateY(-50%); color: var(--blue); font-size: .68rem; }
.hero-stat__value { font-size: clamp(1.5rem, 4vw, 2rem); font-weight: 900; color: #fff; line-height: 1; }
.hero-stat__label { font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text-dim); margin-top: .35rem; }
.hero__scroll { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); width: 26px; height: 42px; border: 2px solid rgba(160,200,255,.5); border-radius: 100px; z-index: 3; }
.hero__scroll span { position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; background: var(--cyan); border-radius: 4px; transform: translateX(-50%); animation: scrollDot 1.6s ease infinite; }
@keyframes scrollDot { 0%{ opacity: 0; transform: translate(-50%,0);} 40%{ opacity: 1;} 80%{ opacity: 0; transform: translate(-50%,14px);} }

/* =============================================================================
   SECTIONS
   ============================================================================= */
.section { padding: clamp(4rem, 9vw, 7rem) 0; position: relative; }
.section--alt { background: var(--bg-alt); }
.section__head { text-align: center; max-width: 680px; margin: 0 auto 3rem; }
.section__kicker { text-transform: uppercase; letter-spacing: .22em; font-size: .74rem; font-weight: 800; color: var(--blue); }
.section__title { font-size: clamp(1.9rem, 4.5vw, 3rem); margin-top: .6rem; color: #fff; }
.section__sub { color: var(--text-dim); margin-top: .9rem; font-size: 1.05rem; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* =============================================================================
   LIVE STATUS
   ============================================================================= */
.status-card { max-width: 760px; margin: 0 auto; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: clamp(1.4rem, 3vw, 2.2rem); box-shadow: var(--shadow); backdrop-filter: blur(10px); position: relative; overflow: hidden; }
.status-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: var(--cyan); }
.status-card__head { display: flex; align-items: center; gap: .7rem; flex-wrap: wrap; margin-bottom: 1.6rem; }
.status-dot { width: 12px; height: 12px; border-radius: 50%; flex: none; }
.status-dot--online { background: #34d17e; box-shadow: 0 0 0 0 rgba(52,209,126,.6); animation: ring2 2s infinite; }
.status-dot--offline { background: #ff5e62; }
.status-dot--loading { background: var(--cyan); animation: blink 1s infinite; }
@keyframes ring2 { 0%{box-shadow:0 0 0 0 rgba(52,209,126,.6);} 100%{box-shadow:0 0 0 12px rgba(52,209,126,0);} }
@keyframes blink { 50% { opacity: .3; } }
.status-card__state { font-weight: 800; font-size: 1.05rem; }
.status-card__name { color: var(--text-dim); font-size: .9rem; margin-left: auto; }
.status-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.stat { background: rgba(0,0,0,.3); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 1.1rem .6rem; text-align: center; }
.stat__value { font-size: clamp(1.5rem, 4vw, 2.1rem); font-weight: 900; color: #fff; line-height: 1.1; }
.stat__label { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-dim); margin-top: .35rem; }
.status-card__bar { height: 8px; border-radius: 100px; background: rgba(0,0,0,.4); margin-top: 1.6rem; overflow: hidden; }
.status-card__fill { height: 100%; width: 0; border-radius: 100px; background: var(--cyan); transition: width .8s ease; }
.status-card__note { text-align: center; color: var(--text-dim); font-size: .82rem; margin-top: 1rem; }

/* =============================================================================
   ABOUT / FEATURE CARDS
   ============================================================================= */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.4rem; }
.feature { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem 1.6rem; transition: transform .25s, border-color .25s, box-shadow .25s; position: relative; overflow: hidden; }
.feature:hover { transform: translateY(-6px); border-color: var(--border-2); box-shadow: var(--glow); }
.feature__icon { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 12px; background: var(--icon-bg); border: 1px solid var(--border-2); margin-bottom: 1.1rem; }
.feature__icon svg { width: 30px; height: 30px; color: var(--cyan); }
.feature__title { font-size: 1.25rem; }

/* ---- About two-column --------------------------------------------------- */
.about__wrap { display: grid; grid-template-columns: 1.35fr 1fr; gap: 2.6rem; align-items: center; margin-bottom: 3.5rem; }
.about__title { font-size: clamp(1.9rem, 4.5vw, 2.8rem); margin: .6rem 0 1rem; color: #fff; }
.about__lead { color: var(--text-dim); font-size: 1.06rem; line-height: 1.75; margin-bottom: 1.8rem; }
.about__facts { display: grid; gap: .75rem; }
.fact { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .95rem 1.3rem; background: var(--surface); border: 1px solid var(--border); border-left: 3px solid var(--cyan); border-radius: var(--radius-sm); }
.fact__k { color: var(--text-dim); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }
.fact__v { font-weight: 800; font-family: var(--font-display); }

/* ---- Departments -------------------------------------------------------- */
.dept-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 1.1rem; }
.dept { display: flex; align-items: center; gap: .9rem; padding: 1.05rem 1.2rem; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); transition: transform .2s, border-color .2s, box-shadow .2s; }
.dept:hover { transform: translateY(-4px); border-color: var(--border-2); box-shadow: var(--glow); }
.dept__icon { flex: none; width: 46px; height: 46px; border-radius: 10px; display: grid; place-items: center; background: var(--icon-bg); border: 1px solid var(--border-2); }
.dept__icon svg { width: 24px; height: 24px; color: var(--cyan); }
.dept__name { font-weight: 800; font-family: var(--font-display); line-height: 1.15; }
.dept__tag { color: var(--text-dim); font-size: .78rem; }

/* ---- Apply form --------------------------------------------------------- */
.apply-form { max-width: 720px; margin: 0 auto; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: clamp(1.5rem, 4vw, 2.6rem); box-shadow: var(--shadow); }
.apply-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.1rem; }
.field__label { font-size: .8rem; font-weight: 700; color: var(--text-dim); text-transform: uppercase; letter-spacing: .05em; }
.field__label b { color: #ff6468; }
.field__input { width: 100%; padding: .8rem 1rem; background: rgba(0,0,0,.3); border: 1px solid var(--border); border-radius: var(--radius-sm); color: var(--text); font-family: inherit; font-size: .95rem; transition: border-color .2s, box-shadow .2s; }
.field__input:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(34,211,238,.15); }
.field__input::placeholder { color: #5f7091; }
textarea.field__input { resize: vertical; min-height: 96px; }
select.field__input { appearance: none; cursor: pointer; background-image: linear-gradient(45deg, transparent 50%, var(--cyan) 50%), linear-gradient(135deg, var(--cyan) 50%, transparent 50%); background-position: calc(100% - 20px) center, calc(100% - 14px) center; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; }
select.field__input option { background: #0b1526; color: var(--text); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.apply-actions { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; margin-top: .3rem; }
.apply-status { font-size: .92rem; font-weight: 600; margin: 0; }
.apply-status.is-ok { color: #34d17e; }
.apply-status.is-err { color: #ff6468; }
.apply-status:empty { display: none; }
.apply-status { margin-top: 1rem; }
#apply-submit[disabled] { opacity: .55; cursor: not-allowed; }
.section__kicker--icon { display: inline-flex; align-items: center; gap: .4rem; }
.kicker-icon { width: 15px; height: 15px; color: var(--cyan); }
.btn-icon { width: 18px; height: 18px; }
.apply-foot { display: flex; align-items: center; justify-content: space-between; gap: 1.2rem 1.6rem; flex-wrap: wrap; margin-top: .6rem; }
.apply-agree { color: var(--text-dim); font-size: .82rem; max-width: 42ch; margin: 0; }
.feature__text { color: var(--text-dim); margin-top: .6rem; font-size: .95rem; }

/* =============================================================================
   MAP
   ============================================================================= */
/* ---- Live player map ---------------------------------------------------- */
.livemap { max-width: 960px; margin: 0 auto; }
.livemap__stage { position: relative; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: #0a1410; box-shadow: var(--shadow); aspect-ratio: 1 / 1; }
.livemap__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .9; }
.livemap__markers { position: absolute; inset: 0; }
.marker { position: absolute; width: 14px; height: 14px; transform: translate(-50%, -50%); border-radius: 50%; border: 2px solid rgba(255,255,255,.9); box-shadow: 0 0 0 2px rgba(0,0,0,.5), 0 0 10px 1px currentColor; cursor: default; transition: transform .3s ease, left .6s ease, top .6s ease; }
.marker::after { content: attr(data-name); position: absolute; bottom: 150%; left: 50%; transform: translateX(-50%); background: rgba(8,9,14,.95); color: #fff; font-size: .72rem; font-weight: 600; padding: .25rem .5rem; border-radius: 6px; border: 1px solid var(--border-2); white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity .15s; z-index: 5; }
.marker:hover { transform: translate(-50%, -50%) scale(1.35); z-index: 6; }
.marker:hover::after { opacity: 1; }
.livemap__badge { position: absolute; top: 12px; right: 12px; display: inline-flex; align-items: center; gap: .4rem; background: rgba(8,9,14,.85); border: 1px solid var(--border-2); color: #ffd257; font-size: .68rem; font-weight: 800; letter-spacing: .1em; padding: .3rem .6rem; border-radius: 6px; backdrop-filter: blur(6px); }
.livemap__badge-dot { width: 7px; height: 7px; border-radius: 50%; background: #ffd257; animation: blink 1.4s infinite; }
.livemap__empty { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; color: var(--text-dim); font-weight: 600; background: rgba(8,9,14,.55); padding: 1rem; }
.livemap__empty[hidden] { display: none; }
.livemap__bar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .8rem; margin-top: 1rem; }
.livemap__legend { display: flex; flex-wrap: wrap; gap: .4rem .9rem; }
.leg { display: inline-flex; align-items: center; gap: .4rem; font-size: .8rem; color: var(--text-dim); }
.leg__dot { width: 10px; height: 10px; border-radius: 50%; box-shadow: 0 0 6px 0 currentColor; }
.livemap__count { font-size: .85rem; color: var(--text-dim); font-weight: 700; }
.livemap__count b { color: #fff; }
.livemap__note { text-align: center; color: var(--text-dim); font-size: .8rem; margin-top: .9rem; }

/* ---- Modal (beta disclaimer) -------------------------------------------- */
.modal { position: fixed; inset: 0; z-index: 300; display: grid; place-items: center; padding: 1.25rem; background: rgba(4,5,9,.72); backdrop-filter: blur(4px); animation: fadeIn .2s ease; }
.modal[hidden] { display: none; }
.modal__card { position: relative; max-width: 460px; width: 100%; background: var(--bg-alt); border: 1px solid var(--border-2); border-radius: var(--radius); padding: 2.2rem 2rem; text-align: center; box-shadow: var(--shadow); }
.modal__close { position: absolute; top: 12px; right: 14px; background: none; border: 0; color: var(--text-dim); font-size: 1.4rem; line-height: 1; cursor: pointer; }
.modal__close:hover { color: #fff; }
.modal__title { font-size: 1.6rem; margin-bottom: .8rem; }
.modal__text { color: var(--text); font-size: .95rem; line-height: 1.6; }
.modal__text b { color: var(--blue); }
.modal__sub { color: var(--text-dim); font-size: .82rem; margin: .8rem 0 1.6rem; }
.modal__card .btn { width: 100%; }

/* =============================================================================
   SHOP / TIERS
   ============================================================================= */
.tiers-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.6rem; align-items: stretch; }
.tier { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem 1.6rem; display: flex; flex-direction: column; position: relative; transition: transform .25s, border-color .25s, box-shadow .25s; }
.tier:hover { transform: translateY(-6px); border-color: var(--border-2); }
.tier--featured { border-color: var(--cyan); }
.tier__badge { align-self: flex-start; font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; padding: .35rem .8rem; border-radius: 6px; background: var(--icon-bg); border: 1px solid var(--border-2); }
.tier__badge--orange { color: var(--cyan); }
.tier__badge--green { color: #34d17e; }
.tier__badge--gold { color: #ffd257; }
.tier__name { font-size: 1.6rem; margin-top: 1rem; }
.tier__blurb { color: var(--text-dim); font-size: .92rem; margin-top: .5rem; }
.tier__price { font-size: 1.9rem; font-weight: 900; font-family: var(--font-display); color: #fff; margin: 1.1rem 0 .1rem; }
.tier__perks { margin: 1.4rem 0; display: grid; gap: .6rem; }
.tier__perks li { display: flex; align-items: flex-start; gap: .6rem; font-size: .92rem; }
.tier__perks li::before { content: "✔"; color: var(--cyan); font-weight: 900; font-size: .8rem; margin-top: .15rem; }
.tier__buy { margin-top: auto; }
.shop-note { text-align: center; color: var(--text-dim); font-size: .88rem; margin-top: 2rem; max-width: 620px; margin-inline: auto; }

/* =============================================================================
   RULES / TABS
   ============================================================================= */
.tabs { max-width: 940px; margin: 0 auto; }
.tabs__bar { display: flex; gap: .3rem; padding: .35rem; background: var(--surface); border: 1px solid var(--border); border-radius: 100px; margin: 0 auto 2rem; width: fit-content; }
.tabs__btn { border: 0; background: transparent; color: var(--text-dim); font-weight: 700; padding: .6rem 1.4rem; border-radius: 100px; transition: .2s; }
.tabs__btn.is-active { background: var(--blue); color: #fff; }
.tabs__panel { display: none; }
.tabs__panel.is-active { display: block; animation: fadeIn .4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px);} to { opacity: 1; transform: none;} }
.rules-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem; }
.rule { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 1.2rem 1.3rem; transition: border-color .2s, transform .2s; }
.rule:hover { border-color: var(--cyan); transform: translateY(-3px); }
.rule__num { display: inline-grid; place-items: center; width: 30px; height: 30px; border-radius: 8px; background: var(--icon-bg); border: 1px solid var(--border-2); color: var(--cyan); font-weight: 800; font-size: .85rem; }
.rule__title { font-weight: 800; margin: .7rem 0 .3rem; font-size: 1rem; }
.rule__text { color: var(--text-dim); font-size: .9rem; }

/* =============================================================================
   REGULATIONS
   ============================================================================= */
.reg__heading { font-size: 1.25rem; margin-bottom: 1.2rem; display: flex; align-items: center; gap: .5rem; }
.reg-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.2rem; margin-bottom: 3rem; }
.reg-tier { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; }
.reg-tier__name { font-weight: 800; font-size: 1.05rem; margin-bottom: .9rem; display: flex; align-items: center; gap: .5rem; }
.reg-tier__name::before { content: ""; width: 10px; height: 10px; border-radius: 3px; background: var(--cyan); }
.reg-tier--green .reg-tier__name::before { background: #34d17e; }
.reg-tier--gold .reg-tier__name::before { background: #ffd257; }
.reg-tier li { color: var(--text-dim); font-size: .92rem; padding: .3rem 0; border-bottom: 1px solid rgba(255,255,255,.05); }
.reg-tier li:last-child { border-bottom: 0; }
.reg-columns { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.4rem; }
.reg-panel { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.6rem; }
.reg-panel--danger { border-color: rgba(255,94,98,.25); }
.reg-list li { padding: .5rem 0 .5rem 1.5rem; position: relative; color: var(--text-dim); font-size: .92rem; border-bottom: 1px solid rgba(255,255,255,.05); }
.reg-list li:last-child { border-bottom: 0; }
.reg-list li::before { content: "✕"; position: absolute; left: 0; color: #ff6468; font-weight: 900; }

/* =============================================================================
   STAFF
   ============================================================================= */
.staff-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 1.4rem; }
.staff-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.8rem 1.4rem; text-align: center; transition: transform .25s, border-color .25s, box-shadow .25s; }
.staff-card:hover { transform: translateY(-6px); border-color: var(--cyan); box-shadow: var(--glow); }
.staff-card__avatar { width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 1rem; object-fit: cover; border: 2px solid var(--border-2); }
.staff-card__name { font-size: 1.15rem; font-weight: 800; }
.staff-card__role { display: inline-block; margin-top: .5rem; font-size: .74rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 700; color: var(--cyan); background: rgba(34,211,238,.1); padding: .3rem .8rem; border-radius: 100px; }

/* =============================================================================
   REVIEWS
   ============================================================================= */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.4rem; }
.review { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.8rem 1.6rem; transition: transform .25s, border-color .25s; }
.review:hover { transform: translateY(-5px); border-color: var(--border-2); }
.review__stars { color: #ffd257; font-size: 1rem; letter-spacing: .1em; }
.review__text { margin: .8rem 0 1rem; font-size: .95rem; color: var(--text); }
.review__name { color: var(--text-dim); font-size: .85rem; font-weight: 700; }

/* =============================================================================
   JOIN + FOOTER
   ============================================================================= */
.join { position: relative; padding: clamp(4rem, 9vw, 7rem) 0; text-align: center; overflow: hidden;
  background: radial-gradient(80% 120% at 50% 0%, rgba(59,130,246,.4), transparent 60%), linear-gradient(180deg, #081226, #04070f); }
.join::after { content: ""; position: absolute; inset: 0; background: radial-gradient(70% 60% at 50% 120%, rgba(34,211,238,.3), transparent); }
.join__inner { position: relative; z-index: 2; }
.join__title { font-size: clamp(2rem, 5vw, 3.2rem); color: #fff; }
.join__sub { color: #c7d6f0; margin-top: .8rem; font-size: 1.1rem; }
.join__cta { display: flex; gap: 1rem; justify-content: center; margin-top: 2rem; flex-wrap: wrap; }

.footer { background: var(--bg); border-top: 1px solid var(--border); }
.footer__wrap { display: flex; flex-wrap: wrap; gap: 2rem 3rem; align-items: flex-start; justify-content: space-between; padding: 3.2rem 0 2.4rem; }
.footer__brand { max-width: 460px; }
.footer__brand-top { display: flex; align-items: center; gap: .7rem; margin-bottom: 1rem; }
.footer__logo { width: 42px; height: 42px; object-fit: contain; filter: drop-shadow(0 0 8px rgba(34,211,238,.4)); }
.footer__brand-name { font-family: var(--font-display); font-weight: 900; font-size: 1.35rem; color: #fff; letter-spacing: .01em; }
.footer__brand-name b { color: var(--cyan); }
.footer__tagline { color: var(--text-dim); font-size: .95rem; line-height: 1.7; margin-bottom: 1.3rem; }
.footer__socials { display: flex; gap: .6rem; }
.social { width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; background: var(--surface); border: 1px solid var(--border); color: var(--text-dim); transition: transform .2s, color .2s, border-color .2s, box-shadow .2s; }
.social:hover { color: #fff; border-color: var(--cyan); box-shadow: var(--glow); transform: translateY(-3px); }
.social svg { width: 20px; height: 20px; }
.footer__nav { display: flex; flex-direction: column; gap: .7rem; }
.footer__nav a { color: var(--text-dim); font-size: .92rem; font-weight: 600; transition: color .2s; }
.footer__nav a:hover { color: var(--cyan); }
.footer__bar { border-top: 1px solid var(--border); }
.footer__bar-wrap { display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; align-items: center; justify-content: space-between; padding: 1.3rem 0; color: var(--text-dim); font-size: .8rem; }
.footer__disclaimer { opacity: .7; }

/* =============================================================================
   RESPONSIVE
   ============================================================================= */
@media (max-width: 860px) {
  .status-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .about__wrap { grid-template-columns: 1fr; gap: 2rem; }
  .apply-row { grid-template-columns: 1fr; }
  .nav__burger { display: flex; }
  .nav__menu {
    position: fixed; inset: 68px 0 auto 0; flex-direction: column; gap: 0; align-items: stretch;
    background: rgba(6,11,24,.97); backdrop-filter: blur(16px); padding: 1rem 1.25rem 1.6rem;
    border-bottom: 1px solid var(--border); transform: translateY(-120%); transition: transform .3s ease;
  }
  .nav__menu.is-open { transform: translateY(0); }
  .nav__links { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__links a { padding: .9rem .3rem; border-bottom: 1px solid rgba(255,255,255,.06); }
  .nav__links a::after { display: none; }
  .nav__cta { text-align: center; margin-top: .8rem; }
}
@media (max-width: 420px) {
  .status-grid { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  html { scroll-behavior: auto; }
}
