* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  :root {
    color-scheme: dark;
    --bg: #000000;
    --surface: #0a0a0a;
    --surface-strong: #0d0d0d;
    --border: #1a1a1a;
    --text: #f6f6f6;
    --muted: #b3b3b3;
    --accent: #e6e6e6;
    --accent-strong: #ffffff;
    --radius: 16px;
  }
  
  body {
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  main {
    display: flex;
    flex-direction: column;
    gap: 72px;
    padding: 32px 10vw 120px;
  }
  
  .nav {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 10vw;
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid var(--border);
  }
  
  .nav__brand {
    display: flex;
    align-items: center;
  }

  .nav__logo {
    height: 42px;
    width: auto;
    display: block;
  }
  
  .nav__links {
    display: flex;
    gap: 24px;
    font-size: 0.95rem;
    color: var(--muted);
    align-items: center;
  }

  .nav__sep {
    color: var(--border);
    font-weight: 300;
    user-select: none;
  }
  
  .nav__links a:hover {
    color: #43b49d;
  }
  
  .hero {
    display: grid;
    grid-template-columns: minmax(320px, 1.15fr) minmax(240px, 0.85fr);
    gap: 64px;
    align-items: center;
    min-height: calc(100vh - 72px);
    padding-top: 12px;
    text-align: left;
    position: relative;
  }

  .hero__scroll {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    color: #43b49d;
    opacity: 0.7;
    transition: opacity 0.2s ease;
  }

  .hero__scroll:hover {
    opacity: 1;
  }
  
  .hero__content h1 {
    font-size: clamp(2.4rem, 4vw + 1rem, 3.8rem);
    line-height: 1.05;
    margin-bottom: 20px;
    text-decoration: underline;
    text-decoration-color: #43b49d;
    text-underline-offset: 8px;
    text-decoration-thickness: 4px;
  }
  
  .hero__lead {
    color: var(--muted);
    font-size: 1.05rem;
    margin-bottom: 24px;
    max-width: 520px;
  }
  
  .eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.7rem;
    color: #43b49d;
    margin-bottom: 14px;
  }
  
  .hero__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    font-size: 0.95rem;
    margin-top: 6px;
  }
  
  .hero__link:hover {
    color: var(--accent-strong);
  }

  .hero__buttons {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-top: 24px;
    flex-wrap: wrap;
  }

  .hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
  }

  .hero__btn.primary {
    background: rgba(67, 180, 157, 0.12);
    color: var(--text);
    border: 1px solid rgba(67, 180, 157, 0.35);
  }

  .hero__btn.primary:hover {
    background: rgba(67, 180, 157, 0.22);
    border-color: rgba(67, 180, 157, 0.5);
    transform: translateY(-2px);
  }

  .hero__btn.secondary {
    background: transparent;
    color: var(--muted);
    border: 1px solid var(--border);
  }

  .hero__btn.secondary:hover {
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.2);
  }
  
  .robot-arm-3d {
    width: 100%;
    max-width: 500px;
    height: auto;
    transform-style: preserve-3d;
    transition: transform 0.15s ease;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
  }
  
  .hero__visual {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    perspective: 1200px;
  }
  
  .section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    align-items: center;
    border-top: 1px solid var(--border);
    padding-top: 48px;
  }
  
  .section h2 {
    font-size: clamp(1.7rem, 2.2vw + 1rem, 2.4rem);
    margin-bottom: 16px;
  }
  
  .section p {
    color: var(--muted);
    font-size: 1rem;
  }
  
  .section__intro {
    max-width: 620px;
  }
  
  .lead-text {
    color: var(--muted);
    font-size: 1.05rem;
    margin-bottom: 16px;
  }
  
  .about-section-centered {
    display: block;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .about-section-centered h2 {
    font-size: clamp(2rem, 3vw + 1rem, 3.2rem);
    margin-bottom: 24px;
    line-height: 1.15;
    background: linear-gradient(135deg, #4a9eff 0%, #a855f7 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .about-section-centered .lead-text {
    color: var(--muted);
    font-size: 1.05rem;
    margin-bottom: 16px;
    line-height: 1.7;
  }

  /* Platform Section */
  .platform-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
    border-top: 1px solid var(--border);
    padding-top: 48px;
    max-width: 100%;
  }

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

  .platform-section--flush {
    border-top: none;
    padding-top: 0;
    scroll-margin-top: 120px;
  }

  .platform-header h2 {
    font-size: clamp(2rem, 3vw + 1rem, 3.2rem);
    margin-bottom: 20px;
    line-height: 1.15;
  }

  .platform-subtitle {
    color: var(--muted);
    font-size: 1.05rem;
    margin-bottom: 32px;
    line-height: 1.7;
  }

  .platform-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }

  .cta-button {
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .cta-button.primary {
    background: rgba(67, 180, 157, 0.12);
    color: var(--text);
    border: 1px solid rgba(67, 180, 157, 0.35);
  }

  .cta-button.primary:hover {
    background: rgba(67, 180, 157, 0.22);
    border-color: rgba(67, 180, 157, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(67, 180, 157, 0.1);
  }

  .cta-button--lg {
    padding: 18px 48px;
    font-size: 1.1rem;
  }

  .cta-button.secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
  }

  .cta-button.secondary:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
  }

  .platform-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 100%;
  }

  .platform-card {
    padding: 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.3s ease;
  }

  .platform-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  }

  .platform-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }

  .platform-icon.multimodal {
    background: rgba(74, 158, 255, 0.1);
    color: #4a9eff;
  }

  .platform-icon.realtime {
    background: rgba(168, 85, 247, 0.1);
    color: #a855f7;
  }

  .platform-icon.enterprise {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
  }

  .platform-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text);
  }

  .platform-card p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
  }

  /* Pipeline Section — Vertical Timeline */
  .pipeline-section {
    border-top: 1px solid var(--border);
    padding-top: 28px;
  }

  .pipeline-title {
    font-size: clamp(2rem, 3vw + 1rem, 3.2rem);
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
    text-align: center;
    letter-spacing: -0.02em;
    line-height: 1.15;
    text-transform: none;
    text-decoration: underline;
    text-decoration-color: #43b49d;
    text-underline-offset: 8px;
    text-decoration-thickness: 4px;
  }

  .pipeline-subtitle {
    text-align: center;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 0;
  }

  .pipeline-track {
    position: relative;
    padding-left: 56px;
  }

  .pipeline-line {
    position: absolute;
    left: 18px;
    top: 0;
    width: 1px;
    background: linear-gradient(to bottom, rgba(67, 180, 157, 0.3), var(--border));
    height: calc(100% - 120px);
  }

  .pipeline-node {
    position: relative;
    padding-bottom: 36px;
  }

  .pipeline-node:last-child {
    padding-bottom: 0;
  }

  .pipeline-dot {
    position: absolute;
    left: -56px;
    top: 2px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: border-color 0.2s ease;
  }

  .pipeline-dot span {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
  }

  .pipeline-dot--final {
    border-color: rgba(67, 180, 157, 0.5);
    box-shadow: 0 0 0 4px rgba(67, 180, 157, 0.08);
  }

  .pipeline-dot--final span {
    color: #43b49d;
  }

  .pipeline-node-content h4 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
  }

  .pipeline-desc {
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.65;
    max-width: 580px;
    margin-bottom: 16px;
  }

  /* Wings positioned outside the pipeline column */
  .pipeline-node--capture,
  .pipeline-node--winged {
    position: relative;
  }

  .capture-wing {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    top: 0;
  }

  .capture-wing--left {
    right: calc(100% + 80px);
    top: 10px;
    align-items: flex-end;
  }

  .capture-wing--right {
    left: calc(100% + 80px);
    top: -5px;
    align-items: flex-start;
  }

  .capture-wing .capture-arrow {
    margin-bottom: 12px;
    opacity: 0.6;
  }

  .capture-wing--left .pipeline-dl-btn,
  .capture-wing--left .pipeline-dl-btn--accent {
    margin-bottom: 0;
    transform: rotate(-3deg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .capture-wing--left .pipeline-dl-btn:hover,
  .capture-wing--left .pipeline-dl-btn--accent:hover {
    transform: rotate(-1deg) scale(1.03);
  }

  .capture-wing--right .pipeline-doc-btn {
    transform: rotate(3deg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .capture-wing--right .pipeline-doc-btn:hover {
    transform: rotate(1deg) scale(1.03);
  }

  .capture-photo-frame {
    width: 210px;
    height: 155px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid rgba(67, 180, 157, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
    transform: rotate(4deg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .capture-photo-frame:hover {
    transform: rotate(2deg) scale(1.03);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(67, 180, 157, 0.2);
  }

  .capture-photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  @media (max-width: 1200px) {
    .capture-wing {
      display: none;
    }
  }

  .pipeline-node-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
    flex-wrap: wrap;
  }

  .p-tag {
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.03em;
  }

  .p-tag--green  { background: rgba(34, 197, 94, 0.1);  color: #22c55e; }
  .p-tag--purple { background: rgba(168, 85, 247, 0.1); color: #a855f7; }
  .p-tag--orange { background: rgba(249, 115, 22, 0.1); color: #f97316; }

  /* Download buttons — prominent */
  .pipeline-dl-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.025);
    text-decoration: none;
    transition: all 0.2s ease;
    margin-bottom: 4px;
  }

  .pipeline-dl-btn:hover {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  }

  .pipeline-dl-btn svg {
    color: var(--muted);
    flex-shrink: 0;
  }

  .pipeline-dl-name {
    font-family: "SF Mono", "Fira Code", "Consolas", monospace;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
  }

  .pipeline-dl-meta {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
  }

  .pipeline-dl-btn--accent {
    border-color: rgba(67, 180, 157, 0.3);
    background: rgba(67, 180, 157, 0.05);
  }

  .pipeline-dl-btn--accent .pipeline-dl-name {
    color: #fff;
  }

  .pipeline-dl-btn--accent svg {
    color: #43b49d;
  }

  /* Inline highlight stat per step */
  .pipeline-highlight {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 4px;
  }

  .pipeline-highlight-num {
    font-size: 1.6rem;
    font-weight: 700;
    color: #43b49d;
    letter-spacing: -0.03em;
    line-height: 1;
  }

  .pipeline-highlight-text {
    font-size: 0.82rem;
    color: var(--muted);
  }

  /* Final node stats row */
  .pipeline-final-stats {
    display: flex;
    gap: 36px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
  }

  .pipeline-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .pipeline-stat-num {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.03em;
    line-height: 1;
  }

  .pipeline-stat-label {
    font-size: 0.75rem;
    color: var(--muted);
    line-height: 1.4;
  }

  /* Final node extra spacing */
  .pipeline-node--final {
    padding-top: 8px;
  }

  .pipeline-node--final .pipeline-desc {
    margin-bottom: 16px;
  }

  .pipeline-doc-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid rgba(67, 180, 157, 0.3);
    border-radius: 8px;
    background: rgba(67, 180, 157, 0.06);
    color: var(--text);
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
  }

  .pipeline-doc-btn:hover {
    border-color: rgba(67, 180, 157, 0.5);
    background: rgba(67, 180, 157, 0.12);
    transform: translateY(-1px);
  }

  .pipeline-node-content .pipeline-doc-btn {
    margin-top: 16px;
  }

  .pipeline-api-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
    margin-bottom: 4px;
  }

  .pipeline-api-feature {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: var(--muted);
  }

  .pipeline-api-icon {
    font-family: "SF Mono", "Fira Code", "Consolas", monospace;
    font-size: 0.65rem;
    font-weight: 600;
    color: #43b49d;
    background: rgba(67, 180, 157, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 0.03em;
  }

  .pipeline-doc-btn svg {
    color: #43b49d;
    flex-shrink: 0;
  }

  /* Pipeline CTA block */
  .pipeline-cta {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 56px;
    padding: 28px 32px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.02);
  }

  .pipeline-cta-text {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.5;
    flex: 1;
  }

  .pipeline-cta .cta-button--lg {
    flex-shrink: 0;
  }

  /* Coverage Section */
  .coverage-section {
    max-width: 100%;
  }

  .coverage-section h2 {
    font-size: clamp(1.8rem, 2.5vw + 1rem, 2.6rem);
    margin-bottom: 12px;
    text-align: center;
  }

  .coverage-subtitle {
    color: var(--muted);
    font-size: 1.05rem;
    margin-bottom: 48px;
    text-align: center;
  }

  .coverage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    text-align: left;
    max-width: 100%;
  }

  .coverage-card {
    padding: 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.3s ease;
  }

  .coverage-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  }

  .coverage-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--text);
  }

  .coverage-card h4 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: var(--text);
  }

  .coverage-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .coverage-card li {
    color: var(--muted);
    font-size: 0.95rem;
    padding-left: 20px;
    position: relative;
  }

  .coverage-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--muted);
  }
  
  .team-section {
    padding-top: 48px;
    border-top: 1px solid var(--border);
  }

  .team-label {
    font-size: clamp(2rem, 3vw + 1rem, 3.2rem);
    font-weight: 600;
    color: var(--text);
    text-align: center;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    text-decoration: underline;
    text-decoration-color: #43b49d;
    text-underline-offset: 8px;
    text-decoration-thickness: 4px;
  }
  
  .team-heading {
    font-size: clamp(1.7rem, 2.2vw + 1rem, 2.4rem);
    margin-bottom: 0;
    text-align: center;
    font-weight: 600;
    color: var(--text);
    font-style: italic;
  }
  
  .founders-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 40px;
  }
  
  .founder-card {
    padding: 32px 28px 36px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--surface);
    text-align: center;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .founder-card:hover {
    border-color: rgba(67, 180, 157, 0.3);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  }

  .founder-photo {
    width: 100%;
    height: 300px;
    margin: 0 auto 20px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.08);
  }

  .founder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .founder-card h3 {
    font-size: 1.2rem;
    margin-bottom: 6px;
  }
  
  .founder-role {
    color: #43b49d;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 16px;
  }
  
  .founder-details {
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.6;
  }
  
  /* API Selector */
  .api-selector {
    margin-top: 48px;
  }
  
  .selector-labels {
    margin-bottom: 16px;
  }
  
  .selector-labels span {
    font-size: 0.9rem;
    color: var(--muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  
  .domain-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
  }
  
  .tag-btn {
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 24px;
    color: var(--muted);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
  }
  
  .tag-btn:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text);
  }
  
  .tag-btn.active {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--text);
  }
  
  .api-grid-dynamic {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
  }
  
  .api-card-dynamic {
    padding: 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.3s ease;
    position: relative;
  }
  
  .api-card-dynamic:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  }
  
  .card-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
  }
  
  .api-card-dynamic h4 {
    font-size: 1.3rem;
    margin: 0 0 12px 0;
    color: var(--text);
    font-weight: 500;
  }
  
  .api-card-dynamic > p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 20px 0;
  }
  
  .card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
  }
  
  .card-tags span {
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
  }
  
  .card-tags span.highlight {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--text);
  }
  
  /* Flow List */
  .flow-list {
    margin-top: 24px;
    padding-left: 24px;
    color: var(--muted);
    line-height: 1.8;
  }
  
  .flow-list li {
    margin-bottom: 16px;
  }
  
  .flow-list strong {
    color: var(--text);
    font-weight: 500;
  }
  
  .robot-arm-3d {
    width: 100%;
    max-width: 500px;
    height: auto;
    transform-style: preserve-3d;
    transition: transform 0.15s ease;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
  }
  
  .hero__visual {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    perspective: 1200px;
  }
  
  .lead-label {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.65rem;
    color: var(--muted);
    margin-bottom: 8px;
  }
  
  .plain-list {
    list-style: none;
    display: grid;
    gap: 10px;
    color: var(--muted);
    font-size: 0.98rem;
  }
  
  .plain-list li::before {
    content: "— ";
    color: var(--muted);
  }
  
  .flow-list {
    list-style: none;
    display: grid;
    gap: 14px;
    color: var(--muted);
    font-size: 0.98rem;
  }
  
  .flow-list strong {
    color: var(--text);
    font-weight: 600;
  }
  
  .api-columns {
    display: grid;
    gap: 16px;
    margin-top: 18px;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
  
  .api-column {
    padding: 12px 0;
    border-top: 1px solid var(--border);
  }
  
  .api-column h4 {
    margin-bottom: 10px;
  }
  
  .api-column ul {
    list-style: none;
    display: grid;
    gap: 8px;
    color: var(--muted);
  }
  
  .api-footnote {
    margin-top: 18px;
    color: var(--muted);
  }
  
  .section__aside {
    color: var(--muted);
    font-size: 0.98rem;
  }
  
  .muted {
    color: var(--muted);
  }
  
  .footer {
    padding: 48px 10vw;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    background: var(--bg);
  }
  
  .footer__links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--muted);
    font-size: 0.9rem;
  }

  .footer__links a {
    color: #43b49d;
    transition: opacity 0.15s ease;
  }

  .footer__links a:hover {
    opacity: 0.8;
  }
  
  @media (max-width: 920px) {
    .nav__links {
      display: none;
    }
  }
  
  @media (max-width: 640px) {
    main {
      padding: 24px 6vw 80px;
      gap: 80px;
    }
  
    .nav {
      padding: 18px 6vw;
    }
  
    .hero {
      grid-template-columns: 1fr;
      gap: 32px;
    }

    .platform-cards,
    .coverage-grid {
      grid-template-columns: 1fr;
    }

    .founders-grid {
      grid-template-columns: 1fr;
      max-width: 400px;
      margin-left: auto;
      margin-right: auto;
    }
  }

  /* Coming Soon Page */
  .coming-soon-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 160px);
    padding: 80px 10vw;
  }

  .coming-soon-content {
    text-align: center;
  }

  .coming-soon-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.7rem;
    color: #43b49d;
    margin-bottom: 14px;
  }

  .coming-soon-heading {
    font-size: clamp(2.4rem, 4vw + 1rem, 4rem);
    font-weight: 600;
    color: var(--text);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
  }

  .coming-soon-sub {
    color: var(--muted);
    font-size: 1.05rem;
    margin-bottom: 32px;
  }