/* General Styles */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif;
  background: #ffffff;
  color: #1a1a1a;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Page Glows */
.page-glow {
  position: fixed;
  pointer-events: none;
  z-index: 1;
}

.page-glow-one {
  top: -200px;
  left: -200px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15), transparent);
  border-radius: 50%;
}

.page-glow-two {
  bottom: -150px;
  right: -150px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1), transparent);
  border-radius: 50%;
}

/* Header Styles */
.site-header {
  background: #000000;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #2a2a2a;
  backdrop-filter: blur(8px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
}

.nav {
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.25rem;
}

.brand-logo {
  height: 40px;
  width: auto;
}

.brand span {
  color: #ffffff;
}

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

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ccc;
}

.nav-cta {
  background: #3b82f6;
  color: #ffffff !important;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.nav-cta:hover {
  background: #2563eb;
  color: #ffffff !important;
}

/* Hamburger menu button */
.menu-button {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
  margin: 4px 0;
  transition: transform 0.2s ease;
}

/* Hero Section */
.hero {
  padding: 24px 12px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, transparent 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.pill {
  display: inline-block;
  background: #dbeafe;
  color: #1e40af;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin: 0 0 1.5rem;
  color: #000000;
  font-weight: 900;
}

.hero-lede {
  font-size: 1.25rem;
  color: #374151;
  margin: 0 0 1rem;
  line-height: 1.6;
}

.hero-description {
  color: #6b7280;
  margin: 0 0 2rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.primary-button {
  background: #3b82f6;
  color: #ffffff;
}

.primary-button:hover {
  background: #2563eb;
  transform: translateY(-2px);
}

.secondary-button {
  background: transparent;
  color: #3b82f6;
  border: 2px solid #3b82f6;
}

.secondary-button:hover {
  background: #dbeafe;
}

.trust-row {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.trust-row span {
  font-size: 0.9rem;
  color: #6b7280;
  font-weight: 500;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
}

.floating-card {
  position: absolute;
  background: #ffffff;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.card-one {
  bottom: 20px;
  left: -40px;
  width: 180px;
  background: linear-gradient(135deg, #dbeafe, #f3e8ff);
}

.card-two {
  top: 40px;
  right: -20px;
  width: 160px;
  background: linear-gradient(135deg, #fecaca, #fed7aa);
}

.floating-card strong {
  color: #1a1a1a;
}

.floating-card span {
  font-size: 0.85rem;
  color: #6b7280;
  font-weight: 500;
}

/* Metrics Section */
.metrics {
  background: #f9fafb;
  padding: 12px 0;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.metrics-grid div {
  display: flex;
  flex-direction: column;
}

.metrics-grid strong {
  font-size: 2.5rem;
  color: #3b82f6;
}

.metrics-grid span {
  color: #6b7280;
  font-size: 1rem;
}

/* Value Section */
.value-section {
  padding: 12px 0;
}

.value-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.value-card > div:first-child {
  display: flex;
  flex-direction: column;
}

.eyebrow {
  color: #3b82f6;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
}

.value-card h2 {
  font-size: 2.25rem;
  margin: 0;
  line-height: 1.3;
}

.value-card p {
  color: #6b7280;
  line-height: 1.8;
  margin: 0;
}

/* Section Heading */
.section-heading {
  margin-bottom: 0;
}

.section-heading.centered {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 12px;
}

.section-heading h2 {
  font-size: 2rem;
  margin: 0.5rem 0;
  color: #000000;
}

.section-heading > p {
  color: #6b7280;
  margin: 0.5rem 0;
  line-height: 1.6;
}

/* Normalize vertical spacing between sections */
main > section {
  padding: 12px 0;
}

/* Why Section */
.why {
  background: #f9fafb;
  padding: 12px 0;
}

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

.feature-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.feature-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
  color: #000000;
}

.feature-card p {
  color: #6b7280;
  margin: 0;
  line-height: 1.6;
}

/* Agents Section */
.agents {
  padding: 12px 0;
}

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

.agent-card {
  background: #f0f9ff;
  border: 1px solid #bfdbfe;
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.agent-card:hover {
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
  transform: translateY(-4px);
}

.spotlight-card {
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
  border: none;
  color: #ffffff;
}

.spotlight-card h3,
.spotlight-card p,
.spotlight-card li {
  color: #ffffff;
}

.agent-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.75rem;
}

.agent-card h3 {
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
  color: #000000;
  font-weight: 700;
}

.agent-card p {
  color: #6b7280;
  margin: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.agent-card ul {
  list-style-position: inside;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
  color: #6b7280;
}

.agent-card li {
  margin-bottom: 0.5rem;
}

/* Process Section */
.process {
  background: #f9fafb;
  padding: 12px 0;
}

.process-card {
  max-width: 900px;
  margin: 0 auto;
}

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

.step {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  text-align: center;
}

.step span {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: #3b82f6;
  margin-bottom: 0.5rem;
}

.step h3 {
  font-size: 1.25rem;
  margin: 0.5rem 0;
  color: #000000;
}

.step p {
  color: #6b7280;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  padding: 12px 0;
  color: #ffffff;
}

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

.cta-section .eyebrow {
  color: #dbeafe;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin: 1rem 0;
  color: #ffffff;
}

.cta-section p {
  color: #f3e8ff;
  margin: 1rem 0;
  line-height: 1.6;
}

.cta-section .primary-button {
  background: #ffffff;
  color: #3b82f6;
  margin-top: 1rem;
}

.cta-section .primary-button:hover {
  background: #f3e8ff;
}

/* Footer Styles */
.footer {
  background: #000000;
  color: #ffffff;
  padding: 1rem 0;
  border-top: 1px solid #2a2a2a;
}

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

.footer-content div {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.footer-content strong {
  font-size: 1.25rem;
  margin: 0;
}

.footer-content p {
  margin: 0;
  color: #b3b3b3;
  font-size: 0.95rem;
}

.footer-content a {
  color: #b3b3b3;
  text-decoration: none;
  transition: color 0.3s ease;
  text-align: right;
}

.footer-content a:hover {
  color: #3b82f6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    right: 1rem;
    background: #000000;
    padding: 1rem;
    border-radius: 8px;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 200;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .value-card {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .agent-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    gap: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
    text-align: center;
  }

  .footer-content {
    text-align: center;
    gap: 1rem;
  }

  .footer-content a {
    text-align: center;
  }

  .trust-row {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .floating-card {
    position: static;
    margin: 1rem 0;
  }

  .hero-visual {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.5rem;
  }

  .hero-lede {
    font-size: 1rem;
  }

  .nav {
    padding: 0.75rem;
  }

  .nav-links {
    display: none;
  }

  .feature-card,
  .agent-card,
  .step {
    padding: 1.5rem;
  }

  .metrics-grid strong {
    font-size: 1.75rem;
  }

  .cta-section h2 {
    font-size: 1.5rem;
  }
}
