/* ==========================================================================
   MOVEMENT MECHANICS - Design System
   Optimising Motion
   ========================================================================== */

:root {
  --lime: #87ff00;
  --lime-dim: #6bcc00;
  --lime-deep: #4f9900;
  --lime-tint: rgba(135, 255, 0, 0.1);
  --lime-tint-2: rgba(135, 255, 0, 0.18);

  --black: #050505;
  --black-1: #0a0a0a;
  --black-2: #101010;
  --black-3: #161616;
  --border: #232323;
  --border-2: #2c2c2c;

  --white: #ffffff;
  --grey: #a6a6a6;
  --grey-dim: #7a7a7a;
  --grey-dark: #4a4a4a;

  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1240px;
  --radius: 14px;
  --radius-sm: 8px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }
::selection { background: var(--lime); color: var(--black); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 0.5px;
}
h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
p { color: var(--grey); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
section { position: relative; padding: 110px 0; }
@media (max-width: 768px) { section { padding: 70px 0; } }

.text-lime { color: var(--lime); }
.text-white { color: var(--white); }
.text-grey { color: var(--grey); }

/* ---------- Eyebrow / section header ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--lime);
  display: inline-block;
}
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { margin-top: 18px; font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 34px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  transition: transform 0.35s var(--ease), background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--lime); color: var(--black); }
.btn-primary:hover { background: var(--white); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--border-2); }
.btn-outline:hover { border-color: var(--lime); color: var(--lime); transform: translateY(-2px); }
.btn-ghost-lime { background: transparent; color: var(--lime); border-color: var(--lime); }
.btn-ghost-lime:hover { background: var(--lime); color: var(--black); }
.btn-sm { padding: 12px 24px; font-size: 0.75rem; }
.btn-block { width: 100%; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  background: linear-gradient(to bottom, rgba(5,5,5,0.85), transparent);
  transition: background 0.3s ease, padding 0.3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header .container { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px; }
.site-header.scrolled {
  background: rgba(5,5,5,0.92);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  border-bottom-color: var(--border);
}
.brand { display: flex; align-items: center; gap: 10px; z-index: 2; }
.brand img { height: 60px; width: auto; }
.brand-word { font-family: var(--font-display); font-size: 1.05rem; letter-spacing: 1px; }
.brand-word span { color: var(--lime); }
@media (max-width: 480px) { .brand img { height: 48px; } }

.footer-brand img { height: auto; width: 220px; max-width: 60%; }

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--grey);
  position: relative;
  padding: 6px 0;
  transition: color 0.25s ease;
}
.nav-links a:hover { color: var(--lime); }
.nav-links a.active { color: var(--white); }
.nav-links a.active::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px; background: var(--lime);
}
.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  z-index: 2;
  padding: 6px;
}
.nav-toggle span { width: 26px; height: 2px; background: var(--white); transition: all 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: 980px) {
  .nav-links {
    position: fixed; inset: 0;
    background: var(--black);
    flex-direction: column;
    justify-content: center;
    gap: 34px;
    transform: translateY(-100%);
    transition: transform 0.45s var(--ease);
    z-index: 1;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { font-size: 1.3rem; }
  .nav-toggle { display: flex; }
  .nav-cta .btn-outline { display: none; }
}

/* ---------- Preloader ---------- */
#preloader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 22px;
  transition: opacity 0.7s var(--ease), visibility 0.7s var(--ease);
}
#preloader.hide { opacity: 0; visibility: hidden; pointer-events: none; }
.pre-mark { width: 100px; height: 100px; position: relative; }
.pre-mark img {
  width: 100%; height: 100%; object-fit: contain;
  clip-path: inset(100% 0 0 0);
  filter: drop-shadow(0 0 26px rgba(135,255,0,0.45));
  animation: reveal-mark 1.15s var(--ease) forwards 0.15s;
}
.pre-mark .pulse {
  position: absolute; inset: -20px;
  border-radius: 50%;
  border: 1px solid var(--lime);
  opacity: 0;
  animation: pulse-ring 1.8s var(--ease) forwards 0.3s;
}
@keyframes reveal-mark { to { clip-path: inset(0% 0 0 0); } }
@keyframes pulse-ring { 0% { opacity: 0.6; transform: scale(0.7); } 100% { opacity: 0; transform: scale(1.5); } }

.pre-type {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--grey);
  display: flex;
  opacity: 0;
  animation: type-in 0.4s ease forwards 1.3s;
}
@keyframes type-in { to { opacity: 1; } }
.pre-cursor {
  display: inline-block;
  width: 9px; height: 1.1em;
  background: var(--lime);
  margin-left: 4px;
  animation: blink 0.9s steps(1) infinite;
  transform: translateY(2px);
}
@keyframes blink { 50% { opacity: 0; } }
.pre-progress { position: relative; width: 180px; margin-top: 22px; }
.pre-runner {
  position: absolute; left: 0; bottom: 9px;
  width: 34px; height: 34px; object-fit: contain;
  transform: translateX(-50%);
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.55));
  animation: runner-move 1.8s var(--ease) forwards 0.1s;
}
@keyframes runner-move { from { left: 0%; } to { left: 100%; } }
.pre-bar {
  width: 180px; height: 2px;
  background: var(--border-2);
  overflow: hidden;
}
.pre-bar span {
  display: block; height: 100%; width: 0%;
  background: var(--lime);
  animation: bar-fill 1.8s var(--ease) forwards 0.1s;
}
@keyframes bar-fill { to { width: 100%; } }
@media (prefers-reduced-motion: reduce) {
  .pre-runner { animation: none; left: 100%; }
  .pre-bar span { animation: none; width: 100%; }
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 75% 20%, rgba(135,255,0,0.09), transparent 55%), var(--black);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; }
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; } }
.hero-tag {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 3px; color: var(--lime);
  display: flex; align-items: center; gap: 10px; margin-bottom: 26px;
}
.hero-tag::before { content: ''; width: 34px; height: 2px; background: var(--lime); }
.hero h1 { margin-bottom: 24px; }
.hero h1 .outline { -webkit-text-stroke: 1.5px var(--white); color: transparent; }
.hero-sub { font-size: 1.1rem; max-width: 540px; margin-bottom: 38px; }
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; }
.hero-visual { position: relative; }
.hero-visual img { border-radius: var(--radius); }
.hero-visual::before {
  content: '';
  position: absolute; inset: -18px;
  border: 1px solid var(--border-2);
  border-radius: calc(var(--radius) + 12px);
  z-index: -1;
}
.hero-badge {
  position: absolute; bottom: -22px; left: -22px;
  background: var(--lime); color: var(--black);
  padding: 16px 20px; border-radius: var(--radius-sm);
  font-weight: 800; font-size: 0.85rem; line-height: 1.3;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
@media (max-width: 640px) { .hero-badge { left: 0; bottom: -16px; padding: 12px 16px; } }

/* line-art swoosh decoration (pure CSS/SVG, no stock imagery) */
.swoosh { position: absolute; opacity: 0.5; pointer-events: none; z-index: 0; }
.swoosh svg { width: 100%; height: 100%; }

/* ---------- Stats strip ---------- */
.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--lime);
}
.stat-label {
  font-size: 0.72rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--grey);
  margin-top: 8px;
}

/* ---------- Cards ---------- */
.card {
  background: var(--black-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: border-color 0.3s ease, transform 0.3s var(--ease);
  height: 100%;
}
.card:hover { border-color: var(--lime); transform: translateY(-6px); }
.card-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: var(--lime-tint);
  border-radius: var(--radius-sm);
  margin-bottom: 22px;
  color: var(--lime);
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 12px; }
.card p { font-size: 0.94rem; }

.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ---------- Process steps ---------- */
.steps { display: flex; justify-content: space-between; gap: 24px; }
@media (max-width: 768px) { .steps { flex-direction: column; } }
.step { flex: 1; text-align: left; position: relative; }
.step-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--border-2);
  display: block;
  margin-bottom: 10px;
}

/* ---------- Tables ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); }
table { width: 100%; border-collapse: collapse; min-width: 640px; }
th, td { padding: 16px 20px; text-align: left; font-size: 0.9rem; }
thead th {
  background: var(--black-3);
  color: var(--lime);
  font-size: 0.72rem; letter-spacing: 1.5px; text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}
tbody tr { border-bottom: 1px solid var(--border); }
tbody tr:last-child { border-bottom: none; }
tbody tr:hover { background: rgba(135,255,0,0.04); }
td { color: var(--grey); }
td.hl { color: var(--white); font-weight: 600; }

/* ---------- Pricing cards ---------- */
.price-card {
  background: var(--black-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  display: flex; flex-direction: column;
}
.price-card.featured { border-color: var(--lime); background: linear-gradient(180deg, rgba(135,255,0,0.06), transparent 40%), var(--black-2); }
.price-card .tag {
  position: absolute; top: -13px; left: 32px;
  background: var(--lime); color: var(--black);
  font-size: 0.68rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 999px;
}
.price-amount { font-family: var(--font-display); font-size: 2.6rem; margin: 14px 0 4px; }
.price-amount small { font-family: var(--font-body); font-size: 0.9rem; color: var(--grey); text-transform: none; letter-spacing: 0; font-weight: 500; }
.price-list { margin: 24px 0 30px; display: flex; flex-direction: column; gap: 12px; }
.price-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: var(--grey); }
.price-list li::before { content: '✓'; color: var(--lime); font-weight: 800; flex-shrink: 0; }

/* ---------- Founder / team ---------- */
.founder-card { text-align: center; }
.founder-photo {
  width: 100%; aspect-ratio: 1/1; border-radius: var(--radius);
  overflow: hidden; margin-bottom: 22px; border: 1px solid var(--border);
  background: var(--black-2);
}
.founder-photo img { width: 100%; height: 100%; object-fit: cover; }
.founder-name { font-family: var(--font-display); font-size: 1.4rem; color: var(--lime); }
.founder-role { font-size: 0.78rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--grey); margin: 6px 0 16px; }
.founder-quals { text-align: left; display: inline-block; }
.founder-quals li { font-size: 0.88rem; color: var(--grey); padding-left: 18px; position: relative; margin-bottom: 8px; }
.founder-quals li::before { content: ''; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; background: var(--lime); }

/* ---------- Partner / ambassador cards ---------- */
.partner-card {
  background: var(--black-2);
  border: 1px dashed var(--border-2);
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  transition: border-color 0.3s ease;
}
.partner-card.active { border-style: solid; }
.partner-card:hover { border-color: var(--lime); }
.partner-logo-slot {
  width: 92px; height: 92px; border-radius: 50%;
  background: var(--black-3); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--grey-dim); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--lime);
  color: var(--black);
  border-radius: var(--radius);
  padding: 60px;
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
}
.cta-band h2 { color: var(--black); }
.cta-band p { color: rgba(5,5,5,0.7); margin-top: 10px; }
.cta-band .btn-primary { background: var(--black); color: var(--lime); }
.cta-band .btn-primary:hover { background: var(--black-2); }
@media (max-width: 768px) { .cta-band { padding: 40px 28px; } }

/* ---------- Footer ---------- */
.site-footer {
  background: radial-gradient(ellipse at 15% 0%, rgba(135,255,0,0.09), transparent 55%), var(--black-1);
  border-top: 1px solid var(--border);
  padding: 90px 0 30px;
  position: relative; overflow: hidden;
}
.site-footer::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--lime), transparent);
  opacity: 0.6;
}
.site-footer .container { position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 60px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h4 {
  font-family: var(--font-body); font-size: 0.75rem; letter-spacing: 2px; color: var(--white);
  margin-bottom: 20px; text-transform: uppercase;
  position: relative; padding-bottom: 12px;
}
.footer-col h4::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 26px; height: 2px;
  background: var(--lime); box-shadow: 0 0 8px rgba(135,255,0,0.6);
}
.footer-col a, .footer-col p { font-size: 0.9rem; color: var(--grey); display: block; margin-bottom: 12px; transition: color 0.2s ease, transform 0.2s ease; }
.footer-col a:hover { color: var(--lime); transform: translateX(3px); }
.footer-col a.btn-primary, .footer-col a.btn-primary:hover { color: var(--black); }
.footer-brand img { margin-bottom: 18px; }
.footer-brand p { max-width: 280px; font-size: 0.9rem; }
.social-row { display: flex; gap: 10px; margin: 0; }
.social-row a {
  width: 32px; height: 32px; border: 1px solid var(--border-2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.social-row a:hover { border-color: var(--lime); background: var(--lime-tint); transform: translateY(-3px); }
.social-row svg { width: 14px; height: 14px; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 26px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  font-size: 0.78rem; color: var(--grey-dim);
}
.footer-bottom a { color: var(--grey-dim); }
.footer-bottom a:hover { color: var(--lime); }
.footer-tagline {
  display: inline-flex; align-items: center; gap: 8px;
  text-transform: uppercase; letter-spacing: 2.5px; font-weight: 700;
  font-size: 0.7rem; color: var(--lime);
}
.footer-tagline-mark { width: 16px; height: 16px; object-fit: contain; filter: drop-shadow(0 0 6px rgba(135,255,0,0.55)); }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.75rem; letter-spacing: 1px; text-transform: uppercase; color: var(--grey); font-weight: 600; }
.field input, .field select, .field textarea {
  background: var(--black-2);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--white);
  font-size: 0.95rem;
  transition: border-color 0.25s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--lime); }
.field textarea { resize: vertical; min-height: 120px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23a6a6a6'%3E%3Cpath d='M5 7l5 6 5-6z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.form-note { font-size: 0.8rem; color: var(--grey-dim); margin-top: 16px; }
.file-field { position: relative; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.file-field input[type="file"] { position: absolute; width: 1px; height: 1px; opacity: 0; overflow: hidden; pointer-events: none; }
.file-field-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 22px; border: 1px solid var(--border-2); border-radius: var(--radius-sm);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: var(--white); cursor: pointer; flex-shrink: 0;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.file-field-btn:hover { border-color: var(--lime); color: var(--lime); background: var(--lime-tint); }
.file-field-name { font-size: 0.85rem; color: var(--grey); word-break: break-all; }
.form-success {
  display: none;
  background: var(--lime-tint); border: 1px solid var(--lime);
  color: var(--lime); padding: 18px 22px; border-radius: var(--radius-sm);
  font-weight: 600; margin-bottom: 24px; font-size: 0.92rem;
}
.form-success.show { display: block; }
.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; }

/* ---------- Reveal on scroll ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
[data-reveal].in { opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  padding-top: 170px; padding-bottom: 70px;
  background: radial-gradient(ellipse at 80% 0%, rgba(135,255,0,0.08), transparent 60%), var(--black);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb { font-size: 0.75rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--grey-dim); margin-bottom: 18px; }
.breadcrumb .lime { color: var(--lime); }

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.center { text-align: center; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-16 { gap: 16px; }
.divider { width: 100%; height: 1px; background: var(--border); margin: 60px 0; }
.pill {
  display: inline-block; padding: 6px 16px; border-radius: 999px;
  border: 1px solid var(--border-2); font-size: 0.72rem; letter-spacing: 1px; text-transform: uppercase; color: var(--grey);
}
.img-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.img-frame img { width: 100%; }

/* ---------- Floating WhatsApp (enabled via JS if number configured) ---------- */
.wa-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 500;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--lime); display: none; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 0 rgba(135,255,0,0.5);
  transition: bottom 0.3s ease, transform 0.3s var(--ease), box-shadow 0.3s ease;
}
.wa-float:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 14px 34px rgba(0,0,0,0.5), 0 0 26px rgba(135,255,0,0.5); }
.wa-float.show { display: flex; }
.wa-float svg { width: 28px; height: 28px; fill: var(--black); }

/* ---------- Header call button (icon only - taps to dial) ---------- */
.nav-call {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; flex-shrink: 0;
  border: 1px solid var(--border-2); border-radius: 50%;
  color: var(--white);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.nav-call svg { width: 17px; height: 17px; color: var(--lime); flex-shrink: 0; }
.nav-call:hover { border-color: var(--lime); background: var(--lime-tint); transform: translateY(-2px); }

/* ---------- Running-men marquee ---------- */
.marquee {
  overflow: hidden; white-space: nowrap; position: relative;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--black-1); padding: 22px 0;
}
.marquee-track {
  display: inline-flex; align-items: center; gap: 70px;
  animation: marquee-scroll 26s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track img { height: 46px; width: auto; opacity: 0.95; }
.marquee-word {
  font-family: var(--font-display); font-size: 1rem; letter-spacing: 3px;
  color: var(--grey-dim); text-transform: uppercase; display: inline-flex; align-items: center; gap: 70px;
}
.marquee-word .lime-dot { color: var(--lime); }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Tabs ---------- */
.tab-nav-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }
.tab-btn2 {
  padding: 14px 26px; border-radius: 999px; border: 1.5px solid var(--border-2);
  background: transparent; color: var(--grey); font-weight: 700; font-size: 0.8rem;
  letter-spacing: 1px; text-transform: uppercase; transition: all 0.25s ease;
}
.tab-btn2:hover { border-color: var(--lime); color: var(--white); }
.tab-btn2.active { background: var(--lime); border-color: var(--lime); color: var(--black); }
[data-tab-panel] { display: none; }
[data-tab-panel].active { display: block; animation: fadein-up 0.45s ease; }
@keyframes fadein-up { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- Tilt ---------- */
[data-tilt] { transition: transform 0.25s ease; transform-style: preserve-3d; }

/* ---------- Testimonial carousel ---------- */
.carousel { position: relative; max-width: 820px; margin: 0 auto; overflow: hidden; }
.carousel-track { display: flex; transition: transform 0.6s var(--ease); }
.carousel-slide { flex: 0 0 100%; padding: 0 6px; }
.testimonial-card {
  background: var(--black-2); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 50px 44px; text-align: center;
}
.testimonial-stars { color: var(--lime); font-size: 1.15rem; letter-spacing: 4px; margin-bottom: 22px; }
.testimonial-quote { font-size: 1.15rem; color: var(--white); line-height: 1.65; margin-bottom: 26px; font-style: italic; }
.testimonial-name { font-weight: 700; color: var(--lime); font-size: 0.82rem; letter-spacing: 1px; text-transform: uppercase; }
.testimonial-role { font-size: 0.8rem; color: var(--grey-dim); margin-top: 4px; }
.carousel-controls { display: flex; align-items: center; justify-content: center; gap: 22px; margin-top: 36px; }
.carousel-arrow {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--border-2);
  background: transparent; color: var(--white); display: flex; align-items: center;
  justify-content: center; font-size: 1.3rem; transition: 0.25s ease; flex-shrink: 0;
}
.carousel-arrow:hover { border-color: var(--lime); color: var(--lime); }
.carousel-dots { display: flex; gap: 8px; }
.carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border-2); border: none; padding: 0; cursor: pointer; }
.carousel-dot.active { background: var(--lime); width: 24px; border-radius: 4px; transition: all 0.3s ease; }

/* ---------- Gallery + lightbox ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 860px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-item {
  position: relative; border-radius: var(--radius-sm); overflow: hidden; cursor: pointer;
  aspect-ratio: 4/5; border: 1px solid var(--border);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,5,5,0.88), transparent 55%);
  opacity: 0; transition: 0.3s ease; display: flex; align-items: flex-end; padding: 18px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { font-size: 0.82rem; font-weight: 700; color: #fff; }
.gallery-item.placeholder {
  display: flex; align-items: center; justify-content: center;
  background: var(--black-2); border-style: dashed; cursor: default;
}
.gallery-item.placeholder:hover img { transform: none; }
.gallery-item.placeholder p { color: var(--grey-dim); font-size: 0.85rem; text-align: center; padding: 24px; }

.lightbox-overlay {
  position: fixed; inset: 0; background: rgba(5,5,5,0.95); z-index: 5000;
  display: none; align-items: center; justify-content: center; flex-direction: column;
  opacity: 0; transition: opacity 0.3s ease;
}
.lightbox-overlay.open { display: flex; opacity: 1; }
.lightbox-img { max-width: 88vw; max-height: 78vh; border-radius: var(--radius-sm); box-shadow: 0 30px 80px rgba(0,0,0,0.5); }
.lightbox-caption { color: var(--grey); font-size: 0.85rem; margin-top: 18px; }
.lightbox-close { position: absolute; top: 24px; right: 30px; background: none; border: none; color: #fff; font-size: 2.2rem; line-height: 1; cursor: pointer; }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.08); border: 1px solid var(--border-2); color: #fff;
  width: 52px; height: 52px; border-radius: 50%; font-size: 1.8rem;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.lightbox-nav.prev { left: 24px; }
.lightbox-nav.next { right: 24px; }
.lightbox-nav:hover { border-color: var(--lime); color: var(--lime); }
@media (max-width: 640px) {
  .lightbox-nav { width: 40px; height: 40px; font-size: 1.4rem; }
  .lightbox-close { top: 14px; right: 16px; }
}

/* ---------- Dashboard preview (Schools page) ---------- */
.dash-preview { background: var(--black-2); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.dash-topbar { display: flex; align-items: center; gap: 8px; padding: 16px 20px; border-bottom: 1px solid var(--border); background: var(--black-3); }
.dash-dot { width: 10px; height: 10px; border-radius: 50%; }
.dash-dot.r { background: #ff5f56; } .dash-dot.y { background: #ffbd2e; } .dash-dot.g { background: #27c93f; }
.dash-title { margin-left: 10px; font-size: 0.75rem; color: var(--grey-dim); letter-spacing: 1px; }
.dash-body { padding: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
@media (max-width: 768px) { .dash-body { grid-template-columns: 1fr; } }
.dash-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.dash-stat { background: var(--black-3); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 18px; }
.dash-stat .stat-num { font-size: 1.7rem; }
.dash-stat .stat-label { font-size: 0.62rem; }
.dash-bar-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.dash-bar-row:last-child { margin-bottom: 0; }
.dash-bar-label { width: 120px; font-size: 0.75rem; color: var(--grey); flex-shrink: 0; }
.dash-bar-track { flex: 1; height: 8px; background: var(--black-3); border-radius: 999px; overflow: hidden; }
.dash-bar-fill { height: 100%; background: var(--lime); border-radius: 999px; width: 0%; transition: width 1.4s var(--ease); }
.dash-bar-row.in .dash-bar-fill { width: var(--w, 60%); }

/* ---------- Scroll progress: the runner IS the indicator (vertical, right edge) ---------- */
.scroll-progress-track {
  position: fixed; top: 140px; bottom: 140px; right: 40px; width: 5px; z-index: 850;
  background: var(--border); pointer-events: none; border-radius: 999px;
}
.scroll-runner {
  position: absolute; top: 0%; left: 50%;
  width: 92px; height: 135px;
  transform: translate(-50%, -50%) rotate(90deg);
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(135,255,0,0.85)) drop-shadow(0 6px 14px rgba(0,0,0,0.65));
  transition: top 0.08s linear;
  pointer-events: none;
  z-index: 851;
}
.scroll-finish {
  position: absolute; left: 50%; bottom: -14px; transform: translateX(-50%);
  font-size: 34px; line-height: 1; pointer-events: none; z-index: 851;
  filter: drop-shadow(0 0 6px rgba(0,0,0,0.7));
}
@media (max-width: 1200px) {
  .scroll-runner { width: 64px; height: 94px; }
  .scroll-finish { font-size: 26px; }
}
@media (max-width: 768px) {
  .scroll-progress-track { display: none; }
}

/* ---------- Custom cursor (fine-pointer devices only) ---------- */
.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999; border-radius: 50%; will-change: transform; }
.cursor-dot { width: 7px; height: 7px; background: var(--lime); transform: translate(-50%, -50%); }
.cursor-ring {
  width: 38px; height: 38px; border: 1.5px solid rgba(135,255,0,0.55);
  transform: translate(-50%, -50%); transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.cursor-ring.hover { width: 62px; height: 62px; background: rgba(135,255,0,0.08); border-color: var(--lime); }
html.has-custom-cursor, html.has-custom-cursor * { cursor: none !important; }

/* ---------- Hero spotlight + floating blobs (homepage) ---------- */
.hero-spotlight {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background: radial-gradient(420px circle at var(--x, 50%) var(--y, 30%), rgba(135,255,0,0.13), transparent 70%);
  transition: background 0.15s ease;
}
.blob {
  position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.35; pointer-events: none; z-index: 0;
  animation: blob-float 14s ease-in-out infinite;
}
.blob-lime { background: var(--lime); }
.blob-1 { width: 340px; height: 340px; top: -80px; right: 8%; animation-delay: 0s; }
.blob-2 { width: 260px; height: 260px; bottom: -60px; left: 4%; animation-delay: -6s; opacity: 0.22; }
@keyframes blob-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -25px) scale(1.08); }
  66% { transform: translate(-20px, 20px) scale(0.94); }
}
@media (prefers-reduced-motion: reduce) {
  .blob { animation: none; }
}

/* ---------- Hero heading staggered reveal ---------- */
.reveal-word { display: inline-block; overflow: hidden; }
.reveal-word span { display: inline-block; transform: translateY(110%); animation: word-up 0.8s var(--ease) forwards; }
@keyframes word-up { to { transform: translateY(0); } }

/* ---------- Magnetic buttons ---------- */
.magnetic { will-change: transform; }

/* ---------- Careers / job cards ---------- */
.job-card-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.job-card-top h3 { font-size: 1.15rem; }
.jobs-empty {
  border: 1px dashed var(--border-2); border-radius: var(--radius);
  padding: 40px; text-align: center; color: var(--grey);
}
.jobs-loading { text-align: center; color: var(--grey-dim); font-size: 0.85rem; padding: 20px; }

/* ---------- Venue grid (testing locations) ---------- */
.venue-card {
  background: var(--black-2); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 24px; text-align: center; transition: border-color 0.3s ease, transform 0.3s var(--ease);
}
.venue-card:hover { border-color: var(--lime); transform: translateY(-6px); }
.venue-card .card-icon { margin: 0 auto 18px; }

/* ---------- Sticky mobile call bar ---------- */
.mobile-callbar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 600; background: var(--black-1); border-top: 1px solid var(--border); display: none; }
@media (max-width: 768px) {
  .mobile-callbar { display: flex; }
  body { padding-bottom: 60px; }
  .wa-float.show { bottom: 78px; }
}
.mobile-callbar a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 0; font-size: 0.74rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--white); border-right: 1px solid var(--border);
}
.mobile-callbar a:last-child { border-right: none; background: var(--lime); color: var(--black); }
.mobile-callbar svg { width: 15px; height: 15px; }
