/* ═══════════════════════════════════════════════════════════════
   NEXUS — MAIN STYLESHEET  v2.0 Production
═══════════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  --bg:        #09090f;
  --bg2:       #0f0f1a;
  --bg3:       #13131f;
  --surface:   #1a1a2e;
  --surface2:  #1f1f35;
  --border:    rgba(255,255,255,0.07);
  --border2:   rgba(255,255,255,0.12);
  --accent:    #7c5cfc;
  --accent-h:  #9070ff;
  --accent2:   #00e5c3;
  --accent3:   #ff6b6b;
  --amber:     #fbbf24;
  --text:      #e8e8f0;
  --dim:       rgba(232,232,240,0.55);
  --muted:     #6b6b8a;
  --radius:    14px;
  --radius-sm: 8px;
  --radius-xs: 6px;
  --font-h:    'Syne', sans-serif;
  --font-b:    'DM Sans', sans-serif;
  --shadow:    0 8px 32px rgba(0,0,0,0.5);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.6);
  --glow:      0 0 40px rgba(124,92,252,0.25);
  --glow-sm:   0 0 20px rgba(124,92,252,0.2);
  --t-fast:    0.15s ease;
  --t-base:    0.25s ease;
  --t-slow:    0.4s ease;
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg); color: var(--text); font-family: var(--font-b);
  font-size: 15px; line-height: 1.6; overflow-x: hidden;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; font-family: var(--font-b); background: none; }
input, textarea, select { font-family: var(--font-b); }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--surface2); }

/* Typography */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-h); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }

/* Grid texture */
body::before {
  content: ''; position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.012) 1px, transparent 1px);
  background-size: 44px 44px;
}

/* ── PILLS ──────────────────────────────────────────────────── */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px; border-radius: 100px;
  font-size: 12px; font-weight: 600; letter-spacing: .03em;
}
.pill-purple { background: rgba(124,92,252,.15); color: var(--accent);  border: 1px solid rgba(124,92,252,.3); }
.pill-teal   { background: rgba(0,229,195,.12);  color: var(--accent2); border: 1px solid rgba(0,229,195,.3);  }
.pill-red    { background: rgba(255,107,107,.12); color: var(--accent3); border: 1px solid rgba(255,107,107,.3);}
.pill-amber  { background: rgba(251,191,36,.12);  color: var(--amber);   border: 1px solid rgba(251,191,36,.3); }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 26px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600; letter-spacing: .01em;
  transition: all var(--t-base); white-space: nowrap;
}
.btn-primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 0 24px rgba(124,92,252,.4), 0 2px 8px rgba(0,0,0,.3);
}
.btn-primary:hover { background: var(--accent-h); box-shadow: 0 0 36px rgba(124,92,252,.6); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--dim); border: 1px solid var(--border2); }
.btn-ghost:hover { border-color: rgba(124,92,252,.5); color: var(--text); background: rgba(124,92,252,.07); }
.btn-teal { background: var(--accent2); color: #06060f; font-weight: 700; box-shadow: 0 0 24px rgba(0,229,195,.3); }
.btn-teal:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn-danger { background: rgba(255,107,107,.12); color: var(--accent3); border: 1px solid rgba(255,107,107,.3); }
.btn-danger:hover { background: rgba(255,107,107,.22); }
.btn-sm { padding: 7px 16px; font-size: 13px; }
.btn-lg { padding: 15px 36px; font-size: 15px; }
.btn-block { width: 100%; }
.btn.loading { pointer-events: none; opacity: .7; }
.btn.loading::before {
  content: ''; width: 14px; height: 14px;
  border: 2px solid rgba(255,255,255,.3); border-top-color: #fff;
  border-radius: 50%; animation: spin .7s linear infinite; margin-right: 8px;
}

/* ── FORMS ──────────────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.form-label { font-size: 13px; font-weight: 600; color: var(--text); letter-spacing: .01em; }
.form-label .req { color: var(--accent3); margin-left: 2px; }
.form-input, .form-select, .form-textarea {
  width: 100%; background: var(--surface); border: 1px solid var(--border2);
  border-radius: var(--radius-sm); padding: 11px 14px; font-size: 14px; color: var(--text);
  outline: none; transition: border-color var(--t-fast), box-shadow var(--t-fast); appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px rgba(124,92,252,.15);
}
.form-input.error, .form-select.error, .form-textarea.error {
  border-color: var(--accent3); box-shadow: 0 0 0 3px rgba(255,107,107,.12);
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b6b8a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; cursor: pointer;
}
.form-select option { background: var(--bg2); }
.form-hint  { font-size: 12px; color: var(--muted); }
.form-error { font-size: 12px; color: var(--accent3); display: none; }
.form-error.visible { display: block; }
.input-wrap { position: relative; }
.input-wrap .input-icon {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: var(--muted); pointer-events: none; display: flex; font-size: 16px;
}
.input-wrap .form-input { padding-left: 42px; }
.input-wrap .input-action {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  color: var(--muted); cursor: pointer; padding: 4px; background: none;
  border: none; font-size: 16px; transition: color var(--t-fast);
}
.input-wrap .input-action:hover { color: var(--text); }
.pw-strength { display: flex; gap: 4px; margin-top: 6px; }
.pw-bar { flex: 1; height: 3px; border-radius: 2px; background: var(--surface); transition: background var(--t-base); }
.pw-bar.weak { background: var(--accent3); }
.pw-bar.fair { background: var(--amber); }
.pw-bar.good { background: #60a5fa; }
.pw-bar.strong { background: var(--accent2); }
.checkbox-wrap { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; font-size: 13px; color: var(--dim); }
.checkbox-wrap input[type="checkbox"] {
  width: 16px; height: 16px; appearance: none; background: var(--surface);
  border: 1px solid var(--border2); border-radius: 4px; flex-shrink: 0;
  margin-top: 2px; cursor: pointer; position: relative; transition: all var(--t-fast);
}
.checkbox-wrap input[type="checkbox"]:checked { background: var(--accent); border-color: var(--accent); }
.checkbox-wrap input[type="checkbox"]:checked::after {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' fill='none'%3E%3Cpath d='M1 4l3 3 5-6' stroke='%23fff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}
.checkbox-wrap a { color: var(--accent); }
.checkbox-wrap a:hover { text-decoration: underline; }

/* ── ORBS ───────────────────────────────────────────────────── */
.orb { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; z-index: 0; }
.orb-1 { width: 500px; height: 500px; background: rgba(124,92,252,.18); top: -100px; left: -100px; }
.orb-2 { width: 400px; height: 400px; background: rgba(0,229,195,.1);   top: 200px;  right: -100px; }
.orb-3 { width: 300px; height: 300px; background: rgba(124,92,252,.1);  bottom: 0;   left: 40%; }

/* ── NAVIGATION ─────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px; height: 68px;
  background: rgba(9,9,15,.85); backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border); transition: background var(--t-base);
}
.nav.scrolled { background: rgba(9,9,15,.97); border-bottom-color: var(--border2); }
.nav-logo { font-family: var(--font-h); font-size: 22px; font-weight: 800; letter-spacing: -.5px; }
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 36px; font-size: 14px; font-weight: 500; color: var(--dim); }
.nav-links a { transition: color var(--t-fast); position: relative; }
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--accent); transform: scaleX(0);
  transition: transform var(--t-fast); transform-origin: left;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; cursor: pointer; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--t-base); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile {
  display: none; position: fixed; top: 68px; left: 0; right: 0;
  background: var(--bg2); border-bottom: 1px solid var(--border2);
  padding: 16px; flex-direction: column; gap: 2px; z-index: 99;
}
.nav-mobile.open { display: flex; }
.nav-mobile a, .nav-mobile button {
  padding: 12px 16px; border-radius: var(--radius-sm); font-size: 14px;
  color: var(--dim); transition: all var(--t-fast); text-align: left; width: 100%;
}
.nav-mobile a:hover, .nav-mobile button:hover { background: var(--surface); color: var(--text); }
.nav-mobile .mob-divider { height: 1px; background: var(--border); margin: 8px 0; }

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  padding: 160px 60px 120px;
  display: flex; align-items: center; justify-content: space-between; gap: 60px;
  max-width: 1300px; margin: 0 auto;
}
.hero-content { flex: 1; max-width: 580px; }
.hero-badge { margin-bottom: 28px; }
.hero h1 {
  font-size: clamp(40px, 5.5vw, 72px); font-weight: 800;
  line-height: 1.04; letter-spacing: -2px; margin-bottom: 24px;
}
.hero h1 .grd {
  background: linear-gradient(135deg, #fff 0%, var(--accent) 55%, var(--accent2) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub { font-size: 17px; line-height: 1.75; color: var(--dim); max-width: 520px; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 16px; margin-top: 32px; font-size: 12px; color: var(--muted); }
.hero-trust-avatars { display: flex; }
.hero-trust-avatars .av {
  width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--bg);
  margin-left: -8px; font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hero-trust-avatars .av:first-child { margin-left: 0; }
.hero-img-wrap { flex: 0 0 520px; }
.dashboard-preview {
  background: var(--surface); border: 1px solid var(--border2); border-radius: 20px;
  overflow: hidden; box-shadow: var(--shadow-lg), var(--glow);
  transform: perspective(1200px) rotateY(-7deg) rotateX(3deg);
  transition: transform var(--t-slow);
}
.dashboard-preview:hover { transform: perspective(1200px) rotateY(-2deg) rotateX(1deg); }
.dp-bar {
  background: var(--bg3); padding: 12px 16px;
  display: flex; align-items: center; gap: 8px; border-bottom: 1px solid var(--border);
}
.dp-dot { width: 10px; height: 10px; border-radius: 50%; }
.dp-body { padding: 18px; }
.dp-stat-row { display: flex; gap: 10px; margin-bottom: 14px; }
.dp-stat { flex: 1; background: var(--bg2); border-radius: 10px; padding: 12px; border: 1px solid var(--border); }
.dp-stat-label { font-size: 9px; color: var(--muted); margin-bottom: 5px; text-transform: uppercase; letter-spacing: .06em; }
.dp-stat-val { font-family: var(--font-h); font-size: 20px; font-weight: 800; }
.dp-projects { display: flex; flex-direction: column; gap: 7px; }
.dp-proj {
  background: var(--bg2); border-radius: 10px; padding: 11px 13px;
  border: 1px solid var(--border); display: flex; align-items: center; gap: 10px;
}
.dp-proj-dot { width: 30px; height: 30px; border-radius: 8px; flex-shrink: 0; }
.dp-proj-info { flex: 1; min-width: 0; }
.dp-proj-name { font-size: 11px; font-weight: 600; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dp-proj-bar-wrap { background: var(--bg); border-radius: 4px; height: 4px; overflow: hidden; }
.dp-proj-bar { height: 100%; border-radius: 4px; }
.dp-proj-pct { font-size: 11px; color: var(--muted); font-weight: 600; }

/* ── STATS STRIP ────────────────────────────────────────────── */
.stats-strip {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 40px 60px; display: flex; justify-content: space-around;
  align-items: center; gap: 20px; background: var(--bg2);
}
.stat-item { text-align: center; }
.stat-num { font-family: var(--font-h); font-size: 40px; font-weight: 800; color: var(--accent); line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 13px; color: var(--muted); }

/* ── SECTIONS ───────────────────────────────────────────────── */
.section { padding: 100px 60px; max-width: 1300px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 64px; }
.section-head .eyebrow { display: inline-block; margin-bottom: 16px; }
.section-head h2 { font-size: clamp(28px, 4vw, 48px); margin-bottom: 16px; }
.section-head p { font-size: 16px; color: var(--dim); max-width: 520px; margin: 0 auto; line-height: 1.75; }

/* ── FEATURE CARDS ──────────────────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.feat-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
  transition: all var(--t-base); position: relative; overflow: hidden;
}
.feat-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(124,92,252,.06), transparent);
  opacity: 0; transition: opacity var(--t-base);
}
.feat-card:hover { border-color: rgba(124,92,252,.4); transform: translateY(-4px); box-shadow: var(--glow); }
.feat-card:hover::before { opacity: 1; }
.feat-icon { width: 52px; height: 52px; border-radius: 13px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 20px; }
.feat-card h3 { font-size: 18px; margin-bottom: 10px; }
.feat-card p  { font-size: 14px; color: var(--dim); line-height: 1.75; }

/* ── PRICING ────────────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: start; }
.plan-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px 32px; position: relative; transition: all var(--t-base);
}
.plan-card.featured {
  border-color: var(--accent);
  background: linear-gradient(160deg, rgba(124,92,252,.13), var(--surface));
  box-shadow: var(--glow); transform: scale(1.03);
}
.plan-card:hover:not(.featured) { border-color: var(--border2); transform: translateY(-3px); }
.plan-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff; font-size: 11px; font-weight: 700;
  padding: 4px 14px; border-radius: 100px; letter-spacing: .06em; text-transform: uppercase; white-space: nowrap;
}
.plan-name { font-size: 12px; font-weight: 700; color: var(--muted); margin-bottom: 8px; text-transform: uppercase; letter-spacing: .1em; }
.plan-price { font-family: var(--font-h); font-size: 48px; font-weight: 800; line-height: 1; margin-bottom: 4px; }
.plan-price .sym { font-size: 22px; vertical-align: top; margin-top: 8px; font-weight: 500; color: var(--dim); }
.plan-price .per { font-size: 16px; color: var(--muted); font-weight: 400; font-family: var(--font-b); }
.plan-desc { font-size: 13px; color: var(--muted); margin: 10px 0 28px; line-height: 1.6; }
.plan-divider { height: 1px; background: var(--border); margin-bottom: 24px; }
.plan-feats { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.plan-feats li { font-size: 14px; display: flex; gap: 10px; align-items: flex-start; color: var(--dim); }
.plan-feats li .check { color: var(--accent2); font-size: 14px; flex-shrink: 0; margin-top: 1px; }
.plan-feats li.dim { opacity: .4; }

/* ── HOW IT WORKS ───────────────────────────────────────────── */
.steps-wrap { position: relative; }
.steps-line { position: absolute; top: 30px; left: 80px; right: 80px; height: 2px; background: linear-gradient(90deg, var(--accent), var(--accent2)); z-index: 0; }
.steps { display: flex; gap: 0; position: relative; z-index: 1; }
.step { flex: 1; text-align: center; padding: 0 24px; }
.step-num {
  width: 60px; height: 60px; border-radius: 50%; background: var(--surface);
  border: 2px solid var(--accent); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h); font-size: 20px; font-weight: 800; color: var(--accent); margin: 0 auto 20px;
}
.step h3 { font-size: 16px; margin-bottom: 8px; }
.step p  { font-size: 13px; color: var(--dim); line-height: 1.7; }

/* ── TESTIMONIALS ───────────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testi-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; transition: border-color var(--t-base); }
.testi-card:hover { border-color: var(--border2); }
.testi-stars { color: var(--amber); font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.testi-body { font-size: 14px; color: var(--dim); line-height: 1.75; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-av { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; flex-shrink: 0; }
.testi-name { font-size: 13px; font-weight: 600; }
.testi-role { font-size: 12px; color: var(--muted); }

/* ── CTA BAND ───────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, rgba(124,92,252,.18), rgba(0,229,195,.08));
  border: 1px solid rgba(124,92,252,.28); border-radius: 20px;
  padding: 80px; text-align: center; margin: 0 60px 100px;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; top: -50%; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(124,92,252,.15), transparent 70%); pointer-events: none;
}
.cta-band h2 { font-size: clamp(28px,4vw,48px); margin-bottom: 16px; position: relative; }
.cta-band p  { font-size: 16px; color: var(--dim); margin-bottom: 36px; position: relative; }
.cta-band .btn-row { display: flex; gap: 12px; justify-content: center; position: relative; }
.cta-band .small-note { font-size: 12px; color: var(--muted); margin-top: 16px; }

/* ── FOOTER ─────────────────────────────────────────────────── */
footer { border-top: 1px solid var(--border); padding: 60px 60px 40px; }
.footer-top { display: grid; grid-template-columns: 280px 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: 13px; color: var(--muted); line-height: 1.7; margin-top: 12px; max-width: 240px; }
.footer-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 14px; color: var(--dim); transition: color var(--t-fast); }
.footer-col ul a:hover { color: var(--text); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 32px; border-top: 1px solid var(--border); font-size: 13px; color: var(--muted); }
.footer-logo { font-family: var(--font-h); font-weight: 800; font-size: 20px; margin-bottom: 10px; }
.footer-logo span { color: var(--accent); }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 34px; height: 34px; border-radius: var(--radius-xs); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-size: 15px; color: var(--muted); transition: all var(--t-fast);
}
.footer-social a:hover { border-color: var(--accent); color: var(--accent); }

/* ── DASHBOARD LAYOUT ───────────────────────────────────────── */
.dash-wrap { display: flex; min-height: 100vh; }
.sidebar {
  width: 248px; flex-shrink: 0; background: var(--bg2); border-right: 1px solid var(--border);
  display: flex; flex-direction: column; position: fixed; left: 0; top: 0; bottom: 0;
  z-index: 50; transition: transform var(--t-base); overflow: hidden;
}
.sb-logo { padding: 22px 20px; border-bottom: 1px solid var(--border); font-family: var(--font-h); font-size: 20px; font-weight: 800; flex-shrink: 0; }
.sb-logo span { color: var(--accent); }
.sb-user { padding: 14px 16px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.sb-avatar {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; color: #fff; flex-shrink: 0;
}
.sb-user-name { font-size: 13px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sb-user-role { font-size: 11px; color: var(--muted); }
.sb-nav { padding: 10px; flex: 1; overflow-y: auto; overflow-x: hidden; }
.sb-section-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); padding: 10px 12px 6px; }
.sb-item {
  display: flex; align-items: center; gap: 10px; padding: 9px 12px;
  border-radius: var(--radius-sm); font-size: 13px; font-weight: 500;
  color: var(--dim); cursor: pointer; transition: all var(--t-fast); white-space: nowrap;
}
.sb-item:hover { background: var(--surface); color: var(--text); }
.sb-item.active { background: rgba(124,92,252,.15); color: var(--accent); }
.sb-icon { font-size: 16px; width: 20px; text-align: center; flex-shrink: 0; }
.sb-badge { margin-left: auto; background: var(--accent); color: #fff; font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: 100px; }
.sb-badge-gray { margin-left: auto; background: var(--surface2); color: var(--dim); font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: 100px; }
.sb-projects { padding: 0 10px 8px; }
.sb-proj-item {
  display: flex; align-items: center; gap: 8px; padding: 7px 12px;
  border-radius: var(--radius-sm); font-size: 12px; color: var(--dim); cursor: pointer;
  transition: all var(--t-fast); white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.sb-proj-item:hover { background: var(--surface); color: var(--text); }
.sb-proj-dot { width: 8px; height: 8px; border-radius: 2px; flex-shrink: 0; }
.sb-footer { padding: 10px; border-top: 1px solid var(--border); flex-shrink: 0; }
.main { margin-left: 248px; flex: 1; min-height: 100vh; background: var(--bg); }
.topbar {
  position: sticky; top: 0; z-index: 40;
  background: rgba(9,9,15,.92); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 32px; height: 60px; display: flex; align-items: center; gap: 14px;
}
.topbar-title { font-family: var(--font-h); font-size: 18px; font-weight: 700; flex: 1; }
.topbar-search {
  display: flex; align-items: center; gap: 8px; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 7px 13px; font-size: 13px; color: var(--dim); transition: border-color var(--t-fast);
}
.topbar-search:focus-within { border-color: rgba(124,92,252,.5); }
.topbar-search input { background: none; border: none; outline: none; font-size: 13px; color: var(--text); width: 180px; }
.topbar-search input::placeholder { color: var(--muted); }
.notif-btn {
  position: relative; background: var(--surface); border: 1px solid var(--border);
  width: 38px; height: 38px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; font-size: 17px;
  transition: border-color var(--t-fast); flex-shrink: 0; cursor: pointer;
}
.notif-btn:hover { border-color: var(--border2); }
.notif-dot { position: absolute; top: 7px; right: 7px; width: 8px; height: 8px; border-radius: 50%; background: var(--accent3); border: 2px solid var(--bg); }
.dash-content { padding: 28px 32px; }
.kpi-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-bottom: 28px; }
.kpi-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px 24px; position: relative; overflow: hidden; transition: border-color var(--t-fast);
}
.kpi-card:hover { border-color: var(--border2); }
.kpi-label { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; margin-bottom: 10px; }
.kpi-val { font-family: var(--font-h); font-size: 30px; font-weight: 800; line-height: 1; margin-bottom: 8px; }
.kpi-change { font-size: 12px; display: flex; align-items: center; gap: 4px; }
.kpi-change.up { color: var(--accent2); }
.kpi-change.down { color: var(--accent3); }
.two-col   { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.three-col { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.dash-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.dash-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.dash-card-head h3 { font-size: 15px; font-weight: 700; }
.dash-card-head .see-all { font-size: 12px; color: var(--accent); cursor: pointer; transition: opacity var(--t-fast); }
.dash-card-head .see-all:hover { opacity: .75; }
.proj-item { display: flex; align-items: center; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.proj-item:last-child { border-bottom: none; padding-bottom: 0; }
.proj-color { width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0; }
.proj-info  { flex: 1; min-width: 0; }
.proj-name  { font-size: 14px; font-weight: 600; margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.proj-meta  { font-size: 12px; color: var(--muted); }
.proj-bar-wrap { height: 4px; background: var(--bg); border-radius: 4px; overflow: hidden; margin-top: 7px; }
.proj-bar { height: 100%; border-radius: 4px; transition: width .6s ease; }
.proj-pct { font-size: 12px; font-weight: 600; color: var(--dim); flex-shrink: 0; }
.task-item { display: flex; align-items: flex-start; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--border); }
.task-item:last-child { border-bottom: none; }
.task-check {
  width: 18px; height: 18px; border: 2px solid var(--border2);
  border-radius: 5px; flex-shrink: 0; margin-top: 2px; cursor: pointer;
  transition: all var(--t-fast); display: flex; align-items: center; justify-content: center;
}
.task-check:hover { border-color: var(--accent); }
.task-check.done { background: var(--accent); border-color: var(--accent); }
.task-info { flex: 1; min-width: 0; }
.task-name { font-size: 13px; font-weight: 500; margin-bottom: 3px; }
.task-name.done { text-decoration: line-through; color: var(--muted); }
.task-due { font-size: 12px; color: var(--muted); }
.task-due.overdue { color: var(--accent3); }
.activity-item { display: flex; align-items: flex-start; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--border); }
.activity-item:last-child { border-bottom: none; }
.activity-av { width: 30px; height: 30px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; flex-shrink: 0; }
.activity-text { flex: 1; font-size: 13px; color: var(--dim); line-height: 1.5; }
.activity-text strong { color: var(--text); font-weight: 600; }
.activity-time { font-size: 11px; color: var(--muted); flex-shrink: 0; margin-top: 2px; }
.kanban-wrap { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.kanban-col  { background: var(--bg2); border-radius: var(--radius); padding: 16px; }
.kanban-head { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; font-size: 13px; font-weight: 700; }
.kanban-count { background: var(--surface); color: var(--muted); font-size: 11px; font-weight: 700; padding: 2px 7px; border-radius: 100px; margin-left: auto; }
.task-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 14px; margin-bottom: 10px; transition: border-color var(--t-fast); }
.task-card:hover { border-color: var(--border2); }
.task-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; margin-bottom: 8px; }
.task-title { font-size: 13px; font-weight: 600; line-height: 1.4; }
.task-card-due { font-size: 12px; color: var(--muted); margin-bottom: 10px; }
.task-card-foot { display: flex; align-items: center; gap: 8px; }
.task-av { width: 24px; height: 24px; border-radius: 7px; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; color: #fff; flex-shrink: 0; }
.member-item { display: flex; align-items: center; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--border); }
.member-item:last-child { border-bottom: none; }
.member-av { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; color: #fff; flex-shrink: 0; }
.member-name { font-size: 14px; font-weight: 600; }
.member-role { font-size: 12px; color: var(--muted); }
.member-status { margin-left: auto; display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--muted); }
.status-dot { width: 7px; height: 7px; border-radius: 50%; }
.status-dot.online  { background: var(--accent2); }
.status-dot.offline { background: var(--muted); }
.status-dot.busy    { background: var(--accent3); }

/* ── MODAL ──────────────────────────────────────────────────── */
.modal-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,.7);
  backdrop-filter: blur(6px); z-index: 200;
  align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--bg2); border: 1px solid var(--border2);
  border-radius: 18px; padding: 32px; width: 100%; max-width: 520px;
  max-height: 90vh; overflow-y: auto; box-shadow: var(--shadow-lg);
  animation: modal-in .25s ease both;
}
@keyframes modal-in { from { opacity:0; transform: scale(.96) translateY(10px); } to { opacity:1; transform:none; } }
.modal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.modal-head h3 { font-size: 18px; }
.modal-close {
  width: 30px; height: 30px; border-radius: var(--radius-xs);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--muted); background: var(--surface);
  cursor: pointer; transition: all var(--t-fast);
}
.modal-close:hover { color: var(--text); }
.modal-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.modal-foot { display: flex; justify-content: flex-end; gap: 10px; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border); }
.color-swatches { display: flex; gap: 10px; flex-wrap: wrap; }
.swatch { width: 30px; height: 30px; border-radius: var(--radius-xs); cursor: pointer; border: 2px solid transparent; transition: all var(--t-fast); }
.swatch:hover { transform: scale(1.1); }
.swatch.sel { border-color: #fff; box-shadow: 0 0 0 1px rgba(255,255,255,.3); }

/* ── AUTH PAGES ─────────────────────────────────────────────── */
.auth-page {
  min-height: 100vh; display: flex; align-items: stretch;
  position: relative; z-index: 1;
}
.auth-left {
  flex: 0 0 480px; display: flex; flex-direction: column;
  justify-content: center; padding: 60px;
  border-right: 1px solid var(--border); position: relative; overflow: hidden;
}
.auth-left-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(160deg, rgba(124,92,252,.12) 0%, transparent 60%);
}
.auth-left-content { position: relative; z-index: 1; }
.auth-right {
  flex: 1; display: flex; flex-direction: column;
  justify-content: center; align-items: center; padding: 60px;
}
.auth-card {
  width: 100%; max-width: 440px;
  background: var(--surface); border: 1px solid var(--border2);
  border-radius: 20px; padding: 40px;
  box-shadow: var(--shadow-lg);
}
.auth-logo { font-family: var(--font-h); font-size: 24px; font-weight: 800; margin-bottom: 40px; letter-spacing: -.5px; }
.auth-logo span { color: var(--accent); }
.auth-heading { font-size: clamp(28px,3vw,38px); font-weight: 800; line-height: 1.1; margin-bottom: 12px; letter-spacing: -1px; }
.auth-sub { font-size: 14px; color: var(--dim); line-height: 1.7; margin-bottom: 32px; }
.auth-sep { display: flex; align-items: center; gap: 12px; margin: 20px 0; font-size: 12px; color: var(--muted); }
.auth-sep::before, .auth-sep::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.auth-switch { text-align: center; margin-top: 24px; font-size: 13px; color: var(--muted); }
.auth-switch a { color: var(--accent); font-weight: 600; }
.auth-switch a:hover { text-decoration: underline; }
.auth-feature-list { display: flex; flex-direction: column; gap: 20px; margin-top: 40px; }
.auth-feature { display: flex; align-items: flex-start; gap: 14px; }
.auth-feature-icon {
  width: 42px; height: 42px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.auth-feature-text h4 { font-size: 14px; font-weight: 700; margin-bottom: 3px; }
.auth-feature-text p  { font-size: 12px; color: var(--dim); line-height: 1.6; }
.auth-card-title { font-family: var(--font-h); font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.auth-card-sub   { font-size: 14px; color: var(--dim); margin-bottom: 28px; }
.register-steps { display: flex; gap: 8px; margin-bottom: 28px; align-items: center; }
.reg-step { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--muted); }
.reg-step-num {
  width: 22px; height: 22px; border-radius: 50%; font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg3); border: 1px solid var(--border); transition: all var(--t-base);
}
.reg-step.active .reg-step-num { background: var(--accent); border-color: var(--accent); color: #fff; }
.reg-step.done .reg-step-num { background: var(--accent2); border-color: var(--accent2); color: #000; }
.reg-step-line { flex: 1; height: 1px; background: var(--border); }
.soc-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 11px; border: 1px solid var(--border2);
  border-radius: var(--radius-sm); font-size: 14px; font-weight: 500; color: var(--text);
  background: var(--bg3); transition: all var(--t-fast); cursor: pointer; font-family: var(--font-b);
}
.soc-btn:hover { border-color: var(--border2); background: var(--surface); }
.soc-btn img { width: 18px; height: 18px; }
.plan-picker { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 18px; }
.plan-pick {
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 14px 10px; text-align: center; cursor: pointer; transition: all var(--t-fast);
}
.plan-pick:hover { border-color: var(--border2); }
.plan-pick.sel { border-color: var(--accent); background: rgba(124,92,252,.1); }
.plan-pick-name { font-size: 13px; font-weight: 700; margin-bottom: 3px; }
.plan-pick-price { font-size: 16px; font-weight: 800; font-family: var(--font-h); color: var(--accent); }
.plan-pick-note { font-size: 11px; color: var(--muted); margin-top: 3px; }

/* ── TOAST ──────────────────────────────────────────────────── */
.toast-stack {
  position: fixed; bottom: 28px; right: 28px; z-index: 300;
  display: flex; flex-direction: column; gap: 10px; pointer-events: none;
}
.toast {
  background: var(--surface); border: 1px solid var(--border2);
  border-radius: var(--radius-sm); padding: 14px 18px;
  display: flex; align-items: center; gap: 12px; font-size: 13px;
  box-shadow: var(--shadow); min-width: 280px; max-width: 380px;
  pointer-events: auto; animation: toast-in .3s ease both;
}
@keyframes toast-in { from { opacity:0; transform: translateX(20px); } to { opacity:1; transform:none; } }
.toast.out { animation: toast-out .25s ease both; }
@keyframes toast-out { to { opacity:0; transform: translateX(20px); } }
.toast-icon { font-size: 18px; flex-shrink: 0; }
.toast-msg  { flex: 1; color: var(--text); }
.toast.success .toast-icon { color: var(--accent2); }
.toast.error   .toast-icon { color: var(--accent3); }
.toast.info    .toast-icon { color: var(--accent);  }
.toast.warning .toast-icon { color: var(--amber);   }

/* ── ANIMATIONS ─────────────────────────────────────────────── */
@keyframes fade-up { from { opacity:0; transform: translateY(24px); } to { opacity:1; transform:none; } }
@keyframes fade-in { from { opacity:0; } to { opacity:1; } }
@keyframes spin { to { transform: rotate(360deg); } }
.fade-up { animation: fade-up .55s ease both; }
.fade-in { animation: fade-in .4s ease both; }
.fd1 { animation-delay: .08s; } .fd2 { animation-delay: .16s; } .fd3 { animation-delay: .24s; }
.fd4 { animation-delay: .32s; } .fd5 { animation-delay: .40s; } .fd6 { animation-delay: .48s; }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .features-grid, .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .hero-img-wrap { flex: 0 0 420px; }
  .kpi-row { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .auth-left { flex: 0 0 380px; padding: 48px; }
}
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .plan-card.featured { transform: none; }
  .kanban-wrap, .two-col, .three-col { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .auth-page { flex-direction: column; }
  .auth-left { flex: none; border-right: none; border-bottom: 1px solid var(--border); padding: 40px; }
  .auth-right { padding: 40px 24px; }
}
@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav-links, .nav-actions .btn-ghost { display: none; }
  .nav-hamburger { display: flex; }
  .hero { padding: 110px 20px 80px; flex-direction: column; }
  .hero-img-wrap { flex: none; width: 100%; }
  .dashboard-preview { transform: none; }
  .section { padding: 64px 20px; }
  .stats-strip { padding: 40px 20px; flex-wrap: wrap; gap: 32px; }
  .cta-band { margin: 0 20px 64px; padding: 48px 24px; }
  .cta-band .btn-row { flex-direction: column; align-items: center; }
  footer { padding: 40px 20px 24px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .features-grid { grid-template-columns: 1fr; }
  .steps { flex-direction: column; gap: 40px; }
  .steps-line { display: none; }
  .sidebar { transform: translateX(-100%); }
  .sidebar.open { transform: none; }
  .main { margin-left: 0; }
  .dash-content { padding: 20px; }
  .topbar { padding: 0 16px; }
}
@media (max-width: 480px) {
  .kpi-row, .footer-top { grid-template-columns: 1fr; }
  .stats-strip { flex-direction: column; }
  .hero h1 { letter-spacing: -1px; }
  .cta-band, .modal { padding: 36px 20px; }
  .modal-two-col { grid-template-columns: 1fr; }
  .plan-picker { grid-template-columns: 1fr; }
  .auth-card { padding: 28px 20px; }
  .auth-left { display: none; }
}

/* Super Admin */
.admin-shell .main { background: linear-gradient(180deg, #09090f 0%, #0f111d 100%); }
.admin-sidebar { background: #1a2a3a; }
.admin-topbar { background: rgba(12, 17, 27, .94); }`r`n.admin-topbar-title { min-width: 0; padding-right: 16px; }
.admin-topbar-actions { display: flex; align-items: center; gap: 10px; position: relative; z-index: 70; }
.admin-profile-btn { display: flex; align-items: center; justify-content: center; }
.admin-dropdown-wrap { position: relative; }
.admin-dropdown {
  position: fixed;
  right: 24px;
  top: 78px;
  width: 320px;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 12px;
  display: none;
  z-index: 80;
}
.admin-dropdown.open { display: block; }
#profile-menu { right: 24px; top: 78px; width: 220px; }
#notif-menu { right: 72px; top: 78px; }
.admin-dropdown-title { font-size: 13px; font-weight: 700; margin-bottom: 10px; }
.admin-dropdown-item { display: flex; flex-direction: column; gap: 4px; padding: 10px 0; border-bottom: 1px solid var(--border); }
.admin-dropdown-item:last-child { border-bottom: none; }
.admin-dropdown-item strong { font-size: 12px; }
.admin-dropdown-item span, .admin-dropdown-item small, .admin-dropdown-empty { color: var(--muted); font-size: 12px; }
.admin-dropdown-link {
  display: block; padding: 9px 10px; border-radius: var(--radius-sm); color: var(--dim);
  transition: all var(--t-fast);
}
.admin-dropdown-link:hover { background: rgba(124,92,252,.12); color: var(--text); }
.admin-alert { border-radius: var(--radius-sm); padding: 12px 14px; margin-bottom: 18px; font-size: 13px; }
.admin-alert-success { background: rgba(0,229,195,.1); border: 1px solid rgba(0,229,195,.25); color: var(--accent2); }
.admin-alert-error { background: rgba(255,107,107,.1); border: 1px solid rgba(255,107,107,.25); color: var(--accent3); }
.admin-subhead { font-size: 12px; color: var(--muted); margin-top: 4px; }
.admin-inline-form, .admin-filters { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.admin-inline-form .form-input, .admin-inline-form .form-select { min-width: 160px; }
.admin-inline-form-wide .form-select { min-width: 140px; }
.admin-table-wrap { overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; min-width: 900px; }
.admin-table th, .admin-table td { padding: 14px 12px; text-align: left; border-bottom: 1px solid var(--border); vertical-align: top; }
.admin-table th { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.admin-table td { font-size: 13px; color: var(--dim); }
.admin-table td strong { color: var(--text); }
.admin-cell-meta { font-size: 12px; color: var(--muted); margin-top: 4px; }
.admin-action-row { display: flex; gap: 8px; flex-wrap: wrap; }
.admin-empty { padding: 28px 0; color: var(--muted); text-align: center; }
.admin-priority-list { display: grid; gap: 12px; }
.admin-priority-item {
  background: rgba(255,255,255,.02); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 14px; display: flex; flex-direction: column; gap: 4px;
}
.admin-priority-item strong { font-size: 14px; }
.admin-priority-item span { color: var(--muted); font-size: 13px; }
.admin-plan-stack { display: grid; gap: 14px; }
.admin-plan-card { border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; }
.admin-plan-card-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.admin-plan-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 768px) {
  #mob-menu-btn { display: flex !important; }
  .admin-filters, .admin-inline-form { flex-direction: column; align-items: stretch; }
  .admin-plan-grid { grid-template-columns: 1fr; }
  .admin-dropdown { right: 12px; left: 12px; width: auto; }
  #profile-menu, #notif-menu { right: 12px; left: 12px; width: auto; }
}

/* Marketing pages */
.marketing-page { padding-top: 0; }
.marketing-page .nav { position: sticky; top: 0; }
.page-hero { max-width: 1300px; margin: 0 auto; padding: 120px 60px 70px; }
.page-hero h1 { font-size: clamp(38px, 5vw, 68px); line-height: 1.05; letter-spacing: -1.5px; margin-bottom: 18px; }
.page-hero p { max-width: 760px; margin: 0 auto; color: var(--dim); font-size: 17px; line-height: 1.8; }
.marketing-two-col { align-items: stretch; }
.marketing-copy { color: var(--dim); font-size: 15px; line-height: 1.85; }
.feature-list-block { display: grid; gap: 14px; }
.feature-list-block div { padding: 14px 0; border-bottom: 1px solid var(--border); }
.feature-list-block div:last-child { border-bottom: none; }
.feature-list-block strong { display: block; margin-bottom: 4px; font-size: 14px; }
.feature-list-block span { color: var(--muted); font-size: 13px; line-height: 1.7; }
.marketing-metric-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.marketing-metric {
  background: rgba(255,255,255,.02); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 16px;
}
.marketing-metric strong { display: block; font-family: var(--font-h); font-size: 20px; margin-bottom: 6px; }
.marketing-metric span { color: var(--muted); font-size: 13px; }
.timeline { max-width: 900px; margin: 0 auto; display: grid; gap: 14px; }
.timeline-item {
  display: grid; grid-template-columns: 120px 1fr; gap: 16px; align-items: start;
  padding: 18px 20px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
}
.timeline-item strong { font-family: var(--font-h); font-size: 24px; color: var(--accent); }
.timeline-item span { color: var(--dim); line-height: 1.8; }
.blog-grid { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; padding: 0 60px 20px; }
.blog-featured { max-width: 1300px; margin: 0 auto; }
.price-matrix { min-width: 680px; }
@media (max-width: 900px) {
  .marketing-page { padding-top: 0; }
  .page-hero { padding: 72px 20px 56px; }
  .marketing-metric-grid, .blog-grid { grid-template-columns: 1fr; }
  .timeline-item { grid-template-columns: 1fr; }
}

