:root {
    --bg: #06080b;
    --bg-soft: #0b1015;
    --surface: rgba(10, 15, 20, 0.68);
    --surface-strong: rgba(15, 21, 29, 0.9);
    --line: rgba(145, 177, 210, 0.16);
    --line-strong: rgba(145, 177, 210, 0.28);
    --text: #f4f8fc;
    --muted: #b3bfcd;
    --subtle: #8491a0;
    --accent: #8ec8ff;
    --accent-strong: #d6ebff;
    --accent-soft: rgba(142, 200, 255, 0.12);
    --shadow: rgba(0, 0, 0, 0.28);
    --radius: 20px;
    --max-width: 1180px;
    --header-offset: 6.5rem;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    display: flex;
    flex-direction: column;
    color: var(--text);
    background:
        radial-gradient(circle at top, rgba(142, 200, 255, 0.1), transparent 30%),
        linear-gradient(180deg, #081018 0%, var(--bg) 24%, #05070a 100%);
    font-family: "Space Grotesk", sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
}

body::selection {
    background: rgba(142, 200, 255, 0.2);
}

a {
    color: inherit;
    text-decoration: none;
}

button,
a,
input {
    -webkit-tap-highlight-color: transparent;
}

img {
    display: block;
    max-width: 100%;
}

code {
    font-family: "IBM Plex Mono", monospace;
}

.page-backdrop {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(144, 176, 208, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(144, 176, 208, 0.05) 1px, transparent 1px);
    background-size: 96px 96px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95), transparent 88%);
    opacity: 0.35;
}

.site-header {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 1rem;
    width: min(var(--max-width), calc(100% - 2rem));
    margin: 0;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(145, 177, 210, 0.2);
    border-radius: 999px;
    background:
        linear-gradient(180deg, rgba(19, 25, 34, 0.78), rgba(7, 11, 16, 0.54)),
        rgba(7, 10, 14, 0.74);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    overflow: hidden;
    transition: padding 240ms ease, border-color 240ms ease, background 240ms ease, top 240ms ease, box-shadow 240ms ease;
}

.site-header::before,
.site-header::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
}

.site-header::before {
    background: linear-gradient(90deg, transparent, rgba(142, 200, 255, 0.12), transparent);
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95), transparent 78%);
}

.site-header::after {
    inset: auto 1.4rem 0.5rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
    opacity: 0.7;
}

.site-header.compact {
    padding: 0.75rem 0.9rem;
    border-color: rgba(145, 177, 210, 0.28);
    background:
        linear-gradient(180deg, rgba(16, 22, 31, 0.9), rgba(7, 10, 14, 0.72)),
        rgba(5, 8, 11, 0.88);
    box-shadow:
        0 20px 48px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    top: 0.85rem;
}

.brand-lockup {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-self: start;
    gap: 0.9rem;
    min-height: 44px;
}

.brand-logo,
.footer-logo {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    gap: 0.18rem;
}

.brand-name,
.footer-brand strong {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.brand-subtitle {
    color: var(--subtle);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.nav-rail {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    gap: 0.35rem;
    padding: 0.35rem;
    border: 1px solid rgba(145, 177, 210, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.nav-link-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.7rem 0.95rem;
    border-radius: 999px;
    color: var(--subtle);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: all 300ms ease-out;
}

.nav-link-chip:hover {
    color: var(--text);
    background: rgba(142, 200, 255, 0.08);
    box-shadow: inset 0 0 0 1px rgba(142, 200, 255, 0.12);
    transform: translateY(-1px);
}

.nav-actions,
.hero-actions,
.cta-actions {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.nav-actions {
    position: relative;
    z-index: 1;
    justify-self: end;
    justify-content: flex-end;
}

.mobile-menu-toggle,
.mobile-nav-backdrop,
.mobile-nav-drawer {
    display: none;
}

.mobile-menu-toggle {
    position: relative;
    z-index: 22;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.28rem;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(8, 12, 16, 0.6);
    color: var(--text);
    cursor: pointer;
    transition: all 300ms ease-out;
}

.mobile-menu-toggle:hover {
    transform: translateY(-1px);
    border-color: rgba(142, 200, 255, 0.3);
}

.mobile-menu-toggle:focus-visible,
.mobile-nav-close:focus-visible,
.mobile-nav-link:focus-visible {
    outline: 2px solid rgba(142, 200, 255, 0.56);
    outline-offset: 3px;
}

.mobile-menu-toggle-bar {
    display: block;
    width: 18px;
    height: 1.5px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 240ms ease, opacity 240ms ease;
}

.mobile-menu-toggle.is-active .mobile-menu-toggle-bar:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
}

.mobile-menu-toggle.is-active .mobile-menu-toggle-bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.is-active .mobile-menu-toggle-bar:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
}

.mobile-nav-brand,
.mobile-nav-drawer-top,
.mobile-nav-actions {
    display: grid;
}

.mobile-nav-brand {
    gap: 0.25rem;
}

.mobile-nav-label {
    color: var(--accent);
    font-size: 0.76rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.mobile-nav-brand strong {
    font-size: 1.02rem;
    letter-spacing: -0.02em;
}

.mobile-nav-close {
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(145, 177, 210, 0.14);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    cursor: pointer;
    transition: all 300ms ease-out;
}

.mobile-nav-close:hover {
    transform: translateY(-1px);
    border-color: rgba(142, 200, 255, 0.28);
}

.mobile-nav-links {
    display: grid;
    gap: 0.45rem;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(145, 177, 210, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.025);
    color: var(--text);
    font-size: 0.92rem;
    letter-spacing: -0.01em;
    transition: all 300ms ease-out;
}

.mobile-nav-link:hover {
    transform: translateY(-1px);
    border-color: rgba(142, 200, 255, 0.24);
    background: rgba(142, 200, 255, 0.06);
}

.mobile-nav-actions {
    margin-top: auto;
    gap: 0.75rem;
}

.mobile-nav-actions .button-link {
    width: 100%;
}

.nav-button,
.button-link {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    min-height: 48px;
    padding: 0.8rem 1.2rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    color: var(--accent-strong);
    background: rgba(8, 12, 16, 0.55);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
    transition: all 300ms ease-out;
}

.nav-button:hover,
.button-link:hover {
    transform: translateY(-2px);
    border-color: rgba(142, 200, 255, 0.35);
    box-shadow:
        0 14px 30px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.nav-button-primary,
.button-link-primary {
    background: linear-gradient(180deg, rgba(142, 200, 255, 0.2), rgba(142, 200, 255, 0.12));
    border-color: rgba(142, 200, 255, 0.34);
    color: var(--text);
    box-shadow:
        0 16px 34px rgba(8, 14, 20, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.nav-button-secondary,
.button-link-secondary {
    color: var(--muted);
}

.button-link-disabled,
.button-link:disabled {
    cursor: default;
    opacity: 0.72;
    border-color: rgba(142, 200, 255, 0.18);
    color: var(--muted);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.button-link-disabled:hover,
.button-link:disabled:hover {
    transform: none;
    border-color: rgba(142, 200, 255, 0.18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.landing-main {
    padding-top: var(--header-offset);
    flex: 1 0 auto;
}

.landing-section {
    position: relative;
    padding: 6rem 0;
}

.hero-section {
    position: relative;
    overflow: visible;
    isolation: isolate;
    --hero-pointer-x: 50%;
    --hero-pointer-y: 44%;
    --hero-drift-x: 0px;
    --hero-drift-y: 0px;
    --hero-drift-reverse-x: 0px;
    --hero-drift-reverse-y: 0px;
    min-height: calc(100vh - var(--header-offset));
    min-height: calc(100svh - var(--header-offset));
    display: flex;
    align-items: center;
    padding: 0;
}

.landing-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: min(var(--max-width), calc(100% - 2rem));
    transform: translateX(-50%);
    border-top: 1px solid rgba(145, 177, 210, 0.1);
}

.hero-section::before {
    display: none;
}

.hero-atmosphere {
    position: absolute;
    top: calc(var(--header-offset) * -1);
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-atmosphere::before,
.hero-atmosphere::after {
    content: "";
    position: absolute;
    pointer-events: none;
    transition: transform 320ms ease-out, opacity 320ms ease-out, filter 320ms ease-out;
}

.hero-atmosphere::before {
    inset: -12% -10% -18%;
    background:
        radial-gradient(circle at 18% 24%, rgba(142, 200, 255, 0.08), transparent 24%),
        radial-gradient(circle at 82% 18%, rgba(214, 235, 255, 0.05), transparent 23%),
        radial-gradient(circle at var(--hero-pointer-x) var(--hero-pointer-y), rgba(142, 200, 255, 0.08), transparent 28%);
    filter: blur(42px);
    opacity: 0.42;
    transform: translate3d(var(--hero-drift-x), var(--hero-drift-y), 0);
}

.hero-atmosphere::after {
    inset: 10% -18% auto;
    height: 34%;
    background: linear-gradient(115deg, transparent 14%, rgba(142, 200, 255, 0.025) 42%, rgba(214, 235, 255, 0.07) 52%, transparent 78%);
    background-size: 180% 100%;
    filter: blur(60px);
    opacity: 0.18;
    transform: translate3d(var(--hero-drift-reverse-x), var(--hero-drift-reverse-y), 0) rotate(-6deg);
    animation: heroRibbonFlow 28s ease-in-out infinite;
}

.hero-wave-field {
    position: absolute;
    left: -10%;
    right: -10%;
    bottom: -12%;
    height: 58%;
    border-radius: 50%;
    opacity: 0.12;
    filter: blur(18px);
    transform-origin: center;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.75) 20%, rgba(0, 0, 0, 0.96) 72%, transparent 100%);
    mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.75) 20%, rgba(0, 0, 0, 0.96) 72%, transparent 100%);
    transition: transform 320ms ease-out, opacity 320ms ease-out;
}

.hero-wave-field-primary {
    background: radial-gradient(ellipse at 50% 100%, rgba(142, 200, 255, 0.11) 0%, rgba(142, 200, 255, 0.05) 22%, rgba(142, 200, 255, 0.018) 38%, transparent 70%);
    transform: translate3d(var(--hero-drift-reverse-x), var(--hero-drift-y), 0) rotate(-5deg) scale(1.03);
    animation: heroWaveSwellPrimary 24s ease-in-out infinite;
}

.hero-wave-field-secondary {
    left: -16%;
    right: -16%;
    bottom: -18%;
    height: 68%;
    background: radial-gradient(ellipse at 50% 100%, rgba(214, 235, 255, 0.07) 0%, rgba(214, 235, 255, 0.028) 24%, transparent 68%);
    opacity: 0.08;
    transform: translate3d(var(--hero-drift-x), var(--hero-drift-reverse-y), 0) rotate(4deg) scale(1.12);
    animation: heroWaveSwellSecondary 30s ease-in-out infinite;
}

.hero-pointer-glow {
    position: absolute;
    left: var(--hero-pointer-x);
    top: var(--hero-pointer-y);
    width: clamp(18rem, 30vw, 32rem);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(214, 235, 255, 0.12) 0%, rgba(142, 200, 255, 0.08) 24%, rgba(142, 200, 255, 0.03) 42%, transparent 72%);
    filter: blur(20px);
    opacity: 0.2;
    transform: translate(-50%, -50%) translate3d(var(--hero-drift-x), var(--hero-drift-y), 0) scale(0.96);
    transition: transform 240ms ease-out, opacity 280ms ease-out;
}

.hero-section.is-pointer-active .hero-atmosphere::before {
    opacity: 0.54;
    filter: blur(36px);
}

.hero-section.is-pointer-active .hero-atmosphere::after {
    opacity: 0.28;
}

.hero-section.is-pointer-active .hero-wave-field-primary {
    opacity: 0.16;
}

.hero-section.is-pointer-active .hero-wave-field-secondary {
    opacity: 0.1;
}

.hero-section.is-pointer-active .hero-pointer-glow {
    opacity: 0.34;
    transform: translate(-50%, -50%) translate3d(var(--hero-drift-x), var(--hero-drift-y), 0) scale(1);
}

.section-shell {
    width: min(var(--max-width), calc(100% - 3rem));
    margin: 0 auto;
}

.hero-layout {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: calc(100vh - var(--header-offset));
    min-height: calc(100svh - var(--header-offset));
    padding: 0;
}

.hero-copy {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 0.35rem;
    justify-items: center;
    text-align: center;
    max-width: 64rem;
    margin: 0 auto;
}

.hero-emblem {
    margin-bottom: 0.35rem;
}

.hero-emblem img {
    display: block;
    height: auto;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 68%, rgba(0, 0, 0, 0.72) 82%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0%, #000 68%, rgba(0, 0, 0, 0.72) 82%, transparent 100%);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
}

.hero-copy > .eyebrow {
    margin-bottom: 0.7rem;
}

.hero-lockup {
    position: relative;
    width: min(100%, 60rem);
    padding-top: 0.45rem;
}

.hero-title-block {
    position: relative;
    display: inline-grid;
    justify-items: center;
    gap: 0.75rem;
    width: fit-content;
    max-width: 100%;
    padding: 0 clamp(0.75rem, 2vw, 1.5rem) clamp(0.75rem, 1.8vw, 1.15rem);
    isolation: isolate;
    z-index: 1;
}

.eyebrow {
    margin: 0 0 1rem;
    color: var(--accent);
    font-size: 0.86rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin: 0;
    text-wrap: balance;
}

.heading-line {
    display: block;
}

.hero-heading-line {
    display: block;
}

.modes-title {
    max-width: 40ch;
}

.guardrails-title {
    max-width: 32ch;
    font-size: clamp(1.4rem, 2.7vw, 2.45rem);
}

h1 {
    position: relative;
    z-index: 2;
    font-size: clamp(3.1rem, 5.2vw, 4.9rem);
    line-height: 0.9;
    letter-spacing: -0.05em;
    max-width: 15.5ch;
}

h2 {
    font-size: clamp(1.9rem, 3.2vw, 2.85rem);
    line-height: 1.04;
    letter-spacing: -0.04em;
    max-width: 13.5ch;
}

h3 {
    font-size: 1.2rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

p {
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
}

.hero-lead,
.section-header p {
    max-width: 44rem;
}

.hero-lead {
    position: relative;
    z-index: 2;
    margin-top: 0;
    max-width: 37rem;
    font-size: 0.98rem;
}

.hero-actions {
    margin: 1rem 0 1.35rem;
    justify-content: center;
}

.hero-waitlist {
    width: min(100%, 43rem);
    margin: 1rem auto 1.35rem;
}

.hero-waitlist-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.75rem;
    align-items: center;
}

.hero-waitlist-field {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 0.8rem;
    min-height: 58px;
    padding: 0 1rem;
    border: 1px solid rgba(145, 177, 210, 0.16);
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
        rgba(5, 8, 11, 0.54);
    transition: all 300ms ease-out;
}

.hero-waitlist-field:focus-within {
    transform: translateY(-1px);
    border-color: rgba(142, 200, 255, 0.34);
    box-shadow:
        0 14px 30px rgba(0, 0, 0, 0.16),
        0 0 0 4px rgba(142, 200, 255, 0.08);
}

.hero-waitlist-field.is-error {
    border-color: rgba(255, 127, 127, 0.5);
    box-shadow:
        0 14px 30px rgba(0, 0, 0, 0.16),
        0 0 0 4px rgba(255, 127, 127, 0.12);
}

.hero-waitlist-field.is-success {
    border-color: rgba(112, 217, 165, 0.44);
    box-shadow:
        0 14px 30px rgba(0, 0, 0, 0.16),
        0 0 0 4px rgba(112, 217, 165, 0.12);
}

.hero-waitlist-field i {
    color: var(--accent);
    font-size: 1rem;
}

.hero-waitlist-field input {
    width: 100%;
    min-width: 0;
    padding: 0;
    border: none;
    outline: none;
    background: transparent;
    color: var(--text);
    font: inherit;
    font-size: 1rem;
}

.hero-waitlist-field input::placeholder {
    color: var(--subtle);
}

.hero-waitlist-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    min-height: 58px;
    padding: 0 1.35rem;
    border: 1px solid rgba(142, 200, 255, 0.34);
    border-radius: 20px;
    color: var(--text);
    background: linear-gradient(180deg, rgba(142, 200, 255, 0.24), rgba(142, 200, 255, 0.14));
    box-shadow:
        0 16px 34px rgba(8, 14, 20, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    font: inherit;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
    transition: all 300ms ease-out;
}

.hero-waitlist-submit:hover {
    transform: translateY(-2px);
    border-color: rgba(142, 200, 255, 0.46);
    box-shadow:
        0 18px 34px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-waitlist-submit:focus-visible {
    outline: 2px solid rgba(142, 200, 255, 0.6);
    outline-offset: 3px;
}

.hero-waitlist-submit:disabled {
    cursor: wait;
    opacity: 0.72;
    transform: none;
}

.hero-waitlist-status {
    min-height: 1.4rem;
    margin: 0.75rem 0 0;
    padding: 0 0.35rem;
    color: var(--subtle);
    font-size: 0.92rem;
    line-height: 1.5;
}

.hero-waitlist-status[data-state="pending"] {
    color: rgba(196, 214, 236, 0.88);
}

.hero-waitlist-status[data-state="success"] {
    color: rgba(112, 217, 165, 0.96);
}

.hero-waitlist-status[data-state="error"] {
    color: rgba(255, 154, 154, 0.96);
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin: 1.55rem 0 0;
    width: min(100%, 54rem);
}

.hero-mark {
    position: absolute;
    top: clamp(0.5rem, 2vw, 1.5rem);
    right: clamp(-6rem, -7vw, -2.5rem);
    z-index: 1;
    margin-top: 0;
    pointer-events: none;
    left: auto;
    transform: none;
}

.hero-mark img {
    display: block;
    width: auto;
    height: clamp(12.75rem, 20vw, 17rem);
    opacity: 1;
    transform: translateY(-1.15rem) rotate(15deg);
}

@keyframes heroRibbonFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes heroWaveSwellPrimary {
    0% {
        transform: translate3d(var(--hero-drift-reverse-x), var(--hero-drift-y), 0) rotate(-5deg) scale(1.01);
    }

    50% {
        transform: translate3d(calc(var(--hero-drift-reverse-x) * 0.6), calc(var(--hero-drift-y) + 4px), 0) rotate(-4deg) scale(1.05);
    }

    100% {
        transform: translate3d(var(--hero-drift-reverse-x), var(--hero-drift-y), 0) rotate(-5deg) scale(1.01);
    }
}

@keyframes heroWaveSwellSecondary {
    0% {
        transform: translate3d(var(--hero-drift-x), var(--hero-drift-reverse-y), 0) rotate(4deg) scale(1.1);
    }

    50% {
        transform: translate3d(calc(var(--hero-drift-x) * 0.7), calc(var(--hero-drift-reverse-y) - 5px), 0) rotate(5deg) scale(1.14);
    }

    100% {
        transform: translate3d(var(--hero-drift-x), var(--hero-drift-reverse-y), 0) rotate(4deg) scale(1.1);
    }
}

.metric-strip {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 1.25rem;
    border-top: 1px solid var(--line);
    text-align: center;
}

.metric-strip dt {
    color: var(--subtle);
    font-size: 0.84rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.metric-strip dd {
    margin: 0.85rem 0 0;
    color: var(--text);
    font-size: 1rem;
}

.metric-mode-list {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.42rem;
    justify-content: center;
    align-items: center;
    width: auto;
    max-width: 100%;
    margin-inline: auto;
    text-align: center;
}

.metric-mode-list span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 1.65rem;
    padding: 0.18rem 0.48rem;
    border: 1px solid rgba(145, 177, 210, 0.16);
    border-radius: 999px;
    background: rgba(142, 200, 255, 0.06);
    color: var(--accent-strong);
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.7rem;
    letter-spacing: 0.02em;
    line-height: 1;
}

.hero-stage,
.swarm-snapshot,
.trace-stream,
.download-cta {
    position: relative;
    overflow: hidden;
}

.hero-stage {
    width: 100%;
    max-width: 38rem;
    justify-self: end;
    padding: 1.15rem 1.15rem 1.2rem;
    border: 1px solid var(--line);
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(142, 200, 255, 0.06), transparent 28%),
        linear-gradient(180deg, rgba(10, 15, 20, 0.55), rgba(10, 15, 20, 0.18));
}

.hero-stage::after,
.swarm-snapshot::after,
.trace-stream::after,
.download-cta::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(142, 200, 255, 0.08), transparent 40%);
    pointer-events: none;
}

.surface-top,
.snapshot-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(145, 177, 210, 0.1);
    color: var(--subtle);
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.surface-main {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 1.15rem;
    padding-top: 1rem;
    align-items: start;
}

.surface-preview {
    display: grid;
    gap: 0.85rem;
}

.preview-label {
    color: var(--accent);
    font-size: 0.76rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.preview-title {
    font-size: 1.42rem;
    line-height: 1.08;
    max-width: 12ch;
}

.preview-row,
.preview-mode {
    display: grid;
    gap: 0.45rem 0.85rem;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(145, 177, 210, 0.1);
}

.preview-row span {
    color: var(--subtle);
    font-size: 0.76rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.preview-row strong {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.55;
    letter-spacing: -0.01em;
}

.preview-modes {
    display: grid;
    gap: 0.1rem;
}

.preview-mode {
    grid-template-columns: auto 1fr;
    align-items: center;
}

.preview-mode small {
    grid-column: 2 / -1;
    color: var(--subtle);
    font-size: 0.82rem;
}

.surface-cluster {
    display: grid;
    gap: 0.95rem;
}

.cluster-shell {
    position: relative;
    min-height: 14rem;
}

.cluster-shell::before,
.cluster-shell::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    background: rgba(145, 177, 210, 0.12);
    transform: translate(-50%, -50%);
}

.cluster-shell::before {
    width: 1px;
    height: 10rem;
}

.cluster-shell::after {
    width: 10rem;
    height: 1px;
}

.surface-foot {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.surface-foot span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0.5rem 0.75rem;
    border: 1px solid rgba(145, 177, 210, 0.12);
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.8rem;
}

.stage-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 1.5rem;
    padding-top: 1.2rem;
}

.signal-column {
    display: grid;
    gap: 0.2rem;
}

.signal-row {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.85rem 1.2rem;
    align-items: center;
    padding: 0.95rem 0;
    border-top: 1px solid rgba(145, 177, 210, 0.12);
}

.signal-row:first-child {
    border-top: none;
}

.signal-row p {
    grid-column: 2 / -1;
    max-width: 24rem;
    font-size: 0.96rem;
}

.signal-command {
    color: var(--accent);
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.94rem;
    font-weight: 500;
    letter-spacing: 0.08em;
}

.mode-meter {
    position: relative;
    height: 2px;
    background: rgba(145, 177, 210, 0.12);
    overflow: hidden;
}

.mode-meter-fill {
    position: absolute;
    inset: 0 auto 0 0;
    display: block;
    height: 100%;
    transform-origin: left center;
    background: linear-gradient(90deg, rgba(142, 200, 255, 0.18), rgba(142, 200, 255, 0.96));
}

.fill-plan {
    width: 92%;
}

.fill-chat {
    width: 76%;
}

.fill-act {
    width: 86%;
}

.swarm-column {
    display: grid;
    gap: 1rem;
}

.swarm-caption {
    color: var(--subtle);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.swarm-map {
    position: relative;
    min-height: 19rem;
}

.orbit {
    position: absolute;
    border: 1px solid rgba(145, 177, 210, 0.12);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.orbit-two {
    width: 8.8rem;
    height: 8.8rem;
}

.orbit-three {
    width: 12.8rem;
    height: 12.8rem;
}

.orbital-node {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.6rem 1rem;
    border: 1px solid rgba(145, 177, 210, 0.18);
    border-radius: 999px;
    background: rgba(6, 10, 14, 0.82);
    color: var(--text);
    font-size: 0.92rem;
    letter-spacing: -0.02em;
}

.node-core {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: var(--accent-strong);
}

.node-top {
    left: 50%;
    top: 4%;
    transform: translateX(-50%);
}

.node-right {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.node-bottom {
    left: 50%;
    bottom: 2%;
    transform: translateX(-50%);
}

.node-left {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.section-header {
    display: grid;
    gap: 1rem;
    margin-bottom: 2.35rem;
}

.section-header-right {
    text-align: right;
}

.section-header-right > .eyebrow,
.section-header-right > h2,
.section-header-right > p {
    justify-self: end;
    margin-left: auto;
}

.section-header-right > h2 {
    max-width: 24ch;
}

.pricing-section-header {
    justify-items: center;
    text-align: center;
}

.pricing-section-header > .eyebrow,
.pricing-section-header > h2,
.pricing-section-header > p {
    justify-self: center;
    margin-inline: auto;
}

.pricing-section-header > h2 {
    max-width: 24ch;
}

.pricing-toggle-row-center {
    justify-content: center;
}

.pricing-toggle-row-center + .mode-spectrum {
    margin-top: 1.5rem;
}

.plan-price {
    display: flex;
    align-items: flex-end;
    gap: 0.45rem;
    margin-bottom: 0.2rem;
}

.plan-price-value {
    color: var(--text);
    font-size: clamp(2rem, 3vw, 2.7rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.05em;
}

.plan-price-cadence,
.plan-price-note {
    color: var(--subtle);
}

.plan-price-cadence {
    font-size: 0.95rem;
    line-height: 1.4;
    padding-bottom: 0.22rem;
}

.plan-price-note {
    margin-bottom: 1rem;
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.mode-spectrum {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.mode-spectrum-stack {
    display: grid;
    gap: 0;
}

.mode-spectrum-stack .mode-spectrum {
    border-top: none;
    border-bottom: none;
}

.mode-spectrum-stack .mode-spectrum:first-child {
    border-top: 1px solid var(--line);
}

.mode-spectrum-stack .mode-spectrum + .mode-spectrum {
    border-top: 1px solid var(--line);
}

.mode-spectrum-stack .mode-spectrum:last-child {
    border-bottom: 1px solid var(--line);
}

.mode-spectrum-secondary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-mode-spectrum {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 1040px;
    margin-inline: auto;
}

.mode-column {
    position: relative;
    isolation: isolate;
    padding: 2rem 1.5rem 2.2rem;
}

.mode-spectrum-stack .mode-column {
    overflow: hidden;
    transition: transform 300ms ease-out;
}

.mode-spectrum-stack .mode-column > * {
    position: relative;
    z-index: 1;
    transition: color 300ms ease-out, transform 300ms ease-out;
}

.mode-spectrum-stack .mode-column::before,
.mode-spectrum-stack .mode-column::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.mode-spectrum-stack .mode-column::before {
    inset: 0.35rem;
    border: 1px solid rgba(142, 200, 255, 0);
    border-radius: 24px;
    background:
        radial-gradient(circle at top left, rgba(142, 200, 255, 0.14), transparent 52%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012));
    box-shadow:
        0 24px 44px rgba(0, 0, 0, 0),
        inset 0 1px 0 rgba(255, 255, 255, 0);
    opacity: 0;
    transform: translateY(8px);
    transition:
        opacity 300ms ease-out,
        transform 300ms ease-out,
        border-color 300ms ease-out,
        box-shadow 300ms ease-out;
    z-index: 0;
}

.mode-spectrum-stack .mode-column::after {
    top: 0.2rem;
    bottom: 0.2rem;
    left: -38%;
    width: 34%;
    border-radius: 28px;
    background: linear-gradient(90deg, transparent, rgba(214, 235, 255, 0.22), transparent);
    opacity: 0;
    transform: translateX(-160%) skewX(-22deg);
    transition:
        opacity 180ms ease-out,
        transform 850ms cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 0;
}

.mode-column + .mode-column {
    border-left: 1px solid var(--line);
}

.mode-index,
.step-number {
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--subtle);
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.82rem;
    letter-spacing: 0.16em;
}

.mode-column h3 {
    margin-bottom: 0.9rem;
}

.mode-spectrum-stack .mode-column > p {
    line-height: 1.62;
}

.detail-list {
    list-style: none;
    margin: 1.4rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.9rem;
}

.detail-list li {
    padding-top: 0.85rem;
    border-top: 1px solid rgba(145, 177, 210, 0.08);
    color: var(--muted);
    line-height: 1.65;
}

.automation-layout,
.orchestration-layout,
.vault-layout,
.guardrails-layout {
    display: grid;
    gap: 2rem;
}

.automation-band {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: 2.75rem;
    align-items: center;
}

.orchestration-band,
.vault-grid,
.guardrails-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.96fr);
    gap: 2.5rem;
    align-items: start;
}

.feature-rails,
.vault-points,
.guardrail-list {
    display: grid;
}

.automation-surface {
    position: relative;
    overflow: visible;
    padding: 1.5rem clamp(1.2rem, 2.4vw, 1.75rem) 1.45rem;
    border: none;
    border-radius: 0;
    background: none;
    box-shadow: none;
}

.automation-surface::after {
    display: none;
}

.automation-browser-top {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.85rem;
    margin: 1rem 0 1.15rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(145, 177, 210, 0.1);
}

.automation-browser-chrome {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.automation-dot {
    width: 0.58rem;
    height: 0.58rem;
    border-radius: 50%;
    background: rgba(145, 177, 210, 0.24);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.automation-dot:first-child {
    background: rgba(142, 200, 255, 0.58);
}

.automation-tab-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.automation-tab,
.automation-command,
.automation-footnote {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(145, 177, 210, 0.14);
    border-radius: 999px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.automation-tab {
    min-height: 36px;
    padding: 0.45rem 0.82rem;
    background: rgba(7, 10, 14, 0.32);
    color: var(--subtle);
    font-size: 0.76rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.automation-tab.is-active {
    border-color: rgba(142, 200, 255, 0.3);
    background: rgba(142, 200, 255, 0.1);
    color: var(--text);
}

.automation-stage-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.automation-stage-card {
    position: relative;
    display: grid;
    align-content: start;
    gap: 0.7rem;
    min-height: 11.65rem;
    padding: 1.05rem 1.05rem 1.15rem;
    border: 1px solid rgba(145, 177, 210, 0.14);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition: all 300ms ease-out;
}

.automation-stage-card::before {
    content: "";
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 2.4rem;
    height: 1px;
    background: linear-gradient(90deg, rgba(142, 200, 255, 0.7), transparent);
}

.automation-stage-card:hover,
.automation-rail:hover {
    transform: translateY(-2px);
    border-color: rgba(142, 200, 255, 0.24);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.automation-stage-index {
    color: var(--accent);
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
}

.automation-stage-card h3 {
    margin-top: 0.25rem;
    font-size: 1.08rem;
}

.automation-stage-card p {
    max-width: 25ch;
    font-size: 0.94rem;
    line-height: 1.62;
}

.automation-command-strip {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.15rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(145, 177, 210, 0.1);
}

.automation-command {
    min-height: 38px;
    padding: 0.48rem 0.8rem;
    background: rgba(142, 200, 255, 0.06);
    color: var(--accent-strong);
}

.automation-command code {
    font-size: 0.78rem;
    letter-spacing: 0.02em;
}

.automation-support {
    display: grid;
    gap: 1.25rem;
}

.automation-support .section-header {
    margin-bottom: 0;
}

.automation-support .section-header p {
    max-width: 38rem;
}

.automation-rails {
    display: grid;
    gap: 0.9rem;
}

.automation-rail {
    padding: 1.05rem 1.15rem 1.1rem;
    border: 1px solid rgba(145, 177, 210, 0.14);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    text-align: right;
    transition: all 300ms ease-out;
}

.automation-rail span {
    display: block;
    margin-bottom: 0.45rem;
    color: var(--accent);
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.automation-rail p {
    max-width: 35rem;
    margin-left: auto;
    font-size: 0.96rem;
}

.automation-footnotes {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.7rem;
}

.automation-footnote {
    min-height: 38px;
    padding: 0.5rem 0.82rem;
    background: rgba(255, 255, 255, 0.025);
    color: var(--muted);
    font-size: 0.8rem;
}

.automation-footnote::before {
    content: "";
    width: 0.42rem;
    height: 0.42rem;
    margin-right: 0.55rem;
    border-radius: 50%;
    background: rgba(142, 200, 255, 0.72);
    box-shadow: 0 0 0 0.32rem rgba(142, 200, 255, 0.08);
}

.feature-rail,
.vault-point,
.guardrail-item,
.support-item {
    padding: 1.2rem 0;
    border-top: 1px solid rgba(145, 177, 210, 0.1);
}

.feature-rail {
    display: grid;
    grid-template-columns: minmax(0, 0.42fr) minmax(0, 1fr);
    gap: 1rem;
}

.feature-rail span,
.support-item span,
.download-note span {
    color: var(--accent);
    font-size: 0.82rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.swarm-snapshot,
.trace-stream,
.download-cta {
    padding: 1.4rem 0 1.2rem;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(12, 17, 23, 0.76), rgba(8, 12, 16, 0.44));
}

.swarm-snapshot {
    padding: 1.45rem clamp(1.2rem, 2.2vw, 1.6rem) 1.3rem;
    border: 1px solid var(--line);
    border-radius: 26px;
}

.trace-stream {
    padding: 1.45rem clamp(1.2rem, 2.2vw, 1.6rem) 1.3rem;
    border: 1px solid var(--line);
    border-radius: 26px;
}

.download-cta {
    padding: 1.45rem clamp(1.2rem, 2.2vw, 1.6rem) 1.35rem;
    border: 1px solid var(--line);
    border-radius: 26px;
}

.swarm-snapshot .snapshot-header {
    padding-bottom: 0.9rem;
}

.snapshot-timeline {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.75rem;
    align-items: center;
    margin: 1.15rem 0 0.95rem;
}

.timeline-stop {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.7rem 0.6rem;
    border: 1px solid rgba(145, 177, 210, 0.16);
    border-radius: 999px;
    color: var(--subtle);
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.86rem;
}

.timeline-stop::after {
    content: "";
    position: absolute;
    left: calc(100% + 0.45rem);
    top: 50%;
    width: calc(100% - 0.35rem);
    border-top: 1px solid rgba(145, 177, 210, 0.16);
}

.timeline-stop:last-child::after {
    display: none;
}

.timeline-stop.is-active {
    color: var(--text);
    border-color: rgba(142, 200, 255, 0.36);
    background: rgba(142, 200, 255, 0.08);
}

.role-lanes {
    display: grid;
    gap: 0.8rem;
}

.role-lane,
.trace-line {
    display: grid;
    align-items: center;
    gap: 0.8rem 1rem;
    padding: 0.9rem 0;
    border-top: 1px solid rgba(145, 177, 210, 0.1);
}

.swarm-snapshot .role-lane {
    padding: 0.8rem 0;
}

.trace-stream .trace-line {
    grid-template-columns: minmax(72px, 0.24fr) minmax(0, 1.05fr) minmax(185px, 0.72fr);
    gap: 0.8rem 1.35rem;
    padding: 0.8rem 0;
}

.trace-stream .trace-line code {
    line-height: 1.5;
    white-space: normal;
    overflow-wrap: anywhere;
}

.trace-stream .trace-line small {
    display: block;
    line-height: 1.5;
}

.role-lane {
    grid-template-columns: minmax(90px, 0.35fr) minmax(0, 1fr) auto;
}

.role-lane span,
.trace-line span {
    color: var(--text);
    font-size: 0.95rem;
}

.role-lane small,
.trace-line small {
    color: var(--subtle);
    font-size: 0.84rem;
}

.lane-bar {
    position: relative;
    height: 6px;
    border-radius: 999px;
    background: rgba(145, 177, 210, 0.1);
    overflow: hidden;
}

.lane-bar::after {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(142, 200, 255, 0.3), rgba(142, 200, 255, 0.96));
}

.lane-bar-scout::after {
    width: 72%;
}

.lane-bar-verify::after {
    width: 64%;
}

.lane-bar-synth::after {
    width: 88%;
}

.lane-bar-operator::after {
    width: 54%;
}

.process-track {
    display: grid;
    grid-template-columns: repeat(5, minmax(11.5rem, 1fr));
    gap: clamp(1.35rem, 1.8vw, 1.75rem);
    align-items: start;
}

.sequence-step {
    position: relative;
    padding-top: 1.65rem;
    border-top: 1px solid var(--line);
}

.sequence-step::after {
    content: "";
    position: absolute;
    top: 1.95rem;
    left: calc(100% + 0.5rem);
    width: calc(100% - 0.95rem);
    border-top: 1px dashed rgba(145, 177, 210, 0.2);
}

.sequence-step:last-child::after {
    display: none;
}

.sequence-step h3 {
    margin-bottom: 0.75rem;
}

.support-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.trace-line {
    grid-template-columns: minmax(90px, 0.3fr) minmax(0, 1fr) minmax(180px, 0.5fr);
}

.trace-line code {
    color: var(--accent-strong);
    font-size: 0.9rem;
    white-space: nowrap;
}

.vault-point h3,
.guardrail-item h3 {
    margin-bottom: 0.55rem;
}

.guardrail-item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1rem;
}

.guardrail-item i {
    color: var(--accent);
    font-size: 1rem;
    width: 1.25rem;
    margin-top: 0.25rem;
}

.download-cta h3 {
    margin-bottom: 1rem;
    max-width: 13ch;
    font-size: clamp(1.55rem, 2.6vw, 2.25rem);
}

.download-cta p {
    max-width: 34rem;
}

.cta-actions {
    margin-top: 2rem;
}

.download-cta .cta-actions {
    margin-top: 1.75rem;
}

.download-note {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(145, 177, 210, 0.12);
}

.download-cta .download-note {
    margin-top: 1.75rem;
}

.download-note strong {
    display: block;
    margin-top: 0.5rem;
    font-size: 1rem;
    line-height: 1.6;
    letter-spacing: -0.02em;
}

.desktop-specs-band {
    margin-top: clamp(3.6rem, 6vw, 5.4rem);
    padding-top: clamp(2rem, 3vw, 2.8rem);
    border-top: 1px solid rgba(145, 177, 210, 0.12);
}

.desktop-specs-header {
    display: grid;
    gap: 0.85rem;
    max-width: 46rem;
    margin-bottom: 2rem;
}

.desktop-specs-header h3 {
    max-width: 16ch;
    margin: 0;
    font-size: clamp(1.65rem, 2.7vw, 2.3rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.desktop-specs-header p {
    margin: 0;
    max-width: 42rem;
}

.desktop-specs-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.desktop-spec-column {
    min-width: 0;
    padding: 1.5rem 1.35rem 1.7rem;
}

.desktop-spec-column + .desktop-spec-column {
    border-left: 1px solid var(--line);
}

.desktop-spec-label {
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.desktop-spec-list {
    display: grid;
    gap: 0;
    margin: 0;
}

.desktop-spec-row {
    display: grid;
    gap: 0.4rem;
    padding: 0.95rem 0 0;
    border-top: 1px solid rgba(145, 177, 210, 0.08);
}

.desktop-spec-row:first-child {
    padding-top: 0;
    border-top: none;
}

.desktop-spec-row dt {
    color: var(--subtle);
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.74rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.desktop-spec-row dd {
    margin: 0;
}

.desktop-spec-row strong {
    display: block;
    color: var(--text);
    font-size: 1rem;
    line-height: 1.4;
    letter-spacing: -0.02em;
}

.desktop-spec-row code,
.desktop-specs-footnote code {
    color: var(--accent-strong);
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.88em;
    white-space: normal;
    overflow-wrap: anywhere;
}

.desktop-spec-row small {
    display: block;
    margin-top: 0.26rem;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.55;
}

.desktop-specs-footnote {
    margin: 1rem 0 0;
    color: var(--subtle);
    font-size: 0.88rem;
    line-height: 1.6;
}

.site-footer {
    position: relative;
    width: 100%;
    margin-top: clamp(5rem, 10vw, 8rem);
    padding: 0;
    border-top: 1px solid rgba(145, 177, 210, 0.12);
    background:
        linear-gradient(180deg, rgba(5, 8, 11, 0), rgba(7, 10, 14, 0.78) 12%, rgba(5, 8, 11, 0.98) 100%),
        radial-gradient(circle at top left, rgba(142, 200, 255, 0.08), transparent 28%);
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(142, 200, 255, 0.28), transparent);
    opacity: 0.7;
}

.footer-shell {
    position: relative;
    padding-top: clamp(2.4rem, 4vw, 3.4rem);
    padding-bottom: 1.5rem;
}

.footer-brand {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.footer-topline {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2rem;
    align-items: end;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid rgba(145, 177, 210, 0.12);
}

.footer-kicker,
.footer-label {
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.footer-kicker {
    margin-bottom: 0.45rem;
}

.footer-brand p {
    max-width: 42rem;
    font-size: 0.96rem;
}

.footer-cta {
    display: inline-grid;
    grid-template-columns: 1fr auto;
    gap: 0.25rem 1rem;
    align-items: center;
    min-height: 44px;
    padding-bottom: 0.2rem;
    border-bottom: 1px solid rgba(142, 200, 255, 0.18);
    transition: all 300ms ease-out;
}

.footer-cta span {
    color: var(--accent);
    font-size: 0.74rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.footer-cta strong {
    font-size: 1rem;
    letter-spacing: -0.02em;
}

.footer-cta i {
    grid-row: 1 / span 2;
    grid-column: 2;
    color: var(--text);
    font-size: 0.92rem;
    transition: transform 300ms ease-out;
}

.footer-cta:hover {
    border-color: rgba(142, 200, 255, 0.34);
    color: var(--accent-strong);
}

.footer-cta:hover i {
    transform: translateX(4px);
}

.footer-cta-disabled {
    cursor: default;
}

.footer-cta-disabled:hover {
    border-color: rgba(142, 200, 255, 0.18);
    color: inherit;
}

.footer-cta-disabled:hover i {
    transform: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 0.8fr));
    gap: 1.8rem;
    padding: 1.7rem 0 1.5rem;
}

.footer-column {
    display: grid;
    align-content: start;
    gap: 0.9rem;
}

.footer-column-intro p {
    max-width: 32rem;
}

.footer-link-list,
.footer-list,
.footer-inline-links {
    display: grid;
    gap: 0.75rem;
}

.footer-link-list a,
.footer-inline-links a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    color: var(--muted);
    transition: all 300ms ease-out;
}

.footer-link-list a:hover,
.footer-inline-links a:hover {
    color: var(--text);
    transform: translateX(4px);
}

.footer-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-list li {
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.5;
}

.footer-base {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(145, 177, 210, 0.12);
}

.footer-base p {
    max-width: 30rem;
    color: var(--subtle);
    font-size: 0.9rem;
}

.footer-inline-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 1.25rem;
}

body.motion-ready .reveal-item,
body.motion-ready .stagger-item {
    opacity: 0;
    transform: translateY(28px);
}

body.motion-ready .mode-meter-fill {
    transform: scaleX(0);
}

@media (prefers-reduced-motion: reduce) {
    .hero-atmosphere::before,
    .hero-atmosphere::after,
    .hero-wave-field,
    .hero-pointer-glow {
        transition: none;
    }

    .hero-atmosphere::after,
    .hero-wave-field-primary,
    .hero-wave-field-secondary {
        animation: none;
    }
}

@media (min-width: 981px) and (hover: hover) {
    .mode-spectrum-stack .mode-column:hover {
        transform: translateY(-6px);
        z-index: 2;
    }

    .mode-spectrum-stack .mode-column:hover::before {
        opacity: 1;
        transform: translateY(0);
        border-color: rgba(142, 200, 255, 0.22);
        box-shadow:
            0 26px 54px rgba(0, 0, 0, 0.22),
            inset 0 1px 0 rgba(255, 255, 255, 0.06);
    }

    .mode-spectrum-stack .mode-column:hover::after {
        opacity: 1;
        transform: translateX(320%) skewX(-22deg);
    }

    .mode-spectrum-stack .mode-column:hover .mode-index,
    .mode-spectrum-stack .mode-column:hover h3 code {
        color: var(--accent-strong);
    }

    .mode-spectrum-stack .mode-column:hover > p {
        color: rgba(244, 248, 252, 0.88);
    }
}

@media (min-width: 981px) {
    .hero-title {
        font-size: clamp(2.8rem, 4.5vw, 4.35rem);
        max-width: none;
    }

    .hero-title .hero-heading-line {
        white-space: nowrap;
    }

    .modes-title .heading-line {
        white-space: nowrap;
    }

    .guardrails-title .heading-line {
        white-space: nowrap;
    }

    body.motion-ready .section-header.reveal-item {
        opacity: 1;
        transform: none;
    }

    body.motion-ready .section-header .eyebrow,
    body.motion-ready .section-header h2,
    body.motion-ready .section-header p {
        opacity: 0;
        transform: translateY(26px);
        filter: blur(10px);
    }
}

@media (max-width: 1080px) {
    .hero-atmosphere::after {
        inset: 14% -24% auto;
        height: 40%;
        opacity: 0.12;
    }

    .hero-wave-field-primary {
        opacity: 0.08;
    }

    .hero-wave-field-secondary {
        opacity: 0.04;
    }

    .hero-pointer-glow {
        width: clamp(14rem, 54vw, 22rem);
        opacity: 0.14;
    }

    .hero-layout,
    .automation-band,
    .orchestration-band,
    .vault-grid,
    .guardrails-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-layout {
        min-height: 100vh;
        min-height: 100svh;
        padding: 1.75rem 0 0;
    }

    .mode-spectrum {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mode-column {
        border-left: none;
    }

    .mode-column:nth-child(n + 3) {
        border-top: 1px solid var(--line);
    }

    .mode-column:nth-child(2n) {
        border-left: 1px solid var(--line);
    }

    .process-track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sequence-step:nth-child(2n)::after {
        display: none;
    }

    .desktop-specs-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    :root {
        --header-offset: 7.75rem;
    }

    body.mobile-menu-open {
        overflow: hidden;
    }

    .site-header {
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        justify-items: stretch;
        width: calc(100% - 1rem);
        padding: 0.85rem 0.9rem;
        border-radius: 28px;
        gap: 0.85rem;
    }

    .site-header.compact {
        top: 0.65rem;
    }

    .brand-lockup {
        justify-self: start;
        justify-content: flex-start;
        gap: 0.75rem;
        min-width: 0;
    }

    .brand-logo {
        width: 2.6rem;
        height: 2.6rem;
    }

    .brand-copy {
        min-width: 0;
    }

    .brand-name {
        font-size: 0.98rem;
    }

    .brand-subtitle {
        font-size: 0.68rem;
        letter-spacing: 0.1em;
    }

    .nav-rail,
    .nav-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: inline-flex;
        justify-self: end;
    }

    .mobile-nav-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(4, 7, 10, 0.62);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 300ms ease-out;
        z-index: 18;
    }

    .mobile-nav-backdrop.is-visible {
        opacity: 1;
        pointer-events: auto;
    }

    .mobile-nav-drawer {
        display: grid;
        position: fixed;
        top: 0.75rem;
        right: 0.75rem;
        bottom: 0.75rem;
        width: min(21.5rem, calc(100vw - 1.25rem));
        padding: 1rem;
        border: 1px solid rgba(145, 177, 210, 0.18);
        border-radius: 28px;
        background:
            linear-gradient(180deg, rgba(18, 24, 33, 0.96), rgba(7, 10, 14, 0.92)),
            rgba(7, 10, 14, 0.94);
        box-shadow:
            0 32px 72px rgba(0, 0, 0, 0.36),
            inset 0 1px 0 rgba(255, 255, 255, 0.05);
        transform: translateX(calc(100% + 1rem));
        opacity: 0;
        pointer-events: none;
        transition: transform 300ms ease-out, opacity 300ms ease-out;
        grid-template-rows: auto auto 1fr;
        gap: 1rem;
        z-index: 19;
    }

    .mobile-nav-drawer.is-open {
        transform: translateX(0);
        opacity: 1;
        pointer-events: auto;
    }

    .mobile-nav-drawer-top {
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 0.75rem;
        padding-bottom: 0.95rem;
        border-bottom: 1px solid rgba(145, 177, 210, 0.1);
    }

    .section-shell {
        width: min(var(--max-width), calc(100% - 2rem));
    }

    .hero-layout {
        min-height: calc(100vh - var(--header-offset));
        min-height: calc(100svh - var(--header-offset));
        padding: 2rem 0 0;
    }

    .hero-copy {
        gap: 0.6rem;
        max-width: 100%;
    }

    .hero-emblem img {
        width: clamp(7.25rem, 24vw, 9.5rem);
        height: auto;
    }

    .hero-copy > .eyebrow {
        margin-bottom: 0.55rem;
        font-size: 0.78rem;
        letter-spacing: 0.14em;
    }

    h1 {
        font-size: clamp(2.45rem, 9.5vw, 3.8rem);
        max-width: none;
    }

    .hero-lead {
        max-width: 34rem;
        font-size: 0.96rem;
        line-height: 1.62;
    }

    .hero-waitlist {
        width: 100%;
        margin: 1rem auto 1.15rem;
    }

    .hero-waitlist-row {
        gap: 0.65rem;
    }

    .hero-waitlist-field,
    .hero-waitlist-submit {
        min-height: 54px;
        border-radius: 18px;
    }

    .hero-metrics {
        width: 100%;
        gap: 0.75rem;
        margin-top: 1.35rem;
    }

    .metric-strip {
        padding-top: 1rem;
    }

    .landing-section {
        padding: 3.25rem 0;
    }

    .section-header {
        gap: 0.6rem;
        margin-bottom: 1.5rem;
    }

    .section-header p {
        max-width: 100%;
        font-size: 0.96rem;
    }

    .automation-band,
    .orchestration-band,
    .vault-grid,
    .guardrails-grid {
        gap: 1.25rem;
    }

    .mode-spectrum {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mode-column {
        padding: 1.55rem 1.2rem 1.7rem;
        border-left: none;
    }

    .mode-column:nth-child(n + 3) {
        border-top: 1px solid var(--line);
    }

    .mode-column:nth-child(2n) {
        border-left: 1px solid var(--line);
    }

    .detail-list {
        gap: 0.75rem;
        margin-top: 1.1rem;
    }

    .feature-rail,
    .automation-rail,
    .support-item,
    .vault-point,
    .guardrail-item {
        padding: 1rem 0;
    }

    .automation-stage-card {
        min-height: auto;
        padding: 1rem 1rem 1.05rem;
    }

    .automation-command-strip {
        gap: 0.5rem;
    }

    .automation-command {
        min-height: 36px;
        padding: 0.42rem 0.72rem;
    }

    .process-track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

    .sequence-step:nth-child(2n)::after {
        display: none;
    }

    .support-row {
        gap: 1rem;
        margin-top: 2rem;
    }

    .swarm-snapshot,
    .trace-stream,
    .download-cta {
        padding: 1.2rem 1rem 1.05rem;
        border-radius: 22px;
    }

    .snapshot-timeline {
        gap: 0.5rem;
    }

    .timeline-stop {
        min-height: 40px;
        padding: 0.6rem 0.45rem;
    }

    .trace-stream .trace-line {
        gap: 0.7rem 1rem;
    }

    .desktop-spec-column {
        padding: 1.3rem 1.15rem 1.45rem;
    }

    .plan-price-value {
        font-size: clamp(1.85rem, 6.5vw, 2.45rem);
    }

    .footer-shell {
        padding-top: 2rem;
        padding-bottom: 1.25rem;
    }

    .footer-topline {
        gap: 1.25rem;
        align-items: start;
    }

    .footer-brand {
        gap: 0.85rem;
    }

    .footer-logo {
        width: 2.65rem;
        height: 2.65rem;
    }

    .footer-brand p {
        font-size: 0.92rem;
    }
}

@media (max-width: 820px) {
    .site-header {
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
    }

    .brand-lockup {
        justify-content: flex-start;
    }

    .support-row,
    .mode-spectrum,
    .process-track {
        grid-template-columns: 1fr;
    }

    .hero-metrics {
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
        gap: 0.75rem;
    }

    .hero-metrics .metric-strip {
        flex: 1 1 calc(50% - 0.375rem);
        min-width: 0;
    }

    .hero-metrics .metric-strip:first-child {
        flex-basis: 100%;
    }

    .mode-column + .mode-column {
        border-left: none;
        border-top: 1px solid var(--line);
    }

    .feature-rail,
    .automation-stage-grid,
    .trace-line,
    .role-lane,
    .surface-main {
        grid-template-columns: 1fr;
    }

    .hero-lockup {
        width: 100%;
        padding-top: 0;
    }

    .hero-title-block {
        width: 100%;
        gap: 0.65rem;
        padding-inline: 0;
    }

    .hero-title .hero-heading-line {
        white-space: nowrap;
    }

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

    .hero-waitlist-submit {
        width: 100%;
    }

    .section-header-right {
        text-align: left;
    }

    .section-header-right > .eyebrow,
    .section-header-right > h2,
    .section-header-right > p {
        justify-self: start;
        margin-left: 0;
    }

    .hero-mark {
        top: clamp(1rem, 6vw, 2.5rem);
        right: clamp(-2rem, -4vw, -0.5rem);
    }

    .timeline-stop::after,
    .sequence-step::after {
        display: none;
    }

    .snapshot-timeline {
        grid-template-columns: repeat(5, minmax(52px, 1fr));
    }

    .trace-stream .trace-line {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 0.45rem;
    }

    .trace-stream .trace-line span {
        margin-bottom: 0.1rem;
    }

    .desktop-specs-grid {
        grid-template-columns: 1fr;
    }

    .desktop-spec-column + .desktop-spec-column {
        border-left: none;
        border-top: 1px solid var(--line);
    }

    .mobile-nav-drawer {
        top: 0.5rem;
        right: 0.5rem;
        bottom: 0.5rem;
        width: min(21rem, calc(100vw - 1rem));
        padding: 0.9rem;
        border-radius: 24px;
    }

    .footer-topline {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    :root {
        --header-offset: 6.85rem;
    }

    .hero-atmosphere::before {
        opacity: 0.28;
    }

    .hero-atmosphere::after {
        inset: 18% -30% auto;
        height: 34%;
        opacity: 0.08;
    }

    .hero-wave-field-primary {
        opacity: 0.05;
    }

    .hero-wave-field-secondary {
        opacity: 0.02;
    }

    .hero-pointer-glow {
        width: clamp(12rem, 62vw, 18rem);
        opacity: 0.1;
    }

    .section-shell {
        width: min(var(--max-width), calc(100% - 1.25rem));
    }

    .footer-logo {
        display: none;
    }

    .site-header {
        width: calc(100% - 0.75rem);
        margin-top: 0.4rem;
        padding: 0.75rem 0.8rem;
        border-radius: 24px;
        gap: 0.65rem;
    }

    .brand-logo {
        width: 2.2rem;
        height: 2.2rem;
    }

    .brand-name {
        font-size: 0.92rem;
    }

    .brand-subtitle {
        font-size: 0.62rem;
    }

    .mobile-menu-toggle,
    .mobile-nav-close {
        width: 46px;
        height: 46px;
        border-radius: 14px;
    }

    .hero-emblem {
        display: none;
    }

    .hero-actions,
    .cta-actions {
        width: 100%;
    }

    .nav-button,
    .button-link {
        flex: 1 1 100%;
    }

    .hero-waitlist {
        width: 100%;
    }

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

    .hero-layout {
        padding: 1.55rem 0.5rem 0;
    }

    .hero-emblem img {
        width: 6.25rem;
    }

    .hero-title-block {
        gap: 0.55rem;
        padding-bottom: clamp(0.85rem, 4vw, 1.25rem);
    }

    .hero-title {
        font-size: clamp(1.5rem, 7.5vw, 2rem);
        line-height: 0.94;
    }

    .hero-title .hero-heading-line {
        white-space: nowrap;
    }

    .hero-copy > .eyebrow {
        font-size: 0.72rem;
        letter-spacing: 0.12em;
    }

    h1 {
        font-size: clamp(1.72rem, 8.4vw, 2.35rem);
        max-width: none;
    }

    h2 {
        font-size: clamp(1.5rem, 8.2vw, 1.95rem);
        max-width: none;
    }

    h3 {
        font-size: 1.05rem;
    }

    p {
        font-size: 0.95rem;
        line-height: 1.65;
    }

    .hero-lead {
        max-width: 100%;
        font-size: 0.92rem;
    }

    .hero-waitlist-field,
    .hero-waitlist-submit {
        min-height: 52px;
    }

    .hero-waitlist-field {
        padding: 0 0.9rem;
        gap: 0.65rem;
    }

    .hero-metrics {
        margin-top: 1.2rem;
    }

    .metric-mode-list {
        flex-wrap: wrap;
    }

    .metric-strip dt {
        font-size: 0.76rem;
    }

    .metric-strip dd {
        font-size: 0.94rem;
    }

    .landing-section {
        padding: 2rem 0;
    }

    .section-header {
        margin-bottom: 1.15rem;
    }

    .mode-column {
        padding: 1.35rem 1rem 1.5rem;
    }

    .detail-list li {
        padding-top: 0.7rem;
        font-size: 0.94rem;
    }

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

    .cluster-shell {
        min-height: 12.5rem;
    }

    .orbit-three {
        width: 11rem;
        height: 11rem;
    }

    .automation-stage-card {
        padding: 0.9rem 0.9rem 0.95rem;
        border-radius: 20px;
    }

    .automation-command {
        font-size: 0.72rem;
    }

    .swarm-snapshot,
    .trace-stream,
    .download-cta {
        padding: 1rem 0.9rem 0.95rem;
        border-radius: 20px;
    }

    .desktop-specs-band {
        margin-top: 3.15rem;
        padding-top: 1.65rem;
    }

    .desktop-specs-header {
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .desktop-specs-header h3 {
        max-width: none;
        font-size: clamp(1.45rem, 7.6vw, 1.95rem);
    }

    .desktop-spec-column {
        padding: 1.1rem 0;
    }

    .desktop-spec-label {
        margin-bottom: 0.8rem;
        font-size: 0.74rem;
    }

    .desktop-spec-row strong {
        font-size: 0.96rem;
    }

    .desktop-spec-row small,
    .desktop-specs-footnote {
        font-size: 0.84rem;
    }

    .timeline-stop {
        min-height: 38px;
        font-size: 0.78rem;
    }

    .guardrail-item {
        gap: 0.85rem;
    }

    .download-note {
        margin-top: 1.35rem;
    }

    .trace-line code {
        white-space: normal;
    }

    .trace-stream .trace-line {
        gap: 0.4rem;
        padding: 0.9rem 0;
    }

    .footer-topline {
        gap: 1rem;
    }

    .footer-cta {
        padding-top: 0.25rem;
    }

    .footer-cta strong {
        font-size: 0.95rem;
    }

    .mobile-nav-drawer {
        width: calc(100vw - 0.75rem);
        top: 0.375rem;
        right: 0.375rem;
        bottom: 0.375rem;
        padding: 0.85rem;
        gap: 0.85rem;
    }
}
