:root {
      /* Joosure AI delivery console palette */
      --bg-dark: oklch(15% 0.02 250);
      --bg-darker: oklch(12% 0.015 250);
      --bg-card: oklch(18% 0.02 250);
      --bg-surface: oklch(22% 0.025 250);

      --fg-primary: oklch(95% 0.005 250);
      --fg-secondary: oklch(70% 0.01 250);
      --fg-muted: oklch(50% 0.015 250);

      /* Status colors */
      --status-passed: oklch(75% 0.15 145);
      --status-running: oklch(70% 0.12 250);
      --status-warning: oklch(75% 0.15 85);
      --status-error: oklch(60% 0.18 25);

      --border-subtle: oklch(30% 0.02 250);
      --border-focus: oklch(50% 0.05 250);

      --accent-primary: oklch(70% 0.18 255);
      --accent-secondary: oklch(70% 0.15 170);

      --shadow-subtle: 0 2px 8px oklch(0% 0 0 / 0.3);
      --shadow-elevated: 0 8px 24px oklch(0% 0 0 / 0.5);

      --radius-sm: 4px;
      --radius-md: 8px;
      --radius-lg: 12px;

      --font-display: 'Inter', -apple-system, system-ui, sans-serif;
      --font-mono: 'JetBrains Mono', ui-monospace, Menlo, monospace;
      --font-body: 'Inter', -apple-system, system-ui, sans-serif;

      --container-max: 1280px;
      --section-spacing: clamp(80px, 10vw, 140px);
    }

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

    html {
      scroll-behavior: smooth;
    }

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

    /* Navigation */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: oklch(15% 0.02 250 / 0.9);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border-subtle);
    }

    .nav-inner {
      max-width: var(--container-max);
      margin: 0 auto;
      padding: 16px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nav-logo {
      font-family: var(--font-mono);
      font-size: 18px;
      font-weight: 600;
      color: var(--fg-primary);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .nav-logo::before {
      content: '>';
      color: var(--status-passed);
    }

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

    .nav-links a {
      font-size: 14px;
      font-weight: 500;
      color: var(--fg-secondary);
      text-decoration: none;
      transition: color 0.2s;
    }

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

    .nav-cta {
      padding: 10px 20px;
      background: var(--accent-primary);
      color: var(--bg-darker);
      border-radius: var(--radius-sm);
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.2s;
    }

    .nav-cta:hover {
      background: oklch(75% 0.18 255);
    }

    /* Container */
    .container {
      max-width: var(--container-max);
      margin: 0 auto;
      padding: 0 24px;
    }

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

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 100%;
      max-width: var(--container-max);
      height: 100%;
      background: radial-gradient(ellipse at 30% 50%, oklch(70% 0.12 255 / 0.08), transparent 60%);
      pointer-events: none;
    }

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

    .hero-content {
      position: relative;
      z-index: 1;
    }

    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 14px;
      background: oklch(70% 0.15 145 / 0.15);
      border: 1px solid oklch(70% 0.15 145 / 0.3);
      border-radius: 100px;
      font-family: var(--font-mono);
      font-size: 12px;
      font-weight: 500;
      color: var(--status-passed);
      margin-bottom: 24px;
    }

    .hero-tag::before {
      content: '';
      width: 6px;
      height: 6px;
      background: var(--status-passed);
      border-radius: 50%;
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.4; }
    }

    .hero-title {
      font-size: clamp(36px, 5vw, 56px);
      font-weight: 700;
      line-height: 1.1;
      margin-bottom: 20px;
      letter-spacing: -0.02em;
    }

    .hero-subtitle {
      font-size: clamp(18px, 2.5vw, 24px);
      font-weight: 500;
      color: var(--fg-secondary);
      margin-bottom: 24px;
      line-height: 1.4;
    }

    .hero-description {
      font-size: 16px;
      line-height: 1.7;
      color: var(--fg-muted);
      margin-bottom: 32px;
      max-width: 520px;
    }

    .hero-ctas {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 28px;
      background: var(--accent-primary);
      color: var(--bg-darker);
      border-radius: var(--radius-sm);
      font-size: 15px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.2s;
    }

    .btn-primary:hover {
      background: oklch(75% 0.18 255);
      transform: translateY(-1px);
    }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 28px;
      background: transparent;
      color: var(--fg-primary);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-sm);
      font-size: 15px;
      font-weight: 500;
      text-decoration: none;
      transition: all 0.2s;
    }

    .btn-secondary:hover {
      border-color: var(--fg-secondary);
      background: oklch(25% 0.02 250);
    }

    /* Agent Console */
    .agent-console {
      position: relative;
      background: var(--bg-darker);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-elevated);
    }

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

    .console-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: oklch(60% 0.15 25);
    }

    .console-dot:nth-child(2) {
      background: oklch(70% 0.15 85);
    }

    .console-dot:nth-child(3) {
      background: oklch(70% 0.15 145);
    }

    .console-title {
      margin-left: 12px;
      font-family: var(--font-mono);
      font-size: 13px;
      color: var(--fg-muted);
    }

    .console-body {
      padding: 24px;
      font-family: var(--font-mono);
      font-size: 13px;
    }

    .console-line {
      display: flex;
      gap: 12px;
      margin-bottom: 12px;
      opacity: 0;
      animation: fadeIn 0.5s forwards;
    }

    @keyframes fadeIn {
      to { opacity: 1; }
    }

    .console-line:nth-child(1) { animation-delay: 0.2s; }
    .console-line:nth-child(2) { animation-delay: 0.6s; }
    .console-line:nth-child(3) { animation-delay: 1s; }
    .console-line:nth-child(4) { animation-delay: 1.4s; }
    .console-line:nth-child(5) { animation-delay: 1.8s; }
    .console-line:nth-child(6) { animation-delay: 2.2s; }
    .console-line:nth-child(7) { animation-delay: 2.6s; }

    .console-time {
      color: var(--fg-muted);
      flex-shrink: 0;
    }

    .console-label {
      color: var(--accent-secondary);
      flex-shrink: 0;
    }

    .console-value {
      color: var(--fg-secondary);
    }

    .console-value.success {
      color: var(--status-passed);
    }

    .console-value.warning {
      color: var(--status-warning);
    }

    .console-status {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 4px 10px;
      border-radius: var(--radius-sm);
      font-size: 11px;
      font-weight: 500;
    }

    .console-status.running {
      background: oklch(70% 0.12 250 / 0.2);
      color: var(--status-running);
    }

    .console-status.passed {
      background: oklch(70% 0.15 145 / 0.2);
      color: var(--status-passed);
    }

    .console-status::before {
      content: '';
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: currentColor;
    }

    .console-status.running::before {
      animation: pulse 1s infinite;
    }

    /* Capabilities Section */
    .capabilities {
      padding: var(--section-spacing) 0;
      position: relative;
    }

    .section-header {
      margin-bottom: 64px;
    }

    .section-label {
      display: inline-block;
      padding: 6px 14px;
      background: oklch(70% 0.12 255 / 0.15);
      border: 1px solid oklch(70% 0.12 255 / 0.3);
      border-radius: 100px;
      font-family: var(--font-mono);
      font-size: 12px;
      font-weight: 500;
      color: var(--status-running);
      margin-bottom: 20px;
    }

    .section-title {
      font-size: clamp(28px, 4vw, 42px);
      font-weight: 700;
      margin-bottom: 16px;
    }

    .section-description {
      font-size: 16px;
      color: var(--fg-muted);
      max-width: 600px;
    }

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

    .capability-card {
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 28px 24px;
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }

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

    .capability-card:hover {
      border-color: var(--border-focus);
      transform: translateY(-2px);
      box-shadow: var(--shadow-elevated);
    }

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

    .capability-icon {
      width: 44px;
      height: 44px;
      background: oklch(70% 0.12 255 / 0.15);
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
      font-family: var(--font-mono);
      font-size: 18px;
      color: var(--accent-primary);
    }

    .capability-title {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .capability-description {
      font-size: 14px;
      color: var(--fg-muted);
      line-height: 1.6;
    }

    /* Value Props Section */
    .value-props {
      padding: var(--section-spacing) 0;
      background: var(--bg-darker);
    }

    .value-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
    }

    .value-card {
      display: flex;
      gap: 20px;
      padding: 32px;
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      transition: all 0.3s;
    }

    .value-card:hover {
      border-color: var(--accent-primary);
      box-shadow: var(--shadow-subtle);
    }

    .value-number {
      font-family: var(--font-mono);
      font-size: 48px;
      font-weight: 700;
      color: oklch(70% 0.12 255 / 0.2);
      flex-shrink: 0;
      line-height: 1;
    }

    .value-content h3 {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .value-content p {
      font-size: 15px;
      color: var(--fg-muted);
      line-height: 1.7;
    }

    /* Architecture Diagram */
    .architecture {
      padding: var(--section-spacing) 0;
    }

    .arch-diagram {
      background: var(--bg-darker);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-lg);
      padding: 48px;
      margin-top: 48px;
    }

    .arch-title {
      font-family: var(--font-mono);
      font-size: 14px;
      color: var(--fg-muted);
      margin-bottom: 32px;
      text-align: center;
    }

    .arch-flow {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .arch-node {
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 20px 24px;
      text-align: center;
      min-width: 140px;
      transition: all 0.3s;
    }

    .arch-node:hover {
      border-color: var(--accent-primary);
      box-shadow: 0 0 20px oklch(70% 0.12 255 / 0.2);
    }

    .arch-node.central {
      background: oklch(70% 0.12 255 / 0.1);
      border-color: var(--accent-primary);
    }

    .arch-node-icon {
      font-size: 24px;
      margin-bottom: 8px;
    }

    .arch-node-label {
      font-size: 14px;
      font-weight: 600;
    }

    .arch-arrow {
      font-family: var(--font-mono);
      font-size: 20px;
      color: var(--fg-muted);
    }

    /* CTA Section */
    .cta-section {
      padding: var(--section-spacing) 0;
      text-align: center;
    }

    .cta-card {
      background: linear-gradient(135deg, oklch(70% 0.12 255 / 0.15), oklch(70% 0.15 170 / 0.1));
      border: 1px solid oklch(70% 0.12 255 / 0.3);
      border-radius: var(--radius-lg);
      padding: 64px;
    }

    .cta-title {
      font-size: clamp(28px, 4vw, 40px);
      font-weight: 700;
      margin-bottom: 16px;
    }

    .cta-subtitle {
      font-size: 18px;
      color: var(--fg-muted);
      margin-bottom: 32px;
    }

    .cta-form {
      display: flex;
      gap: 12px;
      max-width: 480px;
      margin: 0 auto;
      flex-wrap: wrap;
    }

    .cta-input {
      flex: 1;
      min-width: 200px;
      padding: 14px 20px;
      background: var(--bg-dark);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-sm);
      color: var(--fg-primary);
      font-size: 15px;
      outline: none;
      transition: border-color 0.2s;
    }

    .cta-input:focus {
      border-color: var(--accent-primary);
    }

    .cta-input::placeholder {
      color: var(--fg-muted);
    }

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

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

    .footer-logo {
      font-family: var(--font-mono);
      font-size: 14px;
      color: var(--fg-muted);
    }

    .footer-links {
      display: flex;
      gap: 24px;
    }

    .footer-links a {
      font-size: 14px;
      color: var(--fg-muted);
      text-decoration: none;
      transition: color 0.2s;
    }

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

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

      .agent-console {
        order: -1;
      }

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

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

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

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

      .cta-card {
        padding: 40px 24px;
      }

      .arch-flow {
        flex-direction: column;
      }

      .arch-arrow {
        transform: rotate(90deg);
      }
    }
