@font-face {
    font-family: "Inter";
    src: url("/static/img/brand/v2/fonts/inter-latin-wght-normal.woff2") format("woff2");
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
}

@font-face {
    font-family: "Ocean Display";
    src: url("/static/img/brand/v2/fonts/eb-garamond-latin-500-italic.ttf") format("truetype");
    font-style: italic;
    font-weight: 500;
    font-display: swap;
}

:root {
    color-scheme: light dark;
    --ic-page: var(--color-v2-page);
    --ic-surface: var(--color-v2-surface);
    --ic-surface-muted: var(--color-v2-surface-muted);
    --ic-text: var(--color-v2-text);
    --ic-text-soft: var(--color-v2-text-soft);
    --ic-text-faint: var(--color-v2-text-faint);
    --ic-line: var(--color-v2-line);
    --ic-line-strong: var(--color-v2-line-strong);
    --ic-accent: var(--color-v2-accent-text);
    --ic-accent-hover: var(--color-v2-accent-text-hover);
    --ic-accent-action: var(--color-v2-accent-action);
    --ic-accent-action-hover: var(--color-v2-accent-action-hover);
    --ic-accent-soft: var(--color-v2-accent-soft);
    --ic-accent-on-action: var(--color-v2-accent-on-action);
    --ic-focus-ring: var(--color-v2-focus-ring);
    --ic-green: var(--color-v2-live);
    --ic-green-soft: var(--color-v2-live-soft);
    --ic-code-key: var(--color-v2-code-key);
    --ic-code-string: var(--color-v2-code-string);
    --ic-code-number: var(--color-v2-code-number);
    --ic-code-literal: var(--color-v2-code-literal);
    --ic-code-comment: var(--color-v2-code-comment);
    --ic-code-title: var(--color-v2-code-title);
    --ic-code-punctuation: var(--color-v2-code-punctuation);
    --ic-code-surface: var(--color-v2-code-surface);
    --ic-header-backdrop: var(--color-v2-header-backdrop);
    --ic-shadow: var(--effect-v2-shadow-ambient);
    --ic-max: 1240px;
    --ic-radius: 8px;
    --ic-font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --ic-ocean-font: "Ocean Display", "EB Garamond", Georgia, serif;
    --ic-mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--ic-page);
}

body.ic-v2-body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background: var(--ic-page);
    color: var(--ic-text);
    font-family: var(--ic-font);
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

button,
input,
textarea {
    font: inherit;
}

a {
    color: inherit;
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.ic-v2-skip {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 9999;
    padding: 10px 14px;
    border-radius: 6px;
    background: var(--ic-text);
    color: var(--ic-page);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transform: translateY(-160%);
    transition: transform 160ms ease;
}

.ic-v2-skip:focus {
    transform: translateY(0);
}

.ic-v2-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid transparent;
    background: var(--ic-header-backdrop);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.ic-v2-header.is-scrolled {
    border-color: var(--ic-line);
    box-shadow: var(--effect-v2-shadow-header);
}

.ic-v2-header__inner {
    width: min(1344px, calc(100% - 96px));
    min-height: 74px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(210px, 1fr) auto auto;
    align-items: center;
    gap: 20px;
    padding-inline: 22px;
    border-inline: 1px solid var(--ic-line);
}

.ic-v2-logo {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    text-decoration: none;
}

.ic-v2-logo img {
    display: block;
    width: 178px;
    height: auto;
    max-height: 34px;
    object-fit: contain;
    object-position: left center;
}

.ic-v2-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 4px;
}

.ic-v2-nav__group {
    position: relative;
}

.ic-v2-nav__link {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 10px;
    border: 0;
    border-radius: 2px;
    background: transparent;
    color: var(--ic-text-soft);
    font-family: var(--ic-mono);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 150ms ease, color 150ms ease;
}

.ic-v2-nav__link:hover,
.ic-v2-nav__link:focus-visible,
.ic-v2-nav__link[aria-expanded="true"] {
    background: transparent;
    color: var(--ic-text);
    outline: none;
}

.ic-v2-nav__link i {
    font-size: 12px;
    transition: transform 150ms ease;
}

.ic-v2-nav__link[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.ic-v2-products-menu {
    position: absolute;
    top: calc(100% + 17px);
    left: -12px;
    width: 390px;
    padding: 8px;
    border: 1px solid var(--ic-line);
    border-radius: 4px;
    background: var(--ic-surface);
    box-shadow: var(--ic-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 150ms ease, transform 150ms ease, visibility 150ms ease;
}

.ic-v2-products-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ic-v2-products-menu a,
.ic-v2-products-menu__item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    padding: 10px;
    border-radius: 2px;
    color: var(--ic-text);
    text-decoration: none;
    transition: background-color 150ms ease;
}

.ic-v2-products-menu__item {
    margin-top: 4px;
    border-top: 1px solid var(--ic-line);
}

.ic-v2-products-menu__item.is-disabled {
    color: var(--ic-text-soft);
    cursor: default;
}

.ic-v2-products-menu a:hover,
.ic-v2-products-menu a:focus-visible {
    background: var(--ic-surface-muted);
    outline: none;
}

.ic-v2-products-menu__identity,
.ic-v2-products-menu small {
    display: block;
}

.ic-v2-products-menu__identity--epoch {
    display: flex;
    align-items: center;
    gap: 9px;
}

.ic-v2-products-menu__identity--epoch strong {
    display: block;
    color: var(--ic-text);
    font-size: 17px;
    font-weight: 650;
    letter-spacing: -0.025em;
}

.ic-v2-products-menu__identity--epoch small {
    margin-top: 1px;
}

.ic-v2-epoch-mark {
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border: 1px solid var(--ic-line);
    border-radius: 7px;
    background: var(--ic-surface-muted);
    color: var(--ic-text-faint);
}

.ic-v2-epoch-mark i {
    font-size: 17px;
}

.ic-v2-products-menu small {
    margin-top: 2px;
    color: var(--ic-text-faint);
    font-size: 11px;
    line-height: 1.35;
}

.ic-v2-menu-badge {
    padding: 4px 6px;
    border: 1px solid var(--ic-line);
    border-radius: 4px;
    color: var(--ic-accent);
    font-family: var(--ic-mono);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ic-v2-ocean-lockup {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.ic-v2-ocean-mark {
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border: 1px solid var(--ic-line);
    border-radius: 7px;
    background: var(--ic-accent-soft);
    color: var(--ic-accent);
}

.ic-v2-ocean-mark i {
    font-size: 17px;
}

.ic-v2-ocean-wordmark {
    margin: 0;
    color: var(--ic-text);
    font-family: var(--ic-ocean-font);
    font-size: 34px;
    font-style: italic;
    font-weight: 500;
    letter-spacing: -0.045em;
    line-height: 0.82;
}

.ic-v2-ocean-lockup--menu {
    gap: 9px;
}

.ic-v2-ocean-lockup--menu .ic-v2-ocean-wordmark {
    font-size: 29px;
}

.ic-v2-products-menu__identity > small {
    margin: 6px 0 0 41px;
}

.ic-v2-ocean-lockup--nav {
    gap: 12px;
}

.ic-v2-ocean-lockup--nav .ic-v2-ocean-mark {
    width: 40px;
    height: 40px;
}

.ic-v2-ocean-lockup--nav .ic-v2-ocean-mark i {
    font-size: 21px;
}

.ic-v2-ocean-lockup--nav .ic-v2-ocean-wordmark {
    font-size: clamp(39px, 10vw, 48px);
}

.ic-v2-ocean-lockup--hero {
    gap: 20px;
}

.ic-v2-ocean-lockup--hero .ic-v2-ocean-mark {
    width: 68px;
    height: 68px;
    border-radius: 14px;
}

.ic-v2-ocean-lockup--hero .ic-v2-ocean-mark i {
    font-size: 34px;
}

.ic-v2-ocean-lockup--hero .ic-v2-ocean-wordmark {
    font-size: clamp(88px, 9.5vw, 132px);
}

.ic-v2-ocean-lockup--product {
    gap: 14px;
    margin-bottom: 28px;
}

.ic-v2-ocean-lockup--product .ic-v2-ocean-mark {
    width: 50px;
    height: 50px;
    border-radius: 11px;
}

.ic-v2-ocean-lockup--product .ic-v2-ocean-mark i {
    font-size: 25px;
}

.ic-v2-ocean-lockup--product .ic-v2-ocean-wordmark {
    font-size: 56px;
}

.ic-v2-menu-note {
    margin: 4px 10px 2px;
    padding-top: 10px;
    border-top: 1px solid var(--ic-line);
    color: var(--ic-text-faint);
    font-family: var(--ic-mono);
    font-size: 9px;
    letter-spacing: 0.02em;
}

.ic-v2-button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 20px;
    border: 1px solid var(--ic-accent-action);
    border-radius: 6px;
    background: var(--ic-accent-action);
    color: var(--ic-accent-on-action);
    font-size: 14px;
    font-weight: 650;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    box-shadow: var(--effect-v2-shadow-action);
    transition: background-color 150ms ease, border-color 150ms ease, transform 150ms ease,
        box-shadow 150ms ease;
}

.ic-v2-button:hover {
    border-color: var(--ic-accent-action-hover);
    background: var(--ic-accent-action-hover);
    box-shadow: var(--effect-v2-shadow-action-hover);
    transform: translateY(-1px);
}

.ic-v2-button:focus-visible,
.ic-v2-domain-tab:focus-visible,
.ic-v2-console button:focus-visible {
    outline: 3px solid var(--ic-focus-ring);
    outline-offset: 3px;
}

.ic-v2-button i {
    font-size: 16px;
}

.ic-v2-button--header {
    min-height: 44px;
    margin-left: 8px;
    padding-inline: 18px;
    border-color: var(--ic-accent-action);
    border-radius: 999px;
    background: var(--ic-accent-action);
    color: var(--ic-accent-on-action);
    box-shadow: var(--effect-v2-shadow-action);
}

.ic-v2-button--header:hover {
    border-color: var(--ic-accent-action-hover);
    background: var(--ic-accent-action-hover);
    color: var(--ic-accent-on-action);
    box-shadow: var(--effect-v2-shadow-action-hover);
}

.ic-v2-header__actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ic-v2-header-action {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    border: 1px solid transparent;
    border-radius: 3px;
    font-family: var(--ic-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 150ms ease, background-color 150ms ease, border-color 150ms ease;
}

.ic-v2-header-action:hover,
.ic-v2-header-action:focus-visible {
    outline: none;
    transform: translateY(-1px);
}

.ic-v2-header-action--secondary {
    border-color: var(--ic-text);
    background: var(--ic-text);
    color: var(--ic-page);
}

.ic-v2-header-action--secondary:hover,
.ic-v2-header-action--secondary:focus-visible {
    background: var(--ic-text-soft);
    border-color: var(--ic-text-soft);
}

.ic-v2-header-action--primary {
    border-color: var(--ic-accent-action);
    background: var(--ic-accent-action);
    color: var(--ic-accent-on-action);
}

.ic-v2-header-action--primary:hover,
.ic-v2-header-action--primary:focus-visible {
    border-color: var(--ic-accent-action-hover);
    background: var(--ic-accent-action-hover);
}

.ic-v2-button--secondary {
    border-color: var(--ic-line-strong);
    background: transparent;
    color: var(--ic-text);
    box-shadow: none;
}

.ic-v2-button--secondary:hover {
    border-color: var(--ic-text-faint);
    background: var(--ic-surface);
    color: var(--ic-text);
    box-shadow: none;
}

.ic-v2-mobile-trigger,
.ic-v2-mobile-nav {
    display: none;
}

.ic-v2-main {
    width: min(1344px, calc(100% - 96px));
    margin: 0 auto;
    padding: 0 22px 48px;
    border-inline: 1px solid var(--ic-line);
}

.ic-v2-hero {
    min-height: 420px;
    display: flex;
    align-items: center;
    padding: 72px 0 56px;
}

.ic-v2-hero--company {
    position: relative;
    min-height: 548px;
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(580px, 1.12fr);
    align-items: center;
    gap: 0;
    padding-block: 82px 50px;
}

.ic-v2-hero__copy {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 540px;
}

.ic-v2-eyebrow {
    margin: 0 0 20px;
    color: var(--ic-accent);
    font-family: var(--ic-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ic-v2-hero h1,
.ic-v2-product-hero h1 {
    margin: 0;
    color: var(--ic-text);
    font-size: clamp(56px, 6vw, 84px);
    font-weight: 690;
    letter-spacing: -0.058em;
    line-height: 0.97;
}

.ic-v2-hero--company h1 {
    width: auto;
    max-width: 540px;
    font-size: clamp(56px, 5.25vw, 76px);
    line-height: 0.96;
}

.ic-v2-hero__vision {
    font-style: oblique 7deg;
}

.ic-v2-hero__lede {
    max-width: 540px;
    margin: 24px 0 0;
    color: var(--ic-text-soft);
    font-size: clamp(17px, 1.7vw, 21px);
    line-height: 1.52;
}

.ic-v2-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.ic-v2-hero-system {
    overflow: hidden;
    border: 1px solid var(--ic-line);
    border-radius: 7px;
    background: var(--ic-surface);
    box-shadow: var(--effect-v2-shadow-soft);
}

.ic-v2-knowledge-stream {
    --stream-now-x: 48%;
    position: relative;
    z-index: 1;
    width: calc(100% + 90px);
    height: 430px;
    margin-left: -75px;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
    isolation: isolate;
}

.ic-v2-knowledge-stream__canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.ic-v2-knowledge-stream__times,
.ic-v2-knowledge-stream__now,
.ic-v2-knowledge-stream__stages,
.ic-v2-knowledge-stream__json,
.ic-v2-knowledge-stream__agent {
    position: absolute;
    z-index: 2;
    color: var(--ic-text-faint);
    font-family: var(--ic-mono);
    font-size: 8px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ic-v2-knowledge-stream__stages {
    top: auto;
    right: 0;
    bottom: 28px;
    left: 0;
    color: var(--ic-text-faint);
    font-size: 8px;
}

.ic-v2-knowledge-stream__stage,
.ic-v2-knowledge-stream__stage strong,
.ic-v2-knowledge-stream__stage small {
    display: block;
}

.ic-v2-knowledge-stream__stage {
    position: absolute;
    text-align: center;
}

.ic-v2-knowledge-stream__stage strong {
    color: var(--ic-text-soft);
    font-size: 9px;
    letter-spacing: 0.08em;
}

.ic-v2-knowledge-stream__stage small {
    margin: 5px auto 0;
    max-width: 126px;
    color: var(--ic-text-faint);
    font-size: 7px;
    letter-spacing: 0.02em;
    line-height: 1.5;
    text-transform: none;
}

.ic-v2-knowledge-stream__stage--live {
    left: 5%;
    width: 35%;
}

.ic-v2-knowledge-stream__stage--fresh {
    left: 51%;
    width: 15%;
}

.ic-v2-knowledge-stream__stage--sources {
    left: 67%;
    width: 17%;
}

.ic-v2-knowledge-stream__stage--ready {
    left: 85%;
    width: 15%;
}

.ic-v2-knowledge-stream__times {
    top: 14px;
    right: 0;
    bottom: auto;
    left: 0;
    height: 12px;
    color: var(--ic-text-faint);
    font-size: 9px;
    opacity: 0.94;
}

.ic-v2-knowledge-stream__times time {
    position: absolute;
    top: 0;
    display: block;
    font: inherit;
    transform: translateX(-50%);
}

.ic-v2-knowledge-stream__times time:nth-child(1) {
    left: 4%;
}

.ic-v2-knowledge-stream__times time:nth-child(2) {
    left: 16%;
}

.ic-v2-knowledge-stream__times time:nth-child(3) {
    left: 28%;
}

.ic-v2-knowledge-stream__times time:nth-child(4) {
    left: 40%;
}

.ic-v2-knowledge-stream__now {
    top: 56px;
    bottom: 54px;
    left: var(--stream-now-x);
    width: 1px;
    border-left: 1px solid var(--ic-accent-action);
    color: var(--ic-accent);
}

.ic-v2-knowledge-stream__now span {
    position: absolute;
    left: 50%;
    display: block;
    transform: translateX(-50%);
    white-space: nowrap;
}

.ic-v2-knowledge-stream__now span {
    top: -42px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.11em;
}

.ic-v2-knowledge-stream__now::after {
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 8px;
    height: 8px;
    border: 1px solid var(--ic-accent-action);
    border-radius: 50%;
    background: var(--ic-page);
    content: "";
    transform: translateX(-50%);
}

.ic-v2-knowledge-stream__json {
    top: 142px;
    left: 54.5%;
    width: 26.5%;
    min-height: 142px;
    padding: 9px 10px 8px;
    color: var(--ic-accent);
    text-transform: none;
}

.ic-v2-knowledge-stream__json > small {
    display: block;
    font: inherit;
    font-size: 8px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ic-v2-knowledge-stream__json pre {
    margin: 0;
    overflow: visible;
}

.ic-v2-knowledge-stream__json code,
.ic-v2-knowledge-stream__json code.hljs {
    display: block;
    padding: 0;
    background: transparent;
    color: var(--ic-accent-action);
    font-family: var(--ic-mono);
    font-size: 7.5px;
    line-height: 1.32;
    white-space: pre;
}

.ic-v2-knowledge-stream__json > small {
    margin-top: 8px;
    color: var(--ic-accent);
}

.ic-v2-knowledge-stream__source-dots {
    display: flex;
    flex-wrap: nowrap;
    gap: 3px;
    margin-top: 6px;
}

.ic-v2-knowledge-stream__source-dots i {
    width: 5px;
    height: 5px;
    flex: 0 0 5px;
    background: var(--ic-accent-action);
}

.ic-v2-knowledge-stream__agent {
    top: var(--stream-flow-y, 48%);
    right: 0.5%;
    width: 17%;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--ic-accent);
    transform: translateY(-7px);
}

.ic-v2-knowledge-stream__agent > i {
    margin-top: -1px;
    font-size: 17px;
}

.ic-v2-knowledge-stream__agent span,
.ic-v2-knowledge-stream__agent strong,
.ic-v2-knowledge-stream__agent small {
    display: block;
}

.ic-v2-knowledge-stream__agent strong {
    color: var(--ic-accent-action);
    font-size: 11px;
    letter-spacing: 0.07em;
    white-space: nowrap;
}

.ic-v2-knowledge-stream__agent small {
    margin-top: 7px;
    color: var(--ic-text-faint);
    font-size: 7px;
    line-height: 1.5;
}

.ic-v2-knowledge-field {
    overflow: hidden;
    border: 1px solid var(--ic-line);
    border-radius: 7px;
    background: var(--ic-surface);
    box-shadow: var(--effect-v2-shadow-soft);
}

.ic-v2-knowledge-field__bar,
.ic-v2-knowledge-field__status {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0 14px;
    color: var(--ic-text-faint);
    font-family: var(--ic-mono);
    font-size: 9px;
    letter-spacing: 0.02em;
}

.ic-v2-knowledge-field__bar {
    border-bottom: 1px solid var(--ic-line);
}

.ic-v2-knowledge-field__bar span:first-child {
    color: var(--ic-accent);
    font-weight: 700;
    text-transform: uppercase;
}

.ic-v2-knowledge-field__bar i {
    margin-right: 5px;
    font-size: 7px;
}

.ic-v2-knowledge-field__stage {
    position: relative;
    min-height: 310px;
    background: var(--ic-code-surface);
}

.ic-v2-field-node {
    position: absolute;
    z-index: 2;
    width: 128px;
    min-height: 54px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px;
    border: 1px solid var(--ic-line);
    border-radius: 5px;
    background: var(--ic-surface);
    color: var(--ic-text-faint);
    box-shadow: 0 6px 18px transparent;
    transition: border-color 350ms ease, background-color 350ms ease, color 350ms ease,
        box-shadow 350ms ease, transform 350ms ease;
}

.ic-v2-field-node i {
    flex: 0 0 auto;
    font-size: 17px;
}

.ic-v2-field-node span,
.ic-v2-field-node strong,
.ic-v2-field-node small {
    display: block;
}

.ic-v2-field-node strong {
    color: var(--ic-text);
    font-size: 11px;
    line-height: 1.2;
}

.ic-v2-field-node small {
    margin-top: 2px;
    color: var(--ic-text-faint);
    font-family: var(--ic-mono);
    font-size: 6px;
    line-height: 1.4;
}

.ic-v2-field-node.is-active {
    border-color: var(--ic-accent-action);
    background: var(--ic-accent-soft);
    color: var(--ic-accent);
    box-shadow: 0 10px 28px var(--ic-focus-ring);
    transform: translateY(-3px);
}

.ic-v2-field-node--web { top: 36px; left: 22px; }
.ic-v2-field-node--private { top: 32px; right: 22px; }
.ic-v2-field-node--research { bottom: 34px; left: 22px; }
.ic-v2-field-node--memory { right: 22px; bottom: 38px; }

.ic-v2-field-path {
    position: absolute;
    z-index: 1;
    color: var(--ic-accent);
    font-size: 17px;
    opacity: .26;
    animation: field-flow 2.1s ease-in-out infinite;
}

.ic-v2-field-path--nw { top: 91px; left: 34%; }
.ic-v2-field-path--ne { top: 88px; right: 34%; animation-delay: 525ms; }
.ic-v2-field-path--sw { bottom: 88px; left: 34%; animation-delay: 1050ms; }
.ic-v2-field-path--se { right: 34%; bottom: 91px; animation-delay: 1575ms; }

.ic-v2-knowledge-core {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    width: 150px;
    min-height: 138px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 16px;
    border: 1px solid var(--ic-accent-action);
    border-radius: 50%;
    background: var(--ic-surface);
    box-shadow: 0 0 0 9px var(--ic-accent-soft), 0 16px 42px var(--ic-focus-ring);
    text-align: center;
    transform: translate(-50%, -50%);
    animation: knowledge-breathe 3.8s ease-in-out infinite;
}

.ic-v2-knowledge-core img {
    width: 27px;
    height: 27px;
    margin-bottom: 9px;
    object-fit: contain;
}

.ic-v2-knowledge-core strong {
    color: var(--ic-text);
    font-size: 14px;
    line-height: 1.08;
}

.ic-v2-knowledge-core small {
    margin-top: 7px;
    color: var(--ic-text-faint);
    font-family: var(--ic-mono);
    font-size: 6px;
    line-height: 1.4;
}

.ic-v2-knowledge-field__status {
    border-top: 1px solid var(--ic-line);
}

.ic-v2-knowledge-field__status span:first-child {
    color: var(--ic-text-soft);
}

.ic-v2-knowledge-field__status b {
    color: var(--ic-accent);
    font-weight: 700;
}

@keyframes field-flow {
    0%, 100% { opacity: .16; transform: scale(.86); }
    50% { opacity: .9; transform: scale(1.12); }
}

@keyframes knowledge-breathe {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.025); }
}

.ic-v2-hero-system__bar,
.ic-v2-hero-system__status {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0 14px;
    color: var(--ic-text-faint);
    font-family: var(--ic-mono);
    font-size: 9px;
    letter-spacing: 0.02em;
}

.ic-v2-hero-system__bar {
    border-bottom: 1px solid var(--ic-line);
}

.ic-v2-hero-system__bar span:first-child {
    color: var(--ic-accent);
    font-weight: 700;
    text-transform: uppercase;
}

.ic-v2-hero-system__bar i {
    margin-right: 5px;
    font-size: 7px;
}

.ic-v2-hero-system__flow {
    min-height: 310px;
    display: grid;
    grid-template-columns: minmax(130px, .9fr) minmax(118px, .72fr) minmax(158px, 1fr);
    align-items: stretch;
}

.ic-v2-hero-system__sources,
.ic-v2-hero-system__layer,
.ic-v2-hero-system__response {
    padding: 18px;
}

.ic-v2-hero-system__sources {
    display: grid;
    align-content: center;
    gap: 8px;
    border-right: 1px solid var(--ic-line);
}

.ic-v2-hero-system__sources > div {
    min-height: 62px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border: 1px solid transparent;
    border-radius: 5px;
    color: var(--ic-text-faint);
    transition: border-color 320ms ease, background-color 320ms ease, color 320ms ease,
        transform 320ms ease;
}

.ic-v2-hero-system__sources > div.is-active {
    border-color: var(--ic-line-strong);
    background: var(--ic-accent-soft);
    color: var(--ic-accent);
    transform: translateX(4px);
}

.ic-v2-hero-system__sources i {
    flex: 0 0 auto;
    font-size: 18px;
}

.ic-v2-hero-system__sources span,
.ic-v2-hero-system__sources strong,
.ic-v2-hero-system__sources small {
    display: block;
}

.ic-v2-hero-system__sources strong {
    color: var(--ic-text);
    font-size: 12px;
}

.ic-v2-hero-system__sources small {
    color: var(--ic-text-faint);
    font-family: var(--ic-mono);
    font-size: 7px;
}

.ic-v2-hero-system__layer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-right: 1px solid var(--ic-line);
    text-align: center;
}

.ic-v2-hero-system__layer .ic-v2-knowledge-mark {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    border: 1px solid var(--ic-accent-action);
    border-radius: 7px;
    border-color: var(--ic-accent-action);
    color: var(--ic-accent);
    animation: knowledge-pulse 2.8s ease-in-out infinite;
}

.ic-v2-hero-system__layer .ic-v2-knowledge-mark i {
    font-size: 27px;
}

.ic-v2-hero-system__layer strong {
    max-width: 110px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.15;
}

.ic-v2-hero-system__layer small {
    margin-top: 8px;
    color: var(--ic-text-faint);
    font-family: var(--ic-mono);
    font-size: 7px;
    line-height: 1.5;
}

.ic-v2-hero-system__response {
    display: flex;
    justify-content: center;
    flex-direction: column;
    background: var(--ic-code-surface);
}

.ic-v2-hero-system__response > span {
    margin-bottom: 16px;
    color: var(--ic-text-faint);
    font-family: var(--ic-mono);
    font-size: 8px;
    text-transform: uppercase;
}

.ic-v2-hero-system__response code {
    color: var(--ic-code-punctuation);
    font-family: var(--ic-mono);
    font-size: 9px;
    line-height: 1.7;
}

.ic-v2-hero-system__response b {
    color: var(--ic-code-string);
    font-weight: 500;
    transition: color 200ms ease;
}

.ic-v2-hero-system__status {
    border-top: 1px solid var(--ic-line);
}

.ic-v2-hero-system__status span:first-child {
    color: var(--ic-text-soft);
}

@keyframes knowledge-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 var(--ic-focus-ring); }
    48% { transform: scale(1.04); box-shadow: 0 0 0 8px transparent; }
}

.ic-v2-ocean-intro {
    padding: 96px 0 0;
    border-top: 1px solid var(--ic-line);
}

.ic-v2-ocean-intro__top {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 1.28fr);
    gap: 96px;
    align-items: start;
}

.ic-v2-ocean-intro__name > span {
    display: block;
    margin-bottom: 18px;
    color: var(--ic-accent);
    font-family: var(--ic-mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ic-v2-ocean-intro__name .ic-v2-ocean-wordmark {
    margin: 0;
    color: var(--ic-text);
}

.ic-v2-ocean-intro__story h3 {
    max-width: 640px;
    margin: 0;
    color: var(--ic-text);
    font-size: clamp(38px, 4.6vw, 64px);
    font-weight: 620;
    letter-spacing: -0.05em;
    line-height: 1.02;
}

.ic-v2-ocean-intro__story p {
    max-width: 610px;
    margin: 24px 0 0;
    color: var(--ic-text-soft);
    font-size: 17px;
    line-height: 1.6;
}

.ic-v2-ocean-intro__story > a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 28px;
    color: var(--ic-accent);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.ic-v2-ocean-intro__story > a i {
    transition: transform 150ms ease;
}

.ic-v2-ocean-intro__story > a:hover i {
    transform: translateX(3px);
}

.ic-v2-ocean-intro__principles {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 72px;
    border-top: 1px solid var(--ic-line);
    border-bottom: 1px solid var(--ic-line);
}

.ic-v2-ocean-intro__principles > div {
    min-height: 154px;
    display: grid;
    grid-template-columns: 34px 1fr;
    align-content: center;
    column-gap: 14px;
    padding: 26px 30px;
    border-right: 1px solid var(--ic-line);
}

.ic-v2-ocean-intro__principles > div:last-child {
    border-right: 0;
}

.ic-v2-ocean-intro__principles span {
    grid-row: 1 / 3;
    color: var(--ic-accent);
    font-family: var(--ic-mono);
    font-size: 10px;
    font-weight: 700;
}

.ic-v2-ocean-intro__principles .ic-v2-ocean-intro__principle-icon {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    align-self: start;
    margin-top: 1px;
    border: 1px solid var(--ic-line);
    border-radius: 7px;
    background: var(--ic-surface);
    font-family: inherit;
    font-size: 16px;
}

.ic-v2-ocean-intro__principles strong {
    color: var(--ic-text);
    font-size: 15px;
    font-weight: 680;
}

.ic-v2-ocean-intro__principles small {
    max-width: 260px;
    margin-top: 6px;
    color: var(--ic-text-soft);
    font-size: 12px;
    line-height: 1.5;
}

.ic-v2-demo-intro {
    max-width: 900px;
    padding: 118px 0 48px;
}

.ic-v2-demo-intro h2 {
    margin: 0;
    color: var(--ic-text);
    font-size: clamp(42px, 5.4vw, 70px);
    font-weight: 630;
    letter-spacing: -0.052em;
    line-height: 1.01;
}

.ic-v2-demo-intro h2 span {
    display: block;
}

.ic-v2-demo-intro > p:last-child {
    max-width: 620px;
    margin: 22px 0 0;
    color: var(--ic-text-soft);
    font-size: 17px;
    line-height: 1.55;
}

.ic-v2-domain-rail {
    min-height: 92px;
    display: grid;
    grid-template-columns: 225px 1fr;
    align-items: center;
    border-top: 1px solid var(--ic-line);
}

.ic-v2-live-state {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ic-text-faint);
    font-family: var(--ic-mono);
    font-size: 10px;
    text-transform: uppercase;
}

.ic-v2-live-state i {
    color: var(--ic-green);
    font-size: 9px;
}

.ic-v2-live-state span:nth-child(2) {
    color: var(--ic-text);
    font-weight: 700;
}

.ic-v2-domain-tabs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ic-v2-domain-tab {
    min-height: 68px;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border: 0;
    border-left: 1px solid var(--ic-line);
    background: transparent;
    color: var(--ic-text);
    text-align: left;
    cursor: pointer;
    transition: background-color 150ms ease, color 150ms ease;
}

.ic-v2-domain-tab:hover,
.ic-v2-domain-tab.is-active {
    background: var(--ic-accent-soft);
}

.ic-v2-domain-tab__icon,
.ic-v2-product__icon,
.ic-v2-product-hero__icon {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border: 1px solid var(--ic-line);
    border-radius: 7px;
    background: var(--ic-surface);
    color: var(--ic-accent);
}

.ic-v2-domain-tab__icon i {
    font-size: 17px;
}

.ic-v2-domain-tab strong,
.ic-v2-domain-tab small {
    display: block;
}

.ic-v2-domain-tab strong {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.ic-v2-domain-tab small {
    margin-top: 2px;
    color: var(--ic-text-faint);
    font-size: 10px;
    line-height: 1.2;
}

.ic-v2-console {
    min-height: 540px;
    display: grid;
    grid-template-columns: 36% 64%;
    overflow: hidden;
    border: 1px solid var(--ic-line);
    border-radius: var(--ic-radius);
    background: var(--ic-surface);
    box-shadow: var(--ic-shadow);
}

.ic-v2-console__request,
.ic-v2-console__response {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.ic-v2-console__request {
    border-right: 1px solid var(--ic-line);
}

.ic-v2-console__bar {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0 18px;
    border-bottom: 1px solid var(--ic-line);
    color: var(--ic-text-faint);
    font-family: var(--ic-mono);
    font-size: 10px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ic-v2-console__bar > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ic-v2-console__bar i.ph-fill {
    color: var(--ic-green);
    font-size: 8px;
}

.ic-v2-console__bar i.ph-clock {
    color: inherit;
    font-size: 13px;
}

.ic-v2-code-language {
    padding: 3px 6px;
    border: 1px solid var(--ic-line);
    border-radius: 4px;
    color: var(--ic-accent);
    font: inherit;
    letter-spacing: 0.06em;
}

.ic-v2-console textarea {
    width: calc(100% - 36px);
    min-height: 108px;
    margin: 22px 18px 0;
    padding: 15px;
    resize: vertical;
    border: 1px solid var(--ic-line);
    border-radius: 6px;
    background: var(--ic-code-surface);
    color: var(--ic-text);
    font-family: var(--ic-mono);
    font-size: 13px;
    line-height: 1.55;
}

.ic-v2-console textarea:focus {
    border-color: var(--ic-accent);
    outline: 3px solid var(--ic-focus-ring);
}

.ic-v2-parameters {
    padding: 24px 18px;
}

.ic-v2-console__label {
    display: block;
    margin-bottom: 13px;
    color: var(--ic-text-faint);
    font-family: var(--ic-mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.ic-v2-parameters dl {
    margin: 0;
    font-family: var(--ic-mono);
    font-size: 11px;
}

.ic-v2-parameters dl div {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 12px;
    padding: 3px 0;
}

.ic-v2-parameters dt {
    color: var(--ic-text);
    font-weight: 700;
}

.ic-v2-parameters dd {
    margin: 0;
    color: var(--ic-text-soft);
}

.ic-v2-console__footer {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding: 0 18px;
    border-top: 1px solid var(--ic-line);
    color: var(--ic-accent);
    font-family: var(--ic-mono);
    font-size: 10px;
}

.ic-v2-console__footer button {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border: 1px solid var(--ic-accent-action);
    border-radius: 6px;
    background: var(--ic-accent-action);
    color: var(--ic-accent-on-action);
    cursor: pointer;
    transition: background-color 150ms ease, transform 150ms ease;
}

.ic-v2-console__footer button:hover {
    background: var(--ic-accent-action-hover);
    transform: translateY(-1px);
}

.ic-v2-console__footer button[disabled] {
    cursor: wait;
    opacity: 0.62;
}

.ic-v2-console__response pre {
    min-height: 0;
    flex: 1;
    margin: 0;
    overflow: auto;
    padding: 18px 20px 10px;
    background: transparent;
    color: var(--ic-text);
    font-family: var(--ic-mono);
    font-size: 11px;
    line-height: 1.58;
    white-space: pre-wrap;
    word-break: break-word;
}

.ic-v2-console__response code {
    font: inherit;
}

.ic-v2-body code.hljs {
    display: block;
    overflow-x: visible;
    padding: 0;
    background: transparent;
    color: var(--ic-text);
}

.ic-v2-body .hljs-attr,
.ic-v2-body .hljs-property,
.ic-v2-body .hljs-attribute {
    color: var(--ic-code-key);
}

.ic-v2-body .hljs-string,
.ic-v2-body .hljs-template-variable,
.ic-v2-body .hljs-regexp {
    color: var(--ic-code-string);
}

.ic-v2-body .hljs-number,
.ic-v2-body .hljs-symbol,
.ic-v2-body .hljs-bullet {
    color: var(--ic-code-number);
}

.ic-v2-body .hljs-literal,
.ic-v2-body .hljs-keyword,
.ic-v2-body .hljs-selector-tag,
.ic-v2-body .hljs-meta {
    color: var(--ic-code-literal);
    font-weight: 600;
}

.ic-v2-body .hljs-comment,
.ic-v2-body .hljs-quote {
    color: var(--ic-code-comment);
    font-style: italic;
}

.ic-v2-body .hljs-title,
.ic-v2-body .hljs-title.function_,
.ic-v2-body .hljs-function,
.ic-v2-body .hljs-built_in,
.ic-v2-body .hljs-variable.language_ {
    color: var(--ic-code-title);
}

.ic-v2-body .hljs-punctuation,
.ic-v2-body .hljs-operator {
    color: var(--ic-code-punctuation);
}

.ic-v2-console__response.is-loading pre {
    opacity: 0.52;
}

.ic-v2-console__meta {
    min-height: 62px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    padding: 0 18px;
    border-top: 1px solid var(--ic-line);
}

.ic-v2-console__meta span {
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0 12px;
    border: 1px solid var(--ic-line);
    border-radius: 6px;
    color: var(--ic-text-soft);
    font-family: var(--ic-mono);
    font-size: 10px;
}

.ic-v2-console__meta i {
    color: var(--ic-green);
    font-size: 8px;
}

.ic-v2-console__meta b {
    color: var(--ic-text);
    font-weight: 600;
}

.ic-v2-section {
    padding: 104px 0 22px;
}

.ic-v2-section__heading {
    max-width: 760px;
}

.ic-v2-section__heading h2,
.ic-v2-principles > h2,
.ic-v2-final-cta h2,
.ic-v2-product-capabilities h2 {
    margin: 0;
    color: var(--ic-text);
    font-size: clamp(36px, 4.4vw, 58px);
    font-weight: 620;
    letter-spacing: -0.045em;
    line-height: 1.05;
}

.ic-v2-section__heading > p:last-child {
    max-width: 610px;
    margin: 18px 0 0;
    color: var(--ic-text-soft);
    font-size: 17px;
}

.ic-v2-product-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin-top: 48px;
    border-top: 1px solid var(--ic-line);
    border-bottom: 1px solid var(--ic-line);
}

.ic-v2-product {
    min-height: 268px;
    display: flex;
    flex-direction: column;
    padding: 28px 22px;
    border-right: 1px solid var(--ic-line);
    text-decoration: none;
}

.ic-v2-product:last-child {
    border-right: 0;
}

.ic-v2-product__icon {
    width: 36px;
    height: 36px;
}

.ic-v2-product__icon i {
    font-size: 19px;
}

.ic-v2-product h3 {
    margin: 22px 0 8px;
    font-size: 18px;
    font-weight: 680;
}

.ic-v2-product p {
    margin: 0;
    color: var(--ic-text-soft);
    font-size: 13px;
    line-height: 1.55;
}

.ic-v2-product > small:last-child {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    color: var(--ic-accent);
    font-size: 12px;
    font-weight: 650;
}

.ic-v2-product--more {
    background: color-mix(in srgb, var(--ic-accent-action) 4%, transparent);
}

.ic-v2-product--more > small:last-child {
    font-family: var(--ic-mono);
    font-size: 9px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ic-v2-product > small:last-child i {
    transition: transform 150ms ease;
}

a.ic-v2-product:hover > span:last-child i {
    transform: translateX(3px);
}

.ic-v2-how {
    padding-top: 124px;
}

.ic-v2-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    margin-top: 48px;
}

.ic-v2-steps article {
    min-width: 0;
}

.ic-v2-step__heading {
    min-height: 62px;
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 12px;
    align-items: start;
}

.ic-v2-step__heading > span {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--ic-accent-action);
    color: var(--ic-accent-on-action);
    font-family: var(--ic-mono);
    font-size: 12px;
    font-weight: 700;
}

.ic-v2-step__heading h3 {
    max-width: 245px;
    margin: 2px 0 0;
    font-size: 15px;
    font-weight: 650;
    line-height: 1.4;
}

.ic-v2-steps pre,
.ic-v2-steps ul {
    min-height: 220px;
    margin: 18px 0 0;
    padding: 20px;
    border: 1px solid var(--ic-line);
    border-radius: 7px;
    background: var(--ic-surface);
    color: var(--ic-text-soft);
    box-shadow: var(--effect-v2-shadow-soft);
}

.ic-v2-steps pre {
    overflow: auto;
    font-family: var(--ic-mono);
    font-size: 10px;
    line-height: 1.7;
    white-space: pre-wrap;
}

.ic-v2-steps code {
    font: inherit;
}

.ic-v2-steps ul {
    list-style: none;
    display: grid;
    align-content: center;
    gap: 12px;
    font-family: var(--ic-mono);
    font-size: 10px;
}

.ic-v2-steps li {
    display: flex;
    align-items: center;
    gap: 9px;
}

.ic-v2-steps li i {
    color: var(--ic-accent);
    font-size: 13px;
}

.ic-v2-principles {
    padding: 122px 0 112px;
}

.ic-v2-principles > h2 {
    font-size: clamp(30px, 3.5vw, 46px);
}

.ic-v2-principles > div {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 40px;
    border-top: 1px solid var(--ic-line);
    border-bottom: 1px solid var(--ic-line);
}

.ic-v2-principles article {
    min-height: 150px;
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 13px;
    padding: 26px 22px;
    border-right: 1px solid var(--ic-line);
}

.ic-v2-principles article:last-child {
    border-right: 0;
}

.ic-v2-principle__icon {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border: 1px solid var(--ic-line);
    border-radius: 7px;
    color: var(--ic-accent);
}

.ic-v2-principle__icon i {
    font-size: 17px;
}

.ic-v2-principles h3 {
    margin: 2px 0 6px;
    font-size: 14px;
    font-weight: 680;
}

.ic-v2-principles p {
    margin: 0;
    color: var(--ic-text-soft);
    font-size: 12px;
    line-height: 1.55;
}

.ic-v2-final-cta {
    margin-bottom: 0;
    padding: 76px 48px;
    border: 1px solid var(--ic-line);
    border-radius: 10px;
    background: var(--ic-surface);
    text-align: center;
    box-shadow: var(--ic-shadow);
}

.ic-v2-final-cta .ic-v2-eyebrow {
    margin-bottom: 16px;
}

.ic-v2-final-cta h2 {
    max-width: 760px;
    margin-inline: auto;
}

.ic-v2-final-cta > p:not(.ic-v2-eyebrow) {
    max-width: 560px;
    margin: 18px auto 0;
    color: var(--ic-text-soft);
    font-size: 17px;
}

.ic-v2-final-cta .ic-v2-button {
    margin-top: 28px;
}

/* Company */
.ic-v2-company-page {
    min-height: 100vh;
}

.ic-v2-company-hero {
    min-height: 650px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 104px 0 92px;
    border-bottom: 1px solid var(--ic-line);
}

.ic-v2-company-hero h1 {
    max-width: 1000px;
    margin: 0;
    color: var(--ic-text);
    font-size: clamp(58px, 7.3vw, 102px);
    font-weight: 690;
    letter-spacing: -0.065em;
    line-height: 0.96;
}

.ic-v2-company-hero > p:last-child {
    max-width: 700px;
    margin: 34px 0 0;
    color: var(--ic-text-soft);
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.5;
}

.ic-v2-company-thesis {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(56px, 9vw, 140px);
    padding: 124px 0;
    border-bottom: 1px solid var(--ic-line);
}

.ic-v2-company-thesis h2,
.ic-v2-company-products h2 {
    max-width: 660px;
    margin: 0;
    color: var(--ic-text);
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 660;
    letter-spacing: -0.055em;
    line-height: 1.02;
}

.ic-v2-company-thesis__copy {
    align-self: end;
}

.ic-v2-company-thesis__copy p {
    margin: 0;
    color: var(--ic-text-soft);
    font-size: 18px;
    line-height: 1.65;
}

.ic-v2-company-thesis__copy p + p {
    margin-top: 24px;
}

.ic-v2-company-products {
    padding: 124px 0;
    border-bottom: 1px solid var(--ic-line);
}

.ic-v2-company-products__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 66px;
    border: 1px solid var(--ic-line);
}

.ic-v2-company-products__grid > a,
.ic-v2-company-products__grid > div {
    min-height: 330px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto 1fr auto;
    gap: 28px;
    padding: 34px;
    color: var(--ic-text);
    text-decoration: none;
}

.ic-v2-company-products__grid > a {
    border-right: 1px solid var(--ic-line);
    transition: background-color 180ms ease;
}

.ic-v2-company-products__grid > a:hover,
.ic-v2-company-products__grid > a:focus-visible {
    background: var(--ic-accent-soft);
    outline: none;
}

.ic-v2-company-products__grid > .is-disabled {
    color: var(--ic-text-soft);
}

.ic-v2-company-product__number,
.ic-v2-company-product__state {
    color: var(--ic-text-faint);
    font-family: var(--ic-mono);
    font-size: 9px;
    font-weight: 650;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.ic-v2-company-product__number {
    grid-column: 1 / -1;
}

.ic-v2-company-product__icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    align-self: end;
    border: 1px solid var(--ic-line);
    border-radius: 7px;
    background: var(--ic-accent-soft);
    color: var(--ic-accent);
}

.ic-v2-company-product__icon i {
    font-size: 23px;
}

.ic-v2-company-products__grid h3 {
    margin: 0;
    font-size: 38px;
    font-weight: 640;
    letter-spacing: -0.045em;
    line-height: 1;
}

.ic-v2-company-products__grid p {
    margin: 10px 0 0;
    color: var(--ic-text-soft);
    font-size: 14px;
}

.ic-v2-company-product__state {
    align-self: end;
    color: var(--ic-accent);
}

.ic-v2-company-principles {
    padding: 124px 0;
    border-bottom: 1px solid var(--ic-line);
}

.ic-v2-company-principles > div {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 42px;
    border-block: 1px solid var(--ic-line);
}

.ic-v2-company-principles article {
    min-height: 250px;
    padding: 30px;
    border-right: 1px solid var(--ic-line);
}

.ic-v2-company-principles article:last-child {
    border-right: 0;
}

.ic-v2-company-principles article > span {
    color: var(--ic-accent);
    font-family: var(--ic-mono);
    font-size: 9px;
}

.ic-v2-company-principles h3 {
    margin: 78px 0 12px;
    font-size: 20px;
    letter-spacing: -0.03em;
}

.ic-v2-company-principles article p {
    margin: 0;
    color: var(--ic-text-soft);
    font-size: 13px;
    line-height: 1.6;
}

.ic-v2-company-note {
    max-width: 940px;
    padding: 124px 0 148px;
}

.ic-v2-company-note blockquote {
    margin: 0;
    color: var(--ic-text);
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 570;
    letter-spacing: -0.05em;
    line-height: 1.12;
}

/* Product detail routes */
.ic-v2-product-page {
    min-height: 100vh;
}

.ic-v2-product-hero {
    min-height: 720px;
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
    gap: 72px;
    align-items: center;
    padding: 86px 0;
}

.ic-v2-product-hero__icon {
    width: 42px;
    height: 42px;
    margin-bottom: 30px;
}

.ic-v2-product-hero__icon i {
    font-size: 22px;
}

.ic-v2-product-hero h1 {
    font-size: clamp(52px, 5.8vw, 78px);
}

.ic-v2-product-example {
    overflow: hidden;
    border: 1px solid var(--ic-line);
    border-radius: 9px;
    background: var(--ic-surface);
    box-shadow: var(--ic-shadow);
}

.ic-v2-product-example .ic-v2-console__bar button {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 9px;
    border: 1px solid var(--ic-line);
    border-radius: 5px;
    background: transparent;
    color: var(--ic-text-soft);
    font-family: var(--ic-mono);
    font-size: 9px;
    text-transform: uppercase;
    cursor: pointer;
}

.ic-v2-product-example pre {
    min-height: 420px;
    margin: 0;
    overflow: auto;
    padding: 28px;
    background: var(--ic-surface);
    color: var(--ic-text);
    font-family: var(--ic-mono);
    font-size: 11px;
    line-height: 1.72;
    white-space: pre-wrap;
}

.ic-v2-product-example code {
    font: inherit;
}

.ic-v2-product-capabilities {
    padding: 84px 0 124px;
}

.ic-v2-product-capabilities > div:last-child {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 46px;
    border-top: 1px solid var(--ic-line);
    border-bottom: 1px solid var(--ic-line);
}

.ic-v2-product-capabilities article {
    min-height: 230px;
    padding: 32px;
    border-right: 1px solid var(--ic-line);
}

.ic-v2-product-capabilities article:last-child {
    border-right: 0;
}

.ic-v2-product-capabilities article > i {
    color: var(--ic-accent);
    font-size: 22px;
}

.ic-v2-product-capabilities h3 {
    margin: 28px 0 10px;
    font-size: 19px;
}

.ic-v2-product-capabilities article p {
    margin: 0;
    color: var(--ic-text-soft);
    font-size: 14px;
    line-height: 1.6;
}

.ic-v2-ocean-coverage {
    padding-top: 26px;
    padding-bottom: 124px;
}

@media (prefers-color-scheme: dark) {
    .ic-v2-logo img {
        filter: invert(1) grayscale(1) brightness(1.8);
    }
}

html[data-theme="light"] {
    color-scheme: light;
}

html[data-theme="light"] .ic-v2-logo img {
    filter: none;
}

html[data-theme="dark"] {
    color-scheme: dark;
}

html[data-theme="dark"] .ic-v2-logo img {
    filter: invert(1) grayscale(1) brightness(1.8);
}

@media (max-width: 1050px) {
    .ic-v2-header__inner {
        grid-template-columns: 220px 1fr auto;
    }

    .ic-v2-nav__link {
        padding-inline: 8px;
    }

    .ic-v2-domain-rail {
        grid-template-columns: 180px 1fr;
    }

    .ic-v2-domain-tab {
        padding-inline: 12px;
    }

    .ic-v2-ocean-intro__top {
        grid-template-columns: minmax(240px, 0.7fr) minmax(380px, 1.3fr);
        gap: 58px;
    }

    .ic-v2-principles > div,
    .ic-v2-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ic-v2-product:nth-child(even) {
        border-right: 0;
    }

    .ic-v2-product:nth-child(-n + 4) {
        border-bottom: 1px solid var(--ic-line);
    }

    .ic-v2-principles article:nth-child(2) {
        border-right: 0;
    }

    .ic-v2-principles article:nth-child(-n + 2) {
        border-bottom: 1px solid var(--ic-line);
    }

    .ic-v2-product-hero {
        grid-template-columns: 1fr;
        gap: 52px;
    }
}

@media (max-width: 1120px) {
    html.ic-v2-menu-open {
        overflow: hidden;
    }

    html.ic-v2-menu-open .ic-v2-header {
        position: fixed;
        inset: 0 0 auto;
        width: 100%;
    }

    .ic-v2-header {
        z-index: 1500;
    }

    .ic-v2-header__inner {
        width: calc(100% - 32px);
        min-height: 70px;
        grid-template-columns: 1fr auto;
        gap: 16px;
        padding-inline: 16px;
    }

    .ic-v2-main,
    .ic-v2-footer__inner {
        width: calc(100% - 32px);
        padding-inline: 15px;
    }

    .ic-v2-logo img {
        width: 148px;
        max-height: 30px;
    }

    .ic-v2-nav,
    .ic-v2-header__actions {
        display: none;
    }

    .ic-v2-mobile-trigger {
        position: relative;
        z-index: 1501;
        min-width: 68px;
        height: 38px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0 14px;
        border: 1px solid var(--ic-line);
        border-radius: 3px;
        background: var(--ic-surface);
        color: var(--ic-text);
        font-family: var(--ic-mono);
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        cursor: pointer;
        transition: border-color 150ms ease, background-color 150ms ease, color 150ms ease;
    }

    .ic-v2-mobile-trigger[aria-expanded="true"] {
        border-color: var(--ic-accent-action);
        background: var(--ic-surface);
        color: var(--ic-text);
    }

    .ic-v2-mobile-nav {
        position: fixed;
        inset: 0;
        z-index: 1400;
        display: grid;
        grid-template-rows: minmax(0, 1fr) auto;
        gap: 32px;
        overflow-y: auto;
        padding: 108px 32px 16px;
        background: var(--ic-page);
        opacity: 1;
        visibility: hidden;
        pointer-events: none;
        transition: visibility 0s linear 150ms;
    }

    .ic-v2-mobile-nav.is-open {
        visibility: visible;
        pointer-events: auto;
        transition-delay: 0s;
    }

    .ic-v2-mobile-nav__links,
    .ic-v2-mobile-nav__bottom {
        opacity: 0;
        transform: translateY(6px);
        transition: opacity 120ms ease-out, transform 150ms ease-out;
    }

    .ic-v2-mobile-nav.is-open .ic-v2-mobile-nav__links,
    .ic-v2-mobile-nav.is-open .ic-v2-mobile-nav__bottom {
        opacity: 1;
        transform: translateY(0);
    }

    .ic-v2-mobile-nav__links {
        align-self: start;
    }

    .ic-v2-mobile-nav__links > a,
    .ic-v2-mobile-nav__group > button {
        width: 100%;
        min-height: 56px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 0;
        border: 0;
        background: transparent;
        color: var(--ic-text);
        font-family: var(--ic-mono);
        font-size: 18px;
        font-weight: 500;
        letter-spacing: 0.01em;
        line-height: 1;
        text-decoration: none;
        cursor: pointer;
    }

    .ic-v2-mobile-nav__links > a:hover,
    .ic-v2-mobile-nav__links > a:focus-visible,
    .ic-v2-mobile-nav__group > button:hover,
    .ic-v2-mobile-nav__group > button:focus-visible {
        color: var(--ic-accent);
        outline: none;
    }

    .ic-v2-mobile-nav__group > button i {
        font-size: 16px;
        transition: transform 150ms ease;
    }

    .ic-v2-mobile-nav__group > button[aria-expanded="true"] i {
        transform: rotate(180deg);
    }

    .ic-v2-mobile-products {
        display: grid;
        grid-template-rows: 0fr;
        opacity: 0;
        transition: grid-template-rows 180ms ease, opacity 180ms ease;
    }

    .ic-v2-mobile-products__inner {
        min-height: 0;
        overflow: hidden;
    }

    .ic-v2-mobile-products__inner > a,
    .ic-v2-mobile-product {
        display: flex;
        align-items: center;
        gap: 12px;
        padding-left: 16px;
        color: var(--ic-text);
        text-decoration: none;
    }

    .ic-v2-mobile-products__inner > a {
        display: grid;
        grid-template-columns: 32px minmax(0, 1fr);
        grid-template-rows: auto auto;
        column-gap: 12px;
        row-gap: 4px;
    }

    .ic-v2-mobile-products__inner > a .ic-v2-ocean-lockup--menu {
        display: contents;
    }

    .ic-v2-mobile-products__inner > a .ic-v2-ocean-mark {
        grid-column: 1;
        grid-row: 1 / 3;
    }

    .ic-v2-mobile-products__inner > a .ic-v2-ocean-wordmark {
        grid-column: 2;
        grid-row: 1;
    }

    .ic-v2-mobile-products__inner > a > small {
        grid-column: 2;
        grid-row: 2;
        margin: 0;
    }

    .ic-v2-mobile-product {
        border-top: 1px solid var(--ic-line);
        opacity: 0.72;
    }

    .ic-v2-mobile-product strong {
        display: block;
        font-size: 15px;
    }

    .ic-v2-mobile-product > div {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .ic-v2-mobile-products.is-open {
        grid-template-rows: 1fr;
        opacity: 1;
    }

    .ic-v2-mobile-products.is-open .ic-v2-mobile-products__inner > a,
    .ic-v2-mobile-products.is-open .ic-v2-mobile-product {
        min-height: 72px;
    }

    .ic-v2-mobile-products small {
        color: var(--ic-text-faint);
        font-family: var(--ic-mono);
        font-size: 9px;
        line-height: 1.45;
    }

    .ic-v2-mobile-nav__bottom {
        align-self: end;
        display: grid;
        gap: 12px;
    }

    .ic-v2-mobile-action {
        min-height: 52px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1px solid transparent;
        border-radius: 3px;
        font-family: var(--ic-mono);
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.05em;
        text-decoration: none;
        text-transform: uppercase;
    }

    .ic-v2-mobile-action--secondary {
        border-color: var(--ic-text);
        background: var(--ic-text);
        color: var(--ic-page);
    }

    .ic-v2-mobile-action--primary {
        border-color: var(--ic-accent-action);
        background: var(--ic-accent-action);
        color: var(--ic-accent-on-action);
    }

    .ic-v2-hero--company {
        min-height: auto;
        grid-template-columns: minmax(0, 1fr);
        gap: 48px;
        padding-block: 78px 46px;
    }

    .ic-v2-hero--company .ic-v2-hero__copy {
        max-width: 540px;
    }

    .ic-v2-hero--company h1 {
        width: auto;
        max-width: 540px;
        font-size: clamp(58px, 7.3vw, 82px);
        line-height: 0.94;
    }

    .ic-v2-hero--company .ic-v2-hero__lede {
        max-width: 900px;
    }

    .ic-v2-hero-system {
        display: none;
    }

    .ic-v2-knowledge-field {
        display: none;
    }

    .ic-v2-knowledge-stream {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        width: 100%;
        height: 380px;
        margin-left: 0;
    }
}

@media (max-width: 900px) {

    .ic-v2-hero--company {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .ic-v2-knowledge-stream {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        width: 100%;
        height: 360px;
        margin-top: 2px;
        opacity: 1;
    }

    .ic-v2-knowledge-stream__canvas {
        inset: 0;
        height: 100%;
    }

    .ic-v2-knowledge-stream__times {
        right: 0;
        bottom: auto;
        left: 0;
        width: auto;
        font-size: 8px;
    }

    .ic-v2-knowledge-stream__now {
        top: 52px;
        bottom: 42px;
        left: var(--stream-now-x);
    }

    .ic-v2-knowledge-stream__json {
        top: 122px;
        left: 53%;
        width: 29%;
        min-height: 138px;
        padding: 9px 10px 8px;
    }

    .ic-v2-knowledge-stream__json code,
    .ic-v2-knowledge-stream__json code.hljs {
        font-size: 8px;
    }

    .ic-v2-knowledge-stream__agent {
        right: 2%;
        width: 18%;
    }

    .ic-v2-knowledge-stream__agent strong {
        font-size: 10.5px;
    }

    .ic-v2-knowledge-stream__agent small {
        max-width: 90px;
        font-size: 7px;
    }

    .ic-v2-ocean-intro__top {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .ic-v2-ocean-intro__name .ic-v2-ocean-wordmark {
        font-size: clamp(82px, 17vw, 112px);
    }

    .ic-v2-ocean-intro__principles {
        grid-template-columns: 1fr;
    }

    .ic-v2-ocean-intro__principles > div {
        min-height: 126px;
        border-right: 0;
        border-bottom: 1px solid var(--ic-line);
    }

    .ic-v2-ocean-intro__principles > div:last-child {
        border-bottom: 0;
    }

    .ic-v2-domain-rail {
        display: block;
        padding: 18px 0 0;
    }

    .ic-v2-live-state {
        min-height: 44px;
    }

    .ic-v2-domain-tabs {
        display: flex;
        overflow-x: auto;
        scroll-padding-inline: 16px;
        scroll-snap-type: inline mandatory;
        overscroll-behavior-inline: contain;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        border-top: 1px solid var(--ic-line);
    }

    .ic-v2-domain-tabs::-webkit-scrollbar {
        display: none;
    }

    .ic-v2-domain-tab {
        min-width: min(74vw, 260px);
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    .ic-v2-domain-tab:first-child {
        border-left: 0;
    }

    .ic-v2-console {
        grid-template-columns: 1fr;
    }

    .ic-v2-console__request {
        min-height: 410px;
        border-right: 0;
        border-bottom: 1px solid var(--ic-line);
    }

    .ic-v2-console__response {
        min-height: 500px;
    }

    .ic-v2-steps {
        grid-template-columns: 1fr;
    }

    .ic-v2-step__heading {
        min-height: auto;
    }

    .ic-v2-steps pre,
    .ic-v2-steps ul {
        min-height: auto;
    }

    .ic-v2-product-capabilities > div:last-child {
        grid-template-columns: 1fr;
    }

    .ic-v2-product-capabilities article {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid var(--ic-line);
    }

    .ic-v2-product-capabilities article:last-child {
        border-bottom: 0;
    }

    .ic-v2-company-thesis {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .ic-v2-company-products__grid,
    .ic-v2-company-principles > div {
        grid-template-columns: 1fr;
    }

    .ic-v2-company-products__grid > a {
        border-right: 0;
        border-bottom: 1px solid var(--ic-line);
    }

    .ic-v2-company-principles article {
        min-height: 220px;
        border-right: 0;
        border-bottom: 1px solid var(--ic-line);
    }

    .ic-v2-company-principles article:last-child {
        border-bottom: 0;
    }
}

@media (max-width: 620px) {
    .ic-v2-header__inner,
    .ic-v2-main,
    .ic-v2-footer__inner {
        width: min(100% - 32px, var(--ic-max));
    }

    .ic-v2-logo img {
        width: 166px;
    }

    .ic-v2-mobile-nav {
        gap: 22px;
        padding: 88px 20px 20px;
    }

    .ic-v2-hero {
        min-height: auto;
        padding: 64px 0 46px;
    }

    .ic-v2-hero--company {
        gap: 38px;
        padding-block: 72px 58px;
    }

    .ic-v2-hero--company h1 {
        max-width: 100%;
        font-size: clamp(48px, 14vw, 64px);
        line-height: 0.95;
    }

    .ic-v2-knowledge-stream {
        --stream-now-x: 42%;
        height: 330px;
        margin-top: 0;
    }

    .ic-v2-knowledge-stream__times {
        right: 0;
        left: 0;
        width: auto;
    }

    .ic-v2-knowledge-stream__times time:nth-child(-n + 2) {
        display: none;
    }

    .ic-v2-knowledge-stream__times time:nth-child(3) {
        left: 8%;
    }

    .ic-v2-knowledge-stream__times time:nth-child(4) {
        left: 30%;
    }

    .ic-v2-knowledge-stream__stages {
        bottom: 22px;
        font-size: 7px;
    }

    .ic-v2-knowledge-stream__stage small {
        display: none;
    }

    .ic-v2-knowledge-stream__stage strong {
        font-size: 7px;
    }

    .ic-v2-knowledge-stream__stage--live {
        left: 0;
        width: 42%;
    }

    .ic-v2-knowledge-stream__stage--fresh {
        left: 42%;
        width: 14%;
    }

    .ic-v2-knowledge-stream__stage--sources {
        left: 56%;
        width: 22%;
    }

    .ic-v2-knowledge-stream__stage--ready {
        left: 78%;
        width: 22%;
    }

    .ic-v2-knowledge-stream__json {
        top: 108px;
        left: 46%;
        width: 31%;
        min-height: 132px;
        padding: 8px 7px 7px;
    }

    .ic-v2-knowledge-stream__json > small {
        font-size: 7px;
    }

    .ic-v2-knowledge-stream__json code,
    .ic-v2-knowledge-stream__json code.hljs {
        font-size: 6.5px;
    }

    .ic-v2-knowledge-stream__source-dots {
        gap: 2px;
    }

    .ic-v2-knowledge-stream__source-dots i {
        width: 3px;
        height: 3px;
        flex-basis: 3px;
    }

    .ic-v2-knowledge-stream__agent {
        right: 0;
        width: 20%;
        gap: 4px;
    }

    .ic-v2-knowledge-stream__agent > i {
        font-size: 13px;
    }

    .ic-v2-knowledge-stream__agent strong {
        font-size: 7px;
    }

    .ic-v2-knowledge-stream__agent small {
        max-width: none;
        font-size: 5px;
    }

    .ic-v2-company-hero {
        min-height: 560px;
        padding: 86px 0 72px;
    }

    .ic-v2-company-hero h1 {
        font-size: clamp(45px, 13.5vw, 64px);
        line-height: 0.98;
    }

    .ic-v2-company-hero > p:last-child {
        margin-top: 26px;
        font-size: 17px;
    }

    .ic-v2-company-thesis,
    .ic-v2-company-products,
    .ic-v2-company-principles {
        padding: 84px 0;
    }

    .ic-v2-company-thesis h2,
    .ic-v2-company-products h2 {
        font-size: clamp(38px, 11vw, 48px);
    }

    .ic-v2-company-thesis__copy p {
        font-size: 16px;
    }

    .ic-v2-company-products__grid {
        margin-top: 44px;
    }

    .ic-v2-company-products__grid > a,
    .ic-v2-company-products__grid > div {
        min-height: 280px;
        padding: 24px;
    }

    .ic-v2-company-principles article {
        min-height: 205px;
        padding: 24px;
    }

    .ic-v2-company-principles h3 {
        margin-top: 62px;
    }

    .ic-v2-company-note {
        padding: 88px 0 108px;
    }

    .ic-v2-eyebrow {
        margin-bottom: 16px;
        font-size: 10px;
    }

    .ic-v2-hero h1,
    .ic-v2-product-hero h1 {
        font-size: clamp(44px, 13.5vw, 60px);
        line-height: 0.99;
    }

    .ic-v2-hero__lede {
        margin-top: 22px;
        font-size: 17px;
    }

    .ic-v2-ocean-intro {
        padding-top: 72px;
    }

    .ic-v2-ocean-intro__top {
        gap: 34px;
    }

    .ic-v2-ocean-intro__name > span {
        margin-bottom: 12px;
        font-size: 9px;
    }

    .ic-v2-ocean-intro__name .ic-v2-ocean-wordmark {
        font-size: clamp(68px, 19vw, 84px);
    }

    .ic-v2-ocean-lockup--hero {
        gap: 13px;
    }

    .ic-v2-ocean-lockup--hero .ic-v2-ocean-mark {
        width: 50px;
        height: 50px;
        border-radius: 11px;
    }

    .ic-v2-ocean-lockup--hero .ic-v2-ocean-mark i {
        font-size: 25px;
    }

    .ic-v2-ocean-lockup--product {
        margin-bottom: 24px;
    }

    .ic-v2-ocean-lockup--product .ic-v2-ocean-wordmark {
        font-size: 50px;
    }

    .ic-v2-ocean-intro__story h3,
    .ic-v2-demo-intro h2 {
        font-size: clamp(36px, 10.5vw, 46px);
    }

    .ic-v2-ocean-intro__story p,
    .ic-v2-demo-intro > p:last-child {
        font-size: 15px;
    }

    .ic-v2-ocean-intro__principles {
        margin-top: 54px;
    }

    .ic-v2-ocean-intro__principles > div {
        min-height: 118px;
        padding: 22px 14px;
    }

    .ic-v2-demo-intro {
        padding: 86px 0 38px;
    }

    .ic-v2-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .ic-v2-console {
        border-radius: 7px;
    }

    .ic-v2-console__bar {
        padding-inline: 14px;
    }

    .ic-v2-console textarea {
        width: calc(100% - 28px);
        margin-inline: 14px;
    }

    .ic-v2-console__meta {
        justify-content: flex-start;
        overflow-x: auto;
        padding-inline: 14px;
    }

    .ic-v2-section {
        padding-top: 82px;
    }

    .ic-v2-section__heading h2,
    .ic-v2-principles > h2,
    .ic-v2-final-cta h2,
    .ic-v2-product-capabilities h2 {
        font-size: clamp(34px, 10vw, 44px);
    }

    .ic-v2-section__heading > p:last-child {
        font-size: 15px;
    }

    .ic-v2-product-grid,
    .ic-v2-principles > div {
        grid-template-columns: 1fr;
    }

    .ic-v2-product {
        min-height: 230px;
        border-right: 0;
        border-bottom: 1px solid var(--ic-line);
    }

    .ic-v2-product:nth-child(3) {
        border-bottom: 1px solid var(--ic-line);
    }

    .ic-v2-product:last-child {
        border-bottom: 0;
    }

    .ic-v2-principles {
        padding: 90px 0;
    }

    .ic-v2-principles article {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid var(--ic-line);
    }

    .ic-v2-principles article:nth-child(3) {
        border-bottom: 1px solid var(--ic-line);
    }

    .ic-v2-principles article:last-child {
        border-bottom: 0;
    }

    .ic-v2-final-cta {
        margin-bottom: 0;
        padding: 56px 22px;
    }

    .ic-v2-product-hero {
        min-height: auto;
        grid-template-columns: 1fr;
        padding: 64px 0 82px;
    }

    .ic-v2-product-example pre {
        min-height: 360px;
        padding: 20px;
        font-size: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ic-v2-field-path,
    .ic-v2-knowledge-core {
        animation: none;
    }
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
