:root {
  --bg: #09090a;
  --panel: #151617;
  --panel-2: #202123;
  --line: rgba(255, 255, 255, .13);
  --text: #f7f7f7;
  --muted: #b7b7b7;
  --red: #ff0046;
  --red-dark: #8f072d;
  --lime: #baff00;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Rajdhani", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0;
}

a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 0 9vw;
  border-bottom: 1px solid var(--line);
  background: rgba(10, 10, 11, .93);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  line-height: .9;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--red), #5d061f);
  color: white;
  font-family: "Share Tech Mono", monospace;
  clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.main-nav a {
  min-width: 128px;
  padding: 28px 20px;
  border-left: 1px solid var(--line);
  text-align: center;
  font-weight: 700;
}

.main-nav a:last-child { border-right: 1px solid var(--line); }
.main-nav a:hover, .main-nav .active { color: var(--lime); background: rgba(255,255,255,.04); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #111;
  color: var(--text);
  font-size: 22px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 74px);
  overflow: hidden;
  display: grid;
  place-items: center;
  border-bottom: 1px solid var(--line);
  background: #070708;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  opacity: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,7,8,.16), rgba(7,7,8,.62) 34%, rgba(7,7,8,.62) 66%, rgba(7,7,8,.16)),
    linear-gradient(to bottom, rgba(7,7,8,.08), rgba(7,7,8,.05) 64%, #09090a);
}

.hero-grid, .section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 160px 160px;
  opacity: .2;
}

.side-code {
  position: absolute;
  left: 9vw;
  top: 19%;
  z-index: 2;
  writing-mode: vertical-rl;
  letter-spacing: 10px;
  color: var(--muted);
  font-family: "Share Tech Mono", monospace;
  font-size: 12px;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(760px, 70vw);
  text-align: center;
  margin-top: -4vh;
}

.kicker {
  margin: 0 0 12px;
  color: var(--lime);
  font-family: "Share Tech Mono", monospace;
  font-size: clamp(16px, 2vw, 22px);
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  margin-bottom: 16px;
  font-size: clamp(58px, 8vw, 116px);
  line-height: .82;
  font-weight: 700;
  text-shadow: 0 16px 32px rgba(0,0,0,.74);
}

.hero-copy, .section-copy, .page-hero p, .split-section p, .values p, .contact-panel p {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  text-transform: none;
}

.hero-copy {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 10px 20px rgba(0,0,0,.75);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  min-width: 220px;
  padding: 0 28px;
  border: 1px solid var(--line);
  font-size: 20px;
  font-weight: 700;
}

.btn-primary { background: var(--red); border-color: var(--red); color: white; }
.btn-ghost { background: rgba(10,10,10,.65); }
.btn:hover { filter: brightness(1.15); }

.hero-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-top: 1px solid var(--line);
  background: rgba(10, 10, 10, .72);
  text-align: center;
}

.hero-strip span, .hero-strip strong {
  padding: 26px 20px;
  border-right: 1px solid var(--line);
  font-size: 20px;
}

.hero-strip strong { background: var(--red); min-width: 320px; }

.section, .inner-page {
  position: relative;
  padding: 92px 9vw;
  overflow: hidden;
}

.section-operator,
.footer-operator,
.smoke-left,
.smoke-right {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 1;
  filter: saturate(1.08) contrast(1.05);
}

.art-section::after,
.art-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: .58;
  z-index: 0;
}

.art-section > :not(.section-operator):not(.smoke-left):not(.smoke-right),
.art-footer > :not(.footer-operator) {
  position: relative;
  z-index: 2;
}

.section-operator,
.footer-operator,
.smoke-left,
.smoke-right {
  position: absolute;
  z-index: 1;
}

.prize-section {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 60px;
  align-items: center;
  min-height: 640px;
  background: linear-gradient(110deg, #111, #09090a 55%, #141414);
}

.art-prize::after {
  background-image:
    linear-gradient(90deg, rgba(9,9,10,.28), rgba(9,9,10,.78) 44%, rgba(9,9,10,.96)),
    radial-gradient(circle at 22% 50%, rgba(255,0,70,.32), transparent 34%);
  opacity: 1;
}

.prize-operator {
  left: 6vw;
  bottom: -8px;
  width: min(34vw, 470px);
  max-height: 620px;
  object-fit: contain;
  opacity: .9;
}

.prize-visual {
  min-height: 420px;
  padding-left: min(24vw, 320px);
}

.big-x {
  display: block;
  color: rgba(255,255,255,.05);
  font-size: clamp(120px, 22vw, 270px);
  font-weight: 700;
}

.glass-panel {
  max-width: 560px;
  padding: 28px;
  background: rgba(0,0,0,.68);
  border-left: 7px solid var(--lime);
  font-size: 28px;
}

.glass-panel strong { color: var(--lime); }
.prize-content h2 { color: var(--lime); font-size: clamp(64px, 8vw, 118px); margin-bottom: 24px; }

.bars { display: grid; gap: 14px; }

.bar {
  position: relative;
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 22px;
  align-items: center;
  min-height: 62px;
  padding: 0 24px;
  border: 1px solid var(--line);
  background: #161616;
  overflow: hidden;
}

.bar::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--w);
  background: linear-gradient(90deg, var(--red), var(--red-dark));
}

.bar span, .bar strong { position: relative; z-index: 1; font-size: 24px; }

.management { background: #101011; }

.art-management::after {
  background-image:
    linear-gradient(90deg, rgba(16,16,17,.98), rgba(16,16,17,.78) 50%, rgba(16,16,17,.14)),
    radial-gradient(circle at 80% 42%, rgba(255,0,70,.36), transparent 34%);
  opacity: 1;
}

.rifle-operator {
  right: 2vw;
  top: 50%;
  transform: translateY(-50%);
  height: auto;
  width: min(44vw, 680px);
  max-height: 82%;
  object-fit: contain;
  object-position: right center;
  opacity: .82;
}

.management .info-cards {
  max-width: 880px;
}

.section-frame {
  position: relative;
  max-width: 760px;
  padding: 34px 42px;
  border: 1px solid var(--line);
  background: rgba(12,12,12,.72);
  backdrop-filter: blur(2px);
}

.section-frame h2, .schedule h2, .page-hero h1 { font-size: clamp(42px, 5vw, 72px); line-height: .9; }
.section-frame h2 span { color: var(--red); }
.section-frame h2 span + * { color: var(--lime); }

.info-cards, .stages, .schedule-grid, .values, .contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 42px;
}

.info-cards article, .stages article, .schedule-grid article, .values article, .contact-form, .contact-panel, .stat-wall article {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
  padding: 34px;
}

.info-cards h3, .stages h3, .values h3, .schedule-grid h3 { color: var(--red); font-size: 28px; }
.info-cards p, .stages p, .schedule-grid p { color: var(--muted); text-transform: none; font-size: 18px; }

.icon-grid {
  width: 76px;
  height: 76px;
  background: repeating-linear-gradient(90deg, #fff 0 14px, transparent 14px 21px), repeating-linear-gradient(#fff 0 14px, transparent 14px 21px);
  opacity: .95;
}

.icon-location {
  width: 76px;
  height: 76px;
  border: 18px solid white;
  transform: skew(-15deg);
}

.icon-trophy, .stage-icon {
  min-height: 88px;
  color: white;
  font-size: 72px;
  font-weight: 700;
}

.stages {
  background: #0d0d0e;
  min-height: 560px;
}

.art-stages::after {
  background-image:
    linear-gradient(rgba(13,13,14,.28), rgba(13,13,14,.72)),
    radial-gradient(circle at 50% 45%, rgba(255,0,70,.2), transparent 42%);
  opacity: 1;
}

.smoke-left {
  left: -28vw;
  top: 26px;
  width: min(52vw, 760px);
  opacity: .68;
  transform: rotate(-8deg);
}

.smoke-right {
  right: -28vw;
  top: 30px;
  width: min(52vw, 760px);
  opacity: .68;
  transform: scaleX(-1) rotate(-8deg);
}

.stages article {
  text-align: center;
  min-height: 292px;
}

.stages strong, .schedule-grid strong { display: block; margin-top: 24px; padding: 14px; background: var(--red); font-size: 20px; }

.schedule {
  text-align: center;
  background: linear-gradient(rgba(9,9,10,.86), rgba(9,9,10,.9)), radial-gradient(circle at center, #5b0b21, #0b0b0c 65%);
}

.art-schedule::after {
  background-image:
    linear-gradient(rgba(9,9,10,.72), rgba(9,9,10,.78)),
    url("assets/hero-operators-banner.png");
  background-position: center center;
  background-size: cover;
  opacity: .54;
}

.schedule-grid article h3 { color: #111; background: var(--lime); margin: -34px -34px 34px; padding: 18px; }

.footer {
  position: relative;
  overflow: hidden;
  padding: 78px 9vw 42px;
  text-align: center;
  min-height: 420px;
  background: radial-gradient(circle at bottom left, rgba(255,0,70,.42), transparent 38%), #0a0a0b;
  border-top: 1px solid var(--line);
}

.art-footer::before {
  background-image:
    linear-gradient(90deg, rgba(10,10,11,.88), rgba(10,10,11,.68) 52%, rgba(10,10,11,.18)),
    radial-gradient(circle at 76% 50%, rgba(255,0,70,.34), transparent 34%);
  opacity: 1;
}

.footer-operator {
  right: 5vw;
  bottom: 0;
  width: min(34vw, 480px);
  max-height: 96%;
  object-fit: contain;
  opacity: .96;
}

.footer h2,
.footer .socials,
.footer p {
  width: min(760px, 62vw);
}

.footer h2,
.footer p {
  margin-left: 0;
  margin-right: auto;
}

.footer .socials {
  justify-content: flex-start;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  display: grid;
  gap: 2px;
  min-width: 210px;
  padding: 14px 18px;
  border: 1px solid rgba(186, 255, 0, .55);
  background: linear-gradient(135deg, #25d366, #0c8f43);
  color: #071008;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .45);
  font-weight: 700;
}

.whatsapp-float span {
  font-family: "Share Tech Mono", monospace;
  font-size: 12px;
}

.whatsapp-float strong {
  font-size: 20px;
}

.footer h2 { font-size: 54px; }
.socials { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; margin: 28px 0 46px; }
.socials a { display: grid; place-items: center; width: 120px; height: 100px; border: 1px solid var(--red-dark); background: #171819; font-size: 38px; font-weight: 700; }

.inner-page {
  min-height: calc(100vh - 74px);
  background: radial-gradient(circle at 82% 18%, rgba(255,0,70,.18), transparent 32%), #0b0b0c;
}

.page-hero {
  border: 1px solid var(--line);
  padding: 52px;
  background: linear-gradient(120deg, rgba(255,0,70,.16), rgba(255,255,255,.035));
}

.compact { max-width: 1040px; }
.locked { border-color: rgba(186,255,0,.4); }

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
  margin-top: 44px;
}

.split-section h2, .contact-panel h2 { font-size: 46px; }
.stat-wall { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.stat-wall strong { display: block; color: var(--lime); font-size: 56px; }
.stat-wall span { color: var(--muted); }
.contact-grid { grid-template-columns: 1.2fr .8fr; }

label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--lime);
  font-weight: 700;
}

input, textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #0f1011;
  color: white;
  padding: 16px;
  font: 600 18px "Rajdhani", Arial, sans-serif;
}

textarea { min-height: 150px; resize: vertical; }

@media (max-width: 900px) {
  .site-header { padding: 0 22px; }
  .menu-toggle { display: grid; place-items: center; }
  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 74px;
    display: none;
    flex-direction: column;
    background: #101011;
    border-bottom: 1px solid var(--line);
  }
  .main-nav.open { display: flex; }
  .main-nav a { width: 100%; border-left: 0; border-top: 1px solid var(--line); }
  .side-code { display: none; }
  .hero { min-height: 760px; place-items: start center; padding-top: 90px; }
  .hero-content { width: min(92vw, 620px); }
  .hero-bg { object-position: center bottom; }
  .prize-operator { left: -18vw; bottom: 0; width: 78vw; opacity: .2; }
  .prize-visual { padding-left: 0; }
  .rifle-operator { right: -30vw; width: 98vw; max-height: 72%; opacity: .16; }
  .smoke-left { left: -72vw; width: 135vw; opacity: .22; }
  .smoke-right { right: -72vw; width: 135vw; opacity: .22; }
  .footer-operator { right: -14vw; width: 70vw; opacity: .2; }
  .footer h2,
  .footer .socials,
  .footer p {
    width: 100%;
  }
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-width: 176px;
    padding: 12px 14px;
  }
  .hero-strip, .prize-section, .info-cards, .stages, .schedule-grid, .values, .contact-grid, .split-section, .stat-wall {
    grid-template-columns: 1fr;
  }
  .hero-strip { position: relative; margin-top: auto; }
  .hero-strip strong { min-width: 0; }
  .section, .inner-page { padding: 58px 22px; }
  .section-frame, .page-hero { padding: 28px; }
}

/* Unified professional footer */
.footer {
  position: relative;
  overflow: hidden;
  padding: 72px 9vw 34px;
  min-height: 420px;
  text-align: left;
  background: radial-gradient(circle at bottom left, rgba(255,0,70,.42), transparent 38%), #0a0a0b;
  border-top: 1px solid var(--line);
}

.footer-main {
  position: relative;
  z-index: 2;
  width: min(820px, 64vw);
  display: grid;
  gap: 28px;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.footer-brand h2 {
  width: auto;
  margin: 0 0 10px;
  font-size: clamp(42px, 5vw, 70px);
  line-height: .88;
}

.footer-brand p,
.footer-copy {
  width: auto;
  max-width: 620px;
  color: var(--muted);
  font-size: 20px;
  text-transform: none;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(210px, 1fr));
  gap: 14px;
  max-width: 650px;
}

.footer-links a {
  display: grid;
  gap: 4px;
  min-height: 92px;
  padding: 20px;
  border: 1px solid var(--line);
  background: rgba(21, 22, 23, .88);
}

.footer-links a:first-child {
  border-color: rgba(186, 255, 0, .45);
}

.footer-links span {
  color: var(--lime);
  font-family: "Share Tech Mono", monospace;
  font-size: 13px;
}

.footer-links strong {
  font-size: 25px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-nav a {
  padding: 12px 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.035);
  font-weight: 700;
}

.footer-nav a:hover,
.footer-links a:hover {
  color: var(--lime);
  background: rgba(255,255,255,.07);
}

.footer-copy {
  position: relative;
  z-index: 2;
  margin: 36px 0 0;
}

@media (max-width: 900px) {
  .footer-main,
  .footer-copy {
    width: 100%;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    flex-direction: column;
  }
}

.connect-link {
  display: block;
  margin-top: 24px;
  padding: 14px;
  background: var(--red);
  color: white;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}

.connect-link:hover {
  background: var(--lime);
  color: #080808;
}

.floating-actions {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  display: flex;
  gap: 10px;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.floating-actions .whatsapp-float,
.floating-actions .server-float {
  position: static;
  display: grid;
  gap: 2px;
  min-width: 190px;
  padding: 14px 18px;
  border: 1px solid rgba(186, 255, 0, .55);
  color: #071008;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .45);
  font-weight: 700;
}

.floating-actions .whatsapp-float {
  background: linear-gradient(135deg, #25d366, #0c8f43);
}

.floating-actions .server-float {
  background: linear-gradient(135deg, var(--red), #8f072d);
  color: white;
  border-color: rgba(255, 0, 70, .65);
}

.floating-actions span {
  font-family: "Share Tech Mono", monospace;
  font-size: 12px;
}

.floating-actions strong {
  font-size: 20px;
}

@media (max-width: 900px) {
  .floating-actions {
    right: 14px;
    bottom: 14px;
    left: 14px;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .floating-actions .whatsapp-float,
  .floating-actions .server-float {
    min-width: 0;
    padding: 12px 10px;
  }

  .floating-actions strong {
    font-size: 16px;
  }
}

/* Prize section character fit */
.prize-section {
  min-height: 640px;
}

.prize-operator {
  left: 8vw;
  bottom: 0;
  width: min(28vw, 380px);
  max-height: 560px;
  object-fit: contain;
  opacity: .94;
}

.prize-visual {
  min-height: 470px;
  display: flex;
  align-items: flex-end;
  padding-left: min(22vw, 300px);
  padding-bottom: 72px;
}

.glass-panel {
  position: relative;
  z-index: 3;
}

@media (max-width: 900px) {
  .prize-operator {
    left: 50%;
    transform: translateX(-50%);
    bottom: 190px;
    width: 62vw;
    opacity: .32;
  }

  .prize-visual {
    min-height: 380px;
    padding-left: 0;
    padding-bottom: 0;
    align-items: flex-end;
  }
}

/* Prize character closer to info bars */
.prize-operator {
  left: 13vw;
  bottom: -18px;
  width: min(36vw, 520px);
  max-height: 640px;
  opacity: .96;
}

.prize-visual {
  padding-left: min(30vw, 420px);
  padding-bottom: 60px;
}

@media (max-width: 900px) {
  .prize-operator {
    left: 50%;
    bottom: 150px;
    width: 78vw;
    opacity: .28;
  }
}

/* Prize character bigger emphasis */
.prize-operator {
  left: 15vw;
  bottom: -28px;
  width: min(42vw, 620px);
  max-height: 720px;
  opacity: .98;
}

.prize-visual {
  padding-left: min(35vw, 500px);
}

@media (max-width: 900px) {
  .prize-operator {
    width: 92vw;
    bottom: 130px;
    opacity: .24;
  }
}

/* Move public ruhu panel to the left of the character */
.prize-operator {
  left: 22vw;
  bottom: -28px;
  width: min(38vw, 600px);
  max-height: 720px;
}

.prize-visual {
  padding-left: 0;
  padding-bottom: 78px;
  align-items: flex-end;
  justify-content: flex-start;
}

.prize-visual .glass-panel {
  width: min(24vw, 360px);
  margin-left: 0;
  font-size: 24px;
  background: rgba(0, 0, 0, .78);
}

@media (max-width: 900px) {
  .prize-operator {
    left: 52%;
    width: 88vw;
  }

  .prize-visual .glass-panel {
    width: 100%;
    font-size: 22px;
  }
}

/* Management section character bigger, page-fitted */
.rifle-operator {
  right: -2vw;
  top: 50%;
  width: min(62vw, 1040px);
  max-height: 94%;
  transform: translateY(-50%);
  object-fit: contain;
  opacity: .92;
}

.art-management::after {
  background-image:
    linear-gradient(90deg, rgba(16,16,17,.98), rgba(16,16,17,.78) 46%, rgba(16,16,17,.08)),
    radial-gradient(circle at 76% 42%, rgba(255,0,70,.42), transparent 38%);
}

@media (max-width: 900px) {
  .rifle-operator {
    right: -42vw;
    width: 128vw;
    max-height: 86%;
    opacity: .18;
  }
}

/* Rifle character anchored to section bottom */
.rifle-operator {
  right: -3vw;
  top: auto;
  bottom: 0;
  width: min(68vw, 1160px);
  max-height: 100%;
  transform: none;
  object-fit: contain;
  object-position: right bottom;
  opacity: .94;
}

.management {
  min-height: 720px;
}

@media (max-width: 900px) {
  .rifle-operator {
    right: -52vw;
    bottom: 0;
    width: 145vw;
    max-height: 100%;
    opacity: .16;
  }
}

/* Hero title matches PRO PUBLIC display style */
.hero h1 {
  font-family: "Rajdhani", Arial, sans-serif;
  font-weight: 700;
  color: var(--lime);
  text-transform: uppercase;
}

/* Slightly larger hero title */
.hero h1 {
  font-size: clamp(66px, 9vw, 136px);
}

.brand-text-only {
  font-size: 24px;
  line-height: 1;
  white-space: nowrap;
}

.brand-text-only {
  font-size: 30px;
}

.brand-text-only {
  font-size: 36px;
}

/* Swap header brand and navigation positions */
.site-header {
  flex-direction: row-reverse;
}

@media (max-width: 900px) {
  .site-header {
    flex-direction: row;
  }
}

.logo-brand {
  display: flex;
  align-items: center;
  min-width: 260px;
}

.logo-brand img {
  display: block;
  width: min(360px, 28vw);
  height: auto;
  object-fit: contain;
}

.footer-logo {
  display: block;
  width: min(430px, 44vw);
  height: auto;
  object-fit: contain;
  margin-bottom: 12px;
}

.footer-brand {
  display: block;
}

.footer-brand h2 {
  display: none;
}

@media (max-width: 900px) {
  .logo-brand {
    min-width: 0;
  }

  .logo-brand img {
    width: min(250px, 58vw);
  }

  .footer-logo {
    width: min(320px, 82vw);
  }
}

/* Slightly smaller site logo */
.logo-brand img {
  width: min(300px, 24vw);
}

.footer-logo {
  width: min(360px, 38vw);
}

@media (max-width: 900px) {
  .logo-brand img {
    width: min(220px, 52vw);
  }

  .footer-logo {
    width: min(280px, 76vw);
  }
}

/* About page character */
.about-character {
  position: absolute;
  right: 5vw;
  top: 110px;
  width: min(34vw, 470px);
  max-height: 72vh;
  object-fit: contain;
  object-position: right top;
  opacity: .78;
  pointer-events: none;
  z-index: 0;
}

.inner-page > :not(.about-character) {
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .about-character {
    right: -22vw;
    top: 120px;
    width: 82vw;
    opacity: .18;
  }
}

/* Mobile compatibility pass */
@media (max-width: 900px) {
  body {
    overflow-x: hidden;
  }

  .site-header {
    min-height: 68px;
    padding: 0 14px;
  }

  .main-nav {
    top: 68px;
  }

  .logo-brand img {
    width: min(190px, 50vw);
    max-height: 56px;
  }

  .hero {
    min-height: 720px;
    padding-top: 76px;
  }

  .hero-content {
    width: min(92vw, 560px);
    margin-top: 0;
  }

  .hero h1 {
    font-size: clamp(54px, 16vw, 82px);
    line-height: .84;
  }

  .hero-copy {
    font-size: 18px;
    line-height: 1.25;
  }

  .hero-actions .btn {
    min-width: min(260px, 100%);
    width: min(320px, 100%);
  }

  .hero-strip span,
  .hero-strip strong {
    padding: 16px 12px;
    font-size: 17px;
  }

  .bar {
    grid-template-columns: 72px 1fr;
    gap: 12px;
    padding: 0 14px;
  }

  .bar span,
  .bar strong {
    font-size: 19px;
  }

  .schedule-grid article,
  .values article,
  .info-cards article,
  .stat-wall article {
    padding: 26px;
  }

  .connect-link,
  .stages strong,
  .schedule-grid strong {
    font-size: 18px;
    overflow-wrap: anywhere;
  }

  .footer {
    padding-bottom: 128px;
  }

  .footer-logo {
    width: min(250px, 78vw);
  }

  .footer-links strong {
    font-size: 21px;
    overflow-wrap: anywhere;
  }

  .floating-actions {
    grid-template-columns: 1fr 1fr;
  }

  .floating-actions span {
    font-size: 11px;
  }

  .floating-actions strong {
    font-size: 15px;
  }
}

@media (max-width: 420px) {
  .logo-brand img {
    width: 170px;
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 68px);
  }

  .kicker {
    font-size: 15px;
  }

  .floating-actions {
    gap: 8px;
  }

  .floating-actions .whatsapp-float,
  .floating-actions .server-float {
    padding: 10px 8px;
  }
}

/* About character bigger */
.about-character {
  right: 2vw;
  top: 88px;
  width: min(46vw, 660px);
  max-height: 86vh;
  opacity: .82;
}

@media (max-width: 900px) {
  .about-character {
    right: -34vw;
    width: 108vw;
    opacity: .16;
  }
}

/* About character starts near the Sen De Katil card baseline */
.about-character {
  top: auto;
  bottom: 330px;
  right: 2vw;
  width: min(44vw, 640px);
  max-height: none;
  opacity: .82;
}

@media (max-width: 900px) {
  .about-character {
    top: auto;
    bottom: 420px;
    right: -34vw;
    width: 106vw;
    opacity: .14;
  }
}

/* About character behind boxes and more left */
.about-character {
  right: 12vw;
  z-index: 0;
  opacity: .74;
}

.about-page .page-hero,
.about-page .split-section,
.about-page .values {
  position: relative;
  z-index: 2;
}

@media (max-width: 900px) {
  .about-character {
    right: -8vw;
    opacity: .12;
  }
}

/* About character final placement: behind boxes, centered to stat row */
.about-character {
  top: 300px;
  bottom: auto;
  right: 14vw;
  width: min(42vw, 620px);
  z-index: 0;
  opacity: .72;
}

.about-page .stat-wall article,
.about-page .values article,
.about-page .page-hero,
.about-page .about-purpose > div:first-child {
  background: rgba(18, 19, 20, .94);
}

.about-page .split-section,
.about-page .values,
.about-page .page-hero {
  position: relative;
  z-index: 3;
}

@media (max-width: 900px) {
  .about-character {
    top: 360px;
    right: -12vw;
    width: 96vw;
    opacity: .1;
  }
}

/* About character slightly more right */
.about-character {
  right: 8vw;
}

@media (max-width: 900px) {
  .about-character {
    right: -20vw;
  }
}

/* About character bigger and slightly left */
.about-character {
  right: 10vw;
  width: min(48vw, 700px);
}

@media (max-width: 900px) {
  .about-character {
    right: -16vw;
    width: 104vw;
  }
}

/* About character tiny move right */
.about-character {
  right: 9vw;
}

@media (max-width: 900px) {
  .about-character {
    right: -17vw;
  }
}

/* Smoke grenades on evening flow section */
.art-schedule::after {
  background-image:
    linear-gradient(rgba(9,9,10,.84), rgba(9,9,10,.86)),
    radial-gradient(circle at 50% 45%, rgba(255,0,70,.22), transparent 44%);
  opacity: 1;
}

.schedule-smoke {
  position: absolute;
  top: 18px;
  width: min(38vw, 560px);
  opacity: .62;
  pointer-events: none;
  z-index: 1;
  filter: saturate(1.08) contrast(1.05);
}

.schedule-smoke-left {
  left: -15vw;
  transform: rotate(-10deg);
}

.schedule-smoke-right {
  right: -15vw;
  transform: scaleX(-1) rotate(-10deg);
}

.schedule > h2,
.schedule .schedule-grid {
  position: relative;
  z-index: 2;
}

@media (max-width: 900px) {
  .schedule-smoke {
    top: 40px;
    width: 90vw;
    opacity: .16;
  }

  .schedule-smoke-left {
    left: -52vw;
  }

  .schedule-smoke-right {
    right: -52vw;
  }
}

/* Schedule smoke corrected: one left, one right, side aligned */
.schedule-smoke {
  top: 50%;
  width: min(24vw, 360px);
  opacity: .5;
  transform-origin: center;
}

.schedule-smoke-left {
  left: -8vw;
  transform: translateY(-50%) rotate(-10deg);
}

.schedule-smoke-right {
  right: -8vw;
  transform: translateY(-50%) scaleX(-1) rotate(-10deg);
}

@media (max-width: 900px) {
  .schedule-smoke {
    top: 50%;
    width: 56vw;
    opacity: .14;
  }

  .schedule-smoke-left {
    left: -34vw;
    transform: translateY(-50%) rotate(-10deg);
  }

  .schedule-smoke-right {
    right: -34vw;
    transform: translateY(-50%) scaleX(-1) rotate(-10deg);
  }
}

/* Top15 plugin page */
.top15-page {
  padding-bottom: 92px;
}

.top15-hero {
  max-width: 1180px;
}

.top15-plugin-shell {
  margin-top: 38px;
  border: 1px solid var(--line);
  background: rgba(10, 10, 11, .82);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .38);
  overflow: hidden;
}

.top15-plugin-frame {
  display: block;
  width: 100%;
  min-height: 980px;
  border: 0;
  background: #080809;
}

@media (max-width: 900px) {
  .top15-plugin-shell {
    margin-left: -22px;
    margin-right: -22px;
    border-left: 0;
    border-right: 0;
  }

  .top15-plugin-frame {
    min-height: 1120px;
  }
}
