: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;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(ellipse 80% 60% at 70% 50%, oklch(70% 0.12 255 / 0.08), transparent);
      pointer-events: none;
    }

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

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

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 16px;
      background: oklch(75% 0.15 145 / 0.15);
      border: 1px solid oklch(75% 0.15 145 / 0.3);
      border-radius: 100px;
      font-size: 13px;
      font-weight: 600;
      color: var(--status-passed);
      margin-bottom: 24px;
      font-family: var(--font-mono);
    }

    .hero-badge::before {
      content: '◆';
      animation: pulse 2s infinite;
    }

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

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

    .hero-title em {
      font-style: normal;
      background: linear-gradient(135deg, var(--status-passed), var(--accent-primary));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

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

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

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

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

    .btn-primary:hover {
      background: oklch(80% 0.15 145);
      transform: translateY(-1px);
    }

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

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

    /* Console */
    .console-wrapper {
      position: relative;
    }

    .console {
      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: var(--bg-darker);
    }

    .console-dot.red { background: oklch(60% 0.18 25); }
    .console-dot.yellow { background: oklch(75% 0.15 85); }
    .console-dot.green { background: var(--status-passed); }

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

    .console-body {
      padding: 24px;
      font-family: var(--font-mono);
      font-size: 13px;
      line-height: 1.8;
      min-height: 420px;
      position: relative;
    }

    .console-line {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 8px;
      opacity: 0;
      animation: fadeInUp 0.4s forwards;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(8px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .console-line.active {
      opacity: 1;
    }

    .console-prompt {
      color: var(--status-passed);
      flex-shrink: 0;
    }

    .console-command {
      color: var(--fg-primary);
    }

    .console-output {
      color: var(--fg-muted);
      padding-left: 24px;
      margin-bottom: 16px;
    }

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

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

    .console-output .error {
      color: var(--status-error);
    }

    .console-output .info {
      color: var(--accent-primary);
    }

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

    .console-progress {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 8px 0;
    }

    .console-progress-bar {
      flex: 1;
      height: 4px;
      background: var(--bg-card);
      border-radius: 2px;
      overflow: hidden;
    }

    .console-progress-fill {
      height: 100%;
      background: linear-gradient(90deg, var(--status-passed), var(--accent-primary));
      border-radius: 2px;
      animation: progressFill 2s ease-out forwards;
    }

    @keyframes progressFill {
      from { width: 0; }
      to { width: 100%; }
    }

    .console-progress-text {
      font-size: 11px;
      color: var(--fg-muted);
      min-width: 40px;
      text-align: right;
    }

    /* Evidence Card Preview */
    .evidence-preview {
      position: absolute;
      bottom: -20px;
      right: -20px;
      width: 320px;
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 16px;
      box-shadow: var(--shadow-elevated);
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.5s ease 3s;
      z-index: 10;
    }

    .evidence-preview.show {
      opacity: 1;
      transform: translateY(0);
    }

    .evidence-preview-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 12px;
      padding-bottom: 12px;
      border-bottom: 1px solid var(--border-subtle);
    }

    .evidence-preview-title {
      font-size: 12px;
      font-weight: 600;
      color: var(--fg-secondary);
      font-family: var(--font-mono);
    }

    .evidence-preview-status {
      padding: 4px 10px;
      background: oklch(75% 0.15 145 / 0.2);
      border: 1px solid oklch(75% 0.15 145 / 0.4);
      border-radius: 4px;
      font-size: 10px;
      font-weight: 600;
      color: var(--status-passed);
      font-family: var(--font-mono);
    }

    .evidence-preview-row {
      display: flex;
      justify-content: space-between;
      font-size: 11px;
      padding: 6px 0;
      border-bottom: 1px solid oklch(25% 0.02 250);
    }

    .evidence-preview-row:last-child {
      border-bottom: none;
    }

    .evidence-preview-label {
      color: var(--fg-muted);
      font-family: var(--font-mono);
    }

    .evidence-preview-value {
      color: var(--fg-secondary);
      font-family: var(--font-mono);
      text-align: right;
    }

    /* Breadcrumb */
    .breadcrumb {
      padding: 20px 0;
      font-size: 13px;
      color: var(--fg-muted);
    }

    .breadcrumb a {
      color: var(--fg-secondary);
      text-decoration: none;
      transition: color 0.2s;
    }

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

    .breadcrumb span {
      margin: 0 8px;
      color: var(--border-focus);
    }

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

    .section-label {
      font-family: var(--font-mono);
      font-size: 12px;
      font-weight: 600;
      color: var(--status-passed);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 16px;
    }

    .section-title {
      font-family: var(--font-display);
      font-size: clamp(28px, 4vw, 42px);
      font-weight: 700;
      line-height: 1.2;
      letter-spacing: -0.02em;
      margin-bottom: 24px;
    }

    .section-description {
      font-size: 16px;
      color: var(--fg-secondary);
      line-height: 1.7;
      max-width: 720px;
    }

    /* Capabilities Grid */
    .capabilities-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 48px;
    }

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

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

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

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

    .capability-icon {
      width: 48px;
      height: 48px;
      background: oklch(75% 0.15 145 / 0.1);
      border: 1px solid oklch(75% 0.15 145 / 0.2);
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      margin-bottom: 20px;
      color: var(--status-passed);
    }

    .capability-title {
      font-family: var(--font-display);
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 12px;
      color: var(--fg-primary);
    }

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

    /* Value Props */
    .value-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
      margin-top: 48px;
    }

    .value-card {
      background: linear-gradient(135deg, var(--bg-card), oklch(20% 0.02 250));
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-lg);
      padding: 32px;
      position: relative;
      overflow: hidden;
    }

    .value-card::after {
      content: '';
      position: absolute;
      top: -50%;
      right: -50%;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle, oklch(70% 0.12 255 / 0.1), transparent 70%);
      pointer-events: none;
    }

    .value-number {
      font-family: var(--font-mono);
      font-size: 48px;
      font-weight: 700;
      color: var(--status-passed);
      opacity: 0.3;
      line-height: 1;
      margin-bottom: -20px;
    }

    .value-title {
      font-family: var(--font-display);
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 12px;
      color: var(--fg-primary);
      position: relative;
      z-index: 1;
    }

    .value-description {
      font-size: 15px;
      color: var(--fg-muted);
      line-height: 1.6;
      position: relative;
      z-index: 1;
    }

    /* Architecture Section */
    .architecture-section {
      background: linear-gradient(180deg, transparent, oklch(17% 0.02 250), transparent);
    }

    .architecture-diagram {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 48px;
      align-items: center;
      margin-top: 64px;
      padding: 48px;
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-lg);
      position: relative;
    }

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

    .arch-column-title {
      font-family: var(--font-mono);
      font-size: 12px;
      font-weight: 600;
      color: var(--fg-muted);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 24px;
    }

    .arch-box {
      background: var(--bg-darker);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 16px;
      margin-bottom: 12px;
      font-size: 13px;
      color: var(--fg-secondary);
      transition: all 0.3s;
    }

    .arch-box:hover {
      border-color: var(--border-focus);
      transform: scale(1.02);
    }

    .arch-box.highlight {
      background: oklch(70% 0.12 255 / 0.1);
      border-color: var(--accent-primary);
      color: var(--fg-primary);
      font-weight: 500;
    }

    .arch-arrow {
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      color: var(--fg-muted);
    }

    /* Asset Types */
    .asset-types {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 32px;
    }

    .asset-tag {
      padding: 8px 16px;
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: 100px;
      font-size: 13px;
      color: var(--fg-secondary);
      font-family: var(--font-mono);
      display: flex;
      align-items: center;
      gap: 8px;
      transition: all 0.2s;
    }

    .asset-tag:hover {
      border-color: var(--accent-primary);
      color: var(--fg-primary);
    }

    .asset-tag::before {
      content: '';
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--accent-primary);
    }

    /* CTA Section */
    .cta-section {
      background: linear-gradient(135deg, oklch(18% 0.02 250), oklch(22% 0.025 250));
      border-top: 1px solid var(--border-subtle);
      border-bottom: 1px solid var(--border-subtle);
    }

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

    .cta-form {
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-lg);
      padding: 32px;
    }

    .form-row {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      margin-bottom: 16px;
    }

    .form-group {
      margin-bottom: 16px;
    }

    .form-group.full {
      grid-column: span 2;
    }

    .form-label {
      display: block;
      font-size: 13px;
      font-weight: 500;
      color: var(--fg-secondary);
      margin-bottom: 8px;
    }

    .form-input, .form-select, .form-textarea {
      width: 100%;
      padding: 12px 16px;
      background: var(--bg-darker);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-sm);
      font-size: 14px;
      color: var(--fg-primary);
      font-family: var(--font-body);
      transition: all 0.2s;
    }

    .form-input:focus, .form-select:focus, .form-textarea:focus {
      outline: none;
      border-color: var(--accent-primary);
      box-shadow: 0 0 0 3px oklch(70% 0.12 255 / 0.1);
    }

    .form-textarea {
      min-height: 100px;
      resize: vertical;
    }

    .form-submit {
      width: 100%;
      padding: 14px 24px;
      background: var(--status-passed);
      color: var(--bg-darker);
      border: none;
      border-radius: var(--radius-sm);
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s;
    }

    .form-submit:hover {
      background: oklch(80% 0.15 145);
      transform: translateY(-1px);
    }

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

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

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

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

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

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

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

      .hero-content {
        order: 1;
      }

      .product-visual,
      .console-wrapper {
        order: 2;
      }

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

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

      .architecture-diagram {
        grid-template-columns: 1fr;
        gap: 24px;
      }

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

      .cta-inner {
        grid-template-columns: 1fr;
      }

      .nav-links {
        display: none;
      }
    }

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

      .form-row {
        grid-template-columns: 1fr;
      }

      .form-group.full {
        grid-column: span 1;
      }

      .evidence-preview {
        position: relative;
        bottom: 0;
        right: 0;
        width: 100%;
        margin-top: 16px;
      }

      .console-body {
        min-height: 360px;
        padding: 16px;
        font-size: 12px;
      }
    }

    /* Animations */
    .typing::after {
      content: '▋';
      animation: blink 1s infinite;
    }

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

    .spin {
      animation: spin 1s linear infinite;
    }

    @keyframes spin {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }
