/* ============================================================
   LEVEL UP ISLAND — 2026 redesign
   Fonts: Space Grotesk (display) + Inter (body), loaded per-page
   ============================================================ */

:root {
  --bg: #06060e;
  --bg-2: #0b0b1a;
  --bg-3: #111126;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.07);
  --stroke: rgba(255, 255, 255, 0.09);
  --text: #eef0ff;
  --text-dim: #9aa0c3;
  --pink: #ff2ea6;
  --purple: #8b3dff;
  --cyan: #2ee6ff;
  --grad: linear-gradient(120deg, var(--pink), var(--purple) 55%, var(--cyan));
  --grad-btn: linear-gradient(135deg, #ff2ea6, #8b3dff);
  --radius: 20px;
  --font-display: "Space Grotesk", sans-serif;
  --font-body: "Inter", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

a { color: var(--cyan); text-decoration: none; }

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

::selection { background: var(--pink); color: #fff; }

/* ---------- gradient text helper ---------- */
.grad-text {
  background: var(--grad);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradShift 6s ease-in-out infinite;
}

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

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(8, 8, 18, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--stroke);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
}

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

.brand { display: flex; align-items: center; gap: 12px; }

.brand img {
  height: 54px;
  width: auto;
  filter: drop-shadow(0 0 12px rgba(255, 46, 166, 0.45));
  transition: transform 0.3s ease;
}

.brand:hover img { transform: scale(1.06) rotate(-2deg); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-links a {
  color: var(--text-dim);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 9px 15px;
  border-radius: 999px;
  transition: color 0.25s ease, background 0.25s ease;
}

.nav-links a:hover { color: #fff; background: var(--surface-2); }

.nav-links a.active {
  color: #fff;
  background: var(--surface-2);
  box-shadow: inset 0 0 0 1px var(--stroke);
}

.nav-cta {
  background: var(--grad-btn) !important;
  color: #fff !important;
  font-weight: 700 !important;
  padding: 10px 22px !important;
  box-shadow: 0 4px 20px rgba(255, 46, 166, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 46, 166, 0.6);
}

/* hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  z-index: 102;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    background: rgba(6, 6, 14, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 101;
  }

  .nav-links.open { opacity: 1; pointer-events: auto; }
  .nav-links a { font-size: 1.25rem; padding: 12px 28px; }
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  padding: 170px 0 70px;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 60% at 50% -10%, rgba(139, 61, 255, 0.28), transparent 70%),
    radial-gradient(ellipse 45% 40% at 82% 15%, rgba(255, 46, 166, 0.14), transparent 70%),
    var(--bg);
  overflow: hidden;
}

.page-hero h1 { font-size: clamp(2.2rem, 5.5vw, 3.6rem); }

.page-hero p.sub {
  margin-top: 14px;
  color: var(--text-dim);
  font-size: 1.1rem;
  max-width: 620px;
  margin-inline: auto;
}

/* ============================================================
   HOME HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--bg);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 20%, rgba(255, 46, 166, 0.16), transparent 65%),
    radial-gradient(ellipse 55% 55% at 80% 30%, rgba(139, 61, 255, 0.20), transparent 65%),
    radial-gradient(ellipse 60% 45% at 50% 95%, rgba(46, 230, 255, 0.10), transparent 65%);
}

/* subtle grid overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, #000 30%, transparent 75%);
}

/* floating glow orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  animation: drift 14s ease-in-out infinite alternate;
}

.orb-1 { width: 420px; height: 420px; background: #ff2ea6; top: -120px; left: -120px; }
.orb-2 { width: 380px; height: 380px; background: #8b3dff; bottom: -100px; right: -80px; animation-delay: -5s; }
.orb-3 { width: 260px; height: 260px; background: #2ee6ff; top: 45%; left: 60%; opacity: 0.28; animation-delay: -9s; }

@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(60px, 40px) scale(1.15); }
}

.hero-inner { position: relative; z-index: 2; padding: 130px 0 80px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: var(--surface);
  backdrop-filter: blur(10px);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 28px;
}

.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

.hero h1 {
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  max-width: 900px;
  margin: 0 auto 22px;
}

.hero p.lead {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--text-dim);
  max-width: 640px;
  margin: 0 auto 40px;
}

/* Layered logo animation — symbol + wordmark float independently
   at opposite phase for a parallax / depth feel instead of one flat bounce. */
.hero-logo-stack {
  position: relative;
  width: min(320px, 66vw);
  aspect-ratio: 1 / 1;
  margin: 0 auto 20px;
}

.hero-logo-stack .logo-symbol {
  position: absolute;
  top: 2%;
  left: 50%;
  width: 64%;
  transform: translateX(-50%);
  filter: drop-shadow(0 0 30px rgba(46, 230, 255, 0.45));
  animation: floatSymbol 6s ease-in-out infinite;
  will-change: transform;
}

.hero-logo-stack .logo-wordmark {
  position: absolute;
  bottom: 12%;
  left: 50%;
  width: 94%;
  transform: translateX(-50%);
  filter: drop-shadow(0 0 28px rgba(255, 46, 166, 0.5));
  animation: floatWordmark 6s ease-in-out infinite;
  animation-delay: -3s;
  will-change: transform;
}

@keyframes floatSymbol {
  0%, 100% { transform: translateX(-50%) translateY(0) rotate(0deg); }
  50%      { transform: translateX(-50%) translateY(-14px) rotate(-1.5deg); }
}

@keyframes floatWordmark {
  0%, 100% { transform: translateX(-50%) translateY(0) scale(1); }
  50%      { transform: translateX(-50%) translateY(9px) scale(1.02); }
}

.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
}

.scroll-hint::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  border-radius: 4px;
  background: var(--cyan);
  animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 38px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}

.btn-primary {
  background: var(--grad-btn);
  color: #fff;
  box-shadow: 0 8px 30px rgba(255, 46, 166, 0.45);
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
  transform: translateX(-110%);
  transition: transform 0.6s ease;
}

.btn-primary:hover::before { transform: translateX(110%); }

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(255, 46, 166, 0.65);
}

.btn-ghost {
  background: var(--surface);
  color: #fff;
  border: 1px solid var(--stroke);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  transform: translateY(-3px);
  border-color: rgba(46, 230, 255, 0.6);
  box-shadow: 0 10px 30px rgba(46, 230, 255, 0.18);
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 100px 0; position: relative; }
.section.alt { background: var(--bg-2); }

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

.section-head .eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
}

.section-head h2 { font-size: clamp(1.9rem, 4.5vw, 3rem); margin-bottom: 16px; }
.section-head p { color: var(--text-dim); font-size: 1.08rem; }

/* ---------- stat strip ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}

.stat {
  text-align: center;
  padding: 34px 20px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--stroke);
}

.stat .num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat .label { color: var(--text-dim); font-size: 0.95rem; margin-top: 4px; }

/* ---------- feature cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}

.card {
  position: relative;
  padding: 36px 30px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--stroke);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.card:hover {
  transform: translateY(-8px);
  background: var(--surface-2);
  border-color: rgba(255, 46, 166, 0.45);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 46, 166, 0.12);
}

.card .icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--grad-btn);
  font-size: 1.6rem;
  margin-bottom: 22px;
  box-shadow: 0 6px 20px rgba(139, 61, 255, 0.4);
}

.card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.card p { color: var(--text-dim); font-size: 0.98rem; }

/* ---------- console logo strip ---------- */
.consoles {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(28px, 6vw, 70px);
  margin-top: 56px;
}

.consoles img {
  height: 64px;
  width: auto;
  object-fit: contain;
  border-radius: 12px;
  filter: grayscale(0.4) brightness(1.6);
  opacity: 0.75;
  transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.consoles img:hover {
  filter: none;
  opacity: 1;
  transform: scale(1.12);
}

/* ============================================================
   CAROUSEL
   ============================================================ */
.carousel {
  display: grid;
  grid-template-columns: 54px 1fr 54px;
  align-items: center;
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
}

.carousel-viewport {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-3);
  border: 1px solid var(--stroke);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}

/* gradient ring around viewport */
.carousel-viewport::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--grad);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.55;
  pointer-events: none;
}

.carousel-viewport img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.carousel-viewport img.fading { opacity: 0; transform: scale(1.03); }

.carousel-btn {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  background: var(--surface);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 26px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.carousel-btn:hover {
  background: var(--surface-2);
  border-color: rgba(255, 46, 166, 0.6);
  transform: scale(1.08);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 22px;
}

.carousel-dots button {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
}

.carousel-dots button.active {
  width: 28px;
  background: var(--grad-btn);
}

@media (max-width: 640px) {
  .carousel { grid-template-columns: 44px 1fr 44px; gap: 10px; }
  .carousel-viewport { aspect-ratio: 4 / 3; }
  .carousel-btn { width: 44px; height: 44px; font-size: 22px; }
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  position: relative;
  text-align: center;
  padding: 110px 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 90% at 50% 120%, rgba(139, 61, 255, 0.35), transparent 70%),
    radial-gradient(ellipse 40% 60% at 15% 0%, rgba(255, 46, 166, 0.16), transparent 70%),
    var(--bg-2);
}

.cta-band h2 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 16px; }
.cta-band p { color: var(--text-dim); font-size: 1.15rem; margin-bottom: 38px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 22px;
}

.contact-card {
  text-align: center;
  padding: 44px 28px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--stroke);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
  border-color: rgba(46, 230, 255, 0.5);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.contact-card .icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--grad-btn);
  font-size: 1.7rem;
  box-shadow: 0 8px 24px rgba(255, 46, 166, 0.4);
}

.contact-card h3 { margin-bottom: 8px; }
.contact-card a, .contact-card p { color: var(--text-dim); font-size: 1.02rem; word-break: break-word; }
.contact-card a:hover { color: #fff; }

/* Google review spotlight */
.review-card {
  position: relative;
  max-width: 640px;
  margin: 70px auto 0;
  text-align: center;
  padding: 54px 36px;
  border-radius: 26px;
  background: var(--surface);
  overflow: hidden;
}

.review-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: var(--grad);
  background-size: 300% 300%;
  animation: gradShift 5s ease-in-out infinite;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.review-card .stars {
  font-size: 1.9rem;
  letter-spacing: 8px;
  margin-bottom: 18px;
  background: linear-gradient(120deg, #ffd34d, #ff9a2e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 14px rgba(255, 211, 77, 0.35));
}

.review-card h3 { font-size: 1.6rem; margin-bottom: 12px; }
.review-card p { color: var(--text-dim); margin-bottom: 30px; }

.review-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 34px;
  border-radius: 999px;
  background: #fff;
  color: #1a1a2e;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.18);
}

.review-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 40px rgba(255, 255, 255, 0.3);
  color: #1a1a2e;
}

.review-btn .g { font-weight: 800; font-size: 1.2rem; }
.review-btn .g span:nth-child(1) { color: #4285F4; }
.review-btn .g span:nth-child(2) { color: #EA4335; }
.review-btn .g span:nth-child(3) { color: #FBBC05; }
.review-btn .g span:nth-child(4) { color: #4285F4; }
.review-btn .g span:nth-child(5) { color: #34A853; }
.review-btn .g span:nth-child(6) { color: #EA4335; }

.google-reviews-embed {
  min-height: 80px;
}

/* ============================================================
   BOOKING PAGE
   ============================================================ */
.booking-shell {
  border-radius: 26px;
  background: var(--surface);
  border: 1px solid var(--stroke);
  padding: clamp(14px, 3vw, 32px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}

.booking-shell .calendly-inline-widget {
  border-radius: 16px;
  overflow: hidden;
}

.booking-notes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.note {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 22px;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--stroke);
  color: var(--text-dim);
  font-size: 0.95rem;
}

.note .n-icon { font-size: 1.4rem; line-height: 1.2; }
.note strong { color: var(--text); }

/* ============================================================
   PRICING PAGE
   ============================================================ */
.price-card {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 44px;
  border-radius: 28px;
  background: var(--surface);
  overflow: hidden;
}

.price-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: var(--grad);
  background-size: 300% 300%;
  animation: gradShift 5s ease-in-out infinite;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.price-card .price {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 9vw, 4.8rem);
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.price-card .per { color: var(--text-dim); margin-bottom: 34px; }

.price-card ul {
  list-style: none;
  text-align: left;
  margin: 0 auto 38px;
  max-width: 340px;
}

.price-card li {
  padding: 10px 0;
  color: var(--text-dim);
  display: flex;
  gap: 12px;
  align-items: baseline;
}

.price-card li::before {
  content: "✦";
  color: var(--pink);
  flex-shrink: 0;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-panel {
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(34px, 5vw, 60px);
  border-radius: 26px;
  background: var(--surface);
  border: 1px solid var(--stroke);
  font-size: 1.12rem;
  color: var(--text-dim);
}

.about-panel p + p { margin-top: 20px; }
.about-panel strong { color: var(--text); }

.badge-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
}

.pill-badge {
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: var(--surface);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text);
}

.pill-badge.hot {
  background: var(--grad-btn);
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(255, 46, 166, 0.35);
}

/* ============================================================
   TERMS PAGE
   ============================================================ */
.terms-body {
  max-width: 820px;
  margin: 0 auto;
  color: var(--text-dim);
}

.terms-body .updated {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--stroke);
  font-size: 0.88rem;
  margin-bottom: 34px;
}

.terms-body h2 {
  font-size: 1.35rem;
  color: var(--text);
  margin: 44px 0 14px;
  padding-left: 16px;
  border-left: 3px solid;
  border-image: var(--grad-btn) 1;
}

.terms-body ul { padding-left: 22px; }
.terms-body li { margin: 8px 0; }
.terms-body strong { color: var(--text); }
.terms-body p { margin: 12px 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--stroke);
  background: var(--bg-2);
  padding: 56px 0 34px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 34px;
  margin-bottom: 40px;
}

.footer-brand img { height: 64px; margin-bottom: 14px; }
.footer-brand p { color: var(--text-dim); font-size: 0.92rem; max-width: 280px; }

.footer-col h4 {
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: var(--text-dim);
  padding: 5px 0;
  font-size: 0.95rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-col a:hover { color: #fff; transform: translateX(4px); }

.footer-bottom {
  border-top: 1px solid var(--stroke);
  padding-top: 26px;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.88rem;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
}

[data-reveal].revealed { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; }
}
