/* Clinical Precision Theme Tokens */
:root {
  --bg: #FBFCFD;
  --surface: #FFFFFF;
  --text: #0F1B2A;
  --muted: #5A6B7F;
  --border: #DDE4EC;
  --accent: #0F5C8C;
  --on-accent: #FFFFFF;
  --accent-light: #E6F0F8;
  --success: #10B981;
  --danger: #EF4444;
  --shadow: 0 1px 3px rgba(15, 27, 42, 0.08);
  --shadow-lg: 0 10px 25px -5px rgba(15, 27, 42, 0.1), 0 8px 10px -6px rgba(15, 27, 42, 0.1);
  --radius: 6px;
  --font-display: 'Manrope', 'Segoe UI Variable Display', 'SF Pro Display', 'Helvetica Neue', Arial, system-ui, sans-serif;
  --font-body: 'IBM Plex Sans', 'Segoe UI Variable Text', 'SF Pro Text', 'Helvetica Neue', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text);
  font-weight: 650;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

p {
  color: var(--muted);
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 180ms ease-out;
}

a:hover {
  color: #0a436d;
}

/* Layout Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 180ms ease-out;
  text-align: center;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--on-accent);
}

.btn-primary:hover {
  background-color: #0a436d;
  color: var(--on-accent);
}

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

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

.btn-danger {
  background-color: var(--danger);
  color: var(--on-accent);
}

.btn-danger:hover {
  background-color: #dc2626;
}

.btn-full {
  width: 100%;
}

.btn-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.hidden {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  background-color: var(--accent-light);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(251, 252, 253, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text);
}

.logo-icon {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--accent);
}

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

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--muted);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-nav-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 4.5rem;
  left: 0;
  width: 100%;
  height: calc(100vh - 4.5rem);
  background-color: var(--surface);
  z-index: 99;
  transform: translateY(-100%);
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
  border-bottom: 1px solid var(--border);
  display: none;
}

.mobile-drawer.open {
  transform: translateY(0);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  gap: 1.5rem;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}

.drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

/* Hero Section */
.hero-section {
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  max-width: 580px;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.meta-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--success);
}

/* Interactive Voice Agent Simulator */
.hero-simulator {
  width: 100%;
}

.simulator-card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 520px;
}

.simulator-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  background-color: var(--bg);
  flex-wrap: wrap;
  gap: 0.75rem;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: var(--muted);
  border-radius: 50%;
  transition: background-color 300ms ease;
}

.status-dot.active {
  background-color: var(--success);
  box-shadow: 0 0 8px var(--success);
}

.status-dot.listening {
  background-color: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 1.5s infinite;
}

.status-text {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
}

.agent-select {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background-color: var(--surface);
  color: var(--text);
  cursor: pointer;
  outline: none;
  max-width: 100%;
}

.agent-select:focus {
  border-color: var(--accent);
}

.simulator-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  overflow: hidden;
  gap: 1.5rem;
}

/* Waveform Visualizer */
.waveform-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 60px;
  background-color: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 0 1rem;
}

.waveform-bar {
  width: 4px;
  height: 8px;
  background-color: var(--border);
  border-radius: 2px;
  transition: height 150ms ease, background-color 150ms ease;
}

.waveform-container.active .waveform-bar {
  background-color: var(--accent);
}

.waveform-container.speaking .waveform-bar {
  background-color: var(--success);
}

/* Transcript Box */
.transcript-box {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-right: 0.5rem;
}

.message {
  max-width: 85%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  line-height: 1.5;
}

.system-message {
  background-color: var(--bg);
  border: 1px solid var(--border);
  color: var(--muted);
  align-self: center;
  text-align: center;
  max-width: 100%;
}

.agent-message {
  background-color: var(--accent-light);
  color: var(--accent);
  align-self: flex-start;
  border-bottom-left-radius: 0;
}

.user-message {
  background-color: var(--border);
  color: var(--text);
  align-self: flex-end;
  border-bottom-right-radius: 0;
}

.simulator-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border);
  background-color: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.voice-controls {
  display: flex;
  gap: 0.75rem;
}

.text-input-wrapper {
  display: flex;
  gap: 0.5rem;
}

.text-input-wrapper input {
  flex: 1;
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.65rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background-color: var(--surface);
  outline: none;
}

.text-input-wrapper input:focus {
  border-color: var(--accent);
}

.btn-send {
  background-color: var(--accent);
  color: var(--on-accent);
  border: none;
  border-radius: var(--radius);
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 180ms ease-out;
}

.btn-send:hover {
  background-color: #0a436d;
}

.btn-send svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Data Strip Section */
.data-strip-section {
  background-color: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}

.data-strip-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.data-item {
  text-align: center;
  position: relative;
}

.data-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1rem;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: var(--border);
}

.data-value {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.data-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 600;
}

/* Features Section */
.features-section {
  padding: 6rem 0;
  border-bottom: 1px solid var(--border);
  background-color: var(--surface);
}

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

.feature-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  background-color: var(--bg);
  transition: all 180ms ease-out;
}

.feature-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.feature-card-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--accent-light);
  color: var(--accent);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.9rem;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* Latency & Interruption Playground */
.playground-section {
  padding: 6rem 0;
  border-bottom: 1px solid var(--border);
}

.section-header {
  max-width: 650px;
  margin: 0 auto 4rem auto;
}

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

.section-title {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
}

.playground-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.playground-card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: box-shadow 180ms ease-out;
}

.playground-card:hover {
  box-shadow: var(--shadow);
}

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

.card-header h3 {
  font-size: 1.25rem;
}

.latency-badge {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

.high-latency {
  background-color: #FEE2E2;
  color: var(--danger);
}

.low-latency {
  background-color: #D1FAE5;
  color: var(--success);
}

.card-desc {
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.demo-box {
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.demo-controls {
  display: flex;
  gap: 0.75rem;
}

.demo-status {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
}

.demo-visualizer {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 24px;
}

.visualizer-bar {
  width: 3px;
  height: 6px;
  background-color: var(--border);
  border-radius: 1px;
  transition: height 100ms ease;
}

/* Agent Customizer Section */
.customizer-section {
  padding: 6rem 0;
  border-bottom: 1px solid var(--border);
}

.customizer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: start;
}

.customizer-panel {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.form-textarea, .form-select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background-color: var(--bg);
  color: var(--text);
  outline: none;
  transition: border-color 180ms ease-out;
}

.form-textarea:focus, .form-select:focus {
  border-color: var(--accent);
  background-color: var(--surface);
}

.form-range {
  width: 100%;
  height: 6px;
  background-color: var(--border);
  border-radius: 3px;
  outline: none;
  -webkit-appearance: none;
}

.form-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--accent);
  cursor: pointer;
  transition: transform 100ms ease;
}

.form-range::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.customizer-preview {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 480px;
}

.preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  background-color: var(--bg);
}

.preview-header h4 {
  font-size: 0.95rem;
}

.preview-badge {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  background-color: var(--accent-light);
  color: var(--accent);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.preview-body {
  flex: 1;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
  overflow-y: auto;
}

.preview-agent-avatar {
  width: 4rem;
  height: 4rem;
  background-color: var(--accent-light);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preview-agent-avatar svg {
  width: 2rem;
  height: 2rem;
}

.preview-instruction {
  font-size: 0.9rem;
  max-width: 280px;
}

.preview-chat {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: left;
  margin-top: 1rem;
}

.preview-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border);
  background-color: var(--bg);
}

/* API Integration Section */
.api-section {
  padding: 6rem 0;
  border-bottom: 1px solid var(--border);
}

.api-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.code-panel {
  background-color: #0F1B2A;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.code-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  background-color: #08101C;
  border-bottom: 1px solid #1E2D3D;
}

.code-tabs {
  display: flex;
  gap: 0.5rem;
}

.code-tab {
  background: none;
  border: none;
  color: #5A6B7F;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 150ms ease;
}

.code-tab.active {
  background-color: #1E2D3D;
  color: #FFFFFF;
}

.btn-copy {
  background: none;
  border: none;
  color: #5A6B7F;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  transition: color 150ms ease;
}

.btn-copy:hover {
  color: #FFFFFF;
}

.btn-copy svg {
  width: 1rem;
  height: 1rem;
}

.code-body {
  padding: 1.5rem;
  overflow-x: auto;
}

.code-body pre {
  margin: 0;
}

.code-body code {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.85rem;
  color: #E2E8F0;
  line-height: 1.5;
}

.api-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.api-feature-item {
  display: flex;
  gap: 1.25rem;
}

.feature-icon {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  background-color: var(--accent-light);
  color: var(--accent);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.api-feature-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.api-feature-item p {
  font-size: 0.9rem;
}

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

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

.integration-logo {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all 180ms ease-out;
}

.integration-logo:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.integration-logo svg {
  width: 2rem;
  height: 2rem;
  color: var(--muted);
  transition: color 180ms ease-out;
}

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

.integration-logo span {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
}

/* FAQ Section */
.faq-section {
  padding: 6rem 0;
  border-bottom: 1px solid var(--border);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--muted);
  transition: transform 200ms ease;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 200ms ease-out;
}

.faq-content p {
  padding: 0 1.5rem 1.25rem 1.5rem;
  font-size: 0.95rem;
}

/* Footer */
.site-footer {
  background-color: #0F1B2A;
  color: #FFFFFF;
  padding: 5rem 0 2.5rem 0;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand .logo {
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.footer-brand .logo-text span {
  color: #38BDF8;
}

.footer-desc {
  color: #94A3B8;
  font-size: 0.95rem;
  max-width: 320px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-col h5 {
  color: #FFFFFF;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.footer-col a {
  display: block;
  color: #94A3B8;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  transition: color 150ms ease;
}

.footer-col a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  border-top: 1px solid #1E2D3D;
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #94A3B8;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: #94A3B8;
}

.footer-bottom-links a:hover {
  color: #FFFFFF;
}

/* Animations */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .customizer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .api-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .integrations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .main-nav, .header-actions {
    display: none;
  }
  
  .mobile-nav-toggle {
    display: block;
  }
  
  .mobile-drawer {
    display: block;
  }
  
  .hero-title {
    font-size: 2.25rem;
  }
  
  .data-strip-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .data-item:nth-child(2)::after {
    display: none;
  }
  
  .playground-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .data-strip-container {
    grid-template-columns: 1fr;
  }
  
  .data-item::after {
    display: none !important;
  }
  
  .integrations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-links {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
