:root {
  --bg-main: #060d1a;
  --bg-surface: #0f1a2f;
  --bg-dark: #040912;
  --ink: #dff4ff;
  --muted: #9fc0de;
  --line: rgba(126, 211, 255, 0.25);
  --orange: #5ec8ff;
  --teal: #7dd3fc;
  --yellow: #90e0ff;
  --red: #4bb3ff;
  --shadow: 0 20px 55px rgba(75, 179, 255, 0.22);
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Rajdhani", "Segoe UI", Tahoma, sans-serif;
  line-height: 1.5;
  color: var(--ink);
  background:
    radial-gradient(circle at 85% 8%, rgba(94, 200, 255, 0.2) 0%, transparent 34%),
    radial-gradient(circle at 12% 26%, rgba(125, 211, 252, 0.18) 0%, transparent 38%),
    var(--bg-main);
  transition: background 0.8s ease, color 0.5s ease;
  animation: pageEnter 0.9s ease-out both;
  overflow-x: hidden;
}

body.perf-lite .video-bg-wrap,
body.perf-lite .top-grid,
body.perf-lite .top-glow {
  display: none;
}

body.perf-lite .nav {
  backdrop-filter: none;
}

body.perf-lite .btn-primary,
body.perf-lite .hero-panel,
body.perf-lite .hero-logo,
body.perf-lite .brand-logo,
body.perf-lite .hero-copy h1,
body.perf-lite .cta::after,
body.perf-lite .top-grid,
body.perf-lite .top-glow {
  animation: none !important;
}

body.perf-lite .tile:hover,
body.perf-lite .fact:hover,
body.perf-lite a.btn[rel~="noopener"]:hover,
body.perf-lite .btn:hover {
  transform: none;
}

.video-bg-wrap {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -4;
  overflow: hidden;
}

.video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  filter: saturate(0.72) brightness(0.62) contrast(1.02);
  transform: scale(1.02);
}

.video-bg-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 10, 18, 0.42), rgba(5, 10, 18, 0.34));
}

.top-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -5;
  background-image:
    linear-gradient(rgba(113, 194, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(113, 194, 255, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  animation: gridMove 28s linear infinite;
}

.top-glow {
  position: fixed;
  inset: -20% -15% auto;
  height: 55vh;
  z-index: -3;
  pointer-events: none;
  background: radial-gradient(circle, rgba(123, 219, 255, 0.22) 0%, rgba(8, 18, 36, 0) 66%);
  filter: blur(34px);
  animation: glowPulse 7s ease-in-out infinite;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.fade-up {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: no-preference) {
  .fade-up {
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 1.05s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.fade-up.d2 {
  animation-delay: 0.18s;
}

.fade-up.d3 {
  animation-delay: 0.3s;
}

.fade-up.d4 {
  animation-delay: 0.42s;
}
}

@keyframes pageEnter {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.28;
    transform: scale(1);
  }
  50% {
    opacity: 0.45;
    transform: scale(1.02);
  }
}

@keyframes gridMove {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(18px);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-3px);
  }
}
@keyframes logoBob {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-2px);
  }
}

@keyframes textGlowShift {
  0%,
  100% {
    text-shadow: 0 0 20px rgba(140, 226, 255, 0.3);
  }
  50% {
    text-shadow: 0 0 30px rgba(140, 226, 255, 0.52);
  }
}

@keyframes shineSweep {
  0% {
    transform: translateX(-130%) skewX(-24deg);
  }
  100% {
    transform: translateX(240%) skewX(-24deg);
  }
}

@keyframes panelAura {
  0%,
  100% {
    box-shadow: var(--shadow);
  }
  50% {
    box-shadow: 0 24px 60px rgba(75, 179, 255, 0.34);
  }
}

@keyframes ctaGradientFlow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

@keyframes navSlideDown {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes navMenuReveal {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: color-mix(in srgb, var(--bg-main) 78%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 70%, transparent);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}

.brand-logo {
  display: none;
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(125, 211, 252, 0.55));
  animation: logoBob 6s ease-in-out infinite;
}
.brand-badge {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(145deg, #5ec8ff, #9fe8ff);
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #071019;
  box-shadow: 0 0 18px rgba(125, 211, 252, 0.6);
}

.brand span {
  font-family: "Teko", Impact, sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  max-width: 75%;
}

.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  padding: 8px 11px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  position: relative;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 4px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(125, 211, 252, 0), rgba(125, 211, 252, 0.95), rgba(125, 211, 252, 0));
  transform: scaleX(0.2);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.nav-links a:hover {
  border-color: var(--line);
  box-shadow: 0 0 10px rgba(125, 211, 252, 0.22);
  color: #eef9ff;
}

.nav-links a:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

.site-nav-enhanced .nav-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 0;
  animation: navSlideDown 0.45s ease both;
}

.site-nav-enhanced .nav-links {
  width: 100%;
  max-width: none;
  justify-content: flex-start;
  align-self: stretch;
  gap: 8px;
  padding-bottom: 2px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.site-nav-enhanced .brand {
  justify-content: center;
  text-align: center;
}

.btn {
  display: inline-block;
  border: 0;
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn::before {
  content: "";
  position: absolute;
  inset: -40% auto -40% -65%;
  width: 46%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transform: translateX(-130%) skewX(-24deg);
  pointer-events: none;
  z-index: -1;
}

.btn:hover {
  transform: translateY(-2px) scale(1.01);
}

.btn:hover::before {
  animation: shineSweep 0.75s ease;
}

.btn-primary {
  color: #06101b;
  background: linear-gradient(120deg, #b9f4ff 0%, #86e4ff 45%, #5ec8ff 100%);
  background-size: 200% 200%;
  box-shadow: 0 0 14px rgba(94, 200, 255, 0.34);
  animation: glowPulse 6.2s ease-in-out infinite;
}

.btn-dark {
  color: var(--ink);
  background: color-mix(in srgb, var(--bg-surface) 80%, transparent);
  border: 1px solid var(--line);
}

a.btn[rel~="noopener"] {
  border: 1px solid rgba(131, 218, 255, 0.44);
  box-shadow:
    0 0 0 1px rgba(131, 218, 255, 0.16) inset,
    0 8px 22px rgba(13, 34, 56, 0.45),
    0 0 16px rgba(94, 200, 255, 0.24);
}

a.btn.btn-primary[rel~="noopener"] {
  animation: glowPulse 5.2s ease-in-out infinite, ctaGradientFlow 3.1s linear infinite alternate;
}

a.btn.btn-dark[rel~="noopener"] {
  background: linear-gradient(140deg, rgba(16, 39, 64, 0.92), rgba(9, 22, 40, 0.9));
}

a.btn[rel~="noopener"]:hover {
  transform: translateY(-3px) scale(1.03);
  filter: saturate(1.14) brightness(1.08);
  border-color: rgba(155, 232, 255, 0.8);
  box-shadow:
    0 0 0 1px rgba(146, 227, 255, 0.28) inset,
    0 14px 28px rgba(9, 25, 42, 0.52),
    0 0 24px rgba(113, 214, 255, 0.45);
}

.news-section {
  padding: 34px 0 10px;
}

.news-board {
  background: linear-gradient(145deg, rgba(17, 35, 60, 0.9), rgba(8, 17, 33, 0.9));
  border: 1px solid rgba(125, 211, 252, 0.34);
  border-radius: 22px;
  padding: 20px;
  box-shadow: 0 0 20px rgba(125, 211, 252, 0.14);
}

.news-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.news-badge {
  display: inline-block;
  background: linear-gradient(130deg, #90e0ff, #5ec8ff);
  color: #071019;
  border-radius: 999px;
  font-weight: 700;
  padding: 6px 12px;
  box-shadow: 0 0 10px rgba(125, 211, 252, 0.3);
}

.news-updated {
  color: #c7ddf2;
  font-weight: 600;
}

.news-board h2 {
  margin: 0 0 10px;
  font-family: "Teko", Impact, sans-serif;
  font-size: clamp(2rem, 4vw, 2.9rem);
  color: #e4f5ff;
  text-shadow: 0 0 18px rgba(125, 211, 252, 0.35);
}

.news-lead {
  margin: 0;
  color: #b9d0e7;
  line-height: 1.58;
}

.news-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
}

.news-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(125, 211, 252, 0.23);
  border-radius: 14px;
  padding: 14px;
}

.news-card h4 {
  margin: 0 0 8px;
  color: #dff4ff;
  font-size: 1.18rem;
}

.news-card p,
.news-card li {
  color: #b9d0e7;
  line-height: 1.55;
}

.news-card ul {
  margin: 0;
  padding-left: 18px;
}

.news-card details {
  border: 1px solid rgba(125, 211, 252, 0.22);
  border-radius: 12px;
  padding: 10px;
  margin-top: 8px;
  background: rgba(10, 20, 36, 0.55);
}

.news-card summary {
  cursor: pointer;
  font-weight: 700;
  color: #dff4ff;
}

.news-card details[open] {
  box-shadow: inset 0 0 14px rgba(125, 211, 252, 0.12);
}
.hero {
  padding: 68px 0 44px;
}

.hero-grid {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.hero-copy {
  flex: 1.08 1 0;
  min-width: 0;
}

.hero-logo-wrap {
  margin-bottom: 10px;
}

.hero-logo {
  width: clamp(96px, 16vw, 152px);
  height: auto;
  filter: drop-shadow(0 0 12px rgba(125, 211, 252, 0.5));
  animation: logoBob 6s ease-in-out infinite;
}

.hero-copy h1 {
  margin: 0;
  font-family: "Teko", Impact, sans-serif;
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  text-shadow: 0 0 22px rgba(140, 226, 255, 0.35);
  animation: textGlowShift 6s ease-in-out infinite;
}

.hero-copy p:not(.hero-actions) {
  margin: 16px 0 22px;
  color: var(--muted);
  font-size: 1.15rem;
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
  max-width: none;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg-surface) 85%, transparent);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 700;
  box-shadow: 0 0 8px rgba(125, 211, 252, 0.12);
}

.hero-panel {
  display: block;
  visibility: visible;
  opacity: 1;
  background: linear-gradient(155deg, #0f1a31, #0a1325 70%);
  color: #dff4ff;
  border: 1px solid rgba(125, 211, 252, 0.25);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  animation: float 8s ease-in-out infinite, panelAura 7.4s ease-in-out infinite;
  flex: 0.92 1 0;
  height: auto;
  min-height: 0;
}

.hero-panel::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -70px;
  top: -80px;
  border-radius: 50%;
  background: rgba(125, 211, 252, 0.35);
  filter: blur(16px);
}

.hero-panel h2 {
  font-family: "Teko", Impact, sans-serif;
  font-size: 2rem;
  margin: 0 0 8px;
}

.hero-panel p {
  margin: 0 0 14px;
  color: #b6cad7;
  line-height: 1.5;
}

.server-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.fact {
  border: 1px solid rgba(125, 211, 252, 0.2);
  border-radius: 12px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 0 16px rgba(125, 211, 252, 0.08);
  transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
}

.fact:hover {
  transform: translateY(-2px);
  border-color: rgba(125, 211, 252, 0.44);
  box-shadow: inset 0 0 16px rgba(125, 211, 252, 0.18), 0 10px 22px rgba(8, 20, 36, 0.34);
}

.fact strong {
  display: block;
  font-size: 1.15rem;
}

.section {
  padding: 30px 0;
}

.section .container {
  background: linear-gradient(160deg, rgba(12, 26, 46, 0.86), rgba(7, 14, 27, 0.88));
  border: 1px solid rgba(125, 211, 252, 0.2);
  border-radius: 24px;
  padding: clamp(18px, 2.8vw, 28px);
  box-shadow: 0 14px 36px rgba(3, 10, 18, 0.36);
}

.section:nth-of-type(even) .container {
  background: linear-gradient(155deg, rgba(11, 22, 40, 0.9), rgba(8, 15, 28, 0.88));
}

.section h3 {
  margin: 0 0 8px;
  font-family: "Teko", Impact, sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: 0.02em;
  text-shadow: 0 0 14px rgba(125, 211, 252, 0.22);
}

.section-intro {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.08rem;
}

.platform-grid,
.benefit-grid,
.rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.tile {
  background: color-mix(in srgb, var(--bg-surface) 92%, transparent);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.tile::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -95%;
  width: 70%;
  background: linear-gradient(105deg, rgba(125, 211, 252, 0), rgba(125, 211, 252, 0.16), rgba(125, 211, 252, 0));
  pointer-events: none;
  opacity: 0;
  transform: skewX(-20deg);
  transition: opacity 0.35s ease;
}

.tile:hover {
  transform: translateY(-4px);
  border-color: rgba(125, 211, 252, 0.45);
  box-shadow: 0 12px 24px rgba(8, 20, 36, 0.35), 0 0 14px rgba(125, 211, 252, 0.16);
}

.tile:hover::after {
  opacity: 1;
  animation: shineSweep 0.9s ease;
}

.tile h4 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.tile p,
.tile li {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.tile ul {
  margin: 0;
  padding-left: 18px;
}

.tagline {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  color: #071019;
  background: linear-gradient(130deg, #8be8e4, #79d8ff);
}

.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.step {
  background: color-mix(in srgb, var(--bg-surface) 94%, transparent);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px 14px 52px;
  position: relative;
  box-shadow: 0 0 15px rgba(125, 211, 252, 0.1);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 14px;
  top: 14px;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #081019;
  background: linear-gradient(145deg, #7dd3fc, #a5e9ff);
  font-weight: 700;
  box-shadow: 0 0 8px rgba(125, 211, 252, 0.35);
}

.highlight {
  margin-top: 14px;
  border-left: 5px solid #7dd3fc;
  background: rgba(27, 71, 112, 0.2);
  border-radius: 8px;
  padding: 10px 12px;
  font-weight: 600;
  transition: box-shadow 0.35s ease, border-color 0.35s ease;
}

.highlight:hover {
  border-left-color: #9fe8ff;
  box-shadow: 0 0 16px rgba(125, 211, 252, 0.2);
}

.cta {
  margin: 30px 0 40px;
  padding: 22px;
  border-radius: 20px;
  background: linear-gradient(130deg, #0c1628, #09111e);
  border: 1px solid rgba(125, 211, 252, 0.3);
  color: #e5f3ff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 0 16px rgba(125, 211, 252, 0.14);
  position: relative;
  overflow: hidden;
}

.cta::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -120px;
  top: -130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(125, 211, 252, 0.2) 0%, rgba(125, 211, 252, 0) 72%);
  animation: glowPulse 8s ease-in-out infinite;
  pointer-events: none;
}

.reveal {
  opacity: 1;
  transform: none;
  filter: none;
}

.js-animate .reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  filter: blur(2px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.9, 0.3, 1), filter 0.8s ease;
}

.js-animate .reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.cta h4 {
  margin: 0 0 6px;
  font-family: "Teko", Impact, sans-serif;
  font-size: 2rem;
}

.cta p {
  margin: 0;
  color: #abc3d2;
}

footer {
  border-top: 1px solid color-mix(in srgb, var(--line) 60%, transparent);
  padding: 20px 0 30px;
  color: var(--muted);
  text-align: center;
  font-weight: 600;
}

.appeal-content > div {
  text-align: center;
  margin-top: 20px;
}

@media (max-width: 1200px) {
  .container {
    width: min(1100px, 94%);
  }
}

@media (max-width: 1024px) {
  .hero-grid {
    flex-direction: column;
    gap: 20px;
  }

  .hero-copy,
  .hero-panel {
    flex: 1 1 auto;
    width: 100%;
  }

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

  .nav-links {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 4px;
    scrollbar-width: thin;
  }

  .nav-links a {
    padding: 8px 10px;
    flex: 0 0 auto;
  }

  .nav-links .btn {
    margin-left: 0;
  }

  .site-nav-enhanced .nav-links {
    max-width: 100%;
    flex-wrap: wrap;
    overflow-x: visible;
    padding-bottom: 0;
  }

  .site-nav-enhanced .nav-links a {
    white-space: normal;
  }

  .news-grid,
  .platform-grid,
  .benefit-grid,
  .rules-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .site-nav-enhanced .nav-row {
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
  }

  .site-nav-enhanced .brand {
    min-width: 0;
    width: 100%;
    justify-content: center;
  }

  .site-nav-enhanced .brand span:last-child {
    font-size: 1.2rem;
  }

  .site-nav-enhanced .nav-links {
    width: 100%;
    max-height: none;
    overflow-y: visible;
    overflow-x: visible;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 2px 0 4px;
  }

  .site-nav-enhanced .nav-links a {
    padding: 8px 10px;
    flex: 0 1 auto;
    white-space: normal;
  }

  .site-nav-enhanced .nav-links .btn {
    margin-left: 0;
    width: 100%;
    flex: 1 1 100%;
    text-align: center;
    padding: 9px 13px;
    font-size: 0.98rem;
    border-radius: 10px;
  }
}

@media (max-width: 820px) {
  .video-bg {
    opacity: 0.14;
    filter: saturate(0.66) brightness(0.52) contrast(1.01);
  }

  .top-grid,
  .top-glow {
    display: none;
  }

  .nav {
    backdrop-filter: none;
  }

  .btn-primary,
  .hero-copy h1,
  .hero-logo,
  .brand-logo,
  .hero-panel,
  .cta::after {
    animation: none;
  }

  .brand span {
    font-size: 1.35rem;
  }

  .hero-copy p:not(.hero-actions) {
    font-size: 1.05rem;
  }

  .news-board,
  .hero-panel,
  .cta {
    padding: 18px;
  }

  .news-grid,
  .platform-grid,
  .benefit-grid,
  .rules-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .hero {
    padding: 12px 0 8px;
    min-height: 0;
  }

  .hero-grid {
    gap: 10px;
    align-items: flex-start;
  }

  .nav-row {
    align-items: flex-start;
  }

  .brand {
    width: 100%;
  }

  .nav-links {
    width: 100%;
    padding-bottom: 2px;
  }

  .nav-links .btn {
    width: 100%;
    margin-left: 0;
    text-align: center;
  }

  .site-nav-enhanced .nav-links .btn {
    width: 100%;
    flex: 1 1 100%;
    padding: 8px 12px;
    font-size: 0.95rem;
    border-radius: 10px;
    white-space: normal;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-copy p:not(.hero-actions) {
    margin: 8px 0 10px;
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 8px;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .server-facts {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    display: block;
    animation: none;
    padding: 14px;
    border-radius: 14px;
    box-shadow: 0 0 10px rgba(125, 211, 252, 0.12);
  }

  .hero-panel::after {
    display: none;
  }

  .hero-panel h2 {
    font-size: 1.55rem;
    margin: 0 0 6px;
  }

  .hero-panel p {
    margin: 0 0 10px;
    font-size: 0.98rem;
  }

  .fact {
    padding: 8px;
  }

  .fact strong {
    font-size: 1rem;
  }

  .hero,
  .hero .container,
  .hero-grid,
  .hero-copy {
    height: auto;
    min-height: 0;
  }

  .cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta .btn {
    width: 100%;
    text-align: center;
  }

  .section {
    padding: 22px 0;
  }

  .section .container {
    border-radius: 16px;
    padding: 16px;
  }

  #plataformas.section {
    padding-top: 10px;
  }

}

@media (max-width: 420px) {
  .video-bg {
    opacity: 0.12;
  }

  .brand span {
    font-size: 1.2rem;
  }

  .news-badge {
    font-size: 0.78rem;
  }

  .pill-row {
    gap: 8px;
  }

  .pill {
    padding: 7px 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .video-bg-wrap {
    display: none;
  }

  .js-animate .reveal,
  .js-animate .reveal.is-visible {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
