/* ==========================================================================
   Aptivo — World-Class Modern Landing Page & App Design System (2026 Aesthetic)
   Inspired by Linear, Raycast, Stripe, and Apple
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;700&display=swap');

:root {
  --bg-page: #FAFBFD;
  --bg-white: #FFFFFF;
  --bg-surface: #F4F6F9;
  --bg-surface-hover: #EAEFF6;
  --bg-subtle: #F8FAFC;
  --bg-input: #FFFFFF;
  
  --border-subtle: #E2E8F0;
  --border-card: #EAEFF5;
  --border-active: #CBD5E1;
  --border-focus: #0062FF;
  
  --text-hero: #090E17;
  --text-primary: #0F172A;
  --text-secondary: #334155;
  --text-muted: #64748B;
  --text-dim: #94A3B8;
  
  --brand-blue: #0062FF;
  --brand-cyan: #00C6FF;
  --brand-indigo: #4F46E5;
  --brand-gradient: linear-gradient(135deg, #0062FF 0%, #00C6FF 100%);
  --brand-gradient-hover: linear-gradient(135deg, #0050D8 0%, #00B0E6 100%);
  --brand-mesh: radial-gradient(at 0% 0%, rgba(0, 98, 255, 0.08) 0px, transparent 50%),
                radial-gradient(at 100% 0%, rgba(0, 198, 255, 0.08) 0px, transparent 50%),
                radial-gradient(at 50% 50%, rgba(79, 70, 229, 0.04) 0px, transparent 50%);
  
  --success: #10B981;
  --success-bg: #ECFDF5;
  --success-border: #A7F3D0;
  
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 9999px;
  
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  --shadow-sm: 0 1px 3px 0 rgba(15, 23, 42, 0.06), 0 1px 2px -1px rgba(15, 23, 42, 0.04);
  --shadow-card: 0 10px 30px -4px rgba(15, 23, 42, 0.05), 0 4px 12px -2px rgba(15, 23, 42, 0.02);
  --shadow-card-hover: 0 20px 40px -6px rgba(0, 98, 255, 0.1), 0 8px 16px -4px rgba(15, 23, 42, 0.04);
  --shadow-glow: 0 0 35px rgba(0, 98, 255, 0.15);
  --shadow-hero-demo: 0 25px 60px -15px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(15, 23, 42, 0.06);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-page);
  background-image: radial-gradient(rgba(0, 98, 255, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 15.5px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Background Ambient Orbs */
.bg-ambient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 900px;
  background: var(--brand-mesh);
  pointer-events: none;
  z-index: 0;
}

/* Ambient glow utility */
.ambient-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(120px);
  opacity: 0.35;
}

.ambient-glow.top-left {
  top: -150px;
  left: 5%;
  background: rgba(0, 98, 255, 0.12);
}

.ambient-glow.top-right {
  top: -100px;
  right: 5%;
  background: rgba(0, 198, 255, 0.12);
}

/* Container */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   Navigation Bar
   ========================================================================== */

.navbar {
  position: sticky;
  top: 16px;
  z-index: 100;
  margin: 0 20px 0;
  border-radius: var(--radius-pill);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 28px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.05);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-hero);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.5px;
}

.nav-logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--brand-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-weight: 900;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(0, 98, 255, 0.3);
}

.brand-badge {
  background: var(--brand-gradient);
  color: #FFFFFF;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  font-size: 11.5px;
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(0, 98, 255, 0.25);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.15s ease;
}

.nav-links a:hover {
  color: var(--brand-blue);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ==========================================================================
   Buttons & Badges
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--brand-gradient);
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(0, 98, 255, 0.3);
}

.btn-primary:hover {
  background: var(--brand-gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 98, 255, 0.4);
}

.btn-secondary {
  background: #FFFFFF;
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--bg-surface);
  border-color: var(--border-active);
  transform: translateY(-1px);
}

.btn-sm {
  padding: 7px 14px;
  font-size: 12.5px;
}

.btn-lg {
  padding: 15px 32px;
  font-size: 15.5px;
  font-weight: 700;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(0, 98, 255, 0.06);
  border: 1px solid rgba(0, 98, 255, 0.15);
  border-radius: var(--radius-pill);
  color: var(--brand-blue);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0, 98, 255, 0.06);
}

.badge-tag .pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-blue);
  animation: pulseDot 1.8s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
  padding: 90px 0 60px;
  text-align: center;
  position: relative;
}

.hero-title {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -2.2px;
  color: var(--text-hero);
  max-width: 960px;
  margin: 20px auto 24px;
}

.hero-title .gradient-clip {
  background: linear-gradient(135deg, #0062FF 0%, #00C6FF 70%, #4F46E5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--text-secondary);
  max-width: 740px;
  margin: 0 auto 40px;
  font-weight: 400;
  line-height: 1.6;
}

.hero-cta-deck {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.hero-proof-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 20px;
  color: var(--text-muted);
  font-size: 13.5px;
  font-weight: 600;
  flex-wrap: wrap;
}

.hero-proof-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-proof-item span {
  color: var(--text-primary);
  font-weight: 800;
}

/* ==========================================================================
   Hero Visual / Interactive Product Window HUD
   ========================================================================== */

.hero-showcase {
  max-width: 980px;
  margin: 50px auto 0;
  perspective: 1000px;
}

.hud-window {
  background: #000000;
  border-radius: var(--radius-xl);
  border: 1px solid #222228;
  padding: 16px;
  box-shadow: var(--shadow-hero-demo);
  position: relative;
  overflow: hidden;
  text-align: left;
}

.hud-topbar {
  background: #0A0A0C;
  border: 1px solid #1F1F24;
  border-radius: var(--radius-md);
  padding: 10px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.hud-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hud-badge-brand {
  background: var(--brand-gradient);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
}

.hud-timer {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #111114;
  border: 1px solid #222228;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  color: #FFFFFF;
}

.hud-timer .green-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10B981;
}

.hud-actions {
  display: flex;
  gap: 6px;
}

.hud-btn {
  background: #111114;
  border: 1px solid #222228;
  color: #FFFFFF;
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.hud-btn.primary {
  background: #0062FF;
  border-color: #0062FF;
}

.hud-btn:hover {
  border-color: #444450;
}

.hud-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hud-private-badge {
  background: #064E3B;
  border: 1px solid #059669;
  color: #34D399;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 4px;
}

/* Audio Stream Ribbon */
.hud-ribbon {
  background: #0A0A0C;
  border: 1px solid #1F1F24;
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.hud-waveform {
  display: flex;
  gap: 3px;
  align-items: center;
}

.hud-waveform span {
  width: 3px;
  height: 14px;
  background: #10B981;
  border-radius: 1px;
  animation: wavePulse 1.2s infinite ease-in-out;
}

.hud-waveform span:nth-child(2) { animation-delay: 0.15s; height: 20px; }
.hud-waveform span:nth-child(3) { animation-delay: 0.3s; height: 10px; }
.hud-waveform span:nth-child(4) { animation-delay: 0.45s; height: 18px; }
.hud-waveform span:nth-child(5) { animation-delay: 0.2s; height: 12px; }

@keyframes wavePulse {
  0%, 100% { transform: scaleY(0.3); }
  50% { transform: scaleY(1); }
}

.hud-speech-text {
  color: #FFFFFF;
  font-size: 13.5px;
  font-weight: 500;
  flex: 1;
}

/* Answer Card */
.hud-answer-card {
  background: #0A0A0C;
  border: 1px solid #1F1F24;
  border-radius: var(--radius-md);
  padding: 16px;
}

.hud-q-title {
  color: #FFFFFF;
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hud-q-tag {
  background: #1E293B;
  color: #94A3B8;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 600;
}

.hud-a-bubble {
  background: #111114;
  border: 1px solid #222228;
  border-left: 3px solid #0062FF;
  border-radius: 6px;
  padding: 12px 14px;
  color: #F1F5F9;
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 12px;
}

.hud-bullets {
  color: #CBD5E1;
  font-size: 12px;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hud-bullets div {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.hud-bullets span.dot-bullet {
  color: #0062FF;
  font-weight: 900;
}

/* ==========================================================================
   Logo Cloud / Companies
   ========================================================================== */

.logo-cloud-section {
  padding: 50px 0;
  text-align: center;
  border-bottom: 1px solid var(--border-subtle);
}

.logo-cloud-title {
  color: var(--text-dim);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.logo-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  opacity: 0.65;
}

.logo-item {
  font-weight: 800;
  font-size: 19px;
  color: var(--text-secondary);
  letter-spacing: -0.5px;
}

/* ==========================================================================
   Bento Grid Feature Showcase (Linear Style)
   ========================================================================== */

.bento-section {
  padding: 100px 0;
}

.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-tag {
  color: var(--brand-blue);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -1.4px;
  color: var(--text-hero);
  margin-bottom: 16px;
}

.section-sub {
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.55;
}

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

.bento-card {
  background: var(--bg-white);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--border-active);
}

.bento-col-8 { grid-column: span 8; }
.bento-col-4 { grid-column: span 4; }
.bento-col-6 { grid-column: span 6; }
.bento-col-12 { grid-column: span 12; }

.bento-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(0, 98, 255, 0.08);
  border: 1px solid rgba(0, 98, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
}

.bento-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-hero);
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

.bento-card p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

.bento-preview-box {
  margin-top: 24px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px;
  font-family: var(--font-mono);
  font-size: 12.5px;
}

/* ==========================================================================
   3-Step Process Section
   ========================================================================== */

.workflow-section {
  padding: 80px 0 100px;
  background: #FFFFFF;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 50px;
}

.step-box {
  position: relative;
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  background: var(--bg-page);
  border: 1px solid var(--border-card);
}

.step-num-pill {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--brand-gradient);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 98, 255, 0.25);
}

.step-box h3 {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text-hero);
}

.step-box p {
  color: var(--text-secondary);
  font-size: 14.5px;
  line-height: 1.6;
}

/* ==========================================================================
   CTA Banner Section
   ========================================================================== */

.cta-banner-section {
  padding: 100px 0;
  text-align: center;
}

.cta-banner-card {
  background: linear-gradient(135deg, #090E17 0%, #172033 100%);
  border-radius: var(--radius-xl);
  padding: 70px 40px;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.25);
}

.cta-banner-card h2 {
  font-size: 46px;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}

.cta-banner-card p {
  font-size: 18px;
  color: #94A3B8;
  max-width: 600px;
  margin: 0 auto 36px;
}

/* ==========================================================================
   AUTHENTICATION & LOGIN (Stripe / Linear Card Aesthetic)
   ========================================================================== */

.auth-wrapper {
  min-height: calc(100vh - 100px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  position: relative;
  z-index: 1;
}

.auth-card {
  width: 100%;
  max-width: 460px;
  background-color: var(--bg-white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  box-shadow: var(--shadow-card-hover);
  position: relative;
}

.auth-header {
  text-align: center;
  margin-bottom: 28px;
}

.auth-header h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--text-hero);
  letter-spacing: -0.6px;
  margin-bottom: 8px;
}

.auth-header p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  background-color: var(--bg-input);
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: 14.5px;
  outline: none;
  transition: all 0.15s ease;
  box-shadow: var(--shadow-sm);
}

.form-input:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(0, 98, 255, 0.15);
}

.auth-divider {
  display: flex;
  align-items: center;
  margin: 24px 0;
  color: var(--text-dim);
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border-subtle);
}

.auth-divider span {
  padding: 0 14px;
}

.oauth-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ==========================================================================
   Dashboard Layout (Stripe / Apple Light Mode)
   ========================================================================== */

.dashboard-layout {
  display: flex;
  min-height: 100vh;
}

.dashboard-sidebar {
  width: 280px;
  background-color: var(--bg-white);
  border-right: 1px solid var(--border-subtle);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
}

.sidebar-menu {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.sidebar-item a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 600;
  transition: all 0.15s ease;
}

.sidebar-item a:hover,
.sidebar-item.active a {
  background-color: var(--bg-surface);
  color: var(--brand-blue);
}

.sidebar-item.active a {
  border-left: 3px solid var(--brand-blue);
}

.dashboard-content {
  flex: 1;
  padding: 40px 48px;
  max-width: 1240px;
  overflow-y: auto;
}

.dash-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
}

.dash-title h1 {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.8px;
  color: var(--text-hero);
}

.dash-title p {
  color: var(--text-muted);
  font-size: 14.5px;
}

/* Stats Cards */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 36px;
}

.stat-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.stat-card .label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.stat-card .value {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--text-hero);
}

/* Session Cards */
.session-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.session-card:hover {
  border-color: var(--border-active);
  box-shadow: var(--shadow-card);
}

.session-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.session-badge {
  background-color: #EFF6FF;
  border: 1px solid #DBEAFE;
  color: var(--brand-blue);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
}

.session-transcript-preview {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  font-family: var(--font-sans);
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer-section {
  padding: 60px 0 40px;
  background: #FFFFFF;
  border-top: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 14px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

@media (max-width: 900px) {
  .hero-title { font-size: 44px; }
  .bento-col-8, .bento-col-4, .bento-col-6 { grid-column: span 12; }
  .steps-row { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .dashboard-layout { flex-direction: column; }
  .dashboard-sidebar { width: 100%; }
}
