  @font-face {
    font-family: 'Inter Variable';
    font-style: normal;
    font-display: swap;
    font-weight: 100 900;
    src: url("inter-var.woff2") format("woff2");
  }

  :root {
    --cc-color-app-bg: #0d1123;
    --cc-color-bg: #151a36;
    --cc-color-panel: #1b2147;
    --cc-color-panel-border: #2f3a6e;
    --cc-color-fg: #f7f9ff;
    --cc-color-body: #c8d1e2;
    --cc-color-muted: #93a4c3;
    --cc-color-primary: #4fbfae;
    --cc-color-primary-hover: #6fd6c4;
    --cc-color-primary-fg: #0d1123;
    --cc-color-focus-ring: #63cdbb;
    --cc-color-accent-alt: #7c8cf8;
    --cc-green: #5ee6b3;
    --cc-teal: #7fd8e8;
    --cc-font: 'Inter Variable', 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --cc-motion-fast: .11s;
    --cc-motion-base: .17s;
    --cc-motion-ease: cubic-bezier(.2, 0, 0, 1);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--cc-color-app-bg);
    color: var(--cc-color-fg);
    font-family: var(--cc-font);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  .cc-container {
    width: 100%; max-width: 76rem;
    margin-inline: auto;
    padding-inline: clamp(1.25rem, 4vw, 2rem);
  }

  .cc-topbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 40;
    background: color-mix(in srgb, var(--cc-color-bg) 38%, transparent);
    border-bottom: 1px solid color-mix(in srgb, var(--cc-color-panel-border) 45%, transparent);
    -webkit-backdrop-filter: blur(22px) saturate(1.25);
    backdrop-filter: blur(22px) saturate(1.25);
    transition: opacity .4s var(--cc-motion-ease), transform .4s var(--cc-motion-ease);
  }
  .cc-topbar.is-hidden { opacity: 0; transform: translateY(-100%); pointer-events: none; }

  /* Once the dive has scrolled fully away the bar returns, condensed. Hiding
     it during the dive is right - it would sit on top of the shot - but the
     inherited behaviour never brought it back, which left the whole page below
     the hero with no navigation except the footer. */
  .cc-topbar.is-compact {
    background: color-mix(in srgb, var(--cc-color-bg) 82%, transparent);
    transition: opacity .4s var(--cc-motion-ease), transform .4s var(--cc-motion-ease),
                background .4s var(--cc-motion-ease);
  }
  .cc-topbar.is-compact .cc-topbar__inner { height: 52px; }
  .cc-topbar.is-compact .cc-topbar__brand { font-size: 1.08rem; }
  .cc-topbar.is-compact .cc-topbar__brand img { width: 41px; height: 24px; }
  .cc-topbar.is-compact .cc-topbar__link { font-size: 14px; }
  .cc-topbar.is-compact .cc-btn { padding: .62rem 1.15rem; font-size: 14px; }

  .cc-topbar__inner {
    display: flex; align-items: center; gap: 2rem; height: 64px;
    transition: height .4s var(--cc-motion-ease);
  }
  .cc-topbar__brand {
    display: flex; align-items: center; gap: .625rem;
    color: var(--cc-color-fg); text-decoration: none;
    font-weight: 600; font-size: 1.25rem; letter-spacing: -.025em;
  }
  .cc-topbar__brand img { width: 51px; height: 30px; display: block; }
  .cc-topbar__nav { display: flex; gap: 1.75rem; margin-inline: auto; }
  .cc-topbar__link {
    color: var(--cc-color-muted); font: 500 15px/1 var(--cc-font);
    text-decoration: none; transition: color var(--cc-motion-fast) var(--cc-motion-ease);
  }
  .cc-topbar__link:hover, .cc-topbar__link[data-active=true] { color: var(--cc-color-fg); }

  .cc-btn {
    font: 600 15px/1.2 var(--cc-font); letter-spacing: .01em; cursor: pointer;
    border-radius: 10px; justify-content: center; align-items: center; gap: .5rem;
    padding: .85rem 1.45rem; text-decoration: none; display: inline-flex;
    border: 1px solid transparent; white-space: nowrap;
    transition: background var(--cc-motion-base) var(--cc-motion-ease),
                border-color var(--cc-motion-base) var(--cc-motion-ease);
  }
  .cc-btn:focus-visible { outline: 2px solid var(--cc-color-focus-ring); outline-offset: 3px; }
  .cc-btn--primary {
    background: var(--cc-color-primary); color: var(--cc-color-primary-fg);
    box-shadow: 0 1px 0 color-mix(in srgb, var(--cc-color-fg) 8%, transparent);
  }
  .cc-btn--primary:hover { background: var(--cc-color-primary-hover); }
  .cc-btn--ghost {
    background: color-mix(in srgb, var(--cc-color-app-bg) 42%, transparent);
    color: var(--cc-color-fg);
    border: 1.5px solid color-mix(in srgb, var(--cc-color-fg) 40%, transparent);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }
  .cc-btn--ghost:hover {
    background: color-mix(in srgb, var(--cc-color-app-bg) 58%, transparent);
    border-color: color-mix(in srgb, var(--cc-color-fg) 65%, transparent);
  }
  .cc-btn--sm { padding: .6rem 1.05rem; font-size: 14px; }

  /* ================= SCROLL-SCRUBBED DIVE ================= */
  /* vh on purpose, not svh. Mobile vh is the LARGE viewport and is
     stable while the address bar hides and shows; svh sized the stage
     to the small viewport, which left a band of page background under
     the video whenever the bar was hidden. The bottom of the stage
     being cropped while the bar shows is normal full-bleed behavior. */
  .cc-dive { height: 230vh; position: relative; }
  .cc-dive__stage {
    position: sticky; top: 0; height: 100vh;
    overflow: clip;
    background: var(--cc-color-app-bg);
  }
  .cc-dive__still, .cc-dive__video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .cc-dive__video { opacity: 0; }
  .cc-dive__still { z-index: 1; }
  .cc-dive__video { z-index: 2; }

  .cc-dive__veil {
    position: absolute; inset: 0;
    pointer-events: none; z-index: 3;
    background: linear-gradient(180deg,
      rgba(13, 17, 35, .48) 0%,
      transparent 24%,
      transparent 76%,
      rgba(13, 17, 35, .5) 93%,
      #0d1123 100%);
    will-change: opacity;
  }
  .cc-dive__grain {
    position: absolute; inset: 0; z-index: 6; pointer-events: none;
    opacity: .05; mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)'/%3E%3C/svg%3E");
  }

  /* ---------- .console-*, glued to the screen in the hero footage ---------- */
  .console-layer {
    position: absolute; inset: 0;
    z-index: 4;
    opacity: 0; pointer-events: none;
    display: flex; align-items: center; justify-content: center;
    will-change: opacity;
  }
  .console-window {
    width: 1440px; height: 816px;
    flex: none;
    display: flex; flex-direction: column;
    background: var(--cc-color-app-bg);
    border-radius: 6px;
    overflow: hidden;
    transform-origin: center center;
    will-change: transform;
    box-shadow: 0 0 60px rgba(127, 216, 232, .18);
  }

  .cc-dive__end {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    opacity: 0; z-index: 2;
    will-change: opacity;
  }
  /* ---------- .cc-platform: the product section, a split layout ---------- */
  .cc-platform .cc-container { max-width: 90rem; }
  .cc-platform__grid {
    display: grid;
    grid-template-columns: .8fr 1.7fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
    text-align: left;
  }
  .cc-platform__copy h2 {
    font-weight: 650;
    font-size: clamp(1.8rem, 2.9vw, 2.5rem);
    letter-spacing: -.03em;
    line-height: 1.15;
  }
  .cc-features {
    list-style: none;
    margin-top: 2.2rem;
    border-top: 1px solid var(--cc-color-panel-border);
  }
  .cc-features li {
    border-bottom: 1px solid var(--cc-color-panel-border);
    padding: 1.05rem 0;
  }
  .cc-features b {
    font: 600 1.02rem/1.3 var(--cc-font);
    color: var(--cc-color-muted);
    display: flex; align-items: center; gap: .6rem;
  }
  .cc-features li.is-current b { color: var(--cc-color-fg); }
  .cc-features li.is-current b::before {
    content: '';
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--cc-color-primary);
    flex: none;
  }
  .cc-features p {
    margin-top: .55rem;
    color: var(--cc-color-body);
    font: 400 .95rem/1.6 var(--cc-font);
    max-width: 30rem;
  }
  .cc-demo-link {
    display: inline-block;
    margin-top: 1.6rem;
    color: var(--cc-color-fg);
    font: 600 1rem/1 var(--cc-font);
    text-decoration: underline;
    text-underline-offset: 4px;
  }
  .cc-demo-link:hover { color: var(--cc-color-primary); }
  .cc-demo__bezel {
    background: linear-gradient(180deg, #1b2244, #0e1226);
    border: 1px solid #2b3560;
    border-radius: 14px;
    padding: clamp(7px, .8vw, 11px);
    box-shadow: 0 30px 70px rgba(6, 9, 23, .5), 0 0 50px rgba(138, 173, 212, .1);
  }
  .cc-demo__screen {
    aspect-ratio: 1100 / 660;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
    background: var(--cc-color-app-bg);
  }
  .cc-demo__screen .console-window {
    position: absolute; top: 0; left: 0;
    transform-origin: 0 0;
    box-shadow: none;
    border-radius: 0;
  }

  /* ---------- .console-*: the product console the demo screen shows ---------- */
  .console-app { width: 1100px; height: 660px; position: absolute; top: 0; left: 0; display: flex; flex-direction: column; cursor: default; }
  .console-top { height: 54px; flex: none; display: flex; align-items: center; gap: 12px; padding: 0 22px;
    background: var(--cc-color-bg); border-bottom: 1px solid var(--cc-color-panel-border); }
  .console-logo { width: 41px; height: 24px; }
  .console-top b { font: 600 15.5px/1 var(--cc-font); }
  .console-search { flex: 1; max-width: 420px; margin-left: 18px; background: var(--cc-color-app-bg);
    border: 1px solid var(--cc-color-panel-border); border-radius: 9px; padding: 9px 14px;
    color: var(--cc-color-muted); font: 400 13px/1 var(--cc-font); }
  .console-search--wide { max-width: none; margin: 0; }
  .console-pills { margin-left: auto; display: flex; align-items: center; gap: 10px; }
  .console-pill { background: var(--cc-color-app-bg); border: 1px solid var(--cc-color-panel-border);
    border-radius: 999px; padding: 8px 14px; font: 500 12.5px/1 var(--cc-font); color: var(--cc-color-body); }
  .console-avatar { width: 34px; height: 34px; border-radius: 50%; flex: none; display: grid; place-items: center;
    background: color-mix(in srgb, var(--cc-color-primary) 26%, var(--cc-color-panel));
    color: var(--cc-color-fg); font: 600 12.5px/1 var(--cc-font); }
  .console-avatar--lg { width: 46px; height: 46px; font-size: 15px; }
  .console-body { flex: 1; display: flex; min-height: 0; }
  .console-rail { width: 58px; flex: none; background: var(--cc-color-bg);
    border-right: 1px solid var(--cc-color-panel-border);
    display: flex; flex-direction: column; align-items: center; padding: 16px 0; gap: 12px; }
  .console-rail__btn { width: 32px; height: 32px; border-radius: 9px; border: 1.5px solid color-mix(in srgb, var(--cc-color-muted) 45%, transparent);
    background: none; cursor: pointer; display: grid; place-items: center;
    transition: border-color var(--cc-motion-base) var(--cc-motion-ease), background var(--cc-motion-base) var(--cc-motion-ease); }
  .console-rail__btn i { width: 12px; height: 12px; border-radius: 3px; background: color-mix(in srgb, var(--cc-color-muted) 65%, transparent); }
  .console-rail__btn.is-on { border-color: var(--cc-color-primary); background: color-mix(in srgb, var(--cc-color-primary) 16%, transparent); }
  .console-rail__btn.is-on i { background: var(--cc-color-primary); }
  .console-views { flex: 1; position: relative; min-width: 0; padding: 14px 18px 18px; }
  .console-view { position: absolute; inset: 14px 18px 18px; opacity: 0; transform: translateY(12px);
    pointer-events: none; transition: opacity .45s var(--cc-motion-ease), transform .45s var(--cc-motion-ease);
    display: flex; flex-direction: column; }
  .console-view.is-active { opacity: 1; transform: none; pointer-events: auto; }
  .console-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 14px; }
  .console-kpi { background: var(--cc-color-panel); border: 1px solid var(--cc-color-panel-border);
    border-radius: 12px; padding: 14px 18px; display: flex; flex-direction: column; }
  .console-kpi__value { font: 700 30px/1.15 var(--cc-font); letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
  .console-kpi__label { color: var(--cc-color-muted); font: 500 12px/1.3 var(--cc-font); margin-top: 3px; }
  .console-kpi__delta { color: var(--cc-green); font: 600 11.5px/1 var(--cc-font); margin-top: 5px; }
  .console-grid { flex: 1; display: grid; grid-template-columns: 1.55fr 1fr; gap: 14px; min-height: 0; }
  .console-grid--2 { grid-template-columns: 1fr 1.15fr; }
  .console-col { display: flex; flex-direction: column; gap: 14px; min-height: 0; }
  .console-col .console-panel { flex: 1; }
  .console-panel { background: var(--cc-color-panel); border: 1px solid var(--cc-color-panel-border);
    border-radius: 12px; padding: 16px 18px; min-height: 0; display: flex; flex-direction: column; }
  .console-label { font: 600 10.5px/1 var(--cc-font); letter-spacing: .13em; text-transform: uppercase;
    color: var(--cc-color-muted); margin-bottom: 12px; }
  .console-panel--map { overflow: hidden; }
  .console-map { flex: 1; position: relative; min-height: 0; }
  .console-map svg { position: absolute; inset: 0; }
  .console-map__dots { position: absolute; inset: 0; pointer-events: none; }
  .console-map__dot { position: absolute; width: 10px; height: 10px; margin: -5px 0 0 -5px; border-radius: 50%;
    background: #ffd9a0; box-shadow: 0 0 12px 3px rgba(255, 194, 118, .55);
    animation: console-pulse 2.6s ease-in-out infinite; }
  .console-map__dot::after { content: ''; position: absolute; inset: -7px; border-radius: 50%;
    border: 1.5px solid rgba(255, 194, 118, .5); animation: console-ripple 2.6s ease-out infinite;
    animation-delay: inherit; }
  @keyframes console-pulse { 0%,100% { transform: scale(.85); } 50% { transform: scale(1.15); } }
  @keyframes console-ripple { 0% { transform: scale(.5); opacity: 1; } 100% { transform: scale(1.8); opacity: 0; } }
  .console-chart { width: 100%; flex: 1; min-height: 90px; }
  .console-line { stroke-dasharray: 460; stroke-dashoffset: 460; }
  .is-in-view .console-line { animation: console-draw 1.6s .3s var(--cc-motion-ease) forwards; }
  @keyframes console-draw { to { stroke-dashoffset: 0; } }
  .console-line-end { opacity: 0; }
  .is-in-view .console-line-end { animation: cc-rise-in .4s 1.7s forwards; }
  .console-rings { display: flex; gap: 12px; justify-content: space-around; align-items: center; flex: 1; }
  .console-ring { text-align: center; }
  .console-ring svg { width: 74px; height: 74px; }
  .console-ring b { display: block; font: 700 16px/1.4 var(--cc-font); }
  .console-ring span { color: var(--cc-color-muted); font: 500 11px/1.2 var(--cc-font); }
  .console-arc { stroke-dashoffset: 213.6; transition: stroke-dashoffset 1.4s var(--cc-motion-ease) .4s; }
  .is-in-view .console-arc { stroke-dashoffset: 0; }
  .console-person { display: flex; align-items: center; gap: 12px; }
  .console-person b { font: 600 15px/1.3 var(--cc-font); display: block; }
  .console-sub { color: var(--cc-color-muted); font: 400 12px/1.4 var(--cc-font); display: block; }
  .console-tag { margin-left: auto; color: var(--cc-green); border: 1px solid color-mix(in srgb, var(--cc-green) 45%, transparent);
    border-radius: 999px; padding: 5px 11px; font: 600 11px/1 var(--cc-font); }
  .console-bars { display: flex; flex-direction: column; gap: 13px; margin-top: 4px; }
  .console-bars--wide { flex: 1; justify-content: space-evenly; }
  .console-bar { display: grid; grid-template-columns: 104px 1fr 38px; align-items: center; gap: 12px; }
  .console-bar span { color: var(--cc-color-body); font: 500 12.5px/1 var(--cc-font); }
  .console-bar b { font: 600 13px/1 var(--cc-font); text-align: right; font-variant-numeric: tabular-nums; }
  .console-track { height: 7px; border-radius: 999px; background: var(--cc-color-app-bg); overflow: hidden; }
  .console-track i { display: block; height: 100%; border-radius: inherit; width: 0;
    background: var(--cc-bar, var(--cc-teal)); transition: width 1.2s var(--cc-motion-ease) .3s; }
  .is-active .console-track i { width: var(--cc-fill); }
  .console-note { color: var(--cc-color-muted); font: 400 11.5px/1.5 var(--cc-font); margin-top: auto; padding-top: 12px; }
  .console-history { display: flex; flex-direction: column; gap: 10px; }
  .console-history__row { display: flex; align-items: center; gap: 12px; background: var(--cc-color-app-bg);
    border: 1px solid var(--cc-color-panel-border); border-radius: 10px; padding: 10px 12px; }
  .console-history__row b { font: 600 12.5px/1.35 var(--cc-font); display: block; }
  .console-history__logo { width: 32px; height: 32px; border-radius: 8px; flex: none; display: grid; place-items: center;
    color: #fff; font: 700 13px/1 var(--cc-font); }
  .console-history__status { margin-left: auto; flex: none; color: var(--cc-status); font: 600 11px/1 var(--cc-font);
    background: color-mix(in srgb, var(--cc-status) 15%, transparent); border-radius: 999px; padding: 5px 10px; }
  .console-regions { display: flex; flex-direction: column; gap: 11px; }
  .console-region { display: grid; grid-template-columns: 1fr auto; gap: 2px 10px; align-items: center;
    background: var(--cc-color-app-bg); border: 1px solid var(--cc-color-panel-border);
    border-radius: 10px; padding: 10px 12px; }
  .console-region b { font: 600 12.5px/1.3 var(--cc-font); }
  .console-region .console-sub { grid-column: 1; }
  .console-chip { grid-row: 1 / 3; color: var(--cc-status); font: 600 11px/1 var(--cc-font);
    background: color-mix(in srgb, var(--cc-status) 15%, transparent); border-radius: 999px; padding: 5px 10px; }
  .console-cta { margin-top: auto; align-self: flex-start; background: var(--cc-color-primary);
    color: var(--cc-color-primary-fg); border: 0; border-radius: 9px; padding: 9px 16px;
    font: 600 12.5px/1 var(--cc-font); cursor: pointer; }
  .console-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
  .console-card { background: var(--cc-color-panel); border: 1px solid var(--cc-color-panel-border);
    border-radius: 12px; padding: 16px 14px; display: flex; flex-direction: column; align-items: center;
    gap: 4px; text-align: center; transition: transform .25s var(--cc-motion-ease), border-color .25s var(--cc-motion-ease); }
  .console-card:hover { transform: translateY(-3px); border-color: color-mix(in srgb, var(--cc-color-primary) 55%, var(--cc-color-panel-border)); }
  .console-card b { font: 600 13.5px/1.3 var(--cc-font); margin-top: 6px; }
  .console-match { margin-top: 8px; color: var(--cc-green); font: 600 11.5px/1 var(--cc-font);
    background: color-mix(in srgb, var(--cc-green) 14%, transparent); border-radius: 999px; padding: 5px 10px; }
  .console-glow { position: absolute; width: 340px; height: 340px; border-radius: 50%; pointer-events: none;
    background: radial-gradient(circle, rgba(138, 173, 212, .12), transparent 65%);
    transform: translate(-170px, -170px); opacity: 0; transition: opacity .3s; z-index: 3; }
  .console-app:hover .console-glow { opacity: 1; }
  .console-tip { position: absolute; z-index: 4; pointer-events: none; opacity: 0;
    background: rgba(10, 15, 32, .92); border: 1px solid var(--cc-color-panel-border);
    border-radius: 8px; padding: 8px 11px; font: 500 11.5px/1.45 var(--cc-font);
    color: var(--cc-color-fg); transform: translate(-50%, -130%); transition: opacity .2s;
    white-space: nowrap; }
  .console-tip b { color: var(--cc-green); }
  .cc-features li { cursor: pointer; }
  .cc-features li p { display: none; }
  .cc-features li.is-current p { display: block; }
  .cc-features li .cc-prog { display: none; height: 2px; margin-top: .8rem; background: color-mix(in srgb, var(--cc-color-primary) 25%, transparent); border-radius: 2px; overflow: hidden; }
  .cc-features li.is-current .cc-prog { display: block; }
  .cc-features li.is-current .cc-prog i { display: block; height: 100%; background: var(--cc-color-primary); width: 0; animation: cc-prog-fill var(--cc-rotation, 7s) linear forwards; }
  @keyframes cc-prog-fill { to { width: 100%; } }

  /* ---------- .cc-dive__copy and the staggered .cc-rise reveal ---------- */
  .cc-dive__copy {
    position: absolute;
    left: 50%; top: 0;
    transform: translateX(-50%);
    width: min(60rem, calc(100vw - 3rem));
    text-align: center;
    display: flex; flex-direction: column; align-items: center; gap: 1.05rem;
    padding-top: clamp(5.4rem, 10.5vh, 7rem);
    z-index: 5;
    will-change: opacity;
  }
  .cc-dive__copy h1 {
    font-weight: 650;
    font-size: clamp(2.9rem, 6.2vw, 4.7rem);
    letter-spacing: -.04em;
    line-height: 1.02;
    text-wrap: balance;
    text-shadow: 0 1px 3px rgba(13, 17, 35, .45), 0 3px 22px rgba(13, 17, 35, .5);
  }
  .cc-dive__sub {
    color: #fdfeff;
    font: 500 clamp(1.08rem, 1.6vw, 1.3rem)/1.55 var(--cc-font);
    letter-spacing: .005em;
    max-width: 46rem;
    text-wrap: balance;
    text-shadow: 0 1px 2px rgba(13, 17, 35, .65), 0 2px 14px rgba(13, 17, 35, .6), 0 6px 34px rgba(13, 17, 35, .5);
  }
  .cc-dive__cta {
    margin-top: .55rem;
    display: flex; align-items: stretch; justify-content: center;
    gap: .7rem; flex-wrap: wrap;
  }
  .cc-dive__email {
    width: min(17rem, 70vw);
    padding: .85rem 1.2rem;
    border-radius: 10px;
    border: 1.5px solid color-mix(in srgb, var(--cc-color-fg) 30%, transparent);
    background: color-mix(in srgb, var(--cc-color-app-bg) 45%, transparent);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    color: var(--cc-color-fg);
    font: 500 15px/1.2 var(--cc-font);
    outline: none;
    transition: border-color var(--cc-motion-base) var(--cc-motion-ease);
  }
  .cc-dive__email::placeholder { color: color-mix(in srgb, var(--cc-color-fg) 62%, transparent); }
  .cc-dive__email:focus-visible { border-color: color-mix(in srgb, var(--cc-color-fg) 60%, transparent); }

  .cc-rise { opacity: 0; transform: translateY(14px); animation: cc-rise-in .65s var(--cc-motion-ease) forwards; }
  .cc-rise-0 { animation-delay: .2s; }
  .cc-rise-1 { animation-delay: .32s; }
  .cc-rise-2 { animation-delay: .46s; }
  @keyframes cc-rise-in { to { opacity: 1; transform: none; } }

  .cc-dive__foot {
    position: absolute;
    left: 50%; bottom: 1.2rem;
    transform: translateX(-50%);
    z-index: 5;
    width: max-content; max-width: calc(100vw - 2rem);
    will-change: opacity;
  }
  .cc-dive__pill {
    display: inline-flex; align-items: center; gap: .6rem;
    background: rgba(13, 17, 35, .72);
    border: 1px solid color-mix(in srgb, var(--cc-color-fg) 10%, transparent);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 999px;
    padding: .55rem 1.2rem;
    color: var(--cc-color-body);
    font: 500 .8rem/1.4 var(--cc-font);
    text-align: center;
  }
  .cc-dive__pill .cc-dive__dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--cc-green);
    box-shadow: 0 0 8px var(--cc-green);
    flex: none;
  }

  .cc-platform {
    position: relative; z-index: 2;
    background: var(--cc-color-app-bg);
    padding: 7rem 1.5rem 9rem;
    text-align: center;
  }
  .cc-platform h2 {
    font-weight: 650; font-size: clamp(1.7rem, 3vw, 2.35rem);
    letter-spacing: -.03em; line-height: 1.18;
  }
  .cc-platform p { margin: 1rem auto 0; max-width: 38rem; color: var(--cc-color-body); font: 400 1.0625rem/1.7 var(--cc-font); }

  @media (prefers-reduced-motion: reduce) {
    .cc-rise { animation-duration: .01s; animation-delay: 0s; }
    .cc-dive__video { display: none; }
    .cc-dive { height: 100vh; }
  }
  @media (max-width: 860px) {
    .cc-topbar__nav { display: none; }
    .cc-topbar__inner { justify-content: space-between; }
    .cc-dive__cta { flex-direction: column; align-items: center; }
    .cc-dive__pill { font-size: .72rem; }
  }
  @media (max-width: 900px) {
    .cc-platform__grid { display: flex; flex-direction: column; gap: 1.1rem; }
    .cc-platform__copy { display: flex; flex-direction: column; }
    .cc-platform__copy h2 { order: 0; }
    .cc-features { order: 1; display: flex; gap: .6rem; overflow-x: auto; border-top: 0;
      margin-top: 1.2rem; padding-bottom: .35rem; scrollbar-width: none; }
    .cc-features::-webkit-scrollbar { display: none; }
    .cc-features li { border: 1px solid var(--cc-color-panel-border);
      border-radius: 999px; padding: .55rem 1.05rem; flex: none; }
    .cc-features li b { font-size: .9rem; white-space: nowrap; color: var(--cc-color-muted); }
    .cc-features li.is-current { background: color-mix(in srgb, var(--cc-color-primary) 16%, transparent);
      border-color: var(--cc-color-primary); }
    .cc-features li.is-current b { color: var(--cc-color-fg); }
    .cc-features li b::before { display: none; }
    .cc-features li p, .cc-features li .cc-prog { display: none !important; }
    .cc-demo-link { order: 2; margin: .3rem 0 .2rem; }
    .cc-demo__screen { aspect-ratio: auto; height: auto; }
    .cc-demo__screen .console-app { position: relative; top: auto; left: auto; width: 100%; height: auto; transform: none !important; }
    .console-top { height: 48px; padding: 0 14px; }
    .console-search, .console-rail { display: none; }
    .console-views { display: grid; padding: 12px; }
    .console-view { position: static; grid-area: 1 / 1; }
    .console-kpis { gap: 8px; margin-bottom: 10px; }
    .console-kpi { padding: 10px; }
    .console-kpi__value { font-size: 21px; }
    .console-kpi__label { font-size: 10.5px; }
    .console-grid, .console-grid--2 { display: flex; flex-direction: column; }
    .console-map { aspect-ratio: 959 / 593; flex: none; min-height: 0; }
    .console-panel { padding: 13px 14px; }
    .console-cards { grid-template-columns: repeat(2, 1fr); }
    .console-bar { grid-template-columns: 88px 1fr 34px; }
    .cc-platform { padding: 4rem 0 5rem; overflow-x: clip; }
    .cc-platform__grid, .cc-platform__copy { min-width: 0; max-width: 100%; }
    .cc-platform__copy h2 { font-size: 1.75rem; line-height: 1.25; max-width: 100%;
      white-space: normal; overflow-wrap: break-word; text-wrap: wrap; }
    .cc-dive { height: 300vh; }
  }
  /* The mark is 1.7:1, so at its full size the topbar row - mark, wordmark and
     the demo button - overruns a 320px screen by 13px. Scaling the mark down
     here recovers it; the wordmark carries the brand at that width anyway. */
  @media (max-width: 420px) {
    /* One column: the brand lockup cannot wrap, so in a half-width track it
       held the whole grid wider than the viewport. */
    .cc-footer__grid { grid-template-columns: minmax(0, 1fr); gap: 1.8rem; }
    .cc-topbar__brand img { width: 37px; height: 22px; }
    .cc-topbar.is-compact .cc-topbar__brand img { width: 32px; height: 19px; }
    .cc-topbar__brand { font-size: 1.05rem; gap: .5rem; }
    .cc-footer__brand img { width: 37px; height: 22px; }
  }

  @media (max-width: 520px) {
    .cc-dive__copy { gap: .8rem; padding-top: 4.6rem; }
    .cc-dive__copy h1 { font-size: 2.25rem; }
    .cc-dive__sub { font-size: 1rem; max-width: 21rem; }
    .cc-dive__cta { flex-direction: row; flex-wrap: wrap; gap: .55rem; margin-top: .3rem; }
    .cc-dive__email { width: 100%; }
    .cc-dive__cta .cc-btn { flex: 1; padding: .8rem .5rem; font-size: 14px; }
    .cc-dive__pill { max-width: calc(100vw - 1.6rem); font-size: .68rem; padding: .5rem .9rem; }
  }
/* ============ .cc-band: the stacked page sections ============ */
.cc-band { position: relative; background: var(--cc-color-app-bg); }
.cc-eyebrow { color: var(--cc-color-muted); font: 600 12px/1 var(--cc-font); letter-spacing: .14em;
  text-transform: uppercase; display: inline-flex; align-items: center; gap: 12px; }
.cc-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--cc-color-primary); }
.cc-band h2 { font-weight: 650; font-size: clamp(1.8rem, 3.2vw, 2.6rem); letter-spacing: -.03em;
  line-height: 1.12; margin-top: 1.1rem; text-wrap: balance; }
.cc-band .cc-lede { margin-top: 1rem; color: var(--cc-color-body); font: 400 1.05rem/1.65 var(--cc-font);
  max-width: 40rem; text-wrap: pretty; }
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--cc-motion-ease), transform .7s var(--cc-motion-ease); }
.reveal.is-revealed { opacity: 1; transform: none; }

/* ---------- .cc-employers: the logo marquee ---------- */
.cc-employers { padding: 3.4rem 0 3rem; border-top: 1px solid color-mix(in srgb, var(--cc-color-panel-border) 55%, transparent); }
.cc-employers__label { text-align: center; color: var(--cc-color-muted); font: 600 11.5px/1 var(--cc-font);
  letter-spacing: .18em; text-transform: uppercase; margin-bottom: 1.9rem; }
.cc-marquee { overflow: hidden; position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.cc-marquee__track { display: flex; gap: 4.4rem; width: max-content; align-items: center;
  animation: cc-marquee-scroll 36s linear infinite; }
.cc-marquee:hover .cc-marquee__track { animation-play-state: paused; }
.cc-marquee__track span { color: color-mix(in srgb, var(--cc-color-fg) 52%, transparent);
  font: 600 1.28rem/1 var(--cc-font); letter-spacing: -.01em; white-space: nowrap;
  transition: color .25s var(--cc-motion-ease); }
.cc-marquee__track span:hover { color: var(--cc-color-fg); }
@keyframes cc-marquee-scroll { to { transform: translateX(-50%); } }

/* ---------- .cc-pillars: three-card sections (what it does, who it's for) ---------- */
.cc-pillars { padding: 6rem 0 6.5rem; }
.cc-pillars__grid { margin-top: 3rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.cc-card { position: relative; overflow: hidden; display: flex; flex-direction: column;
  background: var(--cc-color-bg); border: 1px solid var(--cc-color-panel-border);
  border-radius: 16px; padding: 1.7rem 1.6rem 1.5rem; min-height: 15rem;
  transition: transform .35s var(--cc-motion-ease), border-color .35s var(--cc-motion-ease),
    box-shadow .35s var(--cc-motion-ease); will-change: transform; }
.cc-card::before { content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0;
  background: radial-gradient(420px circle at var(--cc-glow-x, 50%) var(--cc-glow-y, 0%),
    color-mix(in srgb, var(--cc-color-primary) 13%, transparent), transparent 65%);
  transition: opacity .35s var(--cc-motion-ease); }
.cc-card:hover { transform: translateY(-5px); border-color: color-mix(in srgb, var(--cc-color-primary) 55%, var(--cc-color-panel-border));
  box-shadow: 0 22px 50px rgba(6, 9, 23, .45); }
.cc-card:hover::before { opacity: 1; }
.cc-card__tag { color: var(--cc-color-muted); font: 600 10.5px/1 var(--cc-font);
  letter-spacing: .15em; text-transform: uppercase; }
.cc-card h3 { margin-top: .9rem; font: 650 1.28rem/1.25 var(--cc-font); letter-spacing: -.02em; }
.cc-card p { margin-top: .65rem; color: var(--cc-color-body); font: 400 .95rem/1.6 var(--cc-font); }
.cc-card__link { margin-top: auto; padding-top: 1.2rem; color: var(--cc-color-primary);
  font: 600 .92rem/1 var(--cc-font); text-decoration: none; display: inline-flex; align-items: center; gap: .4rem; }
.cc-card__link i { transition: transform .3s var(--cc-motion-ease); font-style: normal; }
.cc-card:hover .cc-card__link i { transform: translateX(5px); }
.cc-card__spark { position: absolute; right: 1.2rem; top: 1.2rem; opacity: .8; }

/* ---------- .cc-problem: the gap the product closes ---------- */
.cc-problem { padding: 5.5rem 0 6rem;
  background: linear-gradient(180deg, transparent, color-mix(in srgb, var(--cc-color-bg) 55%, transparent) 22%,
    color-mix(in srgb, var(--cc-color-bg) 55%, transparent) 78%, transparent); }
.cc-problem__grid { margin-top: 2.6rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.cc-voice { position: relative; background: var(--cc-color-panel); border: 1px solid var(--cc-color-panel-border);
  border-radius: 14px; padding: 1.5rem 1.4rem;
  transition: transform .35s var(--cc-motion-ease), border-color .35s var(--cc-motion-ease); }
.cc-voice:hover { transform: translateY(-4px); border-color: color-mix(in srgb, #ff7c9c 45%, var(--cc-color-panel-border)); }
.cc-voice__who { color: #ff9cb4; font: 600 10.5px/1 var(--cc-font); letter-spacing: .15em; text-transform: uppercase; }
.cc-voice p { margin-top: .8rem; color: var(--cc-color-fg); font: 500 1.05rem/1.5 var(--cc-font); letter-spacing: -.01em; }
.cc-problem__punch { margin-top: 2.4rem; text-align: center; color: var(--cc-color-body);
  font: 500 1.1rem/1.5 var(--cc-font); }
.cc-problem__punch b { color: var(--cc-green); font-weight: 650; }

/* ---------- .cc-pipeline: how it works, steps driving scenes ---------- */
.cc-pipeline { padding: 6rem 0 6.5rem; }
.cc-pipeline__grid { margin-top: 3rem; display: grid; grid-template-columns: .92fr 1.3fr; gap: clamp(2rem, 4vw, 4rem); align-items: start; }
.cc-steps { display: flex; flex-direction: column; }
.cc-step { position: relative; border: 0; background: none; text-align: left; cursor: pointer;
  padding: 1.15rem 1rem 1.15rem 3.4rem; border-left: 2px solid var(--cc-color-panel-border);
  transition: background .3s var(--cc-motion-ease); }
.cc-step:hover { background: color-mix(in srgb, var(--cc-color-panel) 55%, transparent); }
.cc-step__num { position: absolute; left: -1.05rem; top: 1.05rem; width: 2rem; height: 2rem;
  border-radius: 50%; display: grid; place-items: center;
  background: var(--cc-color-bg); border: 1.5px solid var(--cc-color-panel-border);
  color: var(--cc-color-muted); font: 650 .85rem/1 var(--cc-font);
  transition: all .3s var(--cc-motion-ease); }
.cc-step.is-on .cc-step__num { background: var(--cc-color-primary); border-color: var(--cc-color-primary);
  color: var(--cc-color-primary-fg); box-shadow: 0 0 18px color-mix(in srgb, var(--cc-color-primary) 55%, transparent); }
.cc-step b { display: block; color: var(--cc-color-muted); font: 600 10.5px/1 var(--cc-font);
  letter-spacing: .15em; text-transform: uppercase; }
.cc-step strong { display: block; margin-top: .45rem; color: var(--cc-color-fg);
  font: 650 1.12rem/1.3 var(--cc-font); letter-spacing: -.015em; }
.cc-step p { margin-top: .4rem; color: var(--cc-color-body); font: 400 .92rem/1.55 var(--cc-font);
  max-height: 0; overflow: hidden; opacity: 0; transition: all .4s var(--cc-motion-ease); }
.cc-step.is-on p { max-height: 6rem; opacity: 1; }
.cc-step.is-on { border-left-color: var(--cc-color-primary); }
.cc-pipeline__stage { position: relative; min-height: 24rem; }
.cc-scene { position: absolute; inset: 0; opacity: 0; transform: translateY(14px) scale(.985);
  pointer-events: none; transition: opacity .45s var(--cc-motion-ease), transform .45s var(--cc-motion-ease);
  display: flex; flex-direction: column; gap: .9rem; }
.cc-scene.is-on { opacity: 1; transform: none; pointer-events: auto; position: relative; }
.cc-panel { background: var(--cc-color-panel); border: 1px solid var(--cc-color-panel-border);
  border-radius: 14px; padding: 1.15rem 1.25rem; }
.cc-panel__label { display: flex; justify-content: space-between; align-items: baseline;
  color: var(--cc-color-muted); font: 600 10.5px/1 var(--cc-font); letter-spacing: .14em;
  text-transform: uppercase; margin-bottom: .9rem; }
.cc-panel__label em { font-style: normal; color: var(--cc-green); }
.cc-row { display: flex; align-items: center; gap: .8rem; background: var(--cc-color-app-bg);
  border: 1px solid var(--cc-color-panel-border); border-radius: 10px; padding: .7rem .85rem;
  margin-top: .55rem; }
.cc-row:first-of-type { margin-top: 0; }
.cc-row__logo { width: 30px; height: 30px; border-radius: 8px; flex: none; display: grid;
  place-items: center; color: #fff; font: 700 12.5px/1 var(--cc-font); }
.cc-row b { display: block; font: 600 .85rem/1.35 var(--cc-font); }
.cc-row small { color: var(--cc-color-muted); font: 400 .76rem/1.3 var(--cc-font); }
.cc-row .cc-pill { margin-left: auto; flex: none; font: 600 .68rem/1 var(--cc-font);
  border-radius: 999px; padding: .3rem .6rem; color: var(--cc-status); background: color-mix(in srgb, var(--cc-status) 15%, transparent); }
.cc-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: .6rem; }
.cc-kpi { background: var(--cc-color-app-bg); border: 1px solid var(--cc-color-panel-border);
  border-radius: 10px; padding: .75rem .8rem; }
.cc-kpi b { font: 700 1.35rem/1.1 var(--cc-font); letter-spacing: -.02em; font-variant-numeric: tabular-nums; display: block; }
.cc-kpi span { color: var(--cc-color-muted); font: 500 .68rem/1.25 var(--cc-font); display: block; margin-top: .25rem; }
.cc-kpi em { color: var(--cc-green); font: 600 .68rem/1 var(--cc-font); font-style: normal; display: block; margin-top: .3rem; }
.cc-bars { margin-top: .3rem; }
.cc-bars .cc-bar { display: grid; grid-template-columns: 92px 1fr auto 38px; gap: .7rem; align-items: center; padding: .42rem 0; }
.cc-bar span { color: var(--cc-color-body); font: 500 .82rem/1 var(--cc-font); }
.cc-bar .cc-track { height: 6px; border-radius: 999px; background: var(--cc-color-app-bg); overflow: hidden; }
.cc-bar .cc-track i { display: block; height: 100%; width: 0; border-radius: inherit; background: var(--cc-bar, var(--cc-teal));
  transition: width 1.1s var(--cc-motion-ease) .2s; }
.cc-scene.is-on .cc-track i { width: var(--cc-fill); }
.cc-bar .cc-delta { font: 500 .7rem/1 var(--cc-font); color: var(--cc-color-muted); }
.cc-bar b { font: 600 .84rem/1 var(--cc-font); text-align: right; font-variant-numeric: tabular-nums; }
.cc-noise { display: flex; align-items: center; gap: .6rem; margin-top: .5rem;
  background: color-mix(in srgb, #ff7c9c 7%, var(--cc-color-app-bg));
  border: 1px solid color-mix(in srgb, #ff7c9c 25%, var(--cc-color-panel-border));
  border-radius: 9px; padding: .55rem .75rem; color: #ffb4c4; font: 500 .8rem/1.2 var(--cc-font); }
.cc-noise::before { content: '×'; font-weight: 700; opacity: .8; }

/* ---------- .cc-rules: governance and consent ---------- */
.cc-rules { padding: 5.5rem 0 6rem;
  background: linear-gradient(180deg, transparent, color-mix(in srgb, var(--cc-color-bg) 55%, transparent) 22%,
    color-mix(in srgb, var(--cc-color-bg) 55%, transparent) 78%, transparent); }
.cc-rules__grid { margin-top: 2.8rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.cc-rules .cc-card { min-height: 0; }
.cc-rules__mock { margin-top: 1.1rem; background: var(--cc-color-app-bg);
  border: 1px solid var(--cc-color-panel-border); border-radius: 10px; padding: .8rem .9rem;
  font: 500 .8rem/1.45 var(--cc-font); color: var(--cc-color-body);
  display: flex; align-items: center; gap: .6rem; }
.cc-dot { width: 8px; height: 8px; border-radius: 50%; flex: none; background: var(--cc-green);
  box-shadow: 0 0 8px var(--cc-green); animation: cc-dot-pulse 2.4s ease-in-out infinite; }
.cc-dot--amber { background: var(--cc-orange, #ffc266); box-shadow: 0 0 8px #ffc266; }
@keyframes cc-dot-pulse { 50% { opacity: .55; } }

/* ---------- .cc-request: the demo-request section and its form ---------- */
.cc-request { padding: 6rem 0 7rem; }
.cc-request__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: center; }
.cc-form { background: var(--cc-color-bg); border: 1px solid var(--cc-color-panel-border);
  border-radius: 16px; padding: 1.8rem 1.7rem; position: relative; overflow: hidden; }
.cc-form::before { content: ''; position: absolute; inset: -1px; pointer-events: none;
  background: radial-gradient(500px circle at var(--cc-glow-x, 80%) var(--cc-glow-y, -10%),
    color-mix(in srgb, var(--cc-color-primary) 10%, transparent), transparent 60%); }
.cc-form__tag { color: var(--cc-color-muted); font: 600 10.5px/1 var(--cc-font); letter-spacing: .15em; text-transform: uppercase; }
.cc-form h3 { margin-top: .8rem; font: 650 1.5rem/1.2 var(--cc-font); letter-spacing: -.02em; }
.cc-form > p { margin-top: .6rem; color: var(--cc-color-body); font: 400 .93rem/1.6 var(--cc-font); }
.cc-form label { display: block; margin-top: 1rem; color: var(--cc-color-muted); font: 600 .78rem/1 var(--cc-font); }
.cc-form input, .cc-form textarea { width: 100%; margin-top: .45rem;
  background: var(--cc-color-app-bg); border: 1.5px solid var(--cc-color-panel-border);
  border-radius: 10px; padding: .8rem .95rem; color: var(--cc-color-fg);
  font: 500 .92rem/1.3 var(--cc-font); outline: none; resize: vertical;
  transition: border-color var(--cc-motion-base) var(--cc-motion-ease); }
.cc-form input:focus-visible, .cc-form textarea:focus-visible { border-color: var(--cc-color-primary); }
.cc-form button { margin-top: 1.3rem; width: 100%; background: var(--cc-color-primary);
  color: var(--cc-color-primary-fg); border: 0; border-radius: 10px; padding: .95rem;
  font: 600 1rem/1 var(--cc-font); cursor: pointer;
  transition: background var(--cc-motion-base) var(--cc-motion-ease); }
.cc-form button:hover { background: var(--cc-color-primary-hover); }
.cc-form small { display: block; margin-top: .8rem; text-align: center; color: var(--cc-color-muted); font: 400 .78rem/1.4 var(--cc-font); }

/* ---------- .cc-footer ---------- */
.cc-footer { border-top: 1px solid color-mix(in srgb, var(--cc-color-panel-border) 60%, transparent);
  padding: 4.5rem 0 2.5rem; background: color-mix(in srgb, var(--cc-color-bg) 40%, var(--cc-color-app-bg)); }
.cc-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; }
.cc-footer__brand { display: flex; align-items: center; gap: .6rem; color: var(--cc-color-fg);
  font: 600 1.2rem/1 var(--cc-font); letter-spacing: -.02em; text-decoration: none; }
/* flex: none - the img is a flex item, and default flex-shrink would
   squish the logo before letting text overflow. The mark never deforms. */
.cc-footer__brand img { width: 48px; height: 28px; flex: none; }
.cc-footer__brand + p { margin-top: 1rem; color: var(--cc-color-muted); font: 400 .88rem/1.6 var(--cc-font); max-width: 20rem; }
.cc-footer h4 { color: var(--cc-color-muted); font: 600 11px/1 var(--cc-font); letter-spacing: .15em; text-transform: uppercase; }
.cc-footer ul { list-style: none; margin-top: 1.1rem; display: flex; flex-direction: column; gap: .7rem; }
.cc-footer ul a { color: var(--cc-color-body); font: 500 .92rem/1.3 var(--cc-font); text-decoration: none;
  transition: color var(--cc-motion-fast) var(--cc-motion-ease); }
.cc-footer ul a:hover { color: var(--cc-color-fg); }
.cc-footer__base { margin-top: 3.2rem; padding-top: 1.6rem;
  border-top: 1px solid color-mix(in srgb, var(--cc-color-panel-border) 55%, transparent);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
  color: var(--cc-color-muted); font: 400 .82rem/1.4 var(--cc-font); }
.cc-footer__base a { color: var(--cc-color-muted); text-decoration: none; margin-left: 1.4rem; }
.cc-footer__base a:hover { color: var(--cc-color-fg); }


.cc-marquee__item { display: inline-flex; align-items: center; gap: .8rem;
  color: color-mix(in srgb, var(--cc-color-fg) 55%, transparent);
  font: 600 1.15rem/1 var(--cc-font); letter-spacing: -.01em; white-space: nowrap;
  transition: color .25s var(--cc-motion-ease); }
.cc-marquee__item img { width: 40px; height: 40px; border-radius: 10px; object-fit: cover; flex: none;
  filter: grayscale(1) brightness(1.06) contrast(.92); opacity: .78;
  transition: filter .3s var(--cc-motion-ease), opacity .3s var(--cc-motion-ease); }
.cc-marquee__item:hover { color: var(--cc-color-fg); }
.cc-marquee__item:hover img { filter: none; opacity: 1; }

@media (max-width: 900px) {
  .cc-pillars__grid, .cc-problem__grid, .cc-rules__grid { grid-template-columns: 1fr; }
  .cc-pipeline__grid { grid-template-columns: 1fr; }
  .cc-pipeline__stage { min-height: 0; }
  .cc-request__grid { grid-template-columns: 1fr; }
  .cc-footer__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 2rem; }
  /* The brand gets its own row. In a half-width track the lockup - a logo
     plus one unbreakable word - was clamped to the track while its INK
     painted on: at normal text it hid inside the column gap, and any Android
     text enlargement pushed it into the "Platform" column. Element boxes
     measured fine throughout, which is how it survived the overflow gate;
     only the painted text collided. */
  .cc-footer__grid > div:first-child { grid-column: 1 / -1; }
  .cc-kpis { grid-template-columns: repeat(2, 1fr); }
  .cc-pillars { padding: 4rem 0 4.5rem; }
  .cc-pipeline { padding: 4rem 0 4.5rem; }
  .cc-problem, .cc-rules { padding: 4rem 0 4.5rem; }
  .cc-request { padding: 4rem 0 5rem; }
}
.state{fill:#182148;stroke:#39457e;stroke-width:.6}.borders{stroke:#39457e;stroke-width:.7;fill:none}.dccircle{display:none}.separator1,.separator2{stroke:#39457e;stroke-width:.7;fill:none}  .cc-demo__nav { display: none; }
  @media (max-width: 900px) {
    .cc-features { display: none !important; }
    .cc-demo__nav { display: flex; flex-direction: column; align-items: center; gap: .45rem;
      margin: 0 0 .8rem; order: -1; }
    .cc-demo__dots { display: flex; gap: .55rem; }
    .cc-demo__dots button { width: 9px; height: 9px; border-radius: 50%; border: 0; padding: 0;
      background: color-mix(in srgb, var(--cc-color-muted) 40%, transparent);
      transition: background .25s var(--cc-motion-ease), transform .25s var(--cc-motion-ease); }
    .cc-demo__dots button.is-on { background: var(--cc-color-primary); transform: scale(1.35); }
    .cc-demo__label { color: var(--cc-color-body); font: 600 .86rem/1 var(--cc-font);
      letter-spacing: .01em; }
    .cc-dive { height: 230vh !important; }
    .cc-platform__copy h2 { margin-bottom: .4rem; }
    .cc-demo-link { margin: .9rem 0 0; }
  }

/* ---------- universities page ---------- */
.cc-pagehero { position: relative; padding: 11rem 0 6rem; overflow: hidden;
  background:
    radial-gradient(52% 42% at 72% 8%, color-mix(in srgb, var(--cc-color-primary) 12%, transparent), transparent 70%),
    radial-gradient(40% 34% at 14% 30%, color-mix(in srgb, var(--cc-teal) 7%, transparent), transparent 70%),
    var(--cc-color-app-bg); }
.cc-pagehero::before { content: ''; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: radial-gradient(circle, color-mix(in srgb, var(--cc-color-muted) 20%, transparent) .6px, transparent .6px);
  background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(60% 60% at 50% 30%, #000, transparent);
  mask-image: radial-gradient(60% 60% at 50% 30%, #000, transparent); }
.cc-pagehero h1 { margin-top: 1.2rem; font-weight: 650; font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: -.035em; line-height: 1.06; max-width: 56rem; text-wrap: balance; }
.cc-pagehero .cc-lede { max-width: 44rem; font-size: clamp(1.02rem, 1.5vw, 1.18rem); }
.cc-pagehero__cta { margin-top: 2rem; display: flex; gap: .8rem; flex-wrap: wrap; }

/* .cc-compare: reporting season vs every day */
.cc-compare { padding: 5.5rem 0 6rem; }
.cc-compare__grid { margin-top: 2.6rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; align-items: start; }
.cc-compare__col { border-radius: 18px; padding: 1.7rem 1.6rem; border: 1px solid var(--cc-color-panel-border); }
.cc-compare__col--today { background: color-mix(in srgb, #ff7c9c 4%, var(--cc-color-bg)); }
.cc-compare__col--connected { background: color-mix(in srgb, var(--cc-color-primary) 6%, var(--cc-color-bg)); }
.cc-compare__tag { font: 600 10.5px/1 var(--cc-font); letter-spacing: .16em; text-transform: uppercase; }
.cc-compare__col--today .cc-compare__tag { color: #ff9cb4; }
.cc-compare__col--connected .cc-compare__tag { color: var(--cc-color-primary); }
.cc-compare__col h3 { margin-top: .7rem; font: 650 1.5rem/1.2 var(--cc-font); letter-spacing: -.02em; }
.cc-compare__item { display: grid; grid-template-columns: auto 1fr; gap: 1rem; padding: 1.15rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--cc-color-panel-border) 65%, transparent); }
.cc-compare__item:last-child { border-bottom: 0; padding-bottom: .3rem; }
.cc-compare__item i { font: 650 .8rem/1 var(--cc-font); font-style: normal; padding-top: .25rem;
  color: var(--cc-color-muted); font-variant-numeric: tabular-nums; }
.cc-compare__col--connected .cc-compare__item i { color: var(--cc-color-primary); }
.cc-compare__item b { display: block; font: 650 1.05rem/1.3 var(--cc-font); letter-spacing: -.01em; }
.cc-compare__item p { margin-top: .35rem; color: var(--cc-color-body); font: 400 .92rem/1.55 var(--cc-font); }

/* .cc-workspace and the .ws-* career-office mock inside it */
.cc-workspace { padding: 5.5rem 0 6.5rem;
  background: linear-gradient(180deg, transparent, color-mix(in srgb, var(--cc-color-bg) 55%, transparent) 20%,
    color-mix(in srgb, var(--cc-color-bg) 55%, transparent) 80%, transparent); }
.cc-workspace__frame { margin-top: 2.8rem; background: linear-gradient(180deg, #1b2244, #0e1226);
  border: 1px solid #2b3560; border-radius: 16px; padding: clamp(7px, .8vw, 11px);
  box-shadow: 0 30px 70px rgba(6, 9, 23, .5), 0 0 50px rgba(138, 173, 212, .1); }
.ws-app { background: var(--cc-color-app-bg); border-radius: 9px; overflow: hidden;
  display: flex; min-height: 34rem; }
.ws-rail { width: 216px; flex: none; background: var(--cc-color-bg);
  border-right: 1px solid var(--cc-color-panel-border); padding: 1.2rem .8rem; }
.ws-rail__brand { display: flex; align-items: center; gap: .55rem; font: 600 .95rem/1 var(--cc-font);
  padding: .3rem .6rem 1.1rem; }
.ws-rail__brand img { width: 37px; height: 22px; }
.ws-rail button { display: flex; align-items: center; gap: .65rem; width: 100%;
  border: 0; background: none; cursor: pointer; text-align: left;
  color: var(--cc-color-muted); font: 500 .9rem/1 var(--cc-font);
  padding: .68rem .8rem; border-radius: 9px;
  transition: background .25s var(--cc-motion-ease), color .25s var(--cc-motion-ease); }
.ws-rail button i { width: 14px; height: 14px; border-radius: 4px; flex: none;
  border: 1.5px solid currentColor; opacity: .7; font-style: normal; }
.ws-rail button:hover { color: var(--cc-color-fg); }
.ws-rail button.is-on { background: color-mix(in srgb, var(--cc-color-primary) 15%, transparent);
  color: var(--cc-color-fg); }
.ws-rail__note { margin-top: 1.2rem; padding: .8rem; border-radius: 9px;
  background: var(--cc-color-app-bg); border: 1px solid var(--cc-color-panel-border);
  color: var(--cc-color-muted); font: 400 .72rem/1.5 var(--cc-font); }
.ws-main { flex: 1; min-width: 0; position: relative; padding: 1.4rem 1.5rem; }
.ws-view { position: absolute; inset: 1.4rem 1.5rem; opacity: 0; transform: translateY(10px);
  pointer-events: none; transition: opacity .4s var(--cc-motion-ease), transform .4s var(--cc-motion-ease);
  display: flex; flex-direction: column; gap: 1rem; }
.ws-view.is-on { position: relative; inset: auto; opacity: 1; transform: none; pointer-events: auto; }
.ws-view__title { display: flex; justify-content: space-between; align-items: baseline; }
.ws-view__title b { font: 650 1.1rem/1 var(--cc-font); letter-spacing: -.015em; }
.ws-view__title span { color: var(--cc-green); font: 600 .7rem/1 var(--cc-font); letter-spacing: .13em; text-transform: uppercase; }
.ws-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem; }
.ws-kpi { background: var(--cc-color-panel); border: 1px solid var(--cc-color-panel-border);
  border-radius: 12px; padding: 1rem 1.1rem; }
.ws-kpi b { display: block; font: 700 1.7rem/1.1 var(--cc-font); letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.ws-kpi span { display: block; margin-top: .3rem; color: var(--cc-color-muted); font: 500 .72rem/1.3 var(--cc-font); }
.ws-kpi em { display: block; margin-top: .35rem; color: var(--cc-green); font: 600 .7rem/1.3 var(--cc-font); font-style: normal; }
.ws-two { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; flex: 1; min-height: 0; }
.ws-panel { background: var(--cc-color-panel); border: 1px solid var(--cc-color-panel-border);
  border-radius: 12px; padding: 1.1rem 1.2rem; display: flex; flex-direction: column; min-width: 0; }
.ws-panel__label { color: var(--cc-color-muted); font: 600 10.5px/1 var(--cc-font);
  letter-spacing: .13em; text-transform: uppercase; margin-bottom: .95rem;
  display: flex; justify-content: space-between; }
.ws-panel__label em { font-style: normal; color: var(--cc-orange, #ffc266); }
.ws-bar { display: grid; grid-template-columns: 96px 1fr 44px; gap: .8rem; align-items: center; padding: .5rem 0; }
.ws-bar span { color: var(--cc-color-body); font: 500 .86rem/1 var(--cc-font); }
.ws-bar .cc-track { height: 7px; border-radius: 999px; background: var(--cc-color-app-bg); overflow: hidden; }
.ws-bar .cc-track i { display: block; height: 100%; width: 0; border-radius: inherit;
  background: var(--cc-bar, var(--cc-teal)); transition: width 1.1s var(--cc-motion-ease) .2s; }
.ws-view.is-on .cc-track i { width: var(--cc-fill); }
.ws-bar b { font: 600 .88rem/1 var(--cc-font); text-align: right; font-variant-numeric: tabular-nums; }
.ws-stat { display: flex; align-items: center; justify-content: space-between; gap: .8rem;
  background: var(--cc-color-app-bg); border: 1px solid var(--cc-color-panel-border);
  border-radius: 10px; padding: .75rem .9rem; margin-top: .55rem; }
.ws-stat:first-of-type { margin-top: 0; }
.ws-stat b { font: 600 .88rem/1.3 var(--cc-font); display: block; }
.ws-stat small { color: var(--cc-color-muted); font: 400 .74rem/1.35 var(--cc-font); display: block; }
.ws-stat .ws-figure { font: 700 1.25rem/1 var(--cc-font); color: var(--cc-status, var(--cc-green)); font-variant-numeric: tabular-nums; }
.ws-event { border-left: 3px solid var(--cc-status); background: var(--cc-color-app-bg);
  border-radius: 8px; padding: .8rem .95rem; margin-top: .55rem; }
.ws-event:first-of-type { margin-top: 0; }
.ws-event b { display: block; font: 650 .88rem/1.35 var(--cc-font); }
.ws-event small { display: block; margin-top: .25rem; color: var(--cc-color-muted); font: 400 .76rem/1.45 var(--cc-font); }
.ws-event .ws-tag { font: 700 .62rem/1 var(--cc-font); letter-spacing: .12em; color: var(--cc-status); }
.ws-row { display: flex; align-items: center; gap: .8rem; padding: .55rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--cc-color-panel-border) 55%, transparent); }
.ws-row:last-child { border-bottom: 0; }
.ws-row .ws-logo { width: 30px; height: 30px; border-radius: 8px; object-fit: cover; flex: none;
  filter: grayscale(.4); }
.ws-row .ws-avatar { width: 30px; height: 30px; border-radius: 50%; flex: none; display: grid; place-items: center;
  background: color-mix(in srgb, var(--cc-color-primary) 25%, var(--cc-color-panel));
  font: 600 .68rem/1 var(--cc-font); }
.ws-row b { font: 600 .86rem/1.25 var(--cc-font); display: block; }
.ws-row small { color: var(--cc-color-muted); font: 400 .74rem/1.3 var(--cc-font); }
.ws-row .ws-value { margin-left: auto; color: var(--cc-green); font: 650 .84rem/1 var(--cc-font); font-variant-numeric: tabular-nums; }

/* .cc-closer: the closing call-to-action band */
.cc-closer { padding: 5.5rem 0 7rem; }
.cc-closer__band { position: relative; overflow: hidden; border-radius: 20px;
  border: 1px solid color-mix(in srgb, var(--cc-color-primary) 30%, var(--cc-color-panel-border));
  background:
    radial-gradient(60% 120% at 85% 0%, color-mix(in srgb, var(--cc-color-primary) 16%, transparent), transparent 60%),
    radial-gradient(50% 110% at 10% 100%, color-mix(in srgb, var(--cc-teal) 9%, transparent), transparent 60%),
    var(--cc-color-bg);
  padding: clamp(2.2rem, 5vw, 3.8rem); text-align: center; }
.cc-closer__band h2 { margin: .9rem auto 0; max-width: 34rem; }
.cc-closer__band .cc-lede { margin-inline: auto; }
.cc-closer__btns { margin-top: 1.9rem; display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }

@media (max-width: 900px) {
  .cc-pagehero { padding: 8.5rem 0 4rem; }
  .cc-compare__grid, .ws-two { grid-template-columns: 1fr; }
  .ws-kpis { grid-template-columns: repeat(2, 1fr); }
  .ws-app { flex-direction: column; min-height: 0; }
  .ws-rail { width: 100%; display: flex; gap: .3rem; overflow-x: auto; padding: .7rem;
    border-right: 0; border-bottom: 1px solid var(--cc-color-panel-border); }
  .ws-rail__brand, .ws-rail__note { display: none; }
  .ws-rail button { width: auto; white-space: nowrap; }
  .cc-compare, .cc-workspace { padding: 3.6rem 0 4rem; }
}
