:root {
  --bg: #070504;
  --bg-2: #100a07;
  --panel: rgba(28, 18, 12, 0.72);
  --panel-solid: #1c120c;
  --gold: #e0b43a;
  --gold-2: #f6e2a1;
  --gold-deep: #8a6410;
  --crimson: #c41d18;
  --navy: #163a78;
  --ivory: #f7f1e6;
  --muted: #c9bba6;
  --line: rgba(224, 180, 58, 0.28);
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.5);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Manrope", sans-serif;
  background: radial-gradient(ellipse at 50% -10%, #2a160c 0%, var(--bg) 52%);
  color: var(--ivory);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: auto;
}

@media (pointer: fine) {
  body { cursor: none; }
  a, button, .dot, .faq-q, .hnav, .menu-btn { cursor: none; }
}

input, textarea { cursor: text; }

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(196, 29, 24, 0.16), transparent 32%),
    radial-gradient(circle at 88% 12%, rgba(224, 180, 58, 0.1), transparent 28%),
    radial-gradient(circle at 70% 90%, rgba(22, 58, 120, 0.12), transparent 30%);
  animation: ambShift 18s ease-in-out infinite alternate;
}

.page-ambience,
.cursor-glow,
.fx-layer { pointer-events: none; }

.page-ambience {
  position: fixed;
  inset: 0;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  opacity: 0.07;
  mix-blend-mode: overlay;
}

.cursor-glow {
  position: fixed;
  width: 340px;
  height: 340px;
  margin: -170px 0 0 -170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 180, 58, 0.2), transparent 68%);
  z-index: 3;
  mix-blend-mode: screen;
  transform: translate(-200px, -200px);
  transition: opacity 0.3s ease;
}

img { max-width: 100%; display: block; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

a { color: var(--gold-2); }

.skip {
  position: absolute;
  left: 12px;
  top: -48px;
  background: var(--gold);
  color: #1a1008;
  padding: 8px 14px;
  z-index: 200;
  font-weight: 800;
}

.skip:focus { top: 12px; }

.wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-family: "Cinzel", serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

h1, h2, h3, .logo-word {
  font-family: "Cormorant Garamond", serif;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.12;
  font-weight: 700;
  margin-bottom: 14px;
  text-wrap: balance;
}

.lead {
  color: var(--muted);
  max-width: 640px;
}

.kwlink {
  color: var(--gold-2);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid rgba(243, 217, 138, 0.55);
}

.kwlink:hover { color: #fff; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 35%, rgba(255,255,255,.38) 50%, transparent 65%);
  transform: translateX(-130%);
  transition: transform 0.55s ease;
}

.btn:hover { transform: translateY(-3px) scale(1.02); }
.btn:hover::after { transform: translateX(130%); }

.btn-gold {
  background: linear-gradient(145deg, #f4d98a, #e0b43a 46%, #9a7012);
  color: #1a1008;
  box-shadow: 0 0 0 1px rgba(255, 230, 160, 0.25), 0 14px 36px rgba(224, 180, 58, 0.32);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(10px);
}

.btn-line {
  border-color: var(--gold);
  color: var(--gold-2);
  background: rgba(224, 180, 58, 0.06);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(22px) saturate(1.2);
  background: rgba(7, 5, 4, 0.62);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
  background: rgba(7, 5, 4, 0.88);
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
}

.nav-inner {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ivory);
  min-width: 0;
}

.logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px var(--gold), 0 0 22px rgba(224, 180, 58, 0.45);
  animation: logoPulse 4.5s ease-in-out infinite;
}

.logo-word {
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 22px;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--gold-2); }
.nav-links a:hover::after { transform: scaleX(1); }

.menu-btn {
  display: none;
  background: transparent;
  color: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  cursor: none;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 8px 16px 18px;
  border-top: 1px solid var(--line);
  background: rgba(16, 11, 8, 0.96);
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  color: var(--ivory);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: min(92vh, 880px);
  display: grid;
  place-items: center;
  overflow: hidden;
  perspective: 1400px;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 0.9s ease, transform 8s ease;
}

.slide.on {
  opacity: 1;
  transform: scale(1);
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.12);
  animation: ken 18s ease-in-out infinite alternate;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 5, 4, 0.28), rgba(7, 5, 4, 0.82) 74%),
    radial-gradient(circle at 50% 40%, transparent 18%, rgba(0,0,0,.45) 100%);
  z-index: 1;
}

.fx-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.fx-ring {
  position: absolute;
  left: 50%;
  top: 48%;
  width: min(560px, 72vw);
  height: min(560px, 72vw);
  transform: translate(-50%, -50%) rotateX(62deg);
  border: 2px solid rgba(224, 180, 58, 0.28);
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(224, 180, 58, 0.12), inset 0 0 40px rgba(224, 180, 58, 0.08);
  animation: ringSpin 16s linear infinite;
}

.fx-ring::before,
.fx-ring::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  border: 1px solid rgba(224, 180, 58, 0.18);
}

.fx-beams {
  position: absolute;
  inset: 0;
  background:
    conic-gradient(from 210deg at 50% 8%, transparent 0 8%, rgba(224,180,58,.09) 10%, transparent 14%),
    conic-gradient(from 150deg at 50% 8%, transparent 0 8%, rgba(196,29,24,.08) 11%, transparent 15%);
  animation: beamPulse 7s ease-in-out infinite;
}

.fx-embers {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-copy {
  position: relative;
  z-index: 4;
  text-align: center;
  padding: 118px 20px 96px;
  max-width: 880px;
}

.hero-copy::before,
.hero-copy::after {
  content: "";
  position: absolute;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(224, 180, 58, 0.45);
  pointer-events: none;
}

.hero-copy::before {
  top: 36px;
  left: 8px;
  border-right: 0;
  border-bottom: 0;
}

.hero-copy::after {
  right: 8px;
  bottom: 28px;
  border-left: 0;
  border-top: 0;
}

.badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--crimson), #7a120d);
  color: #fff;
  border-radius: 999px;
  padding: 7px 18px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
  box-shadow: 0 0 24px rgba(196, 29, 24, 0.45);
  animation: badgeFloat 4s ease-in-out infinite;
}

.hero h1 {
  font-family: "Cinzel", serif;
  font-size: clamp(2.7rem, 8vw, 5.6rem);
  line-height: 0.92;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.foil {
  background: linear-gradient(110deg, #8a6410 0%, #f6e2a1 28%, #fff6d2 45%, #e0b43a 62%, #8a6410 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: foilShine 5.5s linear infinite;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.45));
}

.hero p {
  color: rgba(246, 239, 226, 0.88);
  font-size: clamp(1rem, 2vw, 1.18rem);
  margin: 0 auto 28px;
  max-width: 620px;
}

.cta-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.dots, .hnav { position: absolute; z-index: 5; }

.dots {
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.35);
  cursor: none;
  transition: width 0.3s ease, background 0.3s ease;
}

.dot.on { width: 28px; background: var(--gold); }

.hnav {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.28);
  color: #fff;
  cursor: none;
  backdrop-filter: blur(8px);
}

.hprev { left: 16px; }
.hnext { right: 16px; }

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, #0d0906, #1a120b, #0d0906);
  padding: 13px 0;
  position: relative;
  z-index: 2;
}

.ticker-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: tick 28s linear infinite;
}

.ticker span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.section {
  padding: clamp(72px, 9vw, 118px) 0;
  position: relative;
  z-index: 2;
}

.section::before {
  content: "";
  position: absolute;
  width: min(480px, 70vw);
  height: min(480px, 70vw);
  right: -8%;
  top: -12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224,180,58,.08), transparent 68%);
  pointer-events: none;
}

.alt { background: linear-gradient(180deg, rgba(16,10,7,.92), rgba(10,7,5,.96)); }

.crumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
}

.crumbs a { color: var(--gold-2); text-decoration: none; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  perspective: 1000px;
}

.stat {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 18px;
  text-align: center;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.stat:hover {
  transform: translateY(-8px) rotateX(6deg);
  box-shadow: 0 24px 50px rgba(224, 180, 58, 0.14);
}

.stat b {
  display: block;
  font-family: "Cinzel", serif;
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  color: var(--gold-2);
  text-shadow: 0 0 18px rgba(224, 180, 58, 0.35);
}

.stat span { color: var(--muted); font-size: 0.92rem; }

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.frame {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  min-height: 320px;
  box-shadow: var(--shadow), 0 0 0 1px var(--line);
  transform: perspective(1000px) rotateY(-6deg);
  transition: transform 0.5s ease;
}

.frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.14) 50%, transparent 60%);
  transform: translateX(-120%);
  animation: sheen 7s ease-in-out infinite;
}

.frame:hover { transform: perspective(1000px) rotateY(0deg) scale(1.02); }

.frame img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.caption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

.prose p { margin-bottom: 16px; color: var(--muted); }
.prose h3 {
  font-size: 1.55rem;
  margin: 28px 0 10px;
  color: var(--ivory);
}

.toc {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 20px;
  margin: 22px 0 8px;
  backdrop-filter: blur(16px);
}

.toc strong { display: block; margin-bottom: 8px; }
.toc a {
  display: block;
  color: var(--gold-2);
  text-decoration: none;
  padding: 4px 0;
  font-weight: 700;
}

.grid-3, .grid-2, .cards {
  display: grid;
  gap: 18px;
  perspective: 1200px;
}

.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card, .step, .review, .faq, .service {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.card:hover, .service:hover, .review:hover, .step:hover {
  border-color: rgba(224, 180, 58, 0.55);
  box-shadow: 0 28px 60px rgba(0,0,0,.45), 0 0 30px rgba(224,180,58,.12);
}

.card img, .service img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.service:hover img { transform: scale(1.08); }

.mw-art {
  height: 210px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.mw-meron, .mw-wala {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  font-family: "Cinzel", serif;
  font-size: 2rem;
  font-weight: 700;
}

.mw-meron {
  background: linear-gradient(160deg, #7a1410, #c4281c);
  color: #ffe8e4;
}

.mw-wala {
  background: linear-gradient(160deg, #10244e, #1e4d8c);
  color: #dce8ff;
  text-align: right;
}

.mw-draw {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle, #f3d98a, #d4a017);
  color: #1a1008;
  font-weight: 900;
  letter-spacing: 0.08em;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35), 0 0 24px rgba(224,180,58,.45);
  animation: drawPulse 2.8s ease-in-out infinite;
}

.mw-art small {
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.8;
}

.phone-art {
  height: 210px;
  background:
    radial-gradient(circle at 50% 20%, rgba(224,180,58,.16), transparent 40%),
    #0b0b0b;
  display: grid;
  place-items: center;
  perspective: 800px;
}

.phone-art img {
  width: 118px;
  height: 188px;
  object-fit: cover;
  border-radius: 18px;
  border: 4px solid #2a2a2a;
  box-shadow: 20px 24px 40px rgba(0, 0, 0, 0.55), 0 0 0 1px #111;
  transform: rotateY(-18deg) rotateX(6deg);
  transition: transform 0.45s ease;
}

.service:hover .phone-art img {
  transform: rotateY(0deg) rotateX(0deg) translateY(-6px);
}

.card-body, .service-body, .step, .review { padding: 22px; }

.card h3, .service h3, .step h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.card p, .service p, .step p, .review p { color: var(--muted); }

.service-body a {
  display: inline-block;
  margin-top: 12px;
  font-weight: 800;
  text-decoration: none;
  color: var(--gold-2);
}

.steps { counter-reset: step; }
.step { position: relative; padding-left: 78px; }
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 20px;
  top: 22px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #8a6410);
  color: #1a1008;
  display: grid;
  place-items: center;
  font-weight: 900;
  box-shadow: 0 0 18px rgba(224,180,58,.35);
}

.compare {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0 8px;
  background: var(--panel);
  border-radius: 14px;
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.compare th, .compare td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.compare th {
  background: rgba(42, 26, 16, 0.9);
  color: var(--gold-2);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.compare td { color: var(--muted); }
.compare tbody tr { transition: background 0.25s ease; }
.compare tbody tr:hover { background: rgba(224, 180, 58, 0.06); }

.meron { color: #ffb4ae; font-weight: 800; }
.wala { color: #9ec0ff; font-weight: 800; }

.review { padding: 26px; }
.review q { display: block; color: var(--muted); margin-bottom: 18px; }
.who { display: flex; gap: 12px; align-items: center; }
.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--crimson), var(--gold));
  display: grid;
  place-items: center;
  font-weight: 900;
}
.who small { display: block; color: var(--muted); }

.cta-band {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(180, 35, 24, 0.82), rgba(18, 12, 9, 0.86)),
    url("../images/hero-online-sabong-arena.png") center/cover;
  text-align: center;
  padding: 92px 20px;
  z-index: 2;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 50% 50%, rgba(224,180,58,.2), transparent 42%);
  animation: burst 3.6s ease-in-out infinite;
}

.cta-band .wrap { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.86); max-width: 640px; margin: 0 auto 22px; }

.faq-item + .faq-item { margin-top: 12px; }
.faq-q {
  width: 100%;
  text-align: left;
  background: var(--panel);
  color: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
  font: inherit;
  font-weight: 800;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  cursor: none;
  backdrop-filter: blur(12px);
}

.faq-a {
  display: none;
  padding: 14px 8px 6px;
  color: var(--muted);
}

.faq-item.open .faq-a { display: block; }

.form {
  max-width: 720px;
  margin: 0 auto;
  padding: 28px;
  border-radius: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.form input, .form textarea {
  width: 100%;
  margin-bottom: 12px;
  padding: 13px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #140e0b;
  color: var(--ivory);
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form input:focus, .form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(224, 180, 58, 0.16);
}

.form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

footer {
  background: #050302;
  padding: 64px 0 24px;
  border-top: 1px solid var(--line);
  position: relative;
  z-index: 2;
}

.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 32px;
}

footer h4 {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  margin-bottom: 12px;
}

footer a {
  display: block;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 14px;
}

.legal {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 18px;
  color: var(--muted);
  font-size: 13px;
}

.note {
  margin-top: 16px;
  color: #9a8d7c;
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(36px) rotateX(8deg);
  transform-origin: top;
  animation: none;
}

.reveal.in {
  animation: riseIn 0.85s cubic-bezier(.2,.7,.2,1) both;
}

.grid-2 .reveal:nth-child(2),
.grid-3 .reveal:nth-child(2),
.stats .reveal:nth-child(2) { animation-delay: .08s; }
.grid-2 .reveal:nth-child(3),
.grid-3 .reveal:nth-child(3),
.stats .reveal:nth-child(3) { animation-delay: .16s; }
.grid-2 .reveal:nth-child(4),
.grid-3 .reveal:nth-child(4),
.stats .reveal:nth-child(4) { animation-delay: .24s; }
.grid-3 .reveal:nth-child(5) { animation-delay: .32s; }
.grid-3 .reveal:nth-child(6) { animation-delay: .4s; }

@keyframes riseIn {
  to { opacity: 1; transform: none; }
}

@keyframes tick { to { transform: translateX(-50%); } }
@keyframes ken {
  from { transform: scale(1.04) translate3d(0,0,0); }
  to { transform: scale(1.16) translate3d(-2%, 1.4%, 0); }
}
@keyframes foilShine { to { background-position: 220% 0; } }
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
@keyframes logoPulse {
  0%, 100% { box-shadow: 0 0 0 2px var(--gold), 0 0 16px rgba(224,180,58,.3); }
  50% { box-shadow: 0 0 0 2px var(--gold-2), 0 0 28px rgba(224,180,58,.6); }
}
@keyframes ringSpin { to { transform: translate(-50%, -50%) rotateX(62deg) rotate(360deg); } }
@keyframes beamPulse {
  0%, 100% { opacity: .45; }
  50% { opacity: 1; }
}
@keyframes ambShift {
  from { transform: translate3d(0,0,0) scale(1); }
  to { transform: translate3d(3%, -2%, 0) scale(1.06); }
}
@keyframes sheen {
  0%, 70% { transform: translateX(-120%); }
  100% { transform: translateX(140%); }
}
@keyframes drawPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(0,0,0,.35), 0 0 18px rgba(224,180,58,.35); }
  50% { box-shadow: 0 8px 24px rgba(0,0,0,.35), 0 0 34px rgba(224,180,58,.7); }
}
@keyframes burst {
  0%, 100% { transform: scale(.85); opacity: .35; }
  50% { transform: scale(1.15); opacity: .7; }
}

@media (max-width: 980px) {
  body { cursor: auto; }
  .cursor-glow { display: none; }
  .nav-links, .nav .btn { display: none; }
  .menu-btn { display: inline-flex; cursor: pointer; }
  .stats, .grid-3, .foot-grid { grid-template-columns: 1fr 1fr; }
  .split, .form .row { grid-template-columns: 1fr; }
  .frame { transform: none; }
}

@media (max-width: 680px) {
  .hnav { display: none; }
  .stats, .grid-3, .grid-2, .foot-grid { grid-template-columns: 1fr; }
  .hero { min-height: 100svh; }
  .cta-row { flex-direction: column; }
  .cta-row .btn { width: 100%; }
  .fx-ring { opacity: .35; }
}

.fx-scan {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(180deg, transparent 0 3px, rgba(0,0,0,.18) 3px 4px);
  mix-blend-mode: overlay;
  opacity: .28;
}

.pit-3d {
  position: absolute;
  left: 50%;
  top: 54%;
  width: min(720px, 88vw);
  height: min(420px, 58vw);
  transform: translate(-50%, -50%) rotateX(68deg);
  transform-style: preserve-3d;
}

.pit-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid rgba(240, 210, 120, .55);
  box-shadow: 0 0 40px rgba(224,180,58,.35), inset 0 0 40px rgba(224,180,58,.12);
}

.pit-ring.r1 { animation: pitSpin 10s linear infinite; }
.pit-ring.r2 { inset: 34px; border-color: rgba(196,29,24,.55); animation: pitSpin 14s linear infinite reverse; }
.pit-ring.r3 { inset: 68px; border-color: rgba(246,226,161,.35); animation: pitSpin 8s linear infinite; }
.pit-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 120px;
  height: 120px;
  margin: -60px 0 0 -60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246,226,161,.55), rgba(224,180,58,.08) 55%, transparent 70%);
  animation: corePulse 2.4s ease-in-out infinite;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(18px);
  mix-blend-mode: screen;
}

.orb.o1 { width: 280px; height: 280px; left: -4%; top: 10%; background: radial-gradient(circle, rgba(224,180,58,.45), transparent 70%); animation: orbFloat 8s ease-in-out infinite; }
.orb.o2 { width: 240px; height: 240px; right: -6%; bottom: 4%; background: radial-gradient(circle, rgba(196,29,24,.4), transparent 70%); animation: orbFloat 11s ease-in-out infinite reverse; }
.orb.o3 { width: 180px; height: 180px; left: 40%; top: -8%; background: radial-gradient(circle, rgba(255,255,255,.18), transparent 70%); animation: orbFloat 9s ease-in-out infinite; }
.orb.o4 { width: 160px; height: 160px; right: 18%; top: 28%; background: radial-gradient(circle, rgba(80,140,255,.28), transparent 70%); animation: orbFloat 12s ease-in-out infinite reverse; }

.deck-3d {
  perspective: 1400px;
  transform-style: preserve-3d;
}

.deck-3d > :nth-child(1) { transform: rotateY(9deg) translateZ(16px); }
.deck-3d > :nth-child(2) { transform: translateY(-14px) translateZ(36px); }
.deck-3d > :nth-child(3) { transform: rotateY(-9deg) translateZ(16px); }
.deck-3d > :nth-child(4) { transform: rotateY(6deg) translateZ(10px); }
.deck-3d > :nth-child(5) { transform: translateZ(24px); }
.deck-3d > :nth-child(6) { transform: rotateY(-6deg) translateZ(10px); }

.card, .service, .stat, .review, .step {
  position: relative;
}

.card::before, .service::before, .stat::before, .review::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(130deg, transparent 20%, rgba(246,226,161,.85), transparent 55%, rgba(196,29,24,.45), transparent 80%);
  background-size: 220% 220%;
  animation: borderRun 5s linear infinite;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
  z-index: 3;
}

.cursor-glow {
  width: 520px;
  height: 520px;
  margin: -260px 0 0 -260px;
  background: radial-gradient(circle, rgba(246,226,161,.32), rgba(224,180,58,.08) 42%, transparent 68%);
}

.hero h1 { text-shadow: 0 12px 40px rgba(0,0,0,.65), 0 0 40px rgba(224,180,58,.25); }

@keyframes pitSpin { to { transform: rotate(360deg); } }
@keyframes corePulse {
  0%, 100% { transform: scale(.85); opacity: .55; }
  50% { transform: scale(1.2); opacity: 1; }
}
@keyframes orbFloat {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(8%, -10%, 0) scale(1.15); }
}
@keyframes borderRun { to { background-position: 220% 0; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  body { cursor: auto; }
  .cursor-glow { display: none; }
  .ticker-track, .slide, .slide img, .foil, .fx-ring, .fx-beams, .badge, .logo img, .frame::after, .mw-draw, .cta-band::before, body::before,
  .pit-ring, .pit-core, .orb, .card::before, .service::before, .stat::before, .review::before {
    animation: none !important;
    transition: none !important;
  }
  .reveal, .deck-3d > * { opacity: 1; transform: none; }
}
