@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

:root {
  --bg: #F7F6F3;
  --bg-card: #FFFFFF;
  --bg-subtle: #EFEDE8;
  --text: #0E0D0B;
  --text-muted: #6B6860;
  --text-faint: #A8A69F;
  --accent: #C8462B;
  --accent-hover: #A83520;
  --accent-soft: #F5E8E5;
  --border: rgba(14,13,11,0.10);
  --border-strong: rgba(14,13,11,0.20);
  --shadow: 0 1px 3px rgba(14,13,11,0.08), 0 4px 16px rgba(14,13,11,0.04);
  --shadow-lg: 0 8px 32px rgba(14,13,11,0.10);
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --nav-h: 64px;
  --max: 1200px;
  --transition: 0.18s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); }

/* ─── NAV ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(247,246,243,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
}
.nav-inner {
  max-width: var(--max); width: 100%; margin: 0 auto;
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800; font-size: 1.2rem; letter-spacing: -0.02em;
  display: flex; align-items: center; gap: 10px;
}
.nav-logo .blade {
  width: 28px; height: 28px;
  background: var(--text);
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  position: relative;
}
.nav-logo .blade::after {
  content: '';
  position: absolute; top: 4px; left: 50%; transform: translateX(-50%);
  width: 2px; height: 16px;
  background: var(--accent);
}
.nav-links {
  display: flex; align-items: center; gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.875rem; font-weight: 400;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: 0.75rem; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.875rem; font-weight: 500;
  transition: all var(--transition);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--text); color: var(--bg);
  border-color: var(--text);
}
.btn-primary:hover { background: var(--accent); border-color: var(--accent); }
.btn-ghost {
  background: transparent; color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover { background: var(--bg-subtle); }
.btn-accent {
  background: var(--accent); color: #fff;
  border-color: var(--accent);
}
.btn-accent:hover { background: var(--accent-hover); border-color: var(--accent-hover); }
.btn-lg { padding: 0.875rem 2rem; font-size: 1rem; border-radius: var(--radius-lg); }
.btn-sm { padding: 0.4rem 0.875rem; font-size: 0.8rem; }

/* ─── LAYOUT ─── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }

/* ─── TYPOGRAPHY ─── */
.display {
  font-family: var(--font-display);
  font-weight: 800; letter-spacing: -0.03em;
  line-height: 1.0;
}
.display-xl { font-size: clamp(3rem, 6vw, 5.5rem); }
.display-lg { font-size: clamp(2rem, 4vw, 3.5rem); }
.display-md { font-size: clamp(1.5rem, 3vw, 2.25rem); }
.eyebrow {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 1rem; display: block;
}
.lead { font-size: 1.125rem; color: var(--text-muted); line-height: 1.7; max-width: 56ch; }

/* ─── CARDS ─── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all var(--transition);
}
.card:hover { box-shadow: var(--shadow-lg); border-color: var(--border-strong); }
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

/* ─── BADGE ─── */
.badge {
  display: inline-flex; align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 99px;
  font-size: 0.75rem; font-weight: 500;
  background: var(--bg-subtle); color: var(--text-muted);
  border: 1px solid var(--border);
}
.badge-accent { background: var(--accent-soft); color: var(--accent); border-color: rgba(200,70,43,0.2); }
.badge-owner { background: #FFF3E0; color: #E65100; border-color: rgba(230,81,0,0.2); }
.badge-admin { background: #E3F2FD; color: #1565C0; border-color: rgba(21,101,192,0.2); }
.badge-mod { background: #E8F5E9; color: #2E7D32; border-color: rgba(46,125,50,0.2); }
.badge-member { background: var(--bg-subtle); color: var(--text-muted); }

/* ─── DIVIDER ─── */
.divider { height: 1px; background: var(--border); margin: 0; }

/* ─── FORMS ─── */
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-label { font-size: 0.875rem; font-weight: 500; color: var(--text); }
.form-sublabel { font-size: 0.75rem; color: var(--text-muted); }
.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: var(--bg-card);
  color: var(--text);
  font-size: 0.9375rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-input:focus {
  border-color: var(--text);
  box-shadow: 0 0 0 3px rgba(14,13,11,0.08);
}
.form-input::placeholder { color: var(--text-faint); }
.form-input.error { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(200,70,43,0.12); }
.form-error { font-size: 0.8rem; color: var(--accent); margin-top: 0.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ─── INPUT ICON WRAPPER ─── */
.input-wrap { position: relative; }
.input-wrap .form-input { padding-left: 2.75rem; }
.input-wrap .input-icon {
  position: absolute; left: 0.875rem; top: 50%; transform: translateY(-50%);
  color: var(--text-faint); pointer-events: none;
  display: flex; align-items: center;
}
.input-wrap .input-toggle {
  position: absolute; right: 0.875rem; top: 50%; transform: translateY(-50%);
  color: var(--text-faint); cursor: pointer; background: none; border: none;
  display: flex; align-items: center; padding: 0;
  transition: color var(--transition);
}
.input-wrap .input-toggle:hover { color: var(--text); }

/* ─── AUTH PAGES ─── */
.auth-wrap {
  min-height: 100vh; display: flex;
  background: var(--bg);
}
.auth-panel {
  flex: 1; display: flex; align-items: center; justify-content: center;
  padding: 2rem;
}
.auth-visual {
  width: 420px; flex-shrink: 0;
  background: var(--text);
  display: flex; align-items: center; justify-content: center;
  padding: 3rem;
  position: relative; overflow: hidden;
}
.auth-visual-inner { position: relative; z-index: 1; }
.auth-box {
  width: 100%; max-width: 440px;
}
.auth-box h1 {
  font-family: var(--font-display);
  font-weight: 800; font-size: 1.875rem; letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}
.auth-box .auth-sub { color: var(--text-muted); font-size: 0.9375rem; margin-bottom: 2rem; }
.auth-form { display: flex; flex-direction: column; gap: 1.125rem; }
.auth-divider {
  display: flex; align-items: center; gap: 1rem;
  color: var(--text-faint); font-size: 0.8rem; margin: 0.5rem 0;
}
.auth-divider::before, .auth-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}
.auth-footer {
  text-align: center; font-size: 0.875rem; color: var(--text-muted);
  margin-top: 1.5rem;
}
.auth-footer a { color: var(--text); font-weight: 500; }
.auth-footer a:hover { color: var(--accent); }

/* ─── HERO ─── */
.hero {
  padding-top: calc(var(--nav-h) + 5rem);
  padding-bottom: 5rem;
  overflow: hidden;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 0.375rem 1rem;
  font-size: 0.8rem; font-weight: 500; color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.hero-kicker span { color: var(--accent); }
.hero h1 { margin-bottom: 1.5rem; }
.hero-actions { display: flex; align-items: center; gap: 1rem; margin-top: 2rem; }
.hero-stats {
  display: flex; gap: 2.5rem; margin-top: 3rem;
  padding-top: 2rem; border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-weight: 800; font-size: 1.75rem; letter-spacing: -0.03em;
  line-height: 1;
}
.hero-stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.25rem; }
.hero-visual {
  position: relative; display: flex; align-items: center; justify-content: center;
}
.hero-card-stack { position: relative; width: 340px; height: 340px; }
.hero-card-stack .hc {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}
.hero-card-stack .hc-1 { width: 260px; bottom: 0; left: 0; }
.hero-card-stack .hc-2 { width: 240px; top: 0; right: 0; transform: rotate(3deg); }
.hero-card-stack .hc-3 { width: 200px; top: 50px; left: 60px; transform: rotate(-2deg); z-index: 2; }

/* ─── FEATURES ─── */
.features-header { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.feature-card { display: flex; flex-direction: column; gap: 1rem; }
.feature-icon {
  width: 44px; height: 44px;
  background: var(--bg-subtle);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.0625rem; letter-spacing: -0.01em;
}
.feature-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

/* ─── PRODUCTS ─── */
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition);
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.product-thumb {
  height: 200px;
  background: var(--bg-subtle);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; letter-spacing: -0.05em;
  font-family: var(--font-display); font-weight: 800;
  color: var(--border-strong);
  position: relative; overflow: hidden;
}
.product-thumb .thumb-accent {
  position: absolute; bottom: -20px; right: -20px;
  width: 80px; height: 80px;
  background: var(--accent); opacity: 0.08;
  border-radius: 50%;
}
.product-body { padding: 1.5rem; }
.product-meta {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 0.75rem;
}
.product-body h3 {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.125rem; letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.product-body p { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 1.25rem; }

/* ─── PROJECTS ─── */
.project-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: flex; gap: 1.5rem; align-items: flex-start;
  transition: all var(--transition);
}
.project-card:hover { box-shadow: var(--shadow-lg); border-color: var(--border-strong); }
.project-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  background: var(--bg-subtle);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.project-body h3 {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.0625rem; letter-spacing: -0.01em;
  margin-bottom: 0.375rem;
}
.project-body p { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 1rem; }
.project-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }

/* ─── FAQ ─── */
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 1.25rem 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.9375rem; font-weight: 500; color: var(--text);
  gap: 1rem; cursor: pointer;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--accent); }
.faq-icon {
  width: 24px; height: 24px; flex-shrink: 0;
  background: var(--bg-subtle); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem; transition: all var(--transition);
}
.faq-item.open .faq-icon { background: var(--text); color: var(--bg); transform: rotate(45deg); }
.faq-a {
  overflow: hidden; max-height: 0;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-a-inner { padding-bottom: 1.25rem; font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* ─── ABOUT / TEAM ─── */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-visual {
  position: relative; padding: 2rem;
}
.about-img-box {
  background: var(--bg-subtle);
  border-radius: var(--radius-xl);
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 4rem;
  color: var(--border-strong); letter-spacing: -0.05em;
}
.about-badge-float {
  position: absolute; bottom: 1rem; left: 1rem;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1rem 1.25rem;
  box-shadow: var(--shadow);
}
.about-items { display: flex; flex-direction: column; gap: 1.5rem; }
.about-item { display: flex; gap: 1rem; align-items: flex-start; }
.about-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); margin-top: 0.45rem; flex-shrink: 0;
}
.about-item p { font-size: 0.9375rem; color: var(--text-muted); }
.about-item strong { color: var(--text); }

/* ─── SUPPORT ─── */
.support-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; }
.support-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: all var(--transition);
}
.support-card:hover { box-shadow: var(--shadow-lg); border-color: var(--border-strong); }
.support-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.375rem;
}
.support-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 1rem; letter-spacing: -0.01em; }
.support-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; flex: 1; }

/* ─── CTA BANNER ─── */
.cta-banner {
  background: var(--text);
  border-radius: var(--radius-xl);
  padding: 4rem 3rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 240px; height: 240px;
  background: var(--accent); opacity: 0.12; border-radius: 50%;
}
.cta-banner h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  letter-spacing: -0.03em; color: #fff; position: relative; z-index: 1;
}
.cta-banner p { color: rgba(255,255,255,0.6); font-size: 1rem; margin-top: 0.5rem; position: relative; z-index: 1; }
.cta-banner .btn-accent { position: relative; z-index: 1; }

/* ─── FOOTER ─── */
footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand p { font-size: 0.875rem; color: var(--text-muted); margin-top: 0.75rem; max-width: 28ch; line-height: 1.6; }
.footer-col h4 { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.625rem; }
.footer-col ul a { font-size: 0.875rem; color: var(--text-muted); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--text); }
.footer-bottom {
  padding-top: 2rem; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.8rem; color: var(--text-faint);
}

/* ─── DASHBOARD ─── */
.dash-wrap { display: flex; min-height: 100vh; padding-top: var(--nav-h); }
.dash-sidebar {
  width: 240px; flex-shrink: 0;
  background: var(--bg-card); border-right: 1px solid var(--border);
  position: fixed; top: var(--nav-h); bottom: 0;
  display: flex; flex-direction: column;
  padding: 1.5rem 1rem;
  overflow-y: auto;
}
.dash-main { margin-left: 240px; flex: 1; padding: 2.5rem; }
.sidebar-section { margin-bottom: 2rem; }
.sidebar-section-label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-faint);
  padding: 0 0.75rem; margin-bottom: 0.5rem;
}
.sidebar-link {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.625rem 0.75rem; border-radius: var(--radius);
  font-size: 0.875rem; color: var(--text-muted);
  transition: all var(--transition);
  width: 100%;
  cursor: pointer; border: none; background: none; text-align: left;
}
.sidebar-link:hover { background: var(--bg-subtle); color: var(--text); }
.sidebar-link.active { background: var(--text); color: var(--bg); }
.sidebar-link .sl-icon { font-size: 1rem; flex-shrink: 0; }
.sidebar-user {
  margin-top: auto; padding: 0.875rem; border-radius: var(--radius);
  background: var(--bg-subtle); display: flex; align-items: center; gap: 0.75rem;
}
.sidebar-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--text); color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 600; flex-shrink: 0;
}
.sidebar-user-name { font-size: 0.875rem; font-weight: 500; }
.sidebar-user-role { font-size: 0.75rem; color: var(--text-muted); }
.dash-header { margin-bottom: 2rem; }
.dash-header h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.75rem; letter-spacing: -0.03em; margin-bottom: 0.25rem;
}
.dash-header p { font-size: 0.9375rem; color: var(--text-muted); }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 2rem; }
.stat-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.25rem;
}
.stat-card .stat-label { font-size: 0.75rem; font-weight: 500; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.5rem; }
.stat-card .stat-val {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.75rem; letter-spacing: -0.03em; color: var(--text);
}
.stat-card .stat-delta { font-size: 0.8rem; color: #2E7D32; margin-top: 0.25rem; }

/* ─── PAGE HEADER ─── */
.page-header {
  padding-top: calc(var(--nav-h) + 4rem);
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4rem;
}
.page-header .eyebrow { margin-bottom: 0.75rem; }

/* ─── 404 ─── */
.error-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 2rem;
}
.error-num {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(6rem, 15vw, 12rem);
  letter-spacing: -0.05em; color: var(--bg-subtle);
  line-height: 1; margin-bottom: 1rem;
  position: relative;
}
.error-num::after {
  content: '404';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--text); font-size: inherit;
  -webkit-text-stroke: 1px var(--border-strong);
  color: transparent;
}

/* ─── PASSWORD STRENGTH ─── */
.pw-strength { margin-top: 0.5rem; }
.pw-bars { display: flex; gap: 4px; margin-bottom: 0.25rem; }
.pw-bar {
  flex: 1; height: 3px; border-radius: 2px;
  background: var(--border); transition: background 0.3s;
}
.pw-bar.filled-1 { background: #E53935; }
.pw-bar.filled-2 { background: #FB8C00; }
.pw-bar.filled-3 { background: #FDD835; }
.pw-bar.filled-4 { background: #43A047; }
.pw-strength-label { font-size: 0.75rem; color: var(--text-muted); }

/* ─── TOAST ─── */
.toast-container {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 999;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.toast {
  background: var(--text); color: var(--bg);
  padding: 0.875rem 1.25rem; border-radius: var(--radius-lg);
  font-size: 0.875rem; font-weight: 500;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 0.75rem;
  animation: slideUp 0.3s ease;
  max-width: 320px;
}
.toast.success { border-left: 3px solid #43A047; }
.toast.error { border-left: 3px solid var(--accent); }
@keyframes slideUp {
  from { transform: translateY(1rem); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ─── SCROLL ANIMATIONS ─── */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero-grid, .about-split { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .auth-visual { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .dash-sidebar { display: none; }
  .dash-main { margin-left: 0; }
  .cta-banner { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
  .nav-links { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 4rem 0; }
  .hero-stats { gap: 1.5rem; }
}
