/* ============================================================================
   Arian Client — web portal design system
   Aesthetic: deep-black + pure-white base, glowing digital-purple accents,
   premium glassmorphism, minimalist, smooth motion.
   ============================================================================ */

:root {
  --bg: #06060a;
  --bg-2: #0a0a12;
  --panel: rgba(255, 255, 255, 0.026);
  --panel-2: rgba(255, 255, 255, 0.05);
  --stroke: rgba(255, 255, 255, 0.08);
  --stroke-brand: rgba(168, 85, 247, 0.32);
  --text: #f5f5fb;
  --muted: rgba(245, 245, 251, 0.56);
  --faint: rgba(245, 245, 251, 0.34);
  --brand: #a855f7;
  --brand-2: #8b5cf6;
  --brand-3: #c4a3ff;
  --brand-ink: #7c3aed;
  --glow: rgba(168, 85, 247, 0.5);
  --good: #4ade80;
  --bad: #f87171;
  --warn: #fbbf24;
  --r: 20px;
  --r-sm: 13px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --shadow: 0 30px 80px -40px rgba(0, 0, 0, 0.9);
  --shadow-glow: 0 24px 70px -28px var(--glow);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}

/* ---- animated ambient background ------------------------------------------ */
.bg-fx { position: fixed; inset: 0; z-index: -3; overflow: hidden; pointer-events: none; }
.bg-fx::before {
  content: '';
  position: absolute; inset: -20%;
  background:
    radial-gradient(38% 40% at 18% 12%, rgba(139, 92, 246, 0.20), transparent 60%),
    radial-gradient(36% 42% at 88% 8%, rgba(168, 85, 247, 0.16), transparent 60%),
    radial-gradient(46% 50% at 50% 108%, rgba(124, 58, 237, 0.16), transparent 60%);
  filter: blur(10px);
  animation: aurora 22s var(--ease) infinite alternate;
}
@keyframes aurora {
  0%   { transform: translate3d(0,0,0) scale(1); }
  50%  { transform: translate3d(2%, -2%, 0) scale(1.06); }
  100% { transform: translate3d(-2%, 1%, 0) scale(1.02); }
}
/* faint grid that fades toward the edges */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background-image:
    linear-gradient(rgba(168, 85, 247, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 85, 247, 0.032) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at 50% 22%, #000 0%, transparent 78%);
  -webkit-mask-image: radial-gradient(circle at 50% 22%, #000 0%, transparent 78%);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { background: rgba(168, 85, 247, 0.35); color: #fff; }
:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; border-radius: 4px; }

/* custom scrollbar */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(168, 85, 247, 0.28); border-radius: 99px; border: 3px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: rgba(168, 85, 247, 0.5); }

.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ============================ scroll reveal ============================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

/* ============================ navigation ============================ */
.nav {
  position: sticky; top: 0; z-index: 60;
  transition: background .35s var(--ease), border-color .35s var(--ease), backdrop-filter .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(8, 8, 14, 0.72);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom-color: var(--stroke);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 18px; letter-spacing: -0.02em; }
.brand .logo {
  width: 36px; height: 36px; border-radius: 11px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #fff; font-weight: 900; font-size: 18px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.08) inset, 0 8px 24px -6px var(--glow);
  transition: transform .4s var(--ease);
}
.brand:hover .logo { transform: rotate(-8deg) scale(1.06); }
.brand .accent { color: var(--brand-3); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a:not(.btn) {
  position: relative; padding: 9px 14px; border-radius: 10px; font-size: 14px; font-weight: 600;
  color: var(--muted); transition: color .25s var(--ease);
}
.nav-links a:not(.btn)::after {
  content: ''; position: absolute; left: 14px; right: 14px; bottom: 5px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--brand), var(--brand-3));
  transform: scaleX(0); transform-origin: center; transition: transform .3s var(--ease); opacity: .9;
}
.nav-links a:not(.btn):hover { color: var(--text); }
.nav-links a:not(.btn):hover::after { transform: scaleX(1); }
.nav-toggle { display: none; background: none; border: 0; color: var(--text); font-size: 22px; cursor: pointer; padding: 6px; }

/* ============================ buttons ============================ */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  height: 48px; padding: 0 24px; border-radius: 12px; border: 1px solid transparent; overflow: hidden;
  font-family: var(--font); font-size: 14.5px; font-weight: 700; cursor: pointer; white-space: nowrap;
  transition: transform .22s var(--ease), box-shadow .3s var(--ease), background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%); box-shadow: 0 10px 30px -10px var(--glow); }
.btn-primary::before {
  content: ''; position: absolute; top: 0; left: -120%; width: 80%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-18deg); transition: left .7s var(--ease);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 44px -10px var(--glow); }
.btn-primary:hover::before { left: 130%; }
.btn-primary:active { transform: translateY(0); }
.btn-primary:disabled { opacity: .45; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-primary:disabled::before { display: none; }
.btn-ghost { color: var(--text); background: var(--panel-2); border-color: var(--stroke); backdrop-filter: blur(8px); }
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--stroke-brand); box-shadow: 0 12px 30px -16px var(--glow); }
.btn-block { width: 100%; }
.btn-lg { height: 56px; padding: 0 32px; font-size: 16px; border-radius: 14px; }

/* ============================ glass card ============================ */
.glass {
  position: relative; background: var(--panel); border: 1px solid var(--stroke); border-radius: var(--r);
  backdrop-filter: blur(14px) saturate(140%); -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: var(--shadow);
}
/* top highlight line on glass */
.glass::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1px; pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,0) 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
}

/* ============================ hero ============================ */
.hero { position: relative; padding: 120px 0 80px; text-align: center; }
.hero .orb {
  position: absolute; left: 50%; top: 38%; width: 520px; height: 520px; transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(168,85,247,.28), transparent 62%); filter: blur(20px);
  z-index: -1; animation: pulse 7s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: .7; transform: translate(-50%,-50%) scale(1); } 50% { opacity: 1; transform: translate(-50%,-50%) scale(1.1); } }
.tag {
  display: inline-flex; align-items: center; gap: 9px; padding: 8px 16px; border-radius: 999px; font-size: 12.5px; font-weight: 600;
  color: var(--brand-3); background: rgba(168,85,247,.08); border: 1px solid var(--stroke-brand); margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.tag .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand-3); box-shadow: 0 0 10px var(--brand-3); animation: blink 2.4s ease-in-out infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
.hero h1 { font-size: clamp(42px, 7.5vw, 84px); line-height: 1.0; letter-spacing: -0.045em; font-weight: 850; margin-bottom: 24px; }
.hero h1 .grad {
  background: linear-gradient(110deg, #fff 10%, var(--brand-3) 45%, var(--brand) 70%, #fff 100%);
  background-size: 220% auto; -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shimmer 7s linear infinite;
}
@keyframes shimmer { to { background-position: 220% center; } }
.hero p.lead { font-size: clamp(16px, 2.2vw, 20px); color: var(--muted); max-width: 600px; margin: 0 auto 40px; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; margin-top: 64px; }
.hero-stats .stat { text-align: center; }
.hero-stats .num { font-size: 30px; font-weight: 850; letter-spacing: -0.03em; background: linear-gradient(120deg,#fff,var(--brand-3)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-stats .lbl { font-size: 12.5px; color: var(--faint); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }

/* ============================ features ============================ */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; padding: 20px 0 90px; }
.feature { padding: 30px 26px; transition: transform .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease); }
.feature:hover { transform: translateY(-6px); border-color: var(--stroke-brand); background: var(--panel-2); }
.feature .ico {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; font-size: 24px; margin-bottom: 18px;
  background: linear-gradient(140deg, rgba(168,85,247,.18), rgba(139,92,246,.06)); color: var(--brand-3);
  border: 1px solid var(--stroke-brand); box-shadow: 0 8px 24px -12px var(--glow);
}
.feature h3 { font-size: 18px; font-weight: 750; margin-bottom: 8px; letter-spacing: -0.01em; }
.feature p { font-size: 14.5px; color: var(--muted); }

/* ============================ sections ============================ */
.section { padding: 90px 0; }
.section-head { text-align: center; margin-bottom: 56px; }
.eyebrow { color: var(--brand-3); font-weight: 700; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; display: inline-block; margin-bottom: 14px; }
.section-head h2 { font-size: clamp(30px, 4.4vw, 48px); font-weight: 820; letter-spacing: -0.035em; margin-bottom: 12px; }
.section-head p { color: var(--muted); font-size: 16.5px; max-width: 560px; margin: 0 auto; }

/* ============================ pricing ============================ */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.price-card { padding: 34px 30px; display: flex; flex-direction: column; transition: transform .35s var(--ease), border-color .35s var(--ease); }
.price-card:hover { transform: translateY(-8px); border-color: var(--stroke-brand); }
.price-card.featured { background: linear-gradient(180deg, rgba(168,85,247,.10), var(--panel)); box-shadow: var(--shadow-glow); }
/* rotating gradient border on the featured card */
.price-card.featured::after {
  content: ''; position: absolute; inset: -1px; border-radius: inherit; z-index: -1; padding: 1px;
  background: conic-gradient(from var(--ang, 0deg), var(--brand), transparent 25%, transparent 75%, var(--brand-3));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude;
  animation: spin-border 6s linear infinite;
}
@property --ang { syntax: '<angle>'; inherits: false; initial-value: 0deg; }
@keyframes spin-border { to { --ang: 360deg; } }
.price-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #fff; font-size: 11px; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 16px; border-radius: 999px; box-shadow: 0 8px 22px -6px var(--glow);
}
.price-emoji { font-size: 32px; margin-bottom: 10px; }
.price-name { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.price-row { display: flex; align-items: baseline; gap: 12px; }
.price-now { font-size: 52px; font-weight: 850; letter-spacing: -0.04em; line-height: 1; }
.price-cur { font-size: 18px; font-weight: 700; color: var(--muted); }
.price-old { font-size: 20px; color: var(--faint); text-decoration: line-through; }
.price-save { display: inline-block; margin-top: 12px; font-size: 12.5px; font-weight: 700; color: var(--good); background: rgba(74,222,128,.1); padding: 5px 11px; border-radius: 999px; align-self: flex-start; }
.price-foot { margin-top: 22px; margin-bottom: 24px; font-size: 13.5px; color: var(--muted); flex: 1; }

/* ============================ payment ============================ */
.pay-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.pay-card { padding: 34px 30px; display: flex; flex-direction: column; transition: transform .35s var(--ease), border-color .35s var(--ease); }
.pay-card:hover { transform: translateY(-5px); border-color: var(--stroke-brand); }
.pay-card h3 { font-size: 21px; font-weight: 780; letter-spacing: -0.02em; margin-bottom: 6px; display: flex; align-items: center; gap: 10px; }
.pay-card .sub { font-size: 13px; color: var(--brand-3); font-weight: 600; margin-bottom: 20px; }
.chips { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 20px; }
.chip { font-size: 12.5px; font-weight: 600; padding: 8px 14px; border-radius: 10px; background: var(--panel-2); border: 1px solid var(--stroke); transition: border-color .25s var(--ease), transform .25s var(--ease), color .25s; }
.chip:hover { border-color: var(--stroke-brand); color: var(--brand-3); transform: translateY(-2px); }
.pay-card p.desc { font-size: 14.5px; color: var(--muted); margin-bottom: 24px; flex: 1; }
.note { margin-top: 30px; padding: 20px 24px; border-radius: var(--r-sm); background: rgba(168,85,247,.06); border: 1px solid var(--stroke-brand); font-size: 13.5px; color: var(--muted); text-align: center; }
.note strong { color: var(--text); }

/* ============================ auth (login) ============================ */
.auth-wrap { min-height: calc(100vh - 72px); display: grid; place-items: center; padding: 56px 24px; }
.auth-card { width: 100%; max-width: 416px; padding: 40px 34px; box-shadow: var(--shadow-glow); border-radius: 24px; }
.auth-card .head { text-align: center; margin-bottom: 30px; }
.logo-lg {
  width: 64px; height: 64px; border-radius: 18px; margin: 0 auto 18px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-2)); font-weight: 900; font-size: 28px; color: #fff;
  box-shadow: 0 0 0 1px rgba(255,255,255,.1) inset, 0 16px 40px -10px var(--glow); animation: float 5s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
.auth-card h1 { font-size: 25px; font-weight: 800; letter-spacing: -0.02em; }
.auth-card .head p { color: var(--muted); font-size: 14px; margin-top: 5px; }
.field { margin-bottom: 17px; }
.field label { display: flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: var(--faint); margin-bottom: 8px; }
.field input {
  width: 100%; height: 50px; border-radius: 13px; padding: 0 16px; font-size: 14.5px; font-weight: 500; color: var(--text);
  background: rgba(255,255,255,.03); border: 1px solid var(--stroke); font-family: var(--font); outline: none;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.field input::placeholder { color: var(--faint); }
.field input:focus { border-color: var(--brand); background: rgba(255,255,255,.05); box-shadow: 0 0 0 4px rgba(168,85,247,.14); }
.cf-turnstile { margin: 8px 0 18px; display: flex; justify-content: center; min-height: 66px; }
.alert { font-size: 13px; border-radius: 12px; padding: 12px 15px; margin-bottom: 17px; display: none; }
.alert.error { display: block; color: #fecaca; background: rgba(248,113,113,.1); border: 1px solid rgba(248,113,113,.28); animation: shake .4s var(--ease); }
.alert.success { display: block; color: #bbf7d0; background: rgba(74,222,128,.1); border: 1px solid rgba(74,222,128,.28); }
@keyframes shake { 0%,100% { transform: translateX(0); } 20% { transform: translateX(-7px); } 40% { transform: translateX(6px); } 60% { transform: translateX(-4px); } 80% { transform: translateX(3px); } }
.auth-foot { text-align: center; margin-top: 20px; font-size: 13.5px; color: var(--muted); line-height: 1.7; }
.auth-foot a { color: var(--brand-3); font-weight: 600; }
.auth-foot a:hover { text-decoration: underline; }

/* ============================ dashboard ============================ */
.dash { padding: 56px 0 90px; }
.dash-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 36px; flex-wrap: wrap; gap: 16px; }
.dash-head h1 { font-size: clamp(28px, 4.4vw, 40px); font-weight: 820; letter-spacing: -0.035em; }
.dash-head h1 span { background: linear-gradient(120deg,#fff,var(--brand-3)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.dash-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 22px; }
.panel { padding: 30px; }
.panel h2 { font-size: 12.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint); margin-bottom: 22px; display: flex; align-items: center; gap: 9px; }
.kv { display: flex; justify-content: space-between; align-items: center; gap: 14px; padding: 15px 0; border-bottom: 1px solid var(--stroke); }
.kv:last-child { border-bottom: 0; }
.kv .k { font-size: 14px; color: var(--muted); }
.kv .v { font-size: 14.5px; font-weight: 700; text-align: right; }
.badge { display: inline-flex; align-items: center; gap: 7px; padding: 6px 13px; border-radius: 999px; font-size: 12.5px; font-weight: 700; }
.badge .dot { width: 7px; height: 7px; border-radius: 50%; }
.badge.ok { color: #bbf7d0; background: rgba(74,222,128,.12); } .badge.ok .dot { background: var(--good); box-shadow: 0 0 8px var(--good); animation: blink 2s infinite; }
.badge.bad { color: #fecaca; background: rgba(248,113,113,.12); } .badge.bad .dot { background: var(--bad); }
.badge.warn { color: #fde68a; background: rgba(251,191,36,.12); } .badge.warn .dot { background: var(--warn); }
.tier-pill { display: inline-flex; align-items: center; gap: 8px; padding: 8px 17px; border-radius: 999px; font-weight: 800; font-size: 15px; color: #fff; background: linear-gradient(135deg, var(--brand), var(--brand-2)); box-shadow: 0 8px 22px -8px var(--glow); }
.download-panel { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.download-panel .big-ico {
  width: 84px; height: 84px; border-radius: 22px; display: grid; place-items: center; font-size: 38px; margin-bottom: 22px;
  background: linear-gradient(140deg, rgba(168,85,247,.2), rgba(139,92,246,.05)); color: var(--brand-3);
  border: 1px solid var(--stroke-brand); box-shadow: 0 14px 40px -14px var(--glow); animation: float 6s ease-in-out infinite;
}
.download-panel h3 { font-size: 23px; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.02em; }
.download-panel p { color: var(--muted); font-size: 14px; margin-bottom: 26px; max-width: 340px; }
.locked-msg { font-size: 13.5px; color: var(--warn); margin-top: 16px; line-height: 1.6; }

/* ============================ footer ============================ */
.footer { border-top: 1px solid var(--stroke); padding: 48px 0; margin-top: 50px; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 18px; }
.footer .muted { color: var(--faint); font-size: 13px; }
.footer-links { display: flex; gap: 22px; }
.footer-links a { color: var(--muted); font-size: 13.5px; transition: color .25s; }
.footer-links a:hover { color: var(--brand-3); }

/* ============================ utilities ============================ */
.spinner { width: 18px; height: 18px; border: 2px solid rgba(255,255,255,.3); border-top-color: #fff; border-radius: 50%; animation: spin .7s linear infinite; display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }
.center-load { min-height: 62vh; display: grid; place-items: center; color: var(--muted); }
.fade-in { animation: fadeUp .6s var(--ease-out) both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* skeleton shimmer (dashboard loading) */
.skel { position: relative; overflow: hidden; background: rgba(255,255,255,.04); border-radius: 8px; }
.skel::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(255,255,255,.07), transparent); transform: translateX(-100%); animation: shimmerSkel 1.4s infinite; }
@keyframes shimmerSkel { to { transform: translateX(100%); } }

/* ============================ responsive ============================ */
@media (max-width: 880px) {
  .features, .pricing-grid, .pay-grid, .dash-grid { grid-template-columns: 1fr; }
  .nav-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; top: 72px; left: 0; right: 0; z-index: 80; flex-direction: column; align-items: stretch;
    background: #080810; backdrop-filter: blur(20px) saturate(160%); -webkit-backdrop-filter: blur(20px) saturate(160%);
    padding: 14px 24px 22px; border-bottom: 1px solid var(--stroke); gap: 4px; box-shadow: 0 24px 50px -20px rgba(0,0,0,.8);
  }
  .nav-links.open { display: flex; animation: fadeUp .3s var(--ease-out); }
  .nav-links a:not(.btn) { padding: 13px 14px; }
  .nav-links .btn { margin-top: 6px; }
  .hero { padding: 84px 0 64px; }
  .hero-stats { gap: 28px; }
}

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