/* Design System */
:root {
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-6: 24px;
  --space-8: 32px;
  --space-12: 48px;
  --space-16: 64px;
  
  --text-xs: 12px;
  --text-sm: 14px;
  --text-base: 16px;
  --text-lg: 20px;
  --text-xl: 28px;
  --text-2xl: 48px;
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-full: 999px;
  
  --bg-base: #020617;
  --bg-elevated: #0f172a;
  --bg-subtle: #1e293b;
  
  --text-primary: #f9fafb;
  --text-secondary: #cbd5e1;
  --text-tertiary: #94a3b8;
  
  --accent-primary: #f97316;
  --accent-secondary: #e11d48;
  --accent-tertiary: #38bdf8;
  
  --border-subtle: rgba(148, 163, 184, 0.15);
}

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

body {
  font-family: "Sora", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(249, 115, 22, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
  animation: float 20s ease-in-out infinite, pulse 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 60% 40%, rgba(34, 197, 94, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 30% 80%, rgba(168, 85, 247, 0.06) 0%, transparent 40%);
  animation: float 25s ease-in-out infinite reverse, pulse 10s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px) 0 0 / 56px 56px,
    linear-gradient(180deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px) 0 0 / 56px 56px;
  opacity: 0.2;
  pointer-events: none;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) translateX(0px); }
  25% { transform: translateY(-20px) translateX(10px); }
  50% { transform: translateY(-30px) translateX(-10px); }
  75% { transform: translateY(-15px) translateX(5px); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

nav, section, footer {
  position: relative;
  z-index: 1;
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(2, 6, 23, 0.75);
  backdrop-filter: blur(8px);
}

.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 56px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 600;
  font-size: var(--text-base);
  justify-self: start;
  transition: opacity 0.2s;
}

.nav-logo:hover {
  opacity: 0.8;
}

.nav-center {
  display: flex;
  gap: var(--space-2);
  justify-self: center;
  align-items: center;
}

.nav-tab-link {
  padding: var(--space-2) var(--space-4);
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: all 0.2s;
  position: relative;
}

.nav-tab-link:hover {
  color: var(--text-primary);
  background: rgba(15, 23, 42, 0.4);
}

.nav-tab-link.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 2px;
  background: var(--accent-primary);
  border-radius: 2px;
}

.nav-right {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: var(--space-3);
}

.nav-signal-pill {
  padding: 6px 12px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(236, 72, 153, 0.15));
  border: 1px solid rgba(168, 85, 247, 0.3);
  color: #c084fc;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.nav-signal-pill:hover {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.25), rgba(236, 72, 153, 0.25));
  border-color: rgba(168, 85, 247, 0.5);
  transform: translateY(-1px);
}

.logo-link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 600;
  font-size: var(--text-base);
}

.logo-pill {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.logo-pill img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Buttons */
.btn {
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: inherit;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-primary) 0%, #ea580c 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.6), 0 0 40px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover::after {
  width: 300px;
  height: 300px;
}

.btn-primary:active {
  transform: translateY(-1px) scale(1.02);
}

.btn-secondary {
  background: rgba(15, 23, 42, 0.6);
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  border-color: var(--text-tertiary);
  color: var(--text-primary);
  background: var(--bg-elevated);
  transform: translateY(-1px);
}

/* Hero */
.hero {
  padding: calc(var(--space-16) + 16px) 0 var(--space-16);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  gap: var(--space-12);
  align-items: center;
}

.hero-copy {
  text-align: left;
}

.hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--space-6);
  letter-spacing: -0.03em;
  color: var(--text-primary);
  animation: slideInUp 0.8s ease-out;
  position: relative;
}

.hero h1 strong {
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-highlight {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-tertiary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: var(--space-4);
}

.kicker-pill {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(56, 189, 248, 0.35);
  color: var(--text-secondary);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.kicker-pill.ghost {
  border-color: rgba(249, 115, 22, 0.35);
  color: var(--text-tertiary);
}

.hero-subtitle {
  animation: fadeIn 1s ease-out 0.3s both;
}

.cta-group {
  animation: fadeIn 1s ease-out 0.6s both;
}

.trust-line {
  animation: fadeIn 1s ease-out 0.9s both;
}

.cta-note {
  margin-top: var(--space-4);
  color: var(--text-secondary);
  font-size: var(--text-sm);
}

.cta-proof {
  margin-top: var(--space-2);
  color: var(--text-tertiary);
  font-size: var(--text-sm);
}

.hero-subtitle {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  margin-bottom: var(--space-10);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 auto var(--space-10);
  max-width: 520px;
  display: grid;
  gap: var(--space-3);
  text-align: left;
  color: var(--text-secondary);
  font-size: var(--text-md);
}

.hero-bullets li {
  position: relative;
  padding-left: 18px;
}

.hero-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
}

.hero-visual {
  margin-top: var(--space-12);
  display: flex;
  justify-content: center;
  animation: fadeIn 1s ease-out 0.6s both;
}

.hero-micro {
  margin-top: var(--space-5);
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  font-size: var(--text-sm);
  color: var(--text-tertiary);
}

.hero-stack {
  position: relative;
  width: min(420px, 90vw);
  height: 320px;
}

.hero-card {
  position: absolute;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid var(--border-subtle);
  background: rgba(15, 23, 42, 0.75);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  display: grid;
  gap: 8px;
  animation: float 14s ease-in-out infinite;
}

.hero-card .card-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-tertiary);
}

.hero-card .card-row {
  font-size: 14px;
  color: var(--text-secondary);
}

.hero-card .card-list {
  display: grid;
  gap: 6px;
  font-size: 15px;
  color: var(--text-primary);
}

.hero-card .card-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.18);
  color: #bae6fd;
  font-weight: 600;
  font-size: 12px;
}

.card-top {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3;
  animation-delay: 0s;
}

.card-mid {
  top: 110px;
  left: 24px;
  width: calc(100% - 48px);
  z-index: 2;
  animation-delay: -2s;
}

.card-bottom {
  top: 200px;
  left: 48px;
  width: calc(100% - 96px);
  z-index: 1;
  animation-delay: -4s;
}

/* Demo Section */
.demo-section {
  padding: calc(var(--space-16) + 24px) 0;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

/* Updates */
.updates-section {
  padding: calc(var(--space-16) + 24px) 0;
  background: var(--bg-base);
  border-top: 1px solid var(--border-subtle);
}

.updates-grid .card {
  position: relative;
}

.update-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: var(--space-2);
}

.how-section {
  padding: calc(var(--space-16) + 24px) 0;
}

.what-you-get {
  margin-top: var(--space-12);
  padding: var(--space-8);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  background: var(--bg-elevated);
}

.what-you-get h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-4);
}

.what-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-3);
}

.what-list li {
  padding-left: 18px;
  position: relative;
  color: var(--text-secondary);
}

.what-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-primary);
}

.demo-panel {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-base);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.demo-header {
  background: var(--bg-subtle);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border-subtle);
}

.demo-dots {
  display: flex;
  gap: 6px;
}

.demo-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.3);
}

.demo-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}

.demo-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.demo-big3 {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.demo-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  transition: transform 0.2s;
}

.demo-item:hover {
  transform: translateX(4px);
}

.demo-number {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.demo-text {
  flex: 1;
  color: var(--text-primary);
  font-size: 15px;
}

.demo-time {
  color: var(--text-tertiary);
  font-size: 13px;
  font-weight: 600;
}

.demo-timer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}

.demo-ring {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: conic-gradient(rgba(255, 255, 255, 0.1) 0deg 360deg);
  padding: 8px;
  position: relative;
}

.demo-ring::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: var(--bg-base);
  z-index: 1;
}

.demo-ring-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.demo-time-display {
  font-size: 48px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--text-primary);
  font-family: 'Courier New', monospace;
  margin-bottom: 8px;
}

.demo-timer-label {
  font-size: 14px;
  color: var(--text-secondary);
}

/* Flow Strip */
.flow-strip {
  padding: var(--space-16) 0;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.05), rgba(236, 72, 153, 0.05));
}

.flow-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  flex-wrap: wrap;
}

.flow-item {
  text-align: center;
  flex: 1;
  min-width: 200px;
  max-width: 280px;
}

.flow-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.flow-item h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

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

.flow-arrow {
  font-size: 32px;
  color: var(--accent-primary);
  font-weight: 700;
}

@media (max-width: 768px) {
  .flow-items {
    flex-direction: column;
  }
  .flow-arrow {
    transform: rotate(90deg);
  }
}

/* Comparison Section */
.comparison-section {
  padding: var(--space-16) 0;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-8);
  max-width: 900px;
  margin: 0 auto;
}

.comparison-card {
  padding: 32px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
}

.comparison-card.highlight {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(236, 72, 153, 0.1));
  border-color: var(--accent-primary);
}

.comparison-card h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.comparison-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comparison-card li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
  color: var(--text-secondary);
  font-size: 15px;
}

.comparison-card li:last-child {
  border-bottom: none;
}

.comparison-card.highlight li {
  color: var(--text-primary);
}

/* Compass Thinking */
.compass-thinking {
  padding: var(--space-16) 0;
}

.thinking-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-6);
  max-width: 1000px;
  margin: 0 auto;
}

.thinking-card {
  padding: 24px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  transition: transform 0.2s, border-color 0.2s;
}

.thinking-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-primary);
}

.thinking-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

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

/* Privacy Stance */
.privacy-stance {
  padding: var(--space-16) 0;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-6);
  max-width: 1000px;
  margin: 0 auto;
}

.privacy-item {
  padding: 24px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
}

.privacy-item strong {
  display: block;
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.privacy-item p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* Footer */
footer {
  padding: var(--space-16) 0 var(--space-8);
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-elevated);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-8);
}

.footer-links {
  display: flex;
  gap: var(--space-12);
  flex-wrap: wrap;
}

.footer-link-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-link-group strong {
  color: var(--text-primary);
  font-size: 14px;
  margin-bottom: 4px;
}

.footer-link-group a {
  color: var(--text-secondary);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link-group a:hover {
  color: var(--accent-primary);
}

.footer-bottom {
  padding-top: var(--space-8);
  border-top: 1px solid var(--border-subtle);
  text-align: center;
  color: var(--text-tertiary);
  font-size: 13px;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
  .footer-links {
    justify-content: flex-start;
  }
}

.dashboard-mockup {
  width: 100%;
  max-width: 900px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  position: relative;
}

.mockup-header {
  background: var(--bg-subtle);
  padding: 12px 16px;
  display: flex;
  gap: 8px;
  border-bottom: 1px solid var(--border-subtle);
}

.mockup-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.3);
}

.mockup-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mockup-big3 {
  display: flex;
  gap: 12px;
}

.mockup-item {
  flex: 1;
  height: 60px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(236, 72, 153, 0.15));
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: 12px;
  animation: pulse 2s ease-in-out infinite;
}

.mockup-item:nth-child(2) {
  animation-delay: 0.3s;
}

.mockup-item:nth-child(3) {
  animation-delay: 0.6s;
}

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

.mockup-card {
  height: 120px;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
}

@media (max-width: 768px) {
  .mockup-grid {
    grid-template-columns: 1fr;
  }
  
  .mockup-big3 {
    flex-direction: column;
  }
}

.cta-group {
  display: flex;
  gap: var(--space-4);
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: var(--space-6);
}

.cta-group .btn {
  padding: 14px 32px;
  font-size: var(--text-base);
  border-radius: var(--radius-full);
}

  .trust-line {
    font-size: var(--text-xs);
    color: var(--text-tertiary);
    flex-direction: column;
    gap: var(--space-2);
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.trust-badge {
  display: inline-block;
  font-size: 14px;
}

.hero-social-proof {
  margin-top: var(--space-8);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}

.avatar-group {
  display: flex;
  gap: -8px;
  margin-bottom: var(--space-2);
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--bg-base);
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  margin-left: -8px;
  position: relative;
}

.avatar:first-child {
  margin-left: 0;
}

.avatar::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: var(--bg-elevated);
  opacity: 0.3;
}

.social-proof-text {
  font-size: var(--text-sm);
  color: var(--text-tertiary);
  text-align: center;
}

.btn-arrow {
  display: inline-block;
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.btn-primary:hover .btn-arrow {
  transform: translateX(4px);
}

/* Feature Grid */
section {
  padding: calc(var(--space-16) + 24px) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-14);
  position: relative;
}

.section-header::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
  border-radius: 2px;
}

.section-title {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-2);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-primary), transparent);
  border-radius: 2px;
}

.section-header {
  margin-bottom: 56px;
  position: relative;
  padding-top: 28px;
}

.section-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
  border-radius: 2px;
}

.section-description {
  font-size: var(--text-base);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-8);
}

.card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: var(--space-8);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  animation: scaleIn 0.6s ease-out both;
  opacity: 0;
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; }
.card:nth-child(5) { animation-delay: 0.5s; }
.card:nth-child(6) { animation-delay: 0.6s; }

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.1), transparent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  pointer-events: none;
}

.card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(249, 115, 22, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(249, 115, 22, 0.2), 0 0 60px rgba(249, 115, 22, 0.1);
}

.card:hover::before {
  opacity: 1;
}

.card:hover::after {
  width: 300px;
  height: 300px;
}

.card-title {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-2);
  position: relative;
}

.card-title::before {
  content: "";
  position: absolute;
  left: -28px;
  width: 4px;
  height: 20px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: scaleY(0);
}

.card:hover .card-title::before {
  opacity: 1;
  transform: scaleY(1);
}

.card-description {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-top: var(--space-2);
}

/* How it works */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-8);
  max-width: 900px;
  margin: 0 auto;
}

.step {
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.step.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  color: white;
  font-size: var(--text-lg);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
  position: relative;
  animation: bounce 2s ease-in-out infinite, scaleIn 0.6s ease-out both;
}

.step:nth-child(1) .step-number { animation-delay: 0.2s; }
.step:nth-child(2) .step-number { animation-delay: 0.4s; }
.step:nth-child(3) .step-number { animation-delay: 0.6s; }

.step-number::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  z-index: -1;
  opacity: 0.3;
  filter: blur(8px);
  animation: pulse 2s ease-in-out infinite;
}

.step-number::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  z-index: -2;
  opacity: 0.1;
  filter: blur(12px);
  animation: rotate 3s linear infinite;
}

.step-title {
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.step-description {
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

/* Footer */
footer {
  padding: var(--space-12) 0 var(--space-8);
  text-align: center;
  border-top: 1px solid var(--border-subtle);
  margin-top: var(--space-16);
}

footer p {
  font-size: var(--text-sm);
  color: var(--text-tertiary);
  margin-bottom: var(--space-4);
}

footer .links {
  display: flex;
  gap: var(--space-6);
  justify-content: center;
  font-size: var(--text-sm);
}

footer a {
  color: var(--text-secondary);
  text-decoration: none;
}

footer a:hover {
  color: var(--text-primary);
}

/* Responsive */
@media (min-width: 960px) {
  .hero {
    text-align: left;
  }

  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .hero-subtitle {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-visual {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .nav-inner {
    grid-template-columns: auto 1fr auto;
    height: 52px;
    padding: 0 var(--space-4);
  }
  
  .nav-center {
    justify-self: center;
  }
  
  .nav-signal-pill {
    display: none; /* Hide on mobile for cleaner layout */
  }

  .logo-pill {
    width: 28px;
    height: 28px;
  }
  
  .hero {
    padding: var(--space-12) 0 var(--space-8);
  }
  
  .hero h1 {
    font-size: clamp(32px, 8vw, 48px);
    line-height: 1.2;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-kicker {
    justify-content: center;
  }

  .hero-micro {
    justify-content: center;
  }
  
  .hero-visual {
    margin-top: var(--space-8);
  }
  
  .dashboard-mockup {
    border-radius: 12px;
  }
  
  .mockup-content {
    padding: 16px;
    gap: 16px;
  }
  
  .desktop-break {
    display: none;
  }
  
  .grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
  
  .card {
    padding: var(--space-6);
    margin: 0 var(--space-2);
  }
  
  section {
    padding: var(--space-8) 0;
  }
  
  .cta-group {
    flex-direction: column;
    padding: 0 var(--space-4);
  }
  
  .cta-group .btn {
    width: 100%;
    padding: 16px 24px;
    font-size: var(--text-base);
    min-height: 48px;
  }
  
  .steps {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  
  .step-number {
    width: 48px;
    height: 48px;
    font-size: var(--text-base);
  }
  
  .section-header {
    padding: 0 var(--space-4);
  }
  
  .container {
    padding: 0 var(--space-4);
  }
}

@media (max-width: 480px) {
  body {
    padding: 0;
  }
  
  .hero h1 {
    font-size: 28px;
    padding: 0 var(--space-4);
  }
  
  .hero-visual {
    margin-top: var(--space-6);
  }
  
  .mockup-content {
    padding: 12px;
    gap: 12px;
  }
  
  .mockup-item {
    height: 48px;
  }
  
  .mockup-card {
    height: 80px;
  }
  
  .card {
    padding: var(--space-4);
    margin: 0;
  }
  
  .card-title {
    font-size: var(--text-base);
  }
  
  .card-description {
    font-size: var(--text-xs);
  }
  
  .btn {
    min-height: 44px;
    touch-action: manipulation;
  }
  
  .nav-inner {
    padding: 0 var(--space-3);
  }

  .nav-logo {
    font-size: var(--text-sm);
  }
  
  .nav-tab-link {
    font-size: 13px;
    padding: var(--space-2) var(--space-3);
  }
}

/* Touch optimizations */
@media (hover: none) and (pointer: coarse) {
  .btn {
    min-height: 44px;
    min-width: 44px;
  }
  
  .card:hover {
    transform: none;
  }
  
  .card:active {
    transform: scale(0.98);
  }
  
  .btn-primary:hover {
    transform: none;
  }
  
  .btn-primary:active {
    transform: scale(0.95);
  }
}

.desktop-break {
  display: inline;
}
