:root {
  --bg: #09090B;
  --surface: #18181B;
  --surface-2: #27272A;
  --border: #3F3F46;
  --text: #FAFAFA;
  --text-muted: #A1A1AA;
  --text-subtle: #71717A;
  --accent: #007AFF;
  --accent-dim: rgba(0, 122, 255, 0.12);
  --teal: #14B8A6;
  --teal-dim: rgba(20, 184, 166, 0.12);
  --radius: 12px;
  --radius-sm: 7px;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── Navigation ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(9, 9, 11, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}
.logo-text {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.3px;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--text); }

/* ─── Hero ─── */
.hero {
  padding: 140px 24px 100px;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid rgba(0, 122, 255, 0.3);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(42px, 5vw, 62px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
}
.headline-accent {
  color: var(--accent);
  display: block;
}
.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 440px;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
}
.stat { text-align: left; }
.stat-num {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.5px;
}
.stat-label {
  font-size: 12px;
  color: var(--text-subtle);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}
.mockup-frame {
  width: 100%;
  max-width: 460px;
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.03);
  position: relative;
}
.mockup-glow {
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(0,122,255,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.mockup-bar {
  background: var(--surface-2);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mockup-dots {
  display: flex;
  gap: 6px;
}
.mockup-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border);
}
.mockup-dots span:nth-child(1) { background: #FF5F57; }
.mockup-dots span:nth-child(2) { background: #FEBC2E; }
.mockup-dots span:nth-child(3) { background: #28C840; }
.mockup-url {
  font-size: 11px;
  color: var(--text-subtle);
  font-family: 'DM Sans', monospace;
  background: var(--surface);
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid var(--border);
}
.mockup-body { padding: 20px; }
.mockup-topbar {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.mockup-avatar {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #007AFF, #14B8A6);
  flex-shrink: 0;
}
.mockup-meta { flex: 1; }
.mockup-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.mockup-title {
  height: 14px;
  width: 160px;
  background: var(--surface-2);
  border-radius: 4px;
}
.mockup-badge {
  font-size: 10px;
  font-weight: 600;
  background: var(--accent-dim);
  color: var(--accent);
  padding: 2px 8px;
  border-radius: 100px;
  letter-spacing: 0.03em;
}
.mockup-subtitle {
  height: 10px;
  width: 200px;
  background: var(--surface-2);
  border-radius: 4px;
  opacity: 0.6;
}
.mockup-budget {
  text-align: right;
}
.budget-label {
  font-size: 10px;
  color: var(--text-subtle);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.budget-val {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--teal);
}
.mockup-desc { margin-bottom: 16px; }
.mockup-desc-line {
  height: 9px;
  background: var(--surface-2);
  border-radius: 4px;
  margin-bottom: 7px;
  opacity: 0.7;
}
.l1 { width: 90%; }
.l2 { width: 75%; }
.l3 { width: 55%; }
.mockup-skills {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.skill-chip {
  font-size: 11px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 3px 9px;
  border-radius: 6px;
}
.mockup-applicants {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.applicant-avatars {
  display: flex;
}
.ap {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 2px solid var(--surface);
  margin-left: -6px;
}
.ap:first-child { margin-left: 0; }
.av1 { background: linear-gradient(135deg, #007AFF, #0056b3); }
.av2 { background: linear-gradient(135deg, #14b8a6, #0d9488); }
.av3 { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.av4 { background: linear-gradient(135deg, #ec4899, #db2777); }
.applicant-text {
  font-size: 13px;
  color: var(--text-muted);
}
.mockup-actions {
  display: flex;
  gap: 10px;
}
.mockup-btn {
  flex: 1;
  padding: 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}
.mockup-btn.primary {
  background: var(--accent);
  color: #09090B;
}
.mockup-btn.secondary {
  background: var(--surface-2);
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.visual-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.vtag {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 7px 12px;
  border-radius: 100px;
  font-size: 12px;
  color: var(--text-muted);
}

/* ─── How it works ─── */
.how {
  padding: 100px 24px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.how-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}
.section-heading {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 60px;
  max-width: 480px;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.step-card {
  padding: 40px;
  background: var(--surface);
  position: relative;
}
.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.step-icon { margin-bottom: 20px; }
.step-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.step-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}
.how-proof {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}
.proof-line {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: var(--text-muted);
}
.proof-avatars {
  display: flex;
}
.pa {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -8px;
}
.pa:first-child { margin-left: 0; }
.p1 { background: linear-gradient(135deg, #007AFF, #0056b3); }
.p2 { background: linear-gradient(135deg, #14b8a6, #0d9488); }
.p3 { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.p4 { background: linear-gradient(135deg, #ec4899, #db2777); }
.p5 { background: linear-gradient(135deg, #06b6d4, #0891b2); }
.proof-text strong { color: var(--text); }

/* ─── Split section ─── */
.split-section {
  padding: 0 24px 100px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.split-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  gap: 0;
  align-items: start;
}
.split-card {
  padding: 48px 48px 48px 0;
}
.split-card.right-card { padding: 48px 0 48px 48px; }
.split-card-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-subtle);
  margin-bottom: 20px;
}
.split-card-label.accent { color: var(--teal); }
.split-heading {
  font-family: 'Syne', sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.split-body {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 28px;
}
.split-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.split-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}
.split-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  margin-top: 48px;
  height: calc(100% - 96px);
}

/* ─── Pricing ─── */
.pricing {
  padding: 100px 24px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.pricing-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
  transition: border-color 0.2s;
}
.pricing-card:hover { border-color: rgba(0, 122, 255, 0.4); }
.pricing-card.featured {
  border-color: rgba(0, 122, 255, 0.5);
  background: linear-gradient(180deg, rgba(0,122,255,0.06) 0%, var(--surface) 100%);
}
.pricing-featured-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #007AFF;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.pricing-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-subtle);
  font-weight: 600;
  margin-bottom: 16px;
}
.pricing-amount {
  font-family: 'Syne', sans-serif;
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 6px;
  color: var(--text);
}
.pricing-card:not(.featured) .pricing-amount { color: var(--text); }
.pricing-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.pricing-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-features li {
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.pricing-features li::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: var(--accent-dim);
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-card.featured .pricing-features li::before {
  background: var(--teal-dim);
}

/* ─── Manifesto ─── */
.manifesto {
  padding: 100px 24px;
  border-top: 1px solid rgba(255,255,255,0.04);
  background: linear-gradient(180deg, transparent 0%, rgba(0,122,255,0.03) 50%, transparent 100%);
}
.manifesto-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 36px;
}
.manifesto-quote {
  font-family: 'Syne', sans-serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.5px;
  color: var(--text);
  margin-bottom: 36px;
}
.manifesto-line {
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 28px;
}
.manifesto-sub {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── Footer ─── */
footer {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 60px 24px 40px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 12px;
}
.footer-tagline {
  font-size: 13px;
  color: var(--text-subtle);
}
.footer-links {
  display: flex;
  gap: 60px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-subtle);
  font-weight: 600;
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 13px;
  color: var(--text-subtle);
}

/* ─── App Pages ─── */
.app-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 120px 24px 60px;
}
.app-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}
.app-title {
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 8px;
}
.app-sub {
  color: var(--text-muted);
  font-size: 16px;
}

/* Card Grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

/* Profile Card */
.profile-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.2s;
}
.profile-card:hover { border-color: rgba(0, 122, 255, 0.4); }
.profile-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.profile-avatar {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--bg);
  flex-shrink: 0;
}
.profile-name {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}
.profile-rate {
  font-size: 14px;
  color: var(--teal);
  font-weight: 600;
}
.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.profile-bio {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.profile-stats {
  display: flex;
  gap: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.stat-item { text-align: center; }
.stat-value {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}
.stat-label {
  font-size: 11px;
  color: var(--text-subtle);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Projects List */
.projects-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.project-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.2s;
}
.project-card:hover { border-color: rgba(0, 122, 255, 0.4); }
.project-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}
.project-title {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 600;
}
.project-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.meta-item { display: flex; align-items: center; gap: 8px; }
.meta-label {
  font-size: 12px;
  color: var(--text-subtle);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.meta-value { font-size: 14px; color: var(--text); }
.budget-value { color: var(--teal); font-weight: 600; }

/* Badge */
.badge {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.03em;
  text-transform: capitalize;
}
.badge-open { background: var(--teal-dim); color: var(--teal); }
.badge-in_progress { background: var(--accent-dim); color: var(--accent); }
.badge-completed { background: rgba(255,255,255,0.06); color: var(--text-muted); }

/* Filter Bar */
.filter-bar {
  margin-bottom: 32px;
}
.filter-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.filter-form input {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: var(--text);
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
}
.filter-form input::placeholder { color: var(--text-subtle); }
.filter-form input:focus {
  outline: none;
  border-color: var(--accent);
}

/* Form Elements */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--text);
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  transition: border-color 0.15s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-subtle); }
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #007AFF;
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s;
}
.btn-primary:hover { background: #0056b3; }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface-2);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s;
}
.btn-secondary:hover { background: var(--surface); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-muted);
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.15s;
}
.btn-ghost:hover { color: var(--text); }

/* Auth Nav */
.nav-user {
  font-size: 14px;
  color: var(--text-muted);
  margin-right: 8px;
}
.nav-auth-link {
  font-size: 14px;
  color: var(--text-muted);
  margin-left: 16px;
}
.nav-auth-link:hover { color: var(--text); }
.btn-nav-signup {
  background: #007AFF;
  color: #fff !important;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  margin-left: 16px;
}
.btn-nav-signup:hover { background: #0056b3; }

/* Empty State */
.empty-state {
  text-align: center;
  padding: 60px 24px;
  color: var(--text-muted);
}
.empty-state p { margin-bottom: 20px; }

/* Error Message */
.error-msg {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
}

/* ─── Mobile ─── */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-visual { align-items: flex-start; }
  .mockup-frame { max-width: 100%; }
  .steps-grid { grid-template-columns: 1fr; }
  .split-inner { grid-template-columns: 1fr; }
  .split-divider { display: none; }
  .split-card { padding: 48px 0; }
  .split-card.right-card { padding: 48px 0; }
  .pricing-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hero { padding: 100px 24px 80px; }
  .footer-inner { flex-direction: column; }
  .footer-links { gap: 32px; }
  .visual-tags { justify-content: flex-start; }
}