
:root {
  --bg: #07070b;
  --bg-elev: #0e0e15;
  --bg-card: #14141c;
  --bg-card-hover: #1a1a24;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #ffffff;
  --text-dim: #a8a8b3;
  --text-faint: #6b6b78;

  --orange: #ff6b1a;
  --orange-bright: #ff8a3d;
  --orange-deep: #cc4d0d;
  --orange-glow: rgba(255, 107, 26, 0.45);
  --orange-soft: rgba(255, 107, 26, 0.12);

  --container: 1240px;
  --radius: 16px;
  --radius-lg: 24px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

::selection { background: var(--orange); color: #000; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #0a0a10; }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--orange-deep), var(--orange)); border-radius: 10px; }

.cursor, .cursor-dot {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}
.cursor {
  width: 36px; height: 36px;
  border: 1.5px solid var(--orange);
  transition: width 0.25s var(--ease), height 0.25s var(--ease), background 0.25s var(--ease);
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--orange);
}
.cursor.active { width: 56px; height: 56px; background: var(--orange-soft); }

@media (hover: none), (pointer: coarse) {
  .cursor, .cursor-dot { display: none; }
}

.loader {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo {
  font-family: 'Russo One', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: 1px;
}
.loader-color { color: var(--text); }
.loader-strike { color: var(--orange); }
.loader-bar {
  width: 240px; height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  overflow: hidden;
}
.loader-bar span {
  display: block; height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--orange), var(--orange-bright));
  box-shadow: 0 0 20px var(--orange-glow);
  animation: load 1.6s var(--ease) forwards;
}
@keyframes load {
  0% { width: 0%; }
  60% { width: 80%; }
  100% { width: 100%; }
}

.bg-grid {
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
  z-index: 0;
  pointer-events: none;
}
.bg-glow {
  position: fixed;
  width: 600px; height: 600px;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.55;
  z-index: 0;
  pointer-events: none;
  animation: floatGlow 20s ease-in-out infinite;
}
.bg-glow-1 { background: var(--orange); top: -150px; left: -100px; }
.bg-glow-2 { background: #ff3e00; bottom: -200px; right: -100px; animation-delay: -7s; }
.bg-glow-3 { background: #ff9a3d; top: 40%; left: 50%; transform: translate(-50%, -50%); opacity: 0.2; animation-delay: -12s; }
@keyframes floatGlow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(60px, -40px) scale(1.1); }
  66% { transform: translate(-40px, 30px) scale(0.95); }
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 2;
}

.section {
  padding: 140px 0;
  position: relative;
  z-index: 1;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 80px;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-family: 'Russo One', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
}

.section-title {
  font-family: 'Russo One', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.section-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--text-dim);
  max-width: 620px;
  margin: 0 auto;
}

.accent { color: var(--orange); }

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 28px;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}
.nav.scrolled {
  padding: 12px 28px;
  background: rgba(7, 7, 11, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Russo One', sans-serif;
  font-size: 20px;
  letter-spacing: 0.5px;
}
.logo-mark {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
  box-shadow: 0 0 24px var(--orange-glow);
  position: relative;
  display: inline-block;
}
.logo-mark::before {
  content: '';
  position: absolute;
  inset: 6px;
  background: var(--bg);
  border-radius: 4px;
}
.logo-mark::after {
  content: '';
  position: absolute;
  inset: 10px;
  background: var(--orange);
  border-radius: 2px;
  box-shadow: 0 0 12px var(--orange-bright);
}
.nav-links {
  display: flex;
  gap: 36px;
  font-weight: 500;
  font-size: 14.5px;
  letter-spacing: 0.3px;
}
.nav-links a {
  color: var(--text-dim);
  position: relative;
  padding: 6px 0;
  transition: color 0.25s var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

@media (max-width: 880px) {
  .nav-links { display: none; }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  border: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  will-change: transform;
}
.btn-lg { padding: 18px 32px; font-size: 16px; }
.btn-xl { padding: 22px 44px; font-size: 18px; }

.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
  color: #fff;
  box-shadow:
    0 8px 24px rgba(255, 107, 26, 0.35),
    inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--orange-bright) 0%, var(--orange) 100%);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 16px 38px rgba(255, 107, 26, 0.5),
    inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn-primary:hover::before { opacity: 1; }

.btn-ghost {
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--orange);
  transform: translateY(-2px);
}

.nav-cta { padding: 11px 22px; font-size: 14px; }

.hero {
  min-height: 100vh;
  padding: 160px 28px 120px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  perspective: 1200px;
}

.hero-particles {
  position: absolute; inset: 0;
  pointer-events: none;
}

.hero-scene {
  position: absolute; inset: 0;
  pointer-events: none;
  transform-style: preserve-3d;
}

.float-shape {
  position: absolute;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--orange-soft), transparent);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  animation: floatY 10s ease-in-out infinite;
  will-change: transform;
}
.shape-1 {
  width: 220px; height: 220px;
  top: 15%; left: 8%;
  transform: rotate(-12deg);
  animation-duration: 8s;
}
.shape-2 {
  width: 160px; height: 160px;
  top: 60%; left: 4%;
  transform: rotate(20deg);
  animation-duration: 12s;
  background: linear-gradient(135deg, rgba(255, 138, 61, 0.15), transparent);
}
.shape-3 {
  width: 280px; height: 280px;
  top: 10%; right: 5%;
  transform: rotate(15deg);
  animation-duration: 10s;
  animation-delay: -3s;
}
.shape-4 {
  width: 140px; height: 140px;
  bottom: 18%; right: 12%;
  transform: rotate(-25deg);
  animation-duration: 9s;
  animation-delay: -5s;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50% { transform: translateY(-30px) rotate(calc(var(--r, 0deg) + 5deg)); }
}
.shape-1 { --r: -12deg; }
.shape-2 { --r: 20deg; }
.shape-3 { --r: 15deg; }
.shape-4 { --r: -25deg; }

.hero-content {
  max-width: 1000px;
  text-align: center;
  position: relative;
  z-index: 3;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 107, 26, 0.1);
  border: 1px solid var(--orange-soft);
  color: var(--orange);
  font-family: 'Russo One', sans-serif;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 var(--orange);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 107, 26, 0.7); }
  70% { box-shadow: 0 0 0 12px rgba(255, 107, 26, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 107, 26, 0); }
}

.hero-title {
  font-family: 'Russo One', sans-serif;
  font-size: clamp(48px, 9vw, 130px);
  line-height: 0.95;
  letter-spacing: -2px;
  margin-bottom: 28px;
  text-transform: uppercase;
}
.title-line {
  display: block;
  overflow: hidden;
}
.word {
  display: inline-block;
  margin: 0 0.18em;
}
.accent-word {
  color: var(--orange);
  text-shadow:
    0 0 40px var(--orange-glow),
    0 0 80px rgba(255, 107, 26, 0.25);
  position: relative;
}

.hero-sub {
  font-size: clamp(17px, 1.6vw, 22px);
  color: var(--text-dim);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.55;
}

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

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 24px 40px;
  background: rgba(20, 20, 28, 0.6);
  border: 1px solid var(--border);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  max-width: 720px;
  margin: 0 auto;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Russo One', sans-serif;
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-num::after {
  content: '+';
  color: var(--orange);
}
.stat-label {
  font-size: 12px;
  color: var(--text-faint);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px; height: 36px;
  background: var(--border-strong);
}

@media (max-width: 600px) {
  .stat-divider { display: none; }
  .hero-stats { gap: 20px; padding: 20px; }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-title .word {
  opacity: 0;
  transform: translateY(80%) rotateX(-30deg);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transform-origin: bottom;
}
.hero-title.is-visible .word { opacity: 1; transform: translateY(0) rotateX(0deg); }
.hero-title.is-visible .word:nth-child(1) { transition-delay: 0.1s; }
.hero-title.is-visible .word:nth-child(2) { transition-delay: 0.2s; }
.hero-title.is-visible .word:nth-child(3) { transition-delay: 0.3s; }
.title-line:nth-child(2) .word:nth-child(1) { transition-delay: 0.4s !important; }
.title-line:nth-child(2) .word:nth-child(2) { transition-delay: 0.5s !important; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--text-faint);
  font-size: 11px;
  letter-spacing: 3px;
  font-family: 'Russo One', sans-serif;
  z-index: 3;
}
.scroll-line {
  width: 1.5px; height: 50px;
  background: linear-gradient(180deg, var(--orange), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: -50%; left: 0;
  width: 100%; height: 50%;
  background: linear-gradient(180deg, transparent, var(--orange));
  animation: scrollLine 2s linear infinite;
}
@keyframes scrollLine {
  0% { top: -50%; }
  100% { top: 100%; }
}

.marquee {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  overflow: hidden;
  background: rgba(255, 107, 26, 0.03);
  position: relative;
  z-index: 1;
}
.marquee-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  font-family: 'Russo One', sans-serif;
  font-size: 18px;
  letter-spacing: 4px;
  color: var(--text);
  animation: marquee 40s linear infinite;
  width: max-content;
}
.marquee-track .dot { color: var(--orange); }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 22px;
}

.feature-card {
  position: relative;
  padding: 36px 32px;
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-elev) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
  transform-style: preserve-3d;
  will-change: transform;
}
.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--orange-soft);
}
.feature-card:hover .feature-glow { opacity: 1; }

.feature-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(255, 107, 26, 0.3);
  transform: translateZ(20px);
}
.feature-icon svg {
  width: 26px; height: 26px;
  color: #fff;
}
.feature-card h3 {
  font-family: 'Russo One', sans-serif;
  font-size: 22px;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  transform: translateZ(10px);
}
.feature-card p {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.6;
  transform: translateZ(5px);
}
.feature-glow {
  position: absolute;
  bottom: -50%; right: -30%;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--orange-glow) 0%, transparent 70%);
  opacity: 0.4;
  filter: blur(30px);
  transition: opacity 0.5s var(--ease);
  pointer-events: none;
}

.showcase {
  position: relative;
  margin: 0 auto;
  max-width: 1100px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.5),
    0 0 0 1px var(--border);
  transform-style: preserve-3d;
  will-change: transform;
}
.showcase-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #1a1a24, #07070b);
  overflow: hidden;
}
.showcase-frame.small {
  aspect-ratio: 16 / 9;
  max-width: 580px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  background: var(--bg-card);
}
.showcase-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.showcase-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 60%, rgba(7,7,11,0.6) 100%),
    linear-gradient(45deg, transparent 60%, rgba(255, 107, 26, 0.08) 100%);
  pointer-events: none;
}
.showcase-hud { position: absolute; inset: 0; pointer-events: none; }
.hud-badge {
  position: absolute;
  top: 18px; left: 18px;
  padding: 6px 12px;
  border-radius: 6px;
  background: rgba(255, 107, 26, 0.9);
  color: #000;
  font-family: 'Russo One', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
}
.hud-corner {
  position: absolute;
  width: 24px; height: 24px;
  border: 2px solid var(--orange);
}
.hud-corner.top-left { top: 12px; left: 12px; border-right: none; border-bottom: none; }
.hud-corner.top-right { top: 12px; right: 12px; border-left: none; border-bottom: none; }
.hud-corner.bottom-left { bottom: 12px; left: 12px; border-right: none; border-top: none; }
.hud-corner.bottom-right { bottom: 12px; right: 12px; border-left: none; border-top: none; }

/* Placeholder when image missing */
.showcase-img:not([src]), .showcase-img[src=""], .split-media img:not([src]), .split-media img[src=""] {
  background: linear-gradient(135deg, #1a1a24, #07070b);
}

.gameplay-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 70px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.point {
  display: flex;
  gap: 18px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  align-items: flex-start;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.point:hover {
  border-color: var(--orange-soft);
  transform: translateY(-4px);
}
.point-num {
  font-family: 'Russo One', sans-serif;
  font-size: 28px;
  color: var(--orange);
  line-height: 1;
  flex-shrink: 0;
}
.point h4 {
  font-family: 'Russo One', sans-serif;
  font-size: 17px;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.point p {
  color: var(--text-dim);
  font-size: 14.5px;
}

.modes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.mode-card-lg { grid-column: span 2; grid-row: span 2; }

@media (max-width: 1024px) {
  .modes-grid { grid-template-columns: repeat(2, 1fr); }
  .mode-card-lg { grid-column: span 2; grid-row: span 1; min-height: 280px; }
}
@media (max-width: 600px) {
  .modes-grid { grid-template-columns: 1fr; }
  .mode-card-lg { grid-column: span 1; }
}

.mode-card {
  position: relative;
  padding: 32px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
  cursor: pointer;
  transform-style: preserve-3d;
}
.mode-card:hover { border-color: var(--orange); }
.mode-card:hover .mode-bg { transform: scale(1.08); opacity: 0.5; }
.mode-card-lg { min-height: 380px; }
.mode-bg {
  position: absolute; inset: 0;
  opacity: 0.25;
  transition: transform 0.6s var(--ease), opacity 0.6s var(--ease);
  background:
    radial-gradient(ellipse at top right, var(--orange) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(255, 62, 0, 0.4) 0%, transparent 50%);
}
.mode-tag {
  position: absolute;
  top: 20px; right: 20px;
  padding: 5px 11px;
  background: var(--orange);
  color: #000;
  font-family: 'Russo One', sans-serif;
  font-size: 10px;
  letter-spacing: 1.5px;
  border-radius: 999px;
}
.mode-card h3 {
  font-family: 'Russo One', sans-serif;
  font-size: 24px;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  position: relative;
}
.mode-card-lg h3 { font-size: 36px; }
.mode-card p {
  color: var(--text-dim);
  font-size: 14.5px;
  margin-bottom: 16px;
  position: relative;
}
.mode-meta {
  display: flex;
  gap: 10px;
  color: var(--orange);
  font-family: 'Russo One', sans-serif;
  font-size: 12px;
  letter-spacing: 1.5px;
  position: relative;
}

.split-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split.reverse .split-container { grid-template-columns: 1fr 1fr; }
.split.reverse .split-text { order: 2; }
.split.reverse .split-media { order: 1; }

@media (max-width: 880px) {
  .split-container { grid-template-columns: 1fr; gap: 50px; }
  .split.reverse .split-text { order: 1; }
  .split.reverse .split-media { order: 2; }
}

.split-text .section-title { font-size: clamp(32px, 4vw, 52px); }
.split-text .section-sub { margin-left: 0; }

.check-list {
  list-style: none;
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: 15.5px;
}
.check {
  width: 24px; height: 24px;
  border-radius: 6px;
  background: var(--orange-soft);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}
.chip {
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: all 0.3s var(--ease);
}
.chip:hover {
  background: var(--orange-soft);
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

.cta { padding: 80px 0 140px; }
.cta-card {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: 80px 40px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255, 107, 26, 0.12) 0%, rgba(255, 62, 0, 0.05) 100%),
    var(--bg-card);
  border: 1px solid var(--orange-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.cta-bg-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, var(--orange-glow) 0%, transparent 60%);
  opacity: 0.5;
  filter: blur(60px);
  pointer-events: none;
}
.cta-title {
  font-family: 'Russo One', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -1px;
  margin: 16px 0;
  position: relative;
}
.cta-card p {
  color: var(--text-dim);
  font-size: 18px;
  margin-bottom: 32px;
  position: relative;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  position: relative;
}
.cta-fine {
  font-size: 13px;
  color: var(--text-faint);
  margin: 0;
  position: relative;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 50px 0;
  background: rgba(7, 7, 11, 0.6);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Russo One', sans-serif;
  font-size: 18px;
}
.footer-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  color: var(--text-dim);
}
.footer-links a:hover { color: var(--orange); }
.footer-copy {
  color: var(--text-faint);
  font-size: 13px;
  margin: 0;
}

.particle {
  position: absolute;
  width: 3px; height: 3px;
  background: var(--orange);
  border-radius: 50%;
  pointer-events: none;
  box-shadow: 0 0 8px var(--orange);
  opacity: 0;
  animation: rise linear infinite;
}
@keyframes rise {
  0% { opacity: 0; transform: translateY(0) translateX(0); }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { opacity: 0; transform: translateY(-100vh) translateX(var(--drift, 30px)); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .scroll-line::after, .pulse-dot, .marquee-track, .bg-glow { animation: none; }
}
