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

:root {
  --bg-primary: #0a0f12;
  --bg-secondary: #0f1419;
  --bg-tertiary: #151c22;
  --bg-card: #111820;
  --accent: #0d9373;
  --accent-light: #23b193;
  --text-primary: #ffffff;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;
  --border-color: #1f2937;
  --border-light: #2d3748;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

button {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 15, 18, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.875rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo svg {
  width: 24px;
  height: 24px;
}

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

.nav-link {
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

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

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

.contact-link {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

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

.start-btn {
  background: var(--text-primary);
  color: var(--bg-primary);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.start-btn:hover {
  opacity: 0.9;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 15, 18, 0.4) 0%,
    rgba(10, 15, 18, 0.6) 30%,
    rgba(10, 15, 18, 0.95) 70%,
    rgba(10, 15, 18, 1) 100%
  );
  z-index: 1;
}

.hero-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.announcement-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  transition: background 0.2s ease;
}

.announcement-badge:hover {
  background: rgba(255, 255, 255, 0.15);
}

.badge-new {
  background: var(--accent);
  color: white;
  padding: 0.125rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  max-width: 800px;
  background: linear-gradient(135deg, #ffffff 0%, #e5e5e5 50%, #ffffff 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s ease-in-out infinite;
}

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

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 2rem;
}

.hero-input-container {
  display: flex;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 0.375rem;
  margin-bottom: 3rem;
}

.hero-input {
  background: transparent;
  border: none;
  outline: none;
  padding: 0.625rem 1rem;
  font-size: 0.9375rem;
  color: var(--text-primary);
  min-width: 280px;
}

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

.hero-button {
  background: var(--text-primary);
  color: var(--bg-primary);
  padding: 0.625rem 1.25rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.hero-button:hover {
  opacity: 0.9;
}

/* docs preview  */
.docs-preview {
  width: 100%;
  height: 100%;
}

.docs-preview img {
  border-radius: 20px;
  box-shadow: -2px -2px 3px 4px rgb(84, 83, 83);
}

/* company logos section */
.company-logos {
  width: 1280px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.logos-container {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 4rem;
}

.logo-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

/* Intelligence Section */
.intelligence-section {
  padding: 6rem 1.5rem;
  background: var(--bg-primary);
}

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

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

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

.feature-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  min-height: 400px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.feature-card:hover {
  border-color: var(--border-light);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.feature-label {
  display: inline-block;
  color: var(--accent-light);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

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

.feature-visual {
  position: relative;
  padding: 2rem;
}

.visual-sparkle {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border-radius: 8px;
  position: absolute;
  top: 0;
  left: 0;
}

.visual-sparkle::after {
  content: "✨";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.visual-editor {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1rem;
  margin-top: 2rem;
}

.editor-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.editor-text {
  height: 24px;
  background: linear-gradient(to right, var(--accent), transparent);
  border-radius: 4px;
  flex: 1;
}

.editor-cursor {
  width: 4px;
  height: 24px;
  background: var(--accent-light);
  border-radius: 2px;
  animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.editor-line-sm {
  height: 12px;
  background: var(--bg-card);
  border-radius: 3px;
  margin-bottom: 0.5rem;
  width: 80%;
}

.copy-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-card);
  padding: 0.375rem 0.75rem;
  border-radius: 6px;
  font-size: 0.6875rem;
  font-weight: 500;
  margin-top: 1rem;
}

.copy-badge::before {
  content: "📋";
}

.feature-visual-agent {
  display: flex;
  justify-content: center;
  padding: 3rem 0;
}

.agent-checks {
  display: flex;
  gap: 1rem;
}

.check-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.check-circle.completed {
  background: var(--accent);
  color: white;
}

.check-circle.in-progress {
  background: var(--accent);
  color: white;
}

.check-circle.pending {
  border: 2px dashed var(--border-light);
}

/* Assistant Section */
.assistant-section {
  padding: 6rem 1.5rem;
  background: var(--bg-secondary);
}

.section-label {
  display: block;
  text-align: center;
  color: var(--accent-light);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.section-title-lg {
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
}

.assistant-visual {
  display: flex;
  gap: 1.5rem;
  margin-top: 3rem;
  justify-content: center;
  flex-wrap: wrap;
}

.assistant-left,
.assistant-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.assistant-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.assistant-placeholder {
  height: 60px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
}

.assistant-icon-doc::before {
  content: "📄";
}
.assistant-icon-mcp::before {
  content: "⚡";
}
.assistant-icon-updates::before {
  content: "🔔";
}
.assistant-icon-api::before {
  content: "🔗";
}
.assistant-icon-insights::before {
  content: "📊";
}

.assistant-center {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 300px;
}

.assistant-chat {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.75rem 1rem;
}

.assistant-input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-muted);
  font-size: 0.875rem;
  width: 100%;
}

.assistant-response {
  height: 120px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
}

/* enterprise section */
.enterprise-section {
  padding: 6rem 1.5rem;
  background: var(--bg-primary);
}

.enterprise-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
  gap: 2rem;
  flex-wrap: wrap;
}

.enterprise-title {
  font-size: 2.25rem;
  font-weight: 700;
  max-width: 500px;
}

.enterprise-desc {
  color: var(--text-secondary);
  margin-top: 0.75rem;
}

.enterprise-btn {
  background: var(--text-primary);
  color: var(--bg-primary);
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
}

.enterprise-btn:hover {
  opacity: 0.9;
}

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

.enterprise-feature h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.enterprise-feature p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.enterprise-icon {
  width: 24px;
  height: 24px;
  margin-bottom: 1rem;
}

.enterprise-icon.partnership::before {
  content: "🤝";
  font-size: 1.5rem;
}

.enterprise-icon.compliance::before {
  content: "🛡️";
  font-size: 1.5rem;
}

/* Customer Story Section */
.customer-story {
  margin: 2rem;
  background: linear-gradient(
    to bottom right,
    #2d5a4d 0%,
    #1a3e35 50%,
    #0f2620 100%
  );
  border-radius: 16px;
  overflow: hidden;
}

.story-container {
  display: flex;
  min-height: 400px;
}

.story-content {
  flex: 1;
  padding: 3rem;
  display: flex;
  flex-direction: column;
}

.story-label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
  margin-bottom: 1rem;
}

.story-title {
  font-size: 1.75rem;
  font-weight: 700;
  max-width: 400px;
  margin-bottom: 1.5rem;
}

.story-link {
  color: var(--text-primary);
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: auto;
  transition: gap 0.2s ease;
}

.story-link:hover {
  gap: 0.5rem;
}

.story-stats {
  display: flex;
  gap: 3rem;
  margin-top: 2rem;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 300;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  max-width: 200px;
}

.story-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.anthropic-graphic {
  max-width: 100%;
  height: auto;
}

/* CTA Section */
.cta-section {
  padding: 6rem 1.5rem;
  background: var(--bg-primary);
  text-align: center;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

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

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 4rem;
}

.cta-btn-primary {
  background: var(--text-primary);
  color: var(--bg-primary);
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-size: 0.9375rem;
  font-weight: 500;
}

.cta-btn-primary:hover {
  opacity: 0.9;
}

.cta-btn-secondary {
  background: transparent;
  color: var(--text-primary);
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-size: 0.9375rem;
  font-weight: 500;
  border: 1px solid var(--border-light);
}

.cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  border-top: 1px solid var(--border-color);
  padding-top: 3rem;
  max-width: 800px;
  margin: 0 auto;
}

.cta-feature {
  flex: 1;
  text-align: center;
  padding: 1.5rem;
}

.cta-feature-divider {
  width: 1px;
  background: var(--border-color);
}

.cta-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
}

.cta-icon.pricing::after {
  content: "💰";
  font-size: 1.25rem;
}

.cta-icon.building::after {
  content: "🚀";
  font-size: 1.25rem;
}

.cta-feature h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.cta-feature p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.cta-link {
  color: var(--accent-light);
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: gap 0.2s ease;
}

.cta-link:hover {
  gap: 0.5rem;
}

/* Footer */
.footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  padding: 4rem 1.5rem 2rem;
}

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

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
}

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

.social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

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

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

.footer-column h4 {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.footer-column a {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  padding: 0.375rem 0;
}

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


.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-secondary);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

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

.copyright {
  color: var(--text-muted);
  font-size: 0.8125rem;
}

.theme-toggle {
  display: flex;
  background: var(--bg-secondary);
  border-radius: 9999px;
  padding: 0.25rem;
}

.theme-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.75rem;
}

.theme-icon.system::before {
  content: "💻";
}
.theme-icon.light::before {
  content: "☀️";
}
.theme-icon.dark::before {
  content: "🌙";
}

.theme-icon.active {
  background: var(--bg-tertiary);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .docs-preview {
    max-width: 100%;
  }

  .docs-toc {
    display: none;
  }

  .feature-cards {
    grid-template-columns: 1fr;
  }

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

  .customer-cards {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .nav-links,
  .header-actions {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .hero-input-container {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
  }

  .hero-input {
    min-width: 100%;
    text-align: center;
  }

  .docs-preview {
    flex-direction: column;
  }

  .docs-sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--border-color);
  }

  .sidebar-nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .sidebar-item-sub {
    display: none;
  }

  .docs-cards {
    grid-template-columns: 1fr;
  }

  .story-container {
    flex-direction: column;
  }

  .story-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .enterprise-header {
    flex-direction: column;
  }

  .cta-features {
    flex-direction: column;
    gap: 0;
  }

  .cta-feature-divider {
    width: 100%;
    height: 1px;
  }

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

  .footer-top {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .section-title,
  .section-title-lg,
  .enterprise-title,
  .cta-title {
    font-size: 1.75rem;
  }

  .assistant-visual {
    flex-direction: column;
    align-items: center;
  }

  .assistant-left,
  .assistant-right {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

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

  .logos-container {
    gap: 1.5rem;
  }

  .logo-item img {
    height: 20px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .customer-story {
    margin: 1rem;
  }

  .story-content {
    padding: 1.5rem;
  }

  .story-title {
    font-size: 1.25rem;
  }

  .stat-number {
    font-size: 2rem;
  }
}
