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

    :root {
      --bg-primary: #000;
      --bg-secondary: #0a0a0a;
      --bg-card: #111;
      --bg-card-hover: #1a1a1a;
      --border-color: #222;
      --border-hover: #444;
      --text-primary: #f0f0f0;
      --text-secondary: #999;
      --text-muted: #666;
      --accent: #00c2de;
      --accent-dim: rgba(0, 194, 222, 0.1);
      --accent-glow: rgba(0, 194, 222, 0.15);
      --radius-sm: 8px;
      --radius-md: 12px;
      --radius-lg: 16px;
      --color-strix-halo: #06b6d4;
      --color-strix-point: #10b981;
      --color-r8000: #f59e0b;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      background: var(--bg-primary);
      color: var(--text-primary);
      min-height: 100vh;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
      position: relative;
    }

    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
      background-size: 24px 24px;
      pointer-events: none;
      z-index: 0;
    }

    body::after {
      content: '';
      position: fixed;
      inset: 0;
      background: radial-gradient(ellipse 60% 50% at 10% 10%, rgba(0, 194, 222, 0.07) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 90% 85%, rgba(0, 194, 222, 0.04) 0%, transparent 70%);
      pointer-events: none;
      z-index: 0;
    }

    .navbar,
    .main,
    footer {
      position: relative;
      z-index: 1;
    }

    /* ── Navbar ── */
    .navbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 48px;
      height: 64px;
      border-bottom: 1px solid var(--border-color);
      background: rgba(0, 0, 0, 0.8);
      backdrop-filter: blur(12px);
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .navbar-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 20px;
      font-weight: 700;
      color: var(--text-primary);
      text-decoration: none;
    }

    .navbar-actions {
      display: flex;
      align-items: center;
      gap: 24px;
    }

    .nav-link {
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--text-secondary);
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      transition: color .2s;
    }

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

    .nav-link svg {
      width: 18px;
      height: 18px;
    }

    .avatar-btn {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 1.5px solid var(--border-color);
      background: var(--bg-card);
      color: var(--text-secondary);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: border-color .2s, color .2s;
    }

    .avatar-btn:hover {
      border-color: var(--border-hover);
      color: var(--text-primary);
    }

    .avatar-btn svg {
      width: 20px;
      height: 20px;
    }

    /* ── Main ── */
    .main {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 64px 80px;
    }

    /* ── Hero Banner ── */
    .hero-banner {
      position: relative;
      width: 100vw;
      margin-left: calc(-50vw + 50%);
      overflow: hidden;
      display: flex;
      align-items: flex-end;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      padding: 60px 64px;
      max-width: 1440px;
      margin: 0 auto;
      width: 100%;
    }

    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 14px;
      border-radius: 999px;
      background: rgba(0, 194, 222, 0.12);
      border: 1px solid rgba(0, 194, 222, 0.2);
      color: var(--accent);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .5px;
      margin-bottom: 16px;
    }

    .hero-tag::before {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 10px var(--accent);
    }

    .hero-title {
      font-family: 'Montserrat', sans-serif;
      font-size: 48px;
      font-weight: 700;
      letter-spacing: -1.5px;
      line-height: 1.1;
      margin-bottom: 14px;
    }

    .hero-title-static {
      background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.85) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-title-dynamic {
      position: relative;
      display: inline-block;
      min-width: 280px;
    }

    .hero-title-word {
      display: inline-block;
      background: linear-gradient(135deg, var(--accent) 0%, #6ee7b7 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: wordFadeIn 0.6s ease forwards;
    }

    @keyframes wordFadeIn {
      0% {
        opacity: 0;
        transform: translateY(12px);
        filter: blur(4px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
      }
    }

    .hero-title-word.fade-out {
      animation: wordFadeOut 0.4s ease forwards;
    }

    @keyframes wordFadeOut {
      0% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
      }
      100% {
        opacity: 0;
        transform: translateY(-12px);
        filter: blur(4px);
      }
    }

    .hero-subtitle {
      font-size: 17px;
      color: rgba(255, 255, 255, 0.7);
      max-width: 520px;
      line-height: 1.65;
    }

    /* ── Section Helpers ── */
    .section {
      margin-top: 72px;
    }

    .section-label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 10px;
    }

    .section-title {
      font-family: 'Montserrat', sans-serif;
      font-size: 28px;
      font-weight: 700;
      letter-spacing: -.5px;
      margin-bottom: 12px;
      color: var(--text-primary);
    }

    .section-desc {
      font-size: 15px;
      color: var(--text-secondary);
      max-width: 640px;
      line-height: 1.6;
      margin-bottom: 36px;
    }

    .section-wide-desc {
      max-width: 720px;
    }

    /* ── Value pillars (“what is this?”) ── */
    .value-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .value-item {
      border-radius: var(--radius-lg);
      padding: 26px 22px;
      border: 1px solid rgba(255, 255, 255, 0.06);
      background: linear-gradient(180deg, rgba(18, 18, 18, 0.92), rgba(8, 8, 8, 0.97));
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
      transition: border-color .25s, transform .25s, box-shadow .25s;
    }

    .value-item:hover {
      border-color: rgba(0, 194, 222, 0.18);
      transform: translateY(-3px);
      box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
    }

    .value-icon {
      width: 44px;
      height: 44px;
      border-radius: var(--radius-md);
      background: rgba(0, 194, 222, 0.1);
      border: 1px solid rgba(0, 194, 222, 0.14);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent);
      margin-bottom: 16px;
    }

    .value-icon svg {
      width: 20px;
      height: 20px;
    }

    .value-title {
      font-family: 'Montserrat', sans-serif;
      font-size: 17px;
      font-weight: 700;
      letter-spacing: -.3px;
      margin-bottom: 8px;
      color: var(--text-primary);
    }

    .value-text {
      font-size: 13px;
      line-height: 1.65;
      color: var(--text-secondary);
    }

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

    /* ── Workflow steps ── */
    .workflow-track {
      display: flex;
      align-items: stretch;
      justify-content: space-between;
      gap: 8px;
      flex-wrap: nowrap;
    }

    .workflow-step {
      flex: 1 1 0;
      min-width: 0;
      text-align: center;
      padding: 22px 14px 26px;
      border-radius: var(--radius-lg);
      border: 1px solid rgba(255, 255, 255, 0.06);
      background: linear-gradient(180deg, rgba(20, 20, 20, 0.9), rgba(10, 10, 10, 0.96));
      box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
    }

    .workflow-step-num {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      margin: 0 auto 14px;
      background: rgba(0, 194, 222, 0.12);
      border: 1px solid rgba(0, 194, 222, 0.22);
      color: var(--accent);
      font-size: 14px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .workflow-step-title {
      font-size: 14px;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 6px;
      letter-spacing: -.2px;
    }

    .workflow-step-desc {
      font-size: 12px;
      line-height: 1.55;
      color: var(--text-secondary);
    }

    .wf-arrow {
      flex: 0 0 auto;
      align-self: center;
      color: rgba(255, 255, 255, 0.2);
      padding: 0 4px;
      margin-top: 0;
    }

    .wf-arrow svg {
      width: 20px;
      height: 20px;
    }

    /* ── Audience / use cases ── */
    .audience-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .audience-card {
      border-radius: var(--radius-lg);
      padding: 24px 22px;
      border: 1px solid rgba(255, 255, 255, 0.06);
      background: rgba(255, 255, 255, 0.02);
      transition: border-color .25s, background .25s;
    }

    .audience-card:hover {
      border-color: rgba(255, 255, 255, 0.1);
      background: rgba(255, 255, 255, 0.03);
    }

    .audience-label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .55px;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 10px;
    }

    .audience-title {
      font-size: 16px;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 8px;
    }

    .audience-text {
      font-size: 13px;
      line-height: 1.6;
      color: var(--text-secondary);
    }

    /* ── Tooling chips ── */
    .stack-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: flex-start;
      max-width: 720px;
    }

    .stack-chip {
      display: inline-flex;
      align-items: center;
      padding: 8px 16px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: .2px;
      color: var(--text-secondary);
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(255, 255, 255, 0.03);
    }

    /* ── Goal Cards ── */
    .goal-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .goal-card {
      background: linear-gradient(180deg, rgba(20, 20, 20, 0.9), rgba(10, 10, 10, 0.96));
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: var(--radius-lg);
      padding: 28px 24px;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      min-height: 220px;
      box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.03);
      backdrop-filter: blur(10px);
      transition: border-color .28s, transform .28s, box-shadow .28s;
    }

    .goal-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--card-accent, var(--accent));
      opacity: .6;
      transition: opacity .3s;
    }

    .goal-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at top left, rgba(0, 194, 222, 0.1), transparent 40%);
      opacity: .7;
      pointer-events: none;
    }

    .goal-card:hover {
      border-color: rgba(0, 194, 222, 0.2);
      transform: translateY(-6px);
      box-shadow: 0 22px 48px rgba(0, 0, 0, 0.38), 0 0 24px var(--accent-glow);
    }

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

    .goal-card-icon {
      width: 48px;
      height: 48px;
      border-radius: var(--radius-md);
      background: linear-gradient(135deg, rgba(0, 194, 222, 0.14), rgba(0, 194, 222, 0.05));
      border: 1px solid rgba(0, 194, 222, 0.14);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
      color: var(--accent);
    }

    .goal-card-icon svg {
      width: 22px;
      height: 22px;
    }

    .goal-card-badge {
      position: absolute;
      top: 16px;
      right: 16px;
      padding: 4px 10px;
      border-radius: 999px;
      font-size: 9px;
      font-weight: 700;
      letter-spacing: .5px;
      text-transform: uppercase;
      background: rgba(0, 194, 222, 0.1);
      color: var(--accent);
      border: 1px solid rgba(0, 194, 222, 0.15);
    }

    .goal-card-badge.soon {
      background: rgba(245, 158, 11, 0.1);
      color: #f59e0b;
      border-color: rgba(245, 158, 11, 0.2);
    }

    .goal-card-title {
      font-size: 18px;
      font-weight: 600;
      letter-spacing: -.3px;
      margin-bottom: 10px;
      color: var(--text-primary);
      position: relative;
      z-index: 1;
    }

    .goal-card-desc {
      font-size: 13px;
      line-height: 1.6;
      color: rgba(240, 240, 240, 0.65);
      margin-top: auto;
      position: relative;
      z-index: 1;
    }

    .goal-card-arrow {
      position: absolute;
      bottom: 24px;
      right: 24px;
      color: rgba(240, 240, 240, 0.25);
      transition: all .3s;
      z-index: 1;
    }

    .goal-card:hover .goal-card-arrow {
      color: var(--accent);
      transform: translateX(3px);
    }

    .goal-card-arrow svg {
      width: 18px;
      height: 18px;
    }

    /* ── Device Cards ── */
    .device-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .device-card {
      border-radius: var(--radius-lg);
      padding: 28px;
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.06);
      background: linear-gradient(180deg, rgba(18, 18, 18, 0.9), rgba(8, 8, 8, 0.96));
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
      transition: all .28s;
    }

    .device-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--dev-color);
      opacity: .7;
    }

    .device-card:hover {
      border-color: rgba(255, 255, 255, 0.12);
      transform: translateY(-4px);
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
    }

    .device-card-header {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 18px;
    }

    .device-card-icon {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255, 255, 255, 0.04);
      color: var(--dev-color);
      flex-shrink: 0;
    }

    .device-card-icon svg {
      width: 22px;
      height: 22px;
    }

    .device-card-name {
      font-size: 18px;
      font-weight: 700;
      color: var(--text-primary);
    }

    .device-card-sub {
      font-size: 11px;
      color: var(--text-muted);
      margin-top: 2px;
    }

    .device-specs {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .device-spec {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 8px 12px;
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.04);
    }

    .device-spec-label {
      font-size: 12px;
      color: var(--text-secondary);
    }

    .device-spec-value {
      font-size: 13px;
      font-weight: 600;
      color: var(--text-primary);
    }

    /* ── Get Started ── */
    .cta-wrapper {
      text-align: center;
      margin-top: 56px;
    }

    .cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 16px 40px;
      border-radius: 12px;
      border: 1px solid rgba(0, 194, 222, 0.3);
      background: linear-gradient(135deg, rgba(0, 194, 222, 0.15), rgba(0, 194, 222, 0.05));
      color: var(--accent);
      font-family: inherit;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: all .3s;
      letter-spacing: -.2px;
    }

    .cta-btn:hover {
      background: linear-gradient(135deg, rgba(0, 194, 222, 0.25), rgba(0, 194, 222, 0.1));
      border-color: rgba(0, 194, 222, 0.5);
      box-shadow: 0 0 30px rgba(0, 194, 222, 0.15);
      transform: translateY(-2px);
    }

    .cta-btn svg {
      width: 20px;
      height: 20px;
    }

    /* ── Pipeline flow (Go in steps) ── */
    .pipeline-wrap {
      max-width: 920px;
      margin: 0 auto;
    }

    .pipeline-svg {
      width: 100%;
      height: auto;
      display: block;
    }

    .pipeline-svg text {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    }

    /* ── Modality orbit tiles ── */
    .modality-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .modality-tile {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 18px 20px;
      border-radius: 56px;
      border: 1px solid rgba(255, 255, 255, 0.07);
      background: linear-gradient(135deg, rgba(16, 16, 16, 0.92), rgba(6, 6, 6, 0.96));
      transition: border-color .28s, transform .28s, box-shadow .28s;
      cursor: default;
    }

    .modality-tile:hover {
      border-color: var(--mod-border);
      transform: translateY(-3px);
      box-shadow: 0 14px 32px rgba(0, 0, 0, 0.32), 0 0 20px var(--mod-glow);
    }

    .modality-orb {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: radial-gradient(circle at 35% 35%, var(--mod-bg), rgba(0, 0, 0, 0.4));
      border: 1.5px solid var(--mod-border);
      color: var(--mod-color);
      box-shadow: 0 0 20px var(--mod-glow);
    }

    .modality-orb svg {
      width: 22px;
      height: 22px;
    }

    .modality-info {
      display: flex;
      flex-direction: column;
      gap: 2px;
      min-width: 0;
    }

    .modality-name {
      font-family: 'Montserrat', sans-serif;
      font-size: 15px;
      font-weight: 700;
      color: var(--text-primary);
      letter-spacing: -.2px;
    }

    .modality-hint {
      font-size: 12px;
      color: var(--text-secondary);
      line-height: 1.4;
    }

    /* ── Deploy split (hardware / cloud) ── */
    .deploy-split {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      gap: 0;
      align-items: stretch;
      border-radius: var(--radius-lg);
      border: 1px solid rgba(255, 255, 255, 0.07);
      background: linear-gradient(135deg, rgba(14, 14, 14, 0.92), rgba(6, 6, 6, 0.97));
      overflow: hidden;
    }

    .deploy-pane {
      padding: 32px 28px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .deploy-pane-icon {
      width: 44px;
      height: 44px;
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .deploy-pane-icon svg {
      width: 22px;
      height: 22px;
    }

    .deploy-pane-icon.local {
      background: rgba(16, 185, 129, 0.1);
      border-color: rgba(16, 185, 129, 0.18);
      color: #10b981;
    }

    .deploy-pane-icon.cloud {
      background: rgba(99, 102, 241, 0.1);
      border-color: rgba(99, 102, 241, 0.18);
      color: #6366f1;
    }

    .deploy-pane-title {
      font-family: 'Montserrat', sans-serif;
      font-size: 16px;
      font-weight: 700;
      color: var(--text-primary);
    }

    .deploy-pane-desc {
      font-size: 13px;
      color: var(--text-secondary);
      line-height: 1.6;
    }

    .deploy-pane-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 2px;
    }

    .deploy-pane-chip {
      padding: 4px 10px;
      border-radius: 999px;
      font-size: 11px;
      font-weight: 600;
      color: var(--text-muted);
      border: 1px solid rgba(255, 255, 255, 0.06);
      background: rgba(255, 255, 255, 0.02);
    }

    .deploy-divider {
      width: 1px;
      background: linear-gradient(180deg, transparent 10%, rgba(255, 255, 255, 0.07) 30%, rgba(255, 255, 255, 0.07) 70%, transparent 90%);
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .deploy-divider-or {
      position: absolute;
      padding: 8px 0;
      background: rgba(10, 10, 10, 1);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    /* ── Footer ── */
    .site-footer {
      margin-top: 96px;
      padding: 40px 64px;
      border-top: 1px solid var(--border-color);
      text-align: center;
      background: rgba(0, 0, 0, 0.5);
    }

    .footer-title {
      font-family: 'Montserrat', sans-serif;
      font-size: 15px;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 8px;
    }

    .footer-desc {
      font-size: 13px;
      color: var(--text-secondary);
      max-width: 560px;
      margin: 0 auto 16px;
      line-height: 1.65;
    }

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

    /* ── Coming Soon Modal ── */
    .coming-soon-overlay {
      position: fixed;
      inset: 0;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      padding: 16px 16px 20px;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity .28s, visibility .28s;
      z-index: 200;
    }

    .coming-soon-overlay.open {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }

    .coming-soon-modal {
      position: relative;
      width: min(420px, 100%);
      padding: 14px 42px 14px 14px;
      border-radius: 14px;
      border: 1px solid rgba(255, 255, 255, 0.07);
      background: radial-gradient(circle at top left, rgba(0, 194, 222, 0.1), transparent 38%),
        linear-gradient(180deg, rgba(18, 18, 18, 0.96), rgba(10, 10, 10, 0.98));
      box-shadow: 0 14px 32px rgba(0, 0, 0, 0.3);
      transform: translateY(16px);
      transition: transform .28s;
      backdrop-filter: blur(12px);
    }

    .coming-soon-overlay.open .coming-soon-modal {
      transform: translateY(0);
    }

    .coming-soon-close {
      position: absolute;
      top: 10px;
      right: 10px;
      width: 26px;
      height: 26px;
      border-radius: 50%;
      border: 1px solid var(--border-color);
      background: rgba(255, 255, 255, 0.02);
      color: var(--text-secondary);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all .2s;
      z-index: 1;
    }

    .coming-soon-close:hover {
      color: var(--text-primary);
      border-color: var(--accent);
      background: rgba(0, 194, 222, 0.08);
    }

    .coming-soon-close svg {
      width: 13px;
      height: 13px;
    }

    .coming-soon-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 5px 10px;
      border-radius: 999px;
      background: rgba(0, 194, 222, 0.1);
      border: 1px solid rgba(0, 194, 222, 0.16);
      color: var(--accent);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: .4px;
      margin-bottom: 8px;
      z-index: 1;
      position: relative;
    }

    .coming-soon-badge::before {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 10px var(--accent);
    }

    .coming-soon-title {
      font-family: 'Montserrat', sans-serif;
      font-size: 16px;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 4px;
      position: relative;
      z-index: 1;
    }

    .coming-soon-desc {
      font-size: 12px;
      line-height: 1.55;
      color: var(--text-secondary);
      max-width: 340px;
      position: relative;
      z-index: 1;
    }

    .coming-soon-highlight {
      color: var(--text-primary);
      font-weight: 600;
    }

    /* ── Responsive ── */
    @media(max-width:1024px) {
      .goal-grid {
        grid-template-columns: repeat(2, 1fr);
      }

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

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

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

      .pipeline-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
      }

      .pipeline-svg {
        min-width: 700px;
      }
    }

    @media(max-width:768px) {
      .navbar {
        padding: 0 24px;
      }

      .main {
        padding: 0 24px 60px;
      }

      .hero-banner {
        height: 280px;
      }

      .hero-content {
        padding: 40px 24px;
      }

      .hero-title {
        font-size: 32px;
      }

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

      .workflow-track {
        flex-direction: column;
      }

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

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

      .deploy-split {
        grid-template-columns: 1fr;
      }

      .deploy-divider {
        width: auto;
        height: 1px;
        background: linear-gradient(90deg, transparent 10%, rgba(255, 255, 255, 0.07) 30%, rgba(255, 255, 255, 0.07) 70%, transparent 90%);
      }

      .deploy-divider-or {
        padding: 0 10px;
      }

      .deploy-pane {
        padding: 24px 20px;
      }

      .pipeline-wrap {
        overflow-x: auto;
      }

      .pipeline-svg {
        min-width: 600px;
      }

      .site-footer {
        padding: 32px 24px;
      }
    }

    /* ── Animations ── */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(24px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .animate-in {
      animation: fadeUp .6s ease forwards;
      opacity: 0;
    }

    .delay-1 {
      animation-delay: .1s;
    }

    .delay-2 {
      animation-delay: .2s;
    }

    .delay-3 {
      animation-delay: .3s;
    }

    .delay-4 {
      animation-delay: .4s;
    }

    .delay-5 {
      animation-delay: .5s;
    }
