:root {
  --bg: #0a0a0f;
  --bg-elevated: #12121a;
  --bg-card: #1a1a25;
  --fg: #e8e8ed;
  --fg-muted: #8a8a9a;
  --accent: #00d4aa;
  --accent-glow: rgba(0, 212, 170, 0.15);
  --accent-secondary: #7c5cfc;
  --border: rgba(255, 255, 255, 0.06);
  --radius: 12px;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

/* ─── Hero ─── */
.hero {
  padding: 100px 24px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-glow);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #fff;
}

.hero h1 .accent {
  color: var(--accent);
}

.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  min-width: 80px;
}

.stat-label {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.4;
}

/* ─── Problem ─── */
.problem {
  padding: 100px 24px;
  background: var(--bg-elevated);
}

.problem-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.problem h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 48px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.problem-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
}

.problem-icon {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-secondary);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124, 92, 252, 0.12);
  border-radius: 10px;
  margin-bottom: 20px;
}

.problem-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

.problem-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ─── System ─── */
.system {
  padding: 100px 24px;
}

.system-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.system-header {
  margin-bottom: 56px;
}

.system-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.system-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 560px;
}

.system-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.system-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color 0.2s;
}

.system-card:hover {
  border-color: rgba(0, 212, 170, 0.3);
}

.system-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.system-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.system-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ─── Results ─── */
.results {
  padding: 100px 24px;
  background: var(--bg-elevated);
}

.results-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.results-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 40px;
}

.niche-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}

.niche-tag {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--fg);
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 10px 24px;
  border-radius: 100px;
  transition: all 0.2s;
}

.niche-tag:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.results-statement {
  max-width: 680px;
  margin: 0 auto;
}

.results-statement p {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.8;
}

/* ─── Closing ─── */
.closing {
  padding: 120px 24px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(0, 212, 170, 0.04) 100%);
}

.closing-inner {
  max-width: 720px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.3;
}

.closing p {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.8;
}

/* ─── Footer ─── */
.site-footer {
  padding: 48px 24px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 6px;
}

.footer-sub {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 4px;
}

.footer-location {
  font-size: 13px;
  color: var(--fg-muted);
  opacity: 0.6;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .hero { padding: 60px 20px 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .problem-grid { grid-template-columns: 1fr; }
  .system-grid { grid-template-columns: 1fr; }
  .stat-card { padding: 20px; }
  .stat-number { font-size: 26px; min-width: 60px; }
  .problem, .system, .results { padding: 60px 20px; }
  .closing { padding: 80px 20px; }
}

/* ─── Nav ─── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link {
  font-size: 15px;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--fg); }
.nav-cta {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-glow);
  border: 1px solid rgba(0, 212, 170, 0.3);
  padding: 8px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
}
.nav-cta:hover { background: rgba(0, 212, 170, 0.25); }

/* ─── Hero Actions ─── */
.hero-actions { display: flex; gap: 16px; margin-top: 32px; flex-wrap: wrap; }
.btn-primary {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: #000;
  background: var(--accent);
  padding: 14px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: opacity 0.2s;
}
.btn-primary:hover { opacity: 0.88; }
.btn-secondary {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 14px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color 0.2s;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.2); }

/* ─── Section Tag ─── */
.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-glow);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

/* ─── Pricing ─── */
.pricing { padding: 100px 24px; background: var(--bg-elevated); }
.pricing-inner { max-width: 1200px; margin: 0 auto; }
.pricing-header { text-align: center; margin-bottom: 60px; }
.pricing-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.pricing-sub { font-size: 17px; color: var(--fg-muted); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
}
.pricing-card--featured {
  background: var(--bg-card);
  border-color: rgba(0, 212, 170, 0.4);
  transform: scale(1.03);
}
.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #000;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.plan-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--fg-muted);
  margin-bottom: 12px;
}
.plan-price { margin-bottom: 8px; }
.price-amount {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: #fff;
}
.price-period { font-size: 16px; color: var(--fg-muted); }
.plan-tagline { font-size: 14px; color: var(--fg-muted); margin-bottom: 24px; line-height: 1.5; }
.plan-features { list-style: none; margin-bottom: 28px; }
.plan-features li { font-size: 14px; color: var(--fg-muted); padding: 8px 0; border-bottom: 1px solid var(--border); }
.plan-features li:last-child { border-bottom: none; }
.plan-cta {
  display: block;
  text-align: center;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  padding: 14px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.2s;
}
.plan-cta--primary { background: var(--accent); color: #000; }
.plan-cta--primary:hover { opacity: 0.88; }
.plan-cta--secondary { background: transparent; color: var(--accent); border: 1px solid rgba(0,212,170,0.35); }
.plan-cta--secondary:hover { background: var(--accent-glow); }

/* ─── Portfolio ─── */
.portfolio { padding: 100px 24px; }
.portfolio-inner { max-width: 1200px; margin: 0 auto; }
.portfolio-header { margin-bottom: 56px; }
.portfolio-header h2 { font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 42px); font-weight: 700; color: #fff; margin-bottom: 12px; }
.portfolio-sub { font-size: 17px; color: var(--fg-muted); max-width: 520px; }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.portfolio-item { display: flex; flex-direction: column; gap: 16px; }
.portfolio-thumb {
  position: relative;
  border-radius: var(--radius);
  aspect-ratio: 9/16;
  max-height: 280px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
}
.thumb-bg--1 { background: linear-gradient(135deg, #1a1a40 0%, #0d2b45 50%, #1a1a25 100%); }
.thumb-bg--2 { background: linear-gradient(135deg, #1a0d2b 0%, #2b1a40 50%, #1a1a25 100%); }
.thumb-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 56px;
  height: 56px;
  background: rgba(0,212,170,0.2);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--accent);
}
.thumb-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-glow);
  padding: 4px 10px;
  border-radius: 6px;
  align-self: flex-start;
}
.portfolio-type {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
}
.portfolio-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.5; margin-top: 6px; }
.portfolio-stats { display: flex; gap: 16px; margin-top: 8px; font-size: 13px; color: var(--fg-muted); }
/* Social post card */
.post-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.post-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.post-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-secondary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 13px; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.post-handle { font-family: var(--font-display); font-size: 14px; font-weight: 600; color: #fff; }
.post-platform { font-size: 12px; color: var(--fg-muted); }
.post-caption { font-size: 14px; color: var(--fg); line-height: 1.6; margin-bottom: 14px; }
.post-engagement { font-size: 13px; color: var(--fg-muted); }
/* Google card */
.google-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.google-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.google-logo {
  width: 36px; height: 36px; border-radius: 8px;
  background: #4285F4; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 16px; font-weight: 700; color: #fff; flex-shrink: 0;
}
.google-biz { font-family: var(--font-display); font-size: 14px; font-weight: 600; color: #fff; }
.google-type { font-size: 12px; color: var(--fg-muted); }
.google-body { font-size: 14px; color: var(--fg-muted); line-height: 1.6; margin-bottom: 14px; }
.google-cta-row { display: flex; gap: 8px; flex-wrap: wrap; }
.google-badge { font-size: 12px; color: var(--accent); background: var(--accent-glow); padding: 4px 10px; border-radius: 6px; }
/* Review card */
.review-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.review-header { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--fg-muted); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
.review-bubble { border-radius: var(--radius); padding: 12px 16px; margin-bottom: 10px; }
.review-bubble--out { background: var(--accent-glow); border: 1px solid rgba(0,212,170,0.2); }
.review-bubble--in { background: rgba(124,92,252,0.12); border: 1px solid rgba(124,92,252,0.2); }
.review-bubble p { font-size: 13px; color: var(--fg); line-height: 1.6; margin-bottom: 6px; }
.review-time { font-size: 11px; color: var(--fg-muted); }

/* ─── Auth (Login Page) ─── */
.auth-body { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 24px; }
.auth-container { width: 100%; max-width: 420px; }
.auth-logo {
  display: block; text-align: center;
  font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--accent);
  text-decoration: none; margin-bottom: 32px;
}
.auth-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 40px 36px; }
.auth-title { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.auth-sub { font-size: 15px; color: var(--fg-muted); margin-bottom: 28px; }
.auth-error { background: rgba(255,80,80,0.12); border: 1px solid rgba(255,80,80,0.3); color: #ff6b6b; font-size: 14px; padding: 10px 14px; border-radius: 8px; margin-bottom: 16px; }
.auth-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-family: var(--font-display); font-size: 13px; font-weight: 600; color: var(--fg-muted); }
.form-input {
  background: var(--bg); border: 1px solid var(--border); border-radius: 8px;
  padding: 12px 14px; font-size: 15px; color: var(--fg); font-family: var(--font-body);
  outline: none; transition: border-color 0.2s;
}
.form-input:focus { border-color: rgba(0,212,170,0.5); }
.form-input::placeholder { color: var(--fg-muted); opacity: 0.6; }
.auth-submit {
  background: var(--accent); color: #000; border: none; border-radius: 8px;
  padding: 14px; font-family: var(--font-display); font-size: 15px; font-weight: 700;
  cursor: pointer; transition: opacity 0.2s; margin-top: 4px;
}
.auth-submit:hover { opacity: 0.88; }
.auth-submit:disabled { opacity: 0.5; cursor: default; }
.auth-footer { text-align: center; font-size: 14px; color: var(--fg-muted); margin-top: 20px; }
.auth-footer a { color: var(--accent); text-decoration: none; }

/* ─── Dashboard ─── */
.dash-body { background: var(--bg); }
.dash-nav { background: var(--bg-elevated); border-bottom: 1px solid var(--border); }
.dash-nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px; height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.dash-nav-right { display: flex; align-items: center; gap: 20px; }
.dash-biz { font-family: var(--font-display); font-size: 15px; font-weight: 600; color: var(--fg-muted); }
.dash-logout { font-size: 14px; color: var(--fg-muted); text-decoration: none; transition: color 0.2s; }
.dash-logout:hover { color: var(--fg); }
.dash-container { max-width: 1280px; margin: 0 auto; padding: 40px 24px 80px; }
.dash-header { margin-bottom: 36px; }
.dash-greeting { font-family: var(--font-display); font-size: clamp(24px, 3vw, 32px); font-weight: 700; color: #fff; margin-bottom: 8px; }
.dash-sub { font-size: 16px; color: var(--fg-muted); }
/* Metrics */
.dash-metrics { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-bottom: 48px; }
.metric-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 20px; text-align: center; }
.metric-skeleton { animation: pulse 1.5s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.5; } }
.metric-icon { font-size: 24px; margin-bottom: 10px; }
.metric-value { font-family: var(--font-display); font-size: 32px; font-weight: 700; color: var(--accent); margin-bottom: 6px; }
.metric-label { font-size: 12px; color: var(--fg-muted); line-height: 1.3; }
/* Sections */
.dash-section { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; margin-bottom: 24px; }
.dash-section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.dash-section-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: #fff; }
.month-nav { display: flex; align-items: center; gap: 12px; }
.month-btn {
  background: var(--bg); border: 1px solid var(--border); color: var(--fg);
  width: 32px; height: 32px; border-radius: 8px; cursor: pointer; font-size: 14px;
  display: flex; align-items: center; justify-content: center; transition: border-color 0.2s;
}
.month-btn:hover { border-color: rgba(255,255,255,0.2); }
.month-label { font-family: var(--font-display); font-size: 15px; font-weight: 600; color: var(--fg); min-width: 140px; text-align: center; }
/* Calendar Table */
.calendar-table-wrap { overflow-x: auto; }
.calendar-table { width: 100%; border-collapse: collapse; }
.calendar-table th { font-family: var(--font-display); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--fg-muted); padding: 10px 12px; text-align: left; border-bottom: 1px solid var(--border); }
.calendar-table td { padding: 14px 12px; border-bottom: 1px solid var(--border); font-size: 14px; color: var(--fg); }
.calendar-table tr:last-child td { border-bottom: none; }
.calendar-table tr:hover td { background: rgba(255,255,255,0.02); }
.week-badge { font-family: var(--font-display); font-size: 12px; font-weight: 600; color: var(--fg-muted); }
.type-badge { font-size: 12px; background: rgba(124,92,252,0.15); color: #a78bfa; padding: 3px 10px; border-radius: 6px; white-space: nowrap; }
.cal-title { max-width: 320px; }
.cal-platform { color: var(--fg-muted); font-size: 13px; }
.status-badge { font-size: 12px; font-weight: 600; padding: 3px 10px; border-radius: 6px; white-space: nowrap; }
.status-published { background: rgba(0,212,170,0.15); color: var(--accent); }
.status-scheduled { background: rgba(59,130,246,0.15); color: #60a5fa; }
.status-review { background: rgba(251,191,36,0.15); color: #fbbf24; }
.status-planned { background: rgba(255,255,255,0.06); color: var(--fg-muted); }
.cal-loading, .cal-empty { text-align: center; padding: 40px; color: var(--fg-muted); font-size: 14px; }
.dash-error { color: #ff6b6b; font-size: 14px; text-align: center; padding: 20px; }
.dash-empty { color: var(--fg-muted); font-size: 14px; text-align: center; padding: 32px; }
/* Trend Chart */
.trend-chart { padding: 8px 0; }
.trend-bars { display: flex; align-items: flex-end; gap: 16px; height: 160px; }
.trend-bar-wrap { display: flex; flex-direction: column; align-items: center; gap: 6px; flex: 1; }
.trend-bar-val { font-family: var(--font-display); font-size: 13px; font-weight: 600; color: var(--accent); }
.trend-bar { background: linear-gradient(to top, var(--accent), rgba(0,212,170,0.3)); border-radius: 4px 4px 0 0; width: 100%; min-height: 4px; transition: height 0.3s ease; }
.trend-bar-label { font-size: 12px; color: var(--fg-muted); }
.trend-legend { font-size: 12px; color: var(--fg-muted); margin-top: 16px; text-align: center; }

/* ─── Responsive additions ─── */
@media (max-width: 1024px) {
  .dash-metrics { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card--featured { transform: none; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links .nav-link { display: none; }
  .dash-metrics { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .auth-card { padding: 28px 20px; }
  .trend-bars { gap: 8px; }
}