/* =========================================
   spxtslaipox — Global Stylesheet
   Theme: Deep black / dark blue
   ========================================= */

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #0a0a0a;
  --card:     #121212;
  --card2:    #181818;
  --border:   #222;
  --border2:  #2a2a2a;
  --text:     #e8e8e8;
  --muted:    #888;
  --accent1:  #1a6fff;
  --accent2:  #0a3fa0;
  --grad:     linear-gradient(135deg, #1a6fff 0%, #0a3fa0 100%);
  --grad-soft:linear-gradient(135deg, rgba(26,111,255,.12) 0%, rgba(10,63,160,.12) 100%);
  --auth-bg:  #060d1a;
  --glow:     0 0 24px rgba(26,111,255,.55);
  --glow-sm:  0 0 12px rgba(26,111,255,.35);
  --radius:   12px;
  --radius-sm:8px;
  --font:     'Inter', sans-serif;
  --font-display: 'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }
select, input, textarea {
  font-family: var(--font);
  font-size: 0.95rem;
  background: #1a1a1a;
  color: var(--text);
  border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  width: 100%;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
select:focus, input:focus, textarea:focus {
  border-color: var(--accent1);
  box-shadow: 0 0 0 3px rgba(255,75,75,.15);
}
textarea { resize: vertical; }

/* --- TYPOGRAPHY --- */
h1,h2,h3,h4 { font-family: var(--font-display); line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 6vw, 5rem); font-weight: 900; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; }

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: .5rem;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .65rem 1.4rem;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .03em;
  transition: all .25s;
  white-space: nowrap;
}
.btn-glow {
  background: var(--grad);
  color: #fff;
  box-shadow: var(--glow-sm);
}
.btn-glow:hover {
  box-shadow: var(--glow);
  transform: translateY(-2px);
  filter: brightness(1.1);
}
.btn-outline {
  border: 1px solid var(--border2);
  color: var(--text);
}
.btn-outline:hover {
  border-color: var(--accent1);
  color: var(--accent1);
  background: rgba(255,75,75,.06);
}
.btn-full { width: 100%; }
.btn-lg { padding: .85rem 2rem; font-size: 1rem; }

/* --- CONTAINER & LAYOUT --- */
.container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 6rem 0; }
.section-dark { background: var(--card); }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { margin-top: .5rem; }

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 0 1.5rem;
  background: rgba(10,10,10,.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 64px;
  gap: 2rem;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: -.02em;
  flex-shrink: 0;
}
.nav-logo span { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.nav-links {
  display: flex;
  gap: 1.75rem;
  flex: 1;
  justify-content: center;
}
.nav-link {
  font-size: .875rem;
  color: var(--muted);
  font-weight: 500;
  transition: color .2s;
}
.nav-link:hover { color: var(--text); }
.nav-actions { display: flex; gap: .75rem; margin-left: auto; flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE MENU */
.mobile-menu {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: rgba(12,12,12,.97);
  backdrop-filter: blur(20px);
  padding: 2rem 1.5rem;
  border-bottom: 1px solid var(--border);
  z-index: 850;
  transform: translateY(-20px);
  opacity: 0;
  pointer-events: none;
  transition: all .3s;
}
.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
  display: flex;
}
.mob-link {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--muted);
  transition: color .2s;
}
.mob-link:hover { color: var(--text); }

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  height: 300vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  z-index: 0;
;
}
.hero-overlay {
  position: absolute;
  inset: 0;
;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 1.5rem 0 max(1.5rem, calc((100vw - 1140px)/2 + 1.5rem));
}
.hero-eyebrow { margin-bottom: 1rem; }
.hero-title {
  color: #fff;
  text-shadow: 0 2px 30px rgba(0,0,0,.6);
  margin-bottom: 1.5rem;
  line-height: 1.05;
}
.hero-sub {
  color: rgba(255,255,255,.7);
  font-size: 1.1rem;
  max-width: 500px;
  margin-bottom: 2.5rem;
}


/*..................................*/

.her {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.her-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: 0;
  filter: brightness(.45) saturate(.8);
}
.her-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.her-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 1.5rem 0 max(1.5rem, calc((100vw - 1140px)/2 + 1.5rem));
}
.her-eyebrow { margin-bottom: 1rem; }
.her-title {
  color: #fff;
  text-shadow: 0 2px 30px rgba(0,0,0,.6);
  margin-bottom: 1.5rem;
  line-height: 1.05;
}
.her-sub {
  color: rgba(255,255,255,.7);
  font-size: 1.1rem;
  max-width: 500px;
  margin-bottom: 2.5rem;
}

/* =========================================
   ABOUT
   ========================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--border2);
}
.about-image img { border-radius: var(--radius); transition: transform .6s; }
.about-image:hover img { transform: scale(1.04); }
.img-glow {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 60px;
  background: var(--accent1);
  filter: blur(40px);
  opacity: .3;
  pointer-events: none;
}
.about-text h2 { margin: .5rem 0 1rem; }
.about-text p { color: var(--muted); margin-bottom: .75rem; }

/* =========================================
   SERVICES
   ========================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--card2);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.service-card:hover {
  border-color: var(--accent1);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(255,75,75,.12);
}
.service-icon { font-size: 2rem; margin-bottom: 1rem; }
.service-card h3 { margin-bottom: .6rem; }
.service-card p { color: var(--muted); font-size: .9rem; }

/* =========================================
   PLANS
   ========================================= */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  align-items: start;
}
.plan-card {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  position: relative;
  transition: border-color .25s, transform .25s;
}
.plan-card:hover { border-color: var(--accent1); transform: translateY(-4px); }
.plan-featured {
  border-color: var(--accent1);
  background: linear-gradient(135deg, rgba(255,75,75,.07) 0%, rgba(255,140,0,.07) 100%);
  transform: scale(1.02);
}
.plan-featured:hover { transform: scale(1.02) translateY(-4px); }
.plan-badge {
  position: absolute;
  top: -12px;
  left: 1.5rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--grad);
  color: #fff;
  padding: .25rem .8rem;
  border-radius: 50px;
}
.plan-icon { font-size: 2.4rem; margin-bottom: 1rem; }
.plan-card h3 { margin-bottom: .75rem; }
.plan-roi {
  font-size: 2.5rem;
  font-weight: 900;
  font-family: var(--font-display);
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}
.plan-roi span { font-size: 1rem; color: var(--muted); -webkit-text-fill-color: var(--muted); }
.plan-details { margin-bottom: 2rem; display: flex; flex-direction: column; gap: .6rem; }
.plan-details li {
  display: flex;
  justify-content: space-between;
  font-size: .875rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid var(--border);
}
.plan-details li span { color: var(--muted); }
.plan-details li:last-child { border-bottom: none; }

/* =========================================
   GALLERY
   ========================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.gallery-item {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border2);
  cursor: pointer;
}
.gallery-item img { transition: transform .5s; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.8), transparent);
  padding: 1.5rem 1rem .75rem;
  transform: translateY(100%);
  transition: transform .3s;
}
.gallery-item:hover .gallery-overlay { transform: translateY(0); }
.gallery-overlay p { font-size: .875rem; font-weight: 600; color: #fff; }

/* =========================================
   SUPPORT
   ========================================= */
.support-box {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 3.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.support-text h2 { margin-top: .5rem; margin-bottom: .75rem; }
.support-text p { color: var(--muted); max-width: 500px; }
.support-actions { display: flex; gap: 1rem; flex-shrink: 0; }

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 3rem 0;
  text-align: center;
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.footer-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.4rem;
}
.footer-logo span { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.footer-tagline { color: var(--muted); font-size: .875rem; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
.footer-links a { color: var(--muted); font-size: .8rem; transition: color .2s; }
.footer-links a:hover { color: var(--text); }
.footer-copy { color: #555; font-size: .75rem; }

/* =========================================
   AUTH PAGES
   ========================================= */
.auth-body {
  background: var(--auth-bg);
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 3rem 1.5rem;
}
.auth-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(255,75,75,.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(255,140,0,.06) 0%, transparent 60%);
  pointer-events: none;
}
.auth-container {
  position: relative;
  z-index: 1;
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 2.5rem 2.5rem;
  width: 100%;
  max-width: 820px;
  box-shadow: 0 24px 80px rgba(0,0,0,.4);
}
.auth-container--narrow { max-width: 480px; }
.auth-logo {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.3rem;
  margin-bottom: 1.75rem;
}
.auth-logo span { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.auth-title { font-size: 1.75rem; margin-bottom: .4rem; }
.auth-sub { color: var(--muted); font-size: .9rem; margin-bottom: 2rem; }

.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .8rem; font-weight: 600; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; }

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.captcha-group { margin-bottom: 1.25rem; }
.captcha-row { display: flex; gap: .75rem; align-items: center; }
.captcha-box {
  background: #1f1f1f;
  border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  padding: .75rem 1.25rem;
  font-family: 'Courier New', monospace;
  font-size: 1.1rem;
  letter-spacing: .2em;
  color: var(--accent2);
  white-space: nowrap;
  flex-shrink: 0;
  user-select: none;
}
.captcha-input { flex: 1; }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .875rem;
  color: var(--muted);
}
.form-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--accent1);
}
.form-check a { color: var(--accent1); text-decoration: underline; }

.auth-form { display: flex; flex-direction: column; gap: 1rem; }

/* Password toggle */
.password-wrap { position: relative; }
.password-wrap input { padding-right: 3rem; }
.pwd-toggle {
  position: absolute;
  right: .75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  padding: .25rem;
  transition: color .2s;
}
.pwd-toggle:hover { color: var(--text); }

.login-utility {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .875rem;
}
.remember-me { display: flex; align-items: center; gap: .5rem; color: var(--muted); cursor: pointer; }
.remember-me input { width: auto; accent-color: var(--accent1); }
.forgot-link { color: var(--accent1); }
.forgot-link:hover { text-decoration: underline; }

.auth-footer { text-align: center; margin-top: 1.5rem; color: var(--muted); font-size: .875rem; }
.auth-footer a { color: var(--accent1); font-weight: 600; }

/* =========================================
   DASHBOARD
   ========================================= */
.dash-body { background: #0d0d0d; }

.dash-topbar {
  position: sticky;
  top: 0;
  z-index: 800;
  background: rgba(13,13,13,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.dash-topbar-right { display: flex; align-items: center; gap: 1rem; }
.user-widget { display: flex; align-items: center; gap: .75rem; }
.user-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}
.user-greeting { font-size: .7rem; color: var(--muted); }
.user-name { font-size: .9rem; font-weight: 600; line-height: 1; }

.dash-main { padding: 2.5rem 2rem; }
.dash-container { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; gap: 2rem; }

/* Stats row */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.stat-card {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
}
.stat-label { font-size: .75rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: .4rem; }
.stat-value { font-size: 1.75rem; font-weight: 50; font-family: var(--font-display); margin-bottom: .25rem; }
.stat-change { font-size: .8rem; color: var(--muted); }
.stat-change.positive { color: #39d353; }

/* Equity grid */
.equity-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 1.5rem;
  align-items: start;
}
.equity-chart-panel,
.equity-table-panel {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 2rem;
}
.panel-title { font-size: 1rem; font-weight: 700; margin-bottom: 1.75rem; }

.donut-wrap { display: flex; justify-content: center; margin-bottom: 1.75rem; }
.donut-svg { width: 200px; height: 200px; transform: rotate(-90deg); }
.donut-seg { transition: opacity .3s; }
.donut-svg text { transform: rotate(90deg); transform-origin: 100px 100px; }

.donut-legend { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem .5rem; }
.legend-item { display: flex; align-items: center; gap: .5rem; font-size: .8rem; color: var(--muted); }
.legend-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }

/* Sector table */
.sector-table { width: 100%; border-collapse: collapse; }
.sector-table th {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: .5rem .75rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.sector-table td {
  padding: .85rem .75rem;
  border-bottom: 1px solid var(--border);
  font-size: .875rem;
  vertical-align: middle;
}
.sector-table tr:last-child td { border-bottom: none; }

.sector-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  padding: .2rem .65rem;
  border-radius: 50px;
  background: rgba(var(--tag-color), .12);
  border: 1px solid var(--tag-color);
  color: var(--tag-color);
  /* CSS custom properties can't be used in rgba directly, so we use the color on border */
}

.alloc-bar {
  display: inline-block;
  width: 80px;
  height: 5px;
  background: var(--border2);
  border-radius: 10px;
  overflow: hidden;
  vertical-align: middle;
  margin-right: .5rem;
}
.alloc-bar div { height: 100%; border-radius: 10px; }
.sector-table td:last-child { white-space: nowrap; }

.table-footer {
  display: flex;
  justify-content: space-between;
  padding: 1rem .75rem 0;
  border-top: 1px solid var(--border2);
  font-size: .875rem;
  color: var(--muted);
  margin-top: .5rem;
}
.table-footer strong { color: var(--text); font-weight: 700; }

/* =========================================
   MODAL
   ========================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.modal-overlay.modal-open {
  opacity: 1;
  pointer-events: all;
}
.modal-card {
  background: #161616;
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 2.5rem;
  width: 100%;
  max-width: 480px;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,.5), var(--glow-sm);
  transform: translateY(20px);
  transition: transform .3s;
}
.modal-overlay.modal-open .modal-card { transform: translateY(0); }

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: var(--muted);
  font-size: 1.1rem;
  padding: .3rem .5rem;
  border-radius: 6px;
  transition: background .2s, color .2s;
}
.modal-close:hover { background: var(--border); color: var(--text); }

.modal-title { margin-bottom: .3rem; }
.modal-sub { color: var(--muted); font-size: .875rem; margin-bottom: 1.75rem; }
.modal-form { display: flex; flex-direction: column; gap: 1.1rem; }

/* =========================================
   TOAST
   ========================================= */
.success-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: #0e2a18;
  border: 1px solid #39d353;
  color: #39d353;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .9rem;
  z-index: 2000;
  opacity: 0;
  transition: all .4s;
  white-space: nowrap;
}
.success-toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* =========================================
   SCROLL ANIMATIONS
   ========================================= */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger siblings */
.services-grid .animate-on-scroll:nth-child(2) { transition-delay: .1s; }
.services-grid .animate-on-scroll:nth-child(3) { transition-delay: .2s; }
.services-grid .animate-on-scroll:nth-child(4) { transition-delay: .3s; }
.plans-grid .animate-on-scroll:nth-child(2) { transition-delay: .1s; }
.plans-grid .animate-on-scroll:nth-child(3) { transition-delay: .2s; }
.gallery-grid .animate-on-scroll:nth-child(2) { transition-delay: .1s; }
.gallery-grid .animate-on-scroll:nth-child(3) { transition-delay: .15s; }
.gallery-grid .animate-on-scroll:nth-child(4) { transition-delay: .25s; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 900px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .support-box { flex-direction: column; text-align: center; }
  .support-actions { justify-content: center; flex-wrap: wrap; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .equity-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .dash-topbar-right { gap: .6rem; }
  .dash-topbar { padding: 0 1rem; }
}

@media (max-width: 600px) {
  .hero-content { padding: 0 1.5rem; }
  .section { padding: 4rem 0; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .auth-container { padding: 2rem 1.5rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .support-actions { flex-direction: column; width: 100%; }
  .support-actions .btn { width: 100%; }
  .dash-topbar { padding: 0 1rem; }
  .user-greeting, .user-name { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
