:root {
      --bg-deep: #050810;
      --bg-primary: #0a0f1a;
      --bg-elevated: #111827;
      --bg-card: #151c2c;
      --bg-hover: #1a2235;

      --cyan-glow: #00f5d4;
      --cyan-primary: #06d6a0;
      --cyan-muted: #0891b2;
      --violet-accent: #8b5cf6;
      --violet-muted: #6366f1;
      --amber-accent: #f59e0b;

      --text-primary: #f8fafc;
      --text-secondary: #94a3b8;
      --text-muted: #64748b;

      --border-subtle: rgba(148, 163, 184, 0.1);
      --border-accent: rgba(6, 214, 160, 0.3);

      --font-display: 'Outfit', system-ui, sans-serif;
      --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

      --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
      --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
    }

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

    html {
      scroll-behavior: smooth;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    body {
      font-family: var(--font-display);
      background: var(--bg-deep);
      color: var(--text-primary);
      line-height: 1.6;
      overflow-x: hidden;
    }

    ::-webkit-scrollbar { width: 8px; }
    ::-webkit-scrollbar-track { background: var(--bg-primary); }
    ::-webkit-scrollbar-thumb { background: var(--bg-elevated); border-radius: 4px; }
    ::-webkit-scrollbar-thumb:hover { background: var(--bg-hover); }

    ::selection {
      background: var(--cyan-primary);
      color: var(--bg-deep);
    }

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

    /* Navigation */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      padding: 16px 0;
      background: rgba(5, 8, 16, 0.85);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border-subtle);
    }

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

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      color: var(--text-primary);
    }

    .logo-icon {
      width: 32px;
      height: 32px;
      position: relative;
    }

    .logo-icon::before {
      content: '';
      position: absolute;
      inset: 0;
      border: 2px solid var(--cyan-primary);
      border-radius: 50%;
      animation: orbit-pulse 3s ease-in-out infinite;
    }

    .logo-icon::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 8px;
      height: 8px;
      background: var(--cyan-glow);
      border-radius: 50%;
      transform: translate(-50%, -50%);
      box-shadow: 0 0 20px var(--cyan-glow);
    }

    @keyframes orbit-pulse {
      0%, 100% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.1); opacity: 0.8; }
    }

    .logo-text {
      font-family: var(--font-mono);
      font-size: 1.25rem;
      font-weight: 600;
      letter-spacing: -0.02em;
    }

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

    .nav-links a {
      font-family: var(--font-mono);
      font-size: 0.875rem;
      color: var(--text-secondary);
      text-decoration: none;
      transition: color 0.2s ease;
    }

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

    .nav-cta {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 10px 20px;
      font-family: var(--font-mono);
      font-size: 0.875rem;
      font-weight: 500;
      border-radius: 8px;
      text-decoration: none;
      transition: all 0.2s var(--ease-out-expo);
      cursor: pointer;
      border: none;
    }

    .btn-ghost {
      background: transparent;
      color: var(--text-secondary);
    }

    .btn-ghost:hover {
      color: var(--text-primary);
      background: var(--bg-elevated);
    }

    .btn-primary {
      background: var(--cyan-primary);
      color: var(--bg-deep);
    }

    .btn-primary:hover {
      background: var(--cyan-glow);
      box-shadow: 0 0 30px rgba(0, 245, 212, 0.3);
      transform: translateY(-1px);
    }

    .btn-outline {
      background: transparent;
      color: var(--text-primary);
      border: 1px solid var(--border-subtle);
    }

    .btn-outline:hover {
      border-color: var(--cyan-primary);
      background: rgba(6, 214, 160, 0.05);
    }

    .btn-disabled {
      background: var(--bg-hover);
      color: var(--text-muted);
      cursor: not-allowed;
      pointer-events: none;
    }

    .btn-large {
      padding: 14px 28px;
      font-size: 0.9375rem;
    }

    .btn-glow {
      padding: 16px 32px;
      font-size: 1rem;
      box-shadow: 0 0 40px rgba(6, 214, 160, 0.4);
      animation: glow-pulse 2s ease-in-out infinite;
    }

    @keyframes glow-pulse {
      0%, 100% { box-shadow: 0 0 40px rgba(6, 214, 160, 0.4); }
      50% { box-shadow: 0 0 60px rgba(6, 214, 160, 0.6); }
    }

    /* Hero Section */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      padding: 120px 0 80px;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      overflow: hidden;
    }

    .hero-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(148, 163, 184, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.03) 1px, transparent 1px);
      background-size: 60px 60px;
      mask-image: radial-gradient(ellipse 80% 50% at 50% 50%, black, transparent);
    }

    .hero-glow {
      position: absolute;
      top: -20%;
      left: 50%;
      transform: translateX(-50%);
      width: 800px;
      height: 800px;
      background: radial-gradient(circle, rgba(6, 214, 160, 0.08) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

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

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 14px;
      background: var(--bg-elevated);
      border: 1px solid var(--border-subtle);
      border-radius: 100px;
      font-family: var(--font-mono);
      font-size: 0.75rem;
      color: var(--text-secondary);
      margin-bottom: 24px;
      animation: fade-up 0.6s var(--ease-out-expo) backwards;
    }

    .hero-badge-dot {
      width: 6px;
      height: 6px;
      background: var(--cyan-primary);
      border-radius: 50%;
      animation: pulse 2s ease-in-out infinite;
    }

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

    .hero h1 {
      font-size: clamp(2.25rem, 5vw, 3.25rem);
      font-weight: 700;
      line-height: 1.1;
      letter-spacing: -0.03em;
      margin-bottom: 24px;
      animation: fade-up 0.6s var(--ease-out-expo) 0.1s backwards;
    }

    .hero h1 span {
      background: linear-gradient(135deg, var(--cyan-glow) 0%, var(--cyan-primary) 50%, var(--violet-accent) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-description {
      font-size: 1.125rem;
      color: var(--text-secondary);
      line-height: 1.7;
      margin-bottom: 32px;
      animation: fade-up 0.6s var(--ease-out-expo) 0.2s backwards;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      margin-bottom: 40px;
      animation: fade-up 0.6s var(--ease-out-expo) 0.3s backwards;
    }

    .hero-stats {
      display: flex;
      gap: 32px;
      animation: fade-up 0.6s var(--ease-out-expo) 0.4s backwards;
    }

    .hero-stat {
      text-align: left;
    }

    .hero-stat-value {
      font-family: var(--font-mono);
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--cyan-primary);
    }

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

    /* Dashboard Preview */
    .hero-dashboard {
      position: relative;
      animation: fade-up 0.8s var(--ease-out-expo) 0.3s backwards;
    }

    .dashboard-window {
      background: var(--bg-elevated);
      border: 1px solid var(--border-subtle);
      border-radius: 16px;
      overflow: hidden;
      box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.05),
        0 20px 50px -20px rgba(0, 0, 0, 0.5),
        0 0 100px -50px rgba(6, 214, 160, 0.3);
    }

    .dashboard-header {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 12px 16px;
      background: var(--bg-card);
      border-bottom: 1px solid var(--border-subtle);
    }

    .window-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
    }
    .window-dot:nth-child(1) { background: #ff5f57; }
    .window-dot:nth-child(2) { background: #ffbd2e; }
    .window-dot:nth-child(3) { background: #28c840; }

    .dashboard-url {
      flex: 1;
      text-align: center;
      font-family: var(--font-mono);
      font-size: 0.75rem;
      color: var(--text-muted);
    }

    .dashboard-body {
      padding: 20px;
    }

    .dashboard-nav {
      display: flex;
      gap: 4px;
      margin-bottom: 20px;
      padding-bottom: 16px;
      border-bottom: 1px solid var(--border-subtle);
    }

    .dashboard-nav-item {
      padding: 8px 16px;
      font-family: var(--font-mono);
      font-size: 0.75rem;
      color: var(--text-muted);
      background: transparent;
      border-radius: 6px;
      transition: all 0.2s ease;
    }

    .dashboard-nav-item.active {
      background: var(--bg-hover);
      color: var(--cyan-primary);
    }

    .dashboard-tasks {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .dashboard-task {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 16px;
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: 10px;
      transition: all 0.2s ease;
    }

    .dashboard-task:hover {
      border-color: var(--border-accent);
    }

    .task-status {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    .task-status.success { background: #22c55e; box-shadow: 0 0 8px rgba(34, 197, 94, 0.5); }
    .task-status.running { background: var(--cyan-primary); box-shadow: 0 0 8px rgba(6, 214, 160, 0.5); animation: pulse 1.5s ease-in-out infinite; }
    .task-status.pending { background: var(--text-muted); }

    .task-info {
      flex: 1;
      min-width: 0;
    }

    .task-name {
      font-family: var(--font-mono);
      font-size: 0.8125rem;
      font-weight: 500;
      margin-bottom: 2px;
    }

    .task-schedule {
      font-size: 0.6875rem;
      color: var(--text-muted);
    }

    .task-meta {
      text-align: right;
    }

    .task-last-run {
      font-family: var(--font-mono);
      font-size: 0.6875rem;
      color: var(--text-secondary);
    }

    .task-duration {
      font-size: 0.625rem;
      color: var(--text-muted);
    }

    @keyframes fade-up {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Social Proof */
    .social-proof {
      padding: 60px 0;
      border-top: 1px solid var(--border-subtle);
      border-bottom: 1px solid var(--border-subtle);
      background: var(--bg-primary);
    }

    .social-proof-label {
      text-align: center;
      font-family: var(--font-mono);
      font-size: 0.75rem;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 32px;
    }

    .social-proof-grid {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 48px;
    }

    .proof-item {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .proof-icon {
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--bg-elevated);
      border-radius: 10px;
      color: var(--cyan-primary);
    }

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

    .proof-text strong {
      color: var(--text-primary);
      font-weight: 600;
    }

    /* Use Cases Section */
    .use-cases {
      padding: 120px 0;
      background: var(--bg-primary);
      position: relative;
      overflow: hidden;
    }

    .use-cases::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--cyan-primary), transparent);
    }

    .use-cases-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 64px;
    }

    .use-cases h2 {
      font-size: clamp(1.75rem, 4vw, 2.5rem);
      font-weight: 700;
      line-height: 1.2;
      letter-spacing: -0.02em;
      margin-bottom: 20px;
    }

    .use-cases-header p {
      font-size: 1.125rem;
      color: var(--text-secondary);
    }

    .use-cases-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .use-case-card {
      padding: 28px;
      background: var(--bg-elevated);
      border: 1px solid var(--border-subtle);
      border-radius: 16px;
      transition: all 0.3s var(--ease-out-expo);
    }

    .use-case-card:hover {
      border-color: var(--border-accent);
      transform: translateY(-4px);
    }

    .use-case-card-ai {
      border-color: rgba(139, 92, 246, 0.3);
      background: linear-gradient(180deg, var(--bg-elevated) 0%, rgba(139, 92, 246, 0.05) 100%);
    }

    .use-case-card-ai:hover {
      border-color: var(--violet-accent);
    }

    .use-case-icon {
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, rgba(6, 214, 160, 0.15), rgba(139, 92, 246, 0.15));
      border-radius: 12px;
      margin-bottom: 20px;
      color: var(--cyan-primary);
    }

    .use-case-card-ai .use-case-icon {
      background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.1));
      color: var(--violet-accent);
    }

    .use-case-card h3 {
      font-size: 1.125rem;
      font-weight: 600;
      margin-bottom: 12px;
    }

    .use-case-card p {
      color: var(--text-secondary);
      font-size: 0.9375rem;
      line-height: 1.7;
      margin-bottom: 16px;
    }

    .use-case-schedule {
      display: flex;
      align-items: center;
      gap: 12px;
      padding-top: 16px;
      border-top: 1px solid var(--border-subtle);
    }

    .use-case-schedule .schedule-label {
      font-family: var(--font-mono);
      font-size: 0.6875rem;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.03em;
    }

    .use-case-schedule code {
      font-family: var(--font-mono);
      font-size: 0.8125rem;
      color: var(--cyan-primary);
    }

    .use-case-card-ai .use-case-schedule code {
      color: var(--violet-accent);
    }

    .btn-small {
      padding: 8px 14px;
      font-size: 0.75rem;
    }

    /* Section Label */
    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-mono);
      font-size: 0.75rem;
      color: var(--cyan-primary);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 16px;
    }

    .section-label::before {
      content: '';
      width: 24px;
      height: 1px;
      background: var(--cyan-primary);
    }

    .code-keyword { color: var(--violet-accent); }
    .code-function { color: var(--cyan-primary); }
    .code-string { color: #fbbf24; }
    .code-comment { color: var(--text-muted); font-style: italic; }
    .code-number { color: #f472b6; }

    /* Handlers Section */
    .handlers {
      padding: 120px 0;
      background: var(--bg-primary);
    }

    .handlers-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 64px;
    }

    .handlers h2 {
      font-size: clamp(1.75rem, 4vw, 2.5rem);
      font-weight: 700;
      line-height: 1.2;
      letter-spacing: -0.02em;
      margin-bottom: 20px;
    }

    .handlers-header p {
      font-size: 1.125rem;
      color: var(--text-secondary);
    }

    .handlers-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .handlers-grid-2 {
      grid-template-columns: repeat(2, 1fr);
      max-width: 800px;
      margin: 0 auto;
    }

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

    .handler-card {
      background: var(--bg-elevated);
      border: 1px solid var(--border-subtle);
      border-radius: 16px;
      overflow: hidden;
      transition: all 0.3s var(--ease-out-expo);
      display: flex;
      flex-direction: column;
    }

    .handler-card:hover {
      border-color: var(--border-accent);
      transform: translateY(-4px);
    }

    .handler-card-ai {
      border-color: rgba(139, 92, 246, 0.3);
      background: linear-gradient(180deg, var(--bg-elevated) 0%, rgba(139, 92, 246, 0.05) 100%);
    }

    .handler-card-ai:hover {
      border-color: var(--violet-accent);
    }

    .handler-card-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 20px;
      border-bottom: 1px solid var(--border-subtle);
    }

    .handler-complexity {
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .complexity-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--bg-hover);
      transition: background 0.2s ease;
    }

    .complexity-dot.active {
      background: var(--cyan-primary);
    }

    .handler-card-ai .complexity-dot.active {
      background: var(--violet-accent);
    }

    .complexity-label {
      font-family: var(--font-mono);
      font-size: 0.6875rem;
      color: var(--text-muted);
      margin-left: 8px;
      text-transform: uppercase;
      letter-spacing: 0.03em;
    }

    .handler-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 4px 10px;
      background: rgba(6, 214, 160, 0.1);
      border-radius: 6px;
      font-family: var(--font-mono);
      font-size: 0.6875rem;
      color: var(--cyan-primary);
      text-transform: uppercase;
      letter-spacing: 0.03em;
    }

    .handler-badge-ai {
      background: rgba(139, 92, 246, 0.15);
      color: var(--violet-accent);
    }

    .handler-header {
      padding: 20px;
    }

    .handler-header h3 {
      font-size: 1.125rem;
      font-weight: 600;
      margin-bottom: 6px;
    }

    .handler-header p {
      color: var(--text-secondary);
      font-size: 0.875rem;
    }

    .handler-schedule {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 20px;
      background: var(--bg-card);
      border-top: 1px solid var(--border-subtle);
      border-bottom: 1px solid var(--border-subtle);
    }

    .schedule-label {
      font-family: var(--font-mono);
      font-size: 0.6875rem;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.03em;
    }

    .schedule-value {
      font-family: var(--font-mono);
      font-size: 0.8125rem;
      color: var(--cyan-primary);
    }

    .handler-code {
      padding: 16px 20px;
      background: var(--bg-card);
      flex: 1;
    }

    .handler-code pre {
      font-family: var(--font-mono);
      font-size: 0.7rem;
      line-height: 1.7;
      overflow-x: auto;
    }

    /* AI Handler Card */
    .handler-ai-input {
      padding: 20px;
      background: var(--bg-card);
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .ai-prompt {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 14px;
      background: rgba(139, 92, 246, 0.1);
      border: 1px solid rgba(139, 92, 246, 0.2);
      border-radius: 10px;
    }

    .ai-prompt-icon {
      font-size: 1rem;
      flex-shrink: 0;
    }

    .ai-prompt-text {
      font-size: 0.8125rem;
      color: var(--text-secondary);
      line-height: 1.5;
      font-style: italic;
    }

    .ai-arrow {
      display: flex;
      justify-content: center;
      color: var(--violet-accent);
      animation: bounce 2s ease-in-out infinite;
    }

    @keyframes bounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(4px); }
    }

    .ai-result {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .ai-result-label {
      font-family: var(--font-mono);
      font-size: 0.6875rem;
      color: #22c55e;
      text-transform: uppercase;
      letter-spacing: 0.03em;
    }

    .ai-result-task {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px 14px;
      background: var(--bg-elevated);
      border: 1px solid var(--border-subtle);
      border-radius: 8px;
      font-family: var(--font-mono);
      font-size: 0.8125rem;
    }

    .ai-result-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #22c55e;
      box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
    }

    .ai-result-schedule {
      margin-left: auto;
      font-size: 0.6875rem;
      color: var(--text-muted);
    }

    /* AI Agents Section */
    .agents {
      padding: 120px 0;
      position: relative;
      overflow: hidden;
    }

    .agents::before {
      content: '';
      position: absolute;
      top: 50%;
      right: -200px;
      width: 600px;
      height: 600px;
      transform: translateY(-50%);
      background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
      pointer-events: none;
    }

    .agents-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .agents-content h2 {
      font-size: clamp(1.75rem, 4vw, 2.5rem);
      font-weight: 700;
      line-height: 1.2;
      letter-spacing: -0.02em;
      margin-bottom: 20px;
    }

    .agents-content > p {
      font-size: 1.125rem;
      color: var(--text-secondary);
      margin-bottom: 32px;
    }

    .agents-features {
      list-style: none;
    }

    .agents-features li {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 16px 0;
      border-bottom: 1px solid var(--border-subtle);
    }

    .agents-features li:last-child {
      border-bottom: none;
    }

    .agents-features svg {
      width: 24px;
      height: 24px;
      color: var(--violet-accent);
      flex-shrink: 0;
      margin-top: 2px;
    }

    .agents-features h4 {
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 4px;
    }

    .agents-features p {
      font-size: 0.875rem;
      color: var(--text-secondary);
    }

    .agents-visual {
      position: relative;
    }

    .mcp-card {
      background: var(--bg-elevated);
      border: 1px solid var(--border-subtle);
      border-radius: 16px;
      overflow: hidden;
    }

    .mcp-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 20px;
      background: var(--bg-card);
      border-bottom: 1px solid var(--border-subtle);
    }

    .mcp-title {
      font-family: var(--font-mono);
      font-size: 0.8125rem;
      color: var(--text-muted);
    }

    .mcp-badge {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 4px 10px;
      background: rgba(139, 92, 246, 0.15);
      border-radius: 100px;
      font-family: var(--font-mono);
      font-size: 0.6875rem;
      color: var(--violet-accent);
    }

    .mcp-body {
      padding: 24px;
    }

    .mcp-tools {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }

    .mcp-tool {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px;
      background: var(--bg-card);
      border-radius: 8px;
      font-family: var(--font-mono);
      font-size: 0.75rem;
      color: var(--text-secondary);
      transition: all 0.2s ease;
    }

    .mcp-tool:hover {
      background: var(--bg-hover);
      color: var(--cyan-primary);
    }

    .mcp-tool svg {
      width: 16px;
      height: 16px;
      color: var(--text-muted);
    }

    /* SDK Section */
    .sdk {
      padding: 120px 0;
      background: var(--bg-primary);
    }

    .sdk-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 64px;
    }

    .sdk h2 {
      font-size: clamp(1.75rem, 4vw, 2.5rem);
      font-weight: 700;
      line-height: 1.2;
      letter-spacing: -0.02em;
      margin-bottom: 20px;
    }

    .sdk-header p {
      font-size: 1.125rem;
      color: var(--text-secondary);
    }

    .sdk-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-bottom: 48px;
    }

    .sdk-card {
      background: var(--bg-elevated);
      border: 1px solid var(--border-subtle);
      border-radius: 16px;
      overflow: hidden;
      transition: all 0.3s var(--ease-out-expo);
    }

    .sdk-card:hover {
      border-color: var(--border-accent);
      transform: translateY(-4px);
    }

    .sdk-card-header {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 20px 24px;
      border-bottom: 1px solid var(--border-subtle);
    }

    .sdk-logo {
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--bg-card);
      border-radius: 10px;
      color: var(--text-secondary);
    }

    .sdk-logo.anthropic {
      color: #d97706;
    }

    .sdk-logo.langchain {
      color: #22c55e;
    }

    .sdk-name {
      font-family: var(--font-mono);
      font-size: 1rem;
      font-weight: 600;
    }

    .sdk-code {
      padding: 20px;
      background: var(--bg-card);
    }

    .sdk-code pre {
      font-family: var(--font-mono);
      font-size: 0.75rem;
      line-height: 1.8;
      overflow-x: auto;
    }

    .sdk-install {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 14px 24px;
      background: var(--bg-elevated);
      border: 1px solid var(--border-subtle);
      border-radius: 10px;
      font-family: var(--font-mono);
      font-size: 0.9375rem;
      margin: 0 auto;
      display: flex;
      justify-content: center;
      max-width: 360px;
    }

    .sdk-install-label {
      color: var(--text-muted);
    }

    .sdk-install code {
      color: var(--cyan-primary);
    }

    .sdk-install button {
      background: transparent;
      border: none;
      color: var(--text-muted);
      cursor: pointer;
      padding: 4px;
      transition: color 0.2s ease;
      display: flex;
      align-items: center;
    }

    .sdk-install button:hover {
      color: var(--text-primary);
    }

    /* Features Section */
    .features {
      padding: 120px 0;
    }

    .features-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 80px;
    }

    .features h2 {
      font-size: clamp(1.75rem, 4vw, 2.5rem);
      font-weight: 700;
      line-height: 1.2;
      letter-spacing: -0.02em;
      margin-bottom: 20px;
    }

    .features-header p {
      font-size: 1.125rem;
      color: var(--text-secondary);
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .feature-card {
      padding: 32px;
      background: var(--bg-elevated);
      border: 1px solid var(--border-subtle);
      border-radius: 16px;
      transition: all 0.3s var(--ease-out-expo);
    }

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

    .feature-icon {
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, rgba(6, 214, 160, 0.15), rgba(139, 92, 246, 0.15));
      border-radius: 12px;
      margin-bottom: 20px;
      color: var(--cyan-primary);
    }

    .feature-card h3 {
      font-size: 1.125rem;
      font-weight: 600;
      margin-bottom: 12px;
    }

    .feature-card p {
      color: var(--text-secondary);
      font-size: 0.9375rem;
      line-height: 1.7;
    }

    /* Pricing Section */
    .pricing {
      padding: 120px 0;
    }

    .pricing-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 64px;
    }

    .pricing h2 {
      font-size: clamp(1.75rem, 4vw, 2.5rem);
      font-weight: 700;
      line-height: 1.2;
      letter-spacing: -0.02em;
      margin-bottom: 20px;
    }

    .pricing-header p {
      font-size: 1.125rem;
      color: var(--text-secondary);
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      max-width: 1000px;
      margin: 0 auto;
    }

    .pricing-grid-2 {
      grid-template-columns: repeat(2, 1fr);
      max-width: 700px;
    }

    .pricing-card {
      padding: 32px;
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: 16px;
      transition: all 0.3s var(--ease-out-expo);
    }

    .pricing-card:hover {
      transform: translateY(-4px);
    }

    .pricing-card.featured {
      border-color: var(--cyan-primary);
      position: relative;
    }

    .pricing-card.featured::before {
      content: 'Most Popular';
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      padding: 4px 16px;
      background: var(--cyan-primary);
      color: var(--bg-deep);
      font-family: var(--font-mono);
      font-size: 0.6875rem;
      font-weight: 600;
      border-radius: 100px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .pricing-tier {
      font-family: var(--font-mono);
      font-size: 0.8125rem;
      color: var(--cyan-primary);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 8px;
    }

    .pricing-price {
      display: flex;
      align-items: baseline;
      gap: 4px;
      margin-bottom: 8px;
    }

    .pricing-amount {
      font-size: 2.5rem;
      font-weight: 700;
    }

    .pricing-period {
      font-size: 0.875rem;
      color: var(--text-muted);
    }

    .pricing-description {
      font-size: 0.875rem;
      color: var(--text-secondary);
      margin-bottom: 24px;
      padding-bottom: 24px;
      border-bottom: 1px solid var(--border-subtle);
    }

    .pricing-features {
      list-style: none;
      margin-bottom: 32px;
    }

    .pricing-features li {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 8px 0;
      font-size: 0.9375rem;
      color: var(--text-secondary);
    }

    .pricing-features svg {
      width: 18px;
      height: 18px;
      color: var(--cyan-primary);
      flex-shrink: 0;
    }

    .pricing-features .highlight {
      color: var(--text-primary);
      font-weight: 500;
    }

    .pricing-cta {
      width: 100%;
    }

    /* Enterprise Note */
    .enterprise-note {
      padding: 40px 0;
      text-align: center;
    }

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

    .enterprise-note a {
      color: var(--cyan-primary);
      text-decoration: none;
      font-weight: 500;
    }

    .enterprise-note a:hover {
      text-decoration: underline;
    }

    /* Legacy enterprise styles - kept for compatibility */
    .enterprise-features {
      display: flex;
      gap: 32px;
    }

    .enterprise-feature {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.875rem;
      color: var(--text-secondary);
    }

    .enterprise-feature svg {
      width: 20px;
      height: 20px;
      color: var(--cyan-primary);
    }

    /* CTA Section */
    .cta {
      padding: 160px 0;
      position: relative;
      overflow: hidden;
    }

    .cta-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 50% at 50% 100%, rgba(6, 214, 160, 0.1) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 20% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
    }

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

    .cta h2 {
      font-size: clamp(2rem, 5vw, 3rem);
      font-weight: 700;
      line-height: 1.2;
      letter-spacing: -0.03em;
      margin-bottom: 20px;
    }

    .cta h2 span {
      background: linear-gradient(135deg, var(--cyan-glow), var(--violet-accent));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .cta-inner > p {
      font-size: 1.25rem;
      color: var(--text-secondary);
      margin-bottom: 40px;
    }

    .cta-actions {
      display: flex;
      justify-content: center;
      gap: 16px;
    }

    .cta-actions .btn {
      padding: 16px 32px;
      font-size: 1rem;
    }

    /* Footer */
    footer {
      padding: 60px 0;
      border-top: 1px solid var(--border-subtle);
    }

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

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      color: var(--text-primary);
    }

    .footer-logo .logo-text {
      font-family: var(--font-mono);
      font-size: 1rem;
      font-weight: 600;
    }

    .footer-links {
      display: flex;
      gap: 32px;
      list-style: none;
    }

    .footer-links a {
      font-family: var(--font-mono);
      font-size: 0.8125rem;
      color: var(--text-muted);
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .footer-links a:hover {
      color: var(--cyan-primary);
    }

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

    /* Responsive */
    @media (max-width: 1024px) {
      .hero-inner,
      .agents-inner {
        grid-template-columns: 1fr;
        gap: 48px;
      }

      .hero-dashboard {
        order: 1;
        max-width: 500px;
        margin: 0 auto;
      }

      .hero-content {
        order: 0;
      }

      .features-grid,
      .steps-grid,
      .pricing-grid,
      .sdk-grid,
      .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .mcp-tools {
        grid-template-columns: 1fr;
      }

      .enterprise-inner {
        flex-direction: column;
        text-align: center;
      }

      .enterprise-features {
        flex-wrap: wrap;
        justify-content: center;
      }
    }

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

      .nav-cta {
        gap: 8px;
      }

      .nav-cta .btn {
        padding: 8px 12px;
        font-size: 0.75rem;
        white-space: nowrap;
      }

      .features-grid,
      .steps-grid,
      .pricing-grid,
      .pricing-grid-2,
      .sdk-grid,
      .use-cases-grid {
        grid-template-columns: 1fr;
      }

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

      .hero-actions .btn-glow {
        font-size: 0.875rem;
        padding: 14px 20px;
        white-space: normal;
        text-align: center;
      }

      .hero-stats {
        flex-direction: column;
        gap: 16px;
      }

      .footer-inner {
        flex-direction: column;
        gap: 24px;
        text-align: center;
      }

      .social-proof-grid {
        flex-direction: column;
        gap: 24px;
      }
    }

/* Subpages */
.page-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(6, 214, 160, 0.08), transparent 35%),
    radial-gradient(circle at top right, rgba(139, 92, 246, 0.08), transparent 30%),
    var(--bg-deep);
}

.page-main {
  padding: 140px 0 96px;
}

.page-hero {
  max-width: 840px;
  margin-bottom: 64px;
}

.page-hero h1 {
  font-size: clamp(2.75rem, 7vw, 4.75rem);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}

.page-hero p {
  color: var(--text-secondary);
  font-size: 1.125rem;
  line-height: 1.75;
  max-width: 760px;
}

.page-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.page-grid {
  display: grid;
  gap: 24px;
}

.page-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-card {
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.9), rgba(10, 15, 26, 0.95));
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.page-card h2,
.page-card h3 {
  font-size: 1.5rem;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.page-card p,
.page-card li {
  color: var(--text-secondary);
  line-height: 1.75;
}

.page-card ul {
  padding-left: 20px;
  margin-top: 14px;
}

.page-card code,
.page-code code {
  font-family: var(--font-mono);
}

.page-code {
  background: #011627;
  border: 1px solid rgba(6, 214, 160, 0.18);
  border-radius: 18px;
  padding: 22px;
  overflow-x: auto;
  color: #d6deeb;
  font-size: 0.875rem;
  line-height: 1.7;
}

.page-code pre {
  margin: 0;
  white-space: pre-wrap;
}


.page-code-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.page-code-title {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.page-code-dots {
  display: inline-flex;
  gap: 6px;
}

.page-code-dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.25);
}

.page-code-dots span:nth-child(1) { background: rgba(248, 113, 113, 0.9); }
.page-code-dots span:nth-child(2) { background: rgba(251, 191, 36, 0.9); }
.page-code-dots span:nth-child(3) { background: rgba(6, 214, 160, 0.9); }

.page-code .code-comment {
  color: #7f8ea3;
}

.page-code .code-keyword {
  color: #c792ea;
}

.page-code .code-function {
  color: #82aaff;
}

.page-code .code-string {
  color: #ecc48d;
}

.page-code .code-property {
  color: #7fdbca;
}

.page-code .code-value {
  color: #f78c6c;
}

.page-code .code-operator,
.page-code .code-punctuation {
  color: #89ddff;
}

.page-capabilities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.page-capability {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.page-capability-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(6, 214, 160, 0.15), rgba(139, 92, 246, 0.15));
  border-radius: 10px;
  color: var(--cyan-primary);
  flex-shrink: 0;
}

.page-capability h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.page-capability p {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 640px) {
  .page-capabilities {
    grid-template-columns: 1fr;
  }
}

.page-callout {
  border: 1px solid var(--border-accent);
  background: rgba(6, 214, 160, 0.06);
}

.page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cyan-primary);
  margin-bottom: 18px;
}

.page-eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
}

.page-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.page-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--cyan-primary);
  text-decoration: none;
  background: rgba(6, 214, 160, 0.08);
  border: 1px solid rgba(6, 214, 160, 0.2);
  border-radius: 8px;
  transition: all 0.2s ease;
}

.page-links a:hover {
  background: rgba(6, 214, 160, 0.15);
  border-color: rgba(6, 214, 160, 0.4);
  text-decoration: none;
}

@media (max-width: 960px) {
  .page-grid-2 {
    grid-template-columns: 1fr;
  }
}
