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

:root {
  --bg-primary: #090909;
  --bg-secondary: #121214;
  --bg-tertiary: #18181b;
  --bg-card: rgba(24, 24, 27, 0.7);
  --text-primary: #ffffff;
  --text-secondary: #a1a1aa;
  --text-muted: #52525b;
  --accent: #6366f1;
  --accent-hover: #4f46e5;
  --accent-glow: rgba(99, 102, 241, 0.15);
  --accent-border: rgba(99, 102, 241, 0.3);
  --border-muted: #27272a;
  --border-light: rgba(255, 255, 255, 0.08);
  
  --font-sans: 'Geist', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'Geist Mono', 'Fira Code', monospace;
  
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-medium: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--border-muted);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* Background animated grid */
.hero-wrapper {
  position: relative;
  overflow: hidden;
  background-color: var(--bg-primary);
}

.grid-bg {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.8;
  mask-image: radial-gradient(circle 450px at var(--mouse-x, 50%) var(--mouse-y, 30%), black, transparent 80%);
  -webkit-mask-image: radial-gradient(circle 450px at var(--mouse-x, 50%) var(--mouse-y, 30%), black, transparent 80%);
  transition: mask-image 0.1s ease, -webkit-mask-image 0.1s ease;
}

.spotlight-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, rgba(99, 102, 241, 0) 70%);
  top: -150px;
  left: calc(50% - 300px);
  z-index: 0;
  pointer-events: none;
}

/* Typography elements */
h1, h2, h3, h4 {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

p {
  color: var(--text-secondary);
}

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.75rem 1.25rem;
  border-radius: 6px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--accent);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  box-shadow: 0 0 25px rgba(99, 102, 241, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: var(--bg-tertiary);
  color: var(--text-primary);
  border-color: var(--border-muted);
}

.btn-secondary:hover {
  background-color: var(--border-muted);
  border-color: var(--text-muted);
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(9, 9, 9, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-muted);
  padding: 1rem 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.logo svg {
  color: var(--accent);
}

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

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.nav-links a:hover {
  color: var(--text-primary);
}

/* Integration Ticker */
.ticker-wrap {
  overflow: hidden;
  width: 100%;
  background: #050505;
  border-top: 1px solid var(--border-muted);
  border-bottom: 1px solid var(--border-muted);
  padding: 1.25rem 0;
  display: flex;
  user-select: none;
}

.ticker {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
  gap: 3.5rem;
  padding-left: 3.5rem;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-family: var(--font-mono);
  font-weight: 500;
  opacity: 0.75;
  transition: opacity var(--transition-fast), color var(--transition-fast);
}

.ticker-item:hover {
  opacity: 1;
  color: var(--text-primary);
}

.ticker-item svg {
  width: 18px;
  height: 18px;
}

@keyframes marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* Hero Section */
.hero {
  padding: 5rem 0 6rem 0;
  text-align: center;
  z-index: 2;
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-muted);
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  max-width: 900px;
  margin: 0 auto 1.5rem auto;
  color: var(--text-primary);
  font-weight: 800;
  line-height: 1.05;
}

.hero h1 span {
  background: linear-gradient(to right, #ffffff, var(--text-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subheadline {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  max-width: 640px;
  margin: 0 auto 2.5rem auto;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Email waitlist form */
.waitlist-form {
  display: flex;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  gap: 0.5rem;
  background-color: rgba(24, 24, 27, 0.6);
  border: 1px solid var(--border-muted);
  padding: 0.4rem;
  border-radius: 8px;
  backdrop-filter: blur(8px);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.waitlist-form:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 15px rgba(99, 102, 241, 0.15);
}

.waitlist-form input[type="email"] {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 0.6rem 0.8rem;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.95rem;
}

.waitlist-form input::placeholder {
  color: var(--text-muted);
}

/* Dashboard Mockup */
.mockup-container {
  max-width: 1000px;
  margin: 4rem auto 0 auto;
  background: linear-gradient(135deg, rgba(39, 39, 42, 0.4) 0%, rgba(9, 9, 9, 0.8) 100%);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.8), 0 0 50px rgba(99, 102, 241, 0.05);
}

.dashboard-mockup {
  display: grid;
  grid-template-columns: 240px 1fr;
  height: 520px;
  background-color: #0d0d10;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  text-align: left;
}

/* Mockup Sidebar */
.mockup-sidebar {
  background-color: #09090b;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mockup-user {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.user-avatar {
  width: 24px;
  height: 24px;
  background-color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.7rem;
  color: #fff;
}

.user-info {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
}

.mockup-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mockup-nav-title {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  font-family: var(--font-mono);
}

.mockup-nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  color: var(--text-secondary);
  font-size: 0.85rem;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 1px solid transparent;
}

.mockup-nav-item.active {
  background-color: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.02);
}

.mockup-nav-item:hover:not(.active) {
  color: var(--text-primary);
  background-color: rgba(255, 255, 255, 0.02);
}

.nav-item-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-item-left svg {
  width: 16px;
  height: 16px;
}

.nav-badge {
  background-color: rgba(99, 102, 241, 0.15);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  border: 1px solid var(--accent-border);
}

.mockup-connections {
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.25rem;
}

.connection-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.75rem;
}

.connection-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.connection-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.connection-info svg {
  width: 14px;
  height: 14px;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  background-color: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10b981;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 1; box-shadow: 0 0 10px #10b981; }
  100% { transform: scale(0.9); opacity: 0.6; }
}

/* Mockup Main Panel */
.mockup-main {
  background-color: #0b0b0d;
  display: flex;
  flex-direction: column;
}

.mockup-search-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.search-input-mock {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.8rem;
}

.search-input-mock svg {
  width: 16px;
  height: 16px;
  color: var(--text-muted);
}

.shortcut-badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-muted);
  color: var(--text-secondary);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
}

.feed-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem 0.5rem 1.25rem;
}

.feed-header-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.feed-header-actions {
  display: flex;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.mockup-feed-list {
  flex: 1;
  overflow-y: auto;
  padding: 0.5rem 1.25rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Feed items */
.feed-card {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  padding: 1rem;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.feed-card:hover {
  background-color: rgba(255, 255, 255, 0.04);
  border-color: rgba(99, 102, 241, 0.2);
}

.feed-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.feed-source-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feed-source-logo {
  width: 16px;
  height: 16px;
}

.feed-source-name {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  font-weight: 500;
  color: var(--text-secondary);
}

.feed-timestamp {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.feed-card-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.feed-card-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

/* Action Area */
.feed-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding-top: 0.75rem;
  margin-top: 0.5rem;
}

.feed-shortcut-tip {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.action-trigger-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.action-trigger-btn:hover {
  background-color: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 10px rgba(99, 102, 241, 0.3);
}

/* Inline Interactive Editor */
.interactive-editor-box {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 0.75rem;
  animation: slideDown var(--transition-fast) forwards;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

.editor-textarea {
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-muted);
  border-radius: 4px;
  padding: 0.5rem;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  resize: none;
  min-height: 44px;
  outline: none;
}

.editor-textarea:focus {
  border-color: rgba(99, 102, 241, 0.5);
}

.editor-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}

.editor-btn {
  font-size: 0.75rem;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid transparent;
}

.editor-btn-cancel {
  background: transparent;
  color: var(--text-secondary);
  border-color: rgba(255, 255, 255, 0.05);
}

.editor-btn-submit {
  background-color: var(--accent);
  color: #fff;
}

/* Mockup Tabs Logic Classes */
.mockup-tab-content {
  display: none;
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem;
}

.mockup-tab-content.active {
  display: flex;
  flex-direction: column;
}

/* Connect Tools Tab */
.tools-grid-mock {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.tool-card-mock {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tool-card-mock-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
}

.tool-card-mock-left svg {
  width: 18px;
  height: 18px;
}

.toggle-switch-mock {
  width: 28px;
  height: 16px;
  background-color: var(--accent);
  border-radius: 99px;
  position: relative;
  cursor: pointer;
}

.toggle-switch-mock::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: #fff;
  border-radius: 50%;
  top: 2px;
  right: 2px;
  transition: transform var(--transition-fast);
}

.toggle-switch-mock.off {
  background-color: var(--border-muted);
}

.toggle-switch-mock.off::after {
  transform: translateX(-12px);
}

/* Insights Tab */
.insights-mock-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.insight-metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.insight-metric-card {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 6px;
  padding: 0.75rem;
  text-align: center;
}

.insight-metric-val {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
}

.insight-metric-label {
  font-size: 0.7rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
}

.insight-chart-mock {
  height: 140px;
  background-color: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 6px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  height: 90px;
}

.chart-bar {
  width: 16px;
  background: linear-gradient(to top, rgba(99, 102, 241, 0.1), var(--accent));
  border-radius: 2px 2px 0 0;
  height: 40%;
  position: relative;
}

.chart-bar::before {
  content: attr(data-value);
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--text-secondary);
}

/* Section Header styling */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--text-primary);
  margin-bottom: 1rem;
}

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

/* Problem Block Section */
.problems-section {
  padding: 6rem 0;
  border-top: 1px solid var(--border-muted);
  background-color: #070708;
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.problem-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-muted);
  border-radius: 10px;
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition-fast), transform var(--transition-fast);
}

.problem-card:hover {
  border-color: rgba(99, 102, 241, 0.25);
  transform: translateY(-2px);
}

.problem-num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent);
  opacity: 0.8;
  margin-bottom: 1rem;
  display: block;
}

.problem-title {
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.problem-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.04) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
}

/* How It Works Section */
.how-it-works {
  padding: 6rem 0;
  border-top: 1px solid var(--border-muted);
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.step-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-muted);
  padding: 2.25rem;
  border-radius: 10px;
  position: relative;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

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

.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-muted);
  border-radius: 8px;
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.step-title {
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

/* Feature Highlights */
.features-section {
  padding: 6rem 0;
  background-color: #070708;
  border-top: 1px solid var(--border-muted);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-muted);
  border-radius: 12px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 200px at var(--feat-x, 0px) var(--feat-y, 0px), rgba(99, 102, 241, 0.06), transparent 70%);
  opacity: 0;
  transition: opacity var(--transition-fast);
  pointer-events: none;
}

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

.feature-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.5);
}

.feature-icon-wrapper {
  width: 44px;
  height: 44px;
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-muted);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 2rem;
}

.feature-icon-wrapper svg {
  width: 22px;
  height: 22px;
}

.feature-title {
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

/* Integrations Grid */
.integrations-section {
  padding: 6rem 0;
  border-top: 1px solid var(--border-muted);
}

.integrations-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.integration-grid-item {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-muted);
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all var(--transition-fast);
  text-decoration: none;
  cursor: pointer;
}

.integration-grid-item svg {
  width: 28px;
  height: 28px;
  color: var(--text-secondary);
  transition: transform var(--transition-fast), color var(--transition-fast);
}

.integration-grid-item span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.integration-grid-item:hover {
  border-color: rgba(99, 102, 241, 0.3);
  background-color: rgba(99, 102, 241, 0.02);
}

.integration-grid-item:hover svg {
  color: var(--accent);
  transform: translateY(-2px);
}

.integration-grid-item:hover span {
  color: var(--text-primary);
}

.integration-grid-item.request-item {
  border-style: dashed;
  border-color: var(--border-muted);
  background: transparent;
}

.integration-grid-item.request-item:hover {
  border-color: var(--accent);
  background-color: rgba(99, 102, 241, 0.02);
}

.integration-grid-item.request-item svg {
  color: var(--text-muted);
}

/* Social Proof (Testimonials) */
.testimonials-section {
  padding: 6rem 0;
  background-color: #070708;
  border-top: 1px solid var(--border-muted);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-muted);
  border-radius: 10px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-quote {
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

.author-role {
  font-size: 0.75rem;
  color: var(--accent);
  font-family: var(--font-mono);
}

/* Waitlist CTA block */
.waitlist-cta-section {
  padding: 7rem 0;
  border-top: 1px solid var(--border-muted);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.waitlist-cta-section::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 250px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, rgba(99, 102, 241, 0) 70%);
  pointer-events: none;
}

.cta-box {
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.cta-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.cta-promo {
  display: inline-block;
  font-size: 0.75rem;
  font-family: var(--font-mono);
  color: var(--text-muted);
  margin-top: 1rem;
}

.cta-promo span {
  color: var(--accent);
}

/* Success Card */
.success-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--accent);
  box-shadow: 0 0 25px rgba(99, 102, 241, 0.15);
  border-radius: 8px;
  padding: 1.5rem;
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  animation: scaleUp var(--transition-fast) forwards;
}

@keyframes scaleUp {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.success-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-family: var(--font-mono);
  background-color: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.success-card h4 {
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.success-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.waitlist-num {
  font-family: var(--font-mono);
  color: var(--accent);
  font-weight: 700;
}

/* Footer */
.footer {
  background-color: #050505;
  border-top: 1px solid var(--border-muted);
  padding: 3rem 0;
}

.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
  text-decoration: none;
}

.footer-logo svg {
  color: var(--accent);
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-nav a {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.social-link:hover {
  color: var(--text-primary);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

/* Responsive Overrides (Mobile First approach) */
@media (max-width: 1024px) {
  .integrations-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .navbar .container {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .nav-links {
    gap: 1.25rem;
  }
  
  .hero {
    padding: 3.5rem 0 4rem 0;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .dashboard-mockup {
    grid-template-columns: 1fr;
    height: 580px;
  }
  
  .mockup-sidebar {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    height: 180px;
    padding: 0.75rem 1.25rem;
    flex-direction: row;
    align-items: center;
  }
  
  .mockup-user {
    margin-bottom: 0;
  }
  
  .mockup-nav {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
  }
  
  .mockup-nav-title {
    display: none;
  }
  
  .mockup-connections {
    display: none;
  }
  
  .problems-grid,
  .steps-container,
  .features-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .integrations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  
  .footer-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
  }
  
  .footer-nav {
    flex-direction: column;
    gap: 0.75rem;
  }
}

@media (max-width: 480px) {
  .waitlist-form {
    flex-direction: column;
    padding: 0.5rem;
    gap: 0.5rem;
    background: var(--bg-secondary);
  }
  
  .waitlist-form input[type="email"] {
    width: 100%;
    border-bottom: 1px solid var(--border-muted);
    padding-bottom: 0.5rem;
  }
  
  .btn {
    width: 100%;
  }
  
  .integrations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
