@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ─── Design Tokens ─── */
:root {
  --bg: #0a0a09;
  --bg-elevated: #141413;
  --bg-card: #1a1a19;
  --bg-card-hover: #222221;
  --border: #2a2a28;
  --border-subtle: #1e1e1d;
  --text: #f1efe8;
  --text-muted: #b4b2a9;
  --text-subtle: #888780;
  --accent: #7B6FF0;
  --accent-hover: #8D83F3;
  --accent-dim: #534AB7;
  --accent-glow: rgba(123, 111, 240, 0.15);
  --accent-surface: rgba(123, 111, 240, 0.08);
  --green: #34D399;
  --amber: #FBBF24;
  --red: #F87171;
  --blue: #60A5FA;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-xs: 6px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-lg: 0 24px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Scroll Reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Nav ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  transition: background var(--transition), border-color var(--transition), backdrop-filter var(--transition);
}
.nav.scrolled {
  background: rgba(10, 10, 9, 0.8);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-subtle);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--text); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: var(--transition);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 99;
  background: rgba(10, 10, 9, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px 24px 24px;
  flex-direction: column;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block;
  padding: 10px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
}
.mobile-menu hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 4px 0;
}

/* ─── Buttons ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 24px rgba(123, 111, 240, 0.3);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: background var(--transition), border-color var(--transition);
  cursor: pointer;
}
.btn-outline:hover {
  background: var(--bg-card);
  border-color: var(--text-subtle);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}
.btn-ghost:hover { color: var(--text); }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 14px 28px; font-size: 15px; }
.btn-block { width: 100%; }

/* ─── Hero ─── */
.hero {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-surface);
  border: 1px solid rgba(123, 111, 240, 0.15);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 32px;
}
.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}
.hero-title {
  font-size: clamp(40px, 7vw, 76px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 24px;
}
.gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, #A78BFA 50%, #C4B5FD 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.6;
}
.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.hero-note {
  font-size: 13px;
  color: var(--text-subtle);
}

/* Hero product screen */
.hero-visual {
  position: relative;
  margin-top: 64px;
  perspective: 1200px;
}
.hero-screen {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 960px;
  margin: 0 auto;
}
.screen-topbar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 20px;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid var(--border-subtle);
}
.screen-dots {
  display: flex;
  gap: 6px;
}
.screen-dots i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}
.screen-dots i:first-child { background: var(--red); opacity: 0.7; }
.screen-dots i:nth-child(2) { background: var(--amber); opacity: 0.7; }
.screen-dots i:nth-child(3) { background: var(--green); opacity: 0.7; }
.screen-title {
  font-size: 13px;
  color: var(--text-subtle);
  font-weight: 500;
}
.screen-body {
  display: flex;
  min-height: 320px;
}
.screen-sidebar {
  width: 180px;
  border-right: 1px solid var(--border-subtle);
  padding: 16px 0;
  flex-shrink: 0;
}
.sb-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  font-size: 13px;
  color: var(--text-subtle);
  cursor: default;
  transition: background var(--transition), color var(--transition);
}
.sb-item.active {
  color: var(--text);
  background: var(--accent-surface);
  border-right: 2px solid var(--accent);
}
.sb-icon { font-size: 14px; }
.screen-main {
  flex: 1;
  padding: 20px;
  overflow-x: auto;
}
.kanban {
  display: flex;
  gap: 16px;
  min-width: 500px;
}
.kanban-col { flex: 1; min-width: 150px; }
.kanban-header {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 10px;
  border-radius: var(--radius-xs);
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.kanban-header span {
  font-size: 11px;
  opacity: 0.6;
  font-weight: 500;
}
.kanban-header.todo { color: var(--blue); background: rgba(96,165,250,0.1); }
.kanban-header.progress { color: var(--amber); background: rgba(251,191,36,0.1); }
.kanban-header.done { color: var(--green); background: rgba(52,211,153,0.1); }
.kanban-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 12px;
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--text-muted);
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
}
.kanban-card.highlighted {
  border-color: var(--accent-dim);
  box-shadow: 0 0 0 1px var(--accent-glow);
}
.kanban-card.faded { opacity: 0.5; }
.card-tag {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 2px 6px;
  border-radius: 4px;
  margin-bottom: 6px;
  display: inline-block;
}
.card-tag.design { color: #C084FC; background: rgba(192,132,252,0.15); }
.card-tag.backend { color: var(--green); background: rgba(52,211,153,0.15); }
.card-tag.frontend { color: var(--blue); background: rgba(96,165,250,0.15); }
.card-avatar {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-glow {
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(123, 111, 240, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* ─── Logos ─── */
.logos {
  padding: 64px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.logos-label {
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-subtle);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 28px;
}
.logos-grid {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.logo-placeholder {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-subtle);
  opacity: 0.4;
  letter-spacing: -0.01em;
}

/* ─── Section common ─── */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-eyebrow {
  display: inline-flex;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-surface);
  border: 1px solid rgba(123, 111, 240, 0.12);
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.section-header h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-header p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── Features ─── */
.features {
  padding: 120px 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover {
  border-color: var(--border);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.feature-lg {
  grid-column: span 3;
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 40px 48px;
}
.feature-lg .feature-content { flex: 1; }
.feature-lg .feature-visual { flex: 1; }
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent-surface);
  border: 1px solid rgba(123, 111, 240, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}
.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Mini board visual */
.mini-board {
  display: flex;
  gap: 10px;
}
.mini-col { flex: 1; }
.mini-header {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
}
.mh-todo { color: var(--blue); background: rgba(96,165,250,0.1); }
.mh-prog { color: var(--amber); background: rgba(251,191,36,0.1); }
.mh-done { color: var(--green); background: rgba(52,211,153,0.1); }
.mini-card {
  height: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  margin-bottom: 6px;
}
.pulse-card {
  border-color: var(--accent-dim);
  animation: card-pulse 2.5s ease-in-out infinite;
}
@keyframes card-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(123, 111, 240, 0); }
  50% { box-shadow: 0 0 0 3px rgba(123, 111, 240, 0.15); }
}

/* ─── Workflow ─── */
.workflow {
  padding: 120px 0;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.workflow-steps {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.workflow-step {
  display: flex;
  align-items: center;
  gap: 64px;
}
.workflow-step.reverse { flex-direction: row-reverse; }
.step-number {
  font-size: 64px;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.15;
  letter-spacing: -0.04em;
  line-height: 1;
  flex-shrink: 0;
}
.step-content {
  flex: 1;
}
.step-content h3 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.step-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}
.step-visual {
  flex: 1;
}

/* Step mockups */
.step-mockup {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

/* Capture mockup */
.capture-input {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--text-subtle);
  margin-bottom: 16px;
}
.capture-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--accent-surface);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
}
.capture-items { display: flex; flex-direction: column; gap: 8px; }
.capture-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
  padding: 6px 0;
}
.ci-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.ci-task { background: var(--blue); }
.ci-doc { background: var(--green); }
.ci-canvas { background: #C084FC; }

/* Plan mockup */
.sprint-bar {
  background: var(--bg);
  border-radius: 999px;
  height: 28px;
  overflow: hidden;
  margin-bottom: 16px;
}
.sprint-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-dim), var(--accent));
  border-radius: 999px;
  display: flex;
  align-items: center;
  padding: 0 12px;
}
.sprint-fill span {
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}
.plan-tasks { display: flex; flex-direction: column; gap: 8px; }
.plan-task {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
  padding: 8px 12px;
  background: var(--bg);
  border-radius: var(--radius-xs);
}
.pt-priority {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  flex-shrink: 0;
}
.pt-priority.high { background: var(--red); }
.pt-priority.med { background: var(--amber); }
.pt-priority.low { background: var(--green); }
.pt-assignee {
  margin-left: auto;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-subtle);
  background: var(--bg-card);
  padding: 2px 8px;
  border-radius: 4px;
}

/* Build mockup */
.build-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.bt {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-subtle);
  padding: 8px 16px;
  cursor: default;
}
.bt.active {
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
}
.build-body { display: flex; flex-direction: column; gap: 10px; }
.build-line {
  height: 10px;
  background: var(--bg);
  border-radius: 4px;
  width: 100%;
}
.build-line.short { width: 60%; }
.build-line.med { width: 80%; }

/* Ship mockup */
.auto-rule { text-align: center; }
.auto-trigger {
  font-size: 13px;
  color: var(--text-muted);
  padding: 10px 16px;
  background: var(--bg);
  border-radius: var(--radius-xs);
  display: inline-block;
}
.auto-trigger strong { color: var(--green); }
.auto-arrow {
  font-size: 20px;
  color: var(--accent);
  margin: 12px 0;
}
.auto-action {
  font-size: 13px;
  color: var(--text-muted);
  padding: 10px 16px;
  background: var(--accent-surface);
  border: 1px solid rgba(123, 111, 240, 0.1);
  border-radius: var(--radius-xs);
  display: inline-block;
}

/* ─── Comparison ─── */
.comparison {
  padding: 120px 0;
}
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}
.comp-col {
  border-radius: var(--radius);
  padding: 32px;
}
.comp-before {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
}
.comp-after {
  background: var(--accent-surface);
  border: 1px solid rgba(123, 111, 240, 0.15);
}
.comp-header {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.comp-before .comp-header { color: var(--text-subtle); }
.comp-after .comp-header { color: var(--accent); }
.comp-item {
  font-size: 14px;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.comp-item::before {
  flex-shrink: 0;
  font-size: 14px;
}
.comp-item.neg { color: var(--text-subtle); }
.comp-item.neg::before { content: '✕'; color: var(--red); opacity: 0.6; }
.comp-item.pos { color: var(--text); }
.comp-item.pos::before { content: '✓'; color: var(--green); }
.comp-item:last-child {
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
  font-weight: 600;
}
.comp-after .comp-item:last-child {
  border-top-color: rgba(123, 111, 240, 0.12);
}

/* ─── Pricing ─── */
.pricing {
  padding: 120px 0;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
}
.price-card:hover {
  border-color: var(--border);
  transform: translateY(-2px);
}
.price-card.featured {
  border-color: var(--accent-dim);
  background: linear-gradient(180deg, rgba(123,111,240,0.06) 0%, var(--bg-card) 100%);
  box-shadow: 0 0 60px rgba(123,111,240,0.08);
}
.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.price-tier {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.price-amount {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
}
.price-amount span {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-subtle);
}
.price-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.price-features {
  margin-bottom: 28px;
}
.price-features li {
  font-size: 14px;
  color: var(--text-muted);
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.price-features li::before {
  content: '✓';
  color: var(--green);
  font-size: 13px;
  flex-shrink: 0;
}

/* ─── Waitlist Forms ─── */
.waitlist-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 600px;
  margin: 0 auto;
}
.hero-form { margin-bottom: 16px; }
.waitlist-form input,
.waitlist-form select {
  padding: 14px 18px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  outline: none;
  transition: border-color var(--transition);
  min-width: 0;
}
.waitlist-form input { flex: 1 1 180px; }
.waitlist-form select { flex: 0 1 160px; cursor: pointer; }
.waitlist-form select option { background: var(--bg-card); }
.waitlist-form input:focus,
.waitlist-form select:focus { border-color: var(--accent); }
.waitlist-form input::placeholder { color: var(--text-subtle); }
.cta-form {
  flex-direction: column;
  align-items: stretch;
  max-width: 360px;
}
.cta-form input,
.cta-form select { flex: unset; width: 100%; }
.waitlist-success {
  text-align: center;
  padding: 20px 0;
}
.success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(52,211,153,0.15);
  color: var(--green);
  font-size: 24px;
  margin-bottom: 16px;
}
.waitlist-success strong {
  display: block;
  font-size: 20px;
  margin-bottom: 8px;
}
.waitlist-success p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ─── Final CTA ─── */
.final-cta {
  padding: 120px 0;
}
.cta-card {
  text-align: center;
  background: linear-gradient(180deg, var(--accent-surface) 0%, transparent 100%);
  border: 1px solid rgba(123, 111, 240, 0.1);
  border-radius: 24px;
  padding: 80px 40px;
}
.cta-card h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.cta-card p {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.cta-note {
  font-size: 13px;
  color: var(--text-subtle);
  margin-top: 12px;
}

/* ─── Footer ─── */
.footer {
  padding: 64px 0 0;
  border-top: 1px solid var(--border-subtle);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--text-subtle);
  margin-top: 12px;
}
.footer-links {
  display: flex;
  gap: 64px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-subtle);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid var(--border-subtle);
  font-size: 13px;
  color: var(--text-subtle);
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-lg {
    grid-column: span 2;
    flex-direction: column;
    gap: 24px;
    padding: 32px;
  }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .workflow-step,
  .workflow-step.reverse {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  .step-number { font-size: 48px; }
  .comparison-grid { grid-template-columns: 1fr; }
  .footer-inner {
    flex-direction: column;
    gap: 40px;
  }
  .footer-links { gap: 40px; }
}

@media (max-width: 640px) {
  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding: 120px 0 60px; }
  .hero-title { font-size: clamp(32px, 9vw, 52px); }
  .features-grid { grid-template-columns: 1fr; }
  .feature-lg { grid-column: span 1; }
  .screen-sidebar { display: none; }
  .screen-body { min-height: 240px; }
  .kanban { min-width: 400px; }
  .screen-main { overflow-x: auto; }
  .footer-links { flex-direction: column; gap: 32px; }
  .logos-grid { gap: 24px; }
  .cta-card { padding: 48px 24px; }
  .pricing-grid { max-width: 100%; }
}
