:root {
    --bg: #f4f7fb;
    --bg-soft: #eef3fa;
    --panel: rgba(255, 255, 255, 0.9);
    --panel-solid: #ffffff;
    --line: #d7dfef;
    --line-strong: #c4cfe6;
    --ink: #121c36;
    --muted: #5c6b88;
    --muted-soft: #7a89a8;
    --brand: #5b8cff;
    --brand-strong: #273a5f;
    --brand-bright: #67d5ff;
    --accent: #ffab88;
    --shadow: 0 28px 70px rgba(30, 53, 94, 0.12);
    --radius-lg: 32px;
    --radius-md: 22px;
    --radius-sm: 16px;
    --container: min(1180px, calc(100% - 40px));
}

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

::selection {
    color: #ffffff;
    background: var(--brand);
}

html {
    scroll-behavior: smooth;
    color-scheme: light;
}

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

body {
    margin: 0;
    font-family: "Sora", sans-serif;
    color: var(--ink);
    background: radial-gradient(circle at top left, rgba(103, 213, 255, 0.3), transparent 28%), radial-gradient(circle at 85% 18%, rgba(255, 171, 136, 0.18), transparent 22%), linear-gradient(180deg, #f8fbff 0%, #f4f7fb 35%, #eef3fa 100%);
    overflow-x: hidden;
}

body.nav-open {
    overflow: hidden;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 10001;
    padding: 10px 14px;
    border-radius: 12px;
    color: #ffffff;
    background: var(--brand-strong);
    box-shadow: var(--shadow);
    transform: translateY(-160%);
    transition: transform 0.2s ease;
}

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

.cursor-trail-canvas {
    position: fixed;
    inset: 0;
    z-index: 9999;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
    outline: 3px solid rgba(91, 140, 255, 0.38);
    outline-offset: 4px;
}

.page-shell {
    overflow: clip;
}

.container {
    width: var(--container);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(18px);
    background: rgba(244, 247, 251, 0.7);
    border-bottom: 1px solid rgba(196, 207, 230, 0.5);
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
    background: rgba(244, 247, 251, 0.88);
    border-bottom-color: rgba(196, 207, 230, 0.78);
    box-shadow: 0 14px 36px rgba(30, 53, 94, 0.08);
}

.site-scroll-progress {
    --scroll-progress: 0;
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 2px;
    overflow: hidden;
    pointer-events: none;
}

.site-scroll-progress::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand), var(--brand-bright), var(--accent));
    box-shadow: 0 0 14px rgba(91, 140, 255, 0.55);
    transform: scaleX(var(--scroll-progress));
    transform-origin: left center;
    will-change: transform;
}

.nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 82px;
    transition: height 0.3s ease;
}

.site-header.is-scrolled .nav-row {
    height: 72px;
}

.brand {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: 250px;
    height: 64px;
    flex: 0 0 250px;
    overflow: visible;
}

.brand-logo {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 250px;
    height: 92px;
    object-fit: contain;
    object-position: left center;
    transform: translateY(-50%);
    transition: filter 0.3s ease, transform 0.3s ease;
}

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

.brand-copy strong {
    color: var(--ink);
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.035em;
}

.brand-copy small {
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.brand-mark {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #ff82bd 0%, #806fff 55%, #5b8cff 100%);
    box-shadow: 0 14px 34px rgba(91, 140, 255, 0.3);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-copy strong {
    font-size: 1rem;
    letter-spacing: -0.02em;
}

.brand-copy small {
    color: var(--muted);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-tools {
    display: flex;
    align-items: center;
    gap: 14px;
}

.site-nav a {
    position: relative;
    font-size: 0.92rem;
    color: var(--muted);
    transition: color 0.25s ease, background 0.25s ease;
}

.site-nav a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand), var(--brand-bright));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
    color: var(--ink);
}

.site-nav a:not(.nav-cta):hover::after,
.site-nav a:not(.nav-cta):focus-visible::after,
.site-nav a:not(.nav-cta).is-active::after {
    transform: scaleX(1);
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.7);
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--ink);
    transform-origin: center;
    transition: transform 0.25s ease, opacity 0.2s ease;
}

.menu-toggle.is-open span:first-child {
    transform: translateY(4px) rotate(45deg);
}

.menu-toggle.is-open span:last-child {
    transform: translateY(-4px) rotate(-45deg);
}

.theme-toggle {
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--brand-strong);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
    transform: translateY(-1px);
}

.theme-toggle .icon-sun {
    display: none;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-1px);
}

.button-primary {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(135deg, var(--brand-strong), var(--brand));
    box-shadow: 0 18px 36px rgba(91, 140, 255, 0.24);
}

.button-primary::before {
    content: "";
    position: absolute;
    top: -70%;
    bottom: -70%;
    left: -55%;
    width: 34%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
    transform: rotate(18deg);
    transition: left 0.6s ease;
}

.button-primary:hover::before,
.button-primary:focus-visible::before {
    left: 125%;
}

.button-secondary {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid var(--line);
}

.nav-cta {
    margin-left: 10px;
}

.site-nav a.nav-cta,
.site-nav a.nav-cta:hover,
.site-nav a.nav-cta:focus-visible {
    color: #ffffff;
}

html[data-theme="dark"] .site-nav a.nav-cta,
html[data-theme="dark"] .site-nav a.nav-cta:hover,
html[data-theme="dark"] .site-nav a.nav-cta:focus-visible {
    color: #ffffff;
}

html[data-theme="dark"] .hero-orbit-button {
    border-color:
        rgba(103, 213, 255, 0.26);

    background:
        linear-gradient(135deg,
            #294d88,
            #5b8cff);

    box-shadow:
        0 22px 48px rgba(0, 0, 0, 0.36);
}

html[data-theme="dark"] .hero-orbit-button:hover,
html[data-theme="dark"] .hero-orbit-button:focus-visible {
    background:
        linear-gradient(135deg,
            #17243b,
            #294d88);
}

.hero {
    position: relative;
    padding: 64px 0 44px;
}

.hero-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(40px);
    pointer-events: none;
    will-change: transform;
}

.hero-glow-left {
    animation: hero-glow-left 11s ease-in-out infinite alternate;
}

.hero-glow-right {
    animation: hero-glow-right 13s ease-in-out infinite alternate;
}

.hero-glow-left {
    width: 280px;
    height: 280px;
    top: 50px;
    left: -40px;
    background: rgba(103, 213, 255, 0.2);
}

.hero-glow-right {
    width: 340px;
    height: 340px;
    top: 120px;
    right: -40px;
    background: rgba(255, 171, 136, 0.2);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: 52px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-strong);
}

.eyebrow::before {
    content: "";
    width: 34px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand), var(--brand-bright));
}

.hero h1,
.section-heading h2,
.cta-panel h2 {
    margin: 0;
    letter-spacing: -0.045em;
    line-height: 0.98;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6.1rem);
    max-width: 11ch;
}

.hero-text,
.section-heading p,
.feature-row p,
.panel p,
.workflow-step p,
.mini-note p,
.use-case p,
.impact-copy p,
.faq-list p,
.cta-panel p,
.site-footer p,
.plan-card li {
    color: var(--muted);
    line-height: 1.7;
    overflow-wrap: anywhere;
}

.hero-copy,
.section-heading,
.impact-copy,
.showcase,
.workflow-visual,
.platform-grid>*,
.workflow-grid>* {
    min-width: 0;
}

.hero-text {
    max-width: 62ch;
    margin: 24px 0 0;
    font-size: 1.04rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;

    gap: 18px;

    margin-top: 32px;
}

/* =========================================================
   HERO ORBIT BUTTON
========================================================= */

.hero-orbit-button {
    position: relative;

    width: 112px;
    height: 112px;

    flex: 0 0 112px;

    display: grid;
    place-items: center;

    overflow: hidden;

    border:
        1px solid rgba(91, 140, 255, 0.2);

    border-radius: 50%;

    color: #ffffff;

    background:
        linear-gradient(135deg,
            var(--brand-strong),
            var(--brand));

    box-shadow:
        0 20px 42px rgba(91, 140, 255, 0.28);

    cursor: pointer;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.hero-orbit-button__text {
    position: absolute;

    inset: 0;

    margin: 0;

    animation:
        hero-orbit-text-rotation 10s linear infinite;
}

.hero-orbit-button__text>span {
    position: absolute;

    inset: 7px;

    color:
        rgba(255, 255, 255, 0.92);

    font-size: 0.61rem;
    font-weight: 700;

    line-height: 1;

    letter-spacing: 0;

    text-align: center;

    transform:
        rotate(calc(22.5deg * var(--index)));

    transform-origin: center;
}

.hero-orbit-button__circle {
    position: relative;

    z-index: 2;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    border-radius: 50%;

    color: var(--brand);

    background: #ffffff;

    box-shadow:
        0 10px 24px rgba(7, 17, 31, 0.18);
}

.hero-orbit-button__icon {
    transition:
        transform 0.3s ease-in-out,
        color 0.3s ease;
}

.hero-orbit-button__icon--copy {
    position: absolute;

    transform:
        translate(-150%, 150%);
}

.hero-orbit-button:hover,
.hero-orbit-button:focus-visible {
    color: #ffffff;

    background:
        linear-gradient(135deg,
            #11192d,
            var(--brand-strong));

    box-shadow:
        0 24px 50px rgba(39, 58, 95, 0.34);

    transform:
        translateY(-3px) scale(1.04);
}

.hero-orbit-button:hover .hero-orbit-button__icon:first-child,
.hero-orbit-button:focus-visible .hero-orbit-button__icon:first-child {
    transform:
        translate(150%, -150%);
}

.hero-orbit-button:hover .hero-orbit-button__icon--copy,
.hero-orbit-button:focus-visible .hero-orbit-button__icon--copy {
    transform: translate(0);
    transition-delay: 0.08s;
}

@keyframes hero-orbit-text-rotation {
    to {
        transform: rotate(360deg);
    }
}

.hero-tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 28px 0 0;
    padding: 0;
}

.hero-tags li {
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(196, 207, 230, 0.9);
    background: rgba(255, 255, 255, 0.7);
    color: var(--muted);
    font-size: 0.82rem;
    box-shadow: 0 10px 30px rgba(18, 28, 54, 0.04);
}

.hero-stage {
    --hero-parallax-x: 0px;
    --hero-parallax-y: 0px;
    --hero-tilt-x: 0deg;
    --hero-tilt-y: 0deg;
    --hero-light-x: 50%;
    --hero-light-y: 50%;
    position: relative;
    min-height: 630px;
    perspective: 1200px;
}

.hero-card,
.mini-note,
.metric-card,
.impact-card,
.cta-panel,
.panel,
.capability-card,
.showcase-frame,
.use-case,
.workflow-step,
.faq-list details {
    background: var(--panel);
    border: 1px solid rgba(215, 223, 239, 0.92);
    box-shadow: var(--shadow);
}

.metric-card,
.impact-card,
.panel,
.capability-card,
.domain-card {
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.cursor-glow-card {
    position: relative;
    isolation: isolate;
}

.cursor-glow-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: inherit;
    background: radial-gradient(280px circle at var(--pointer-x, 50%) var(--pointer-y, 50%), rgba(103, 213, 255, 0.16), rgba(91, 140, 255, 0.08) 28%, transparent 68%);
    opacity: var(--pointer-glow-opacity, 0);
    pointer-events: none;
    transition: opacity 0.22s ease;
}

.cursor-glow-card>* {
    position: relative;
    z-index: 1;
}

.hero-card {
    position: absolute;
    top: 26px;
    right: 24px;
    width: min(270px, 46%);
    padding: 18px 20px;
    border-radius: 24px;
    z-index: 2;
}

.hero-card strong {
    display: block;
    margin: 8px 0 4px;
    font-size: 2.2rem;
    letter-spacing: -0.05em;
}

.hero-card span {
    display: block;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.stat-kicker,
.capability-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(91, 140, 255, 0.08);
    color: var(--brand-strong);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.live-indicator-dot {
    position: relative;
    width: 8px;
    height: 8px;
    flex: 0 0 auto;
    border-radius: 999px;
    background: #31d67b;
    box-shadow: 0 0 0 4px rgba(49, 214, 123, 0.12);
}

.live-indicator-dot::after {
    content: "";
    position: absolute;
    inset: -5px;
    border: 1px solid rgba(49, 214, 123, 0.55);
    border-radius: inherit;
    animation: live-indicator-pulse 2s ease-out infinite;
}

.hero-screen {
    position: absolute;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.hero-screen img,
.showcase-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-screen-main {
    inset: 90px 28px 72px 0;
    transform: perspective(1200px) translate3d(var(--hero-parallax-x), var(--hero-parallax-y), 0) rotateX(var(--hero-tilt-x)) rotateY(var(--hero-tilt-y));
    transform-style: preserve-3d;
    will-change: transform;
}

.hero-screen-main::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    border-radius: inherit;
    background: radial-gradient(circle at var(--hero-light-x) var(--hero-light-y), rgba(255, 255, 255, 0.26), transparent 34%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.hero-stage:hover .hero-screen-main::after {
    opacity: 1;
}

.hero-screen-secondary {
    width: 44%;
    right: -10px;
    bottom: 0;
    animation: hero-screen-float 6.5s ease-in-out infinite;
}

.hero-card {
    animation: hero-card-float 7.5s ease-in-out infinite;
}

.hero-screen,
.showcase-frame {
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

@media (hover:hover) {
    .showcase-frame:hover {
        transform: translateY(-4px);
        border-color: rgba(91, 140, 255, 0.36);
        box-shadow: 0 34px 86px rgba(30, 53, 94, 0.17);
    }

    .panel:hover,
    .capability-card:hover,
    .metric-card:hover,
    .impact-card:hover,
    .domain-card:hover {
        transform: translateY(-4px);
        border-color: rgba(91, 140, 255, 0.36);
        box-shadow: 0 32px 76px rgba(30, 53, 94, 0.16);
    }
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.metric-card {
    padding: 24px;
    border-radius: 24px;
}

.metric-card strong {
    display: block;
    font-size: 2rem;
    letter-spacing: -0.05em;
}

.metric-card span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 0.9rem;
}

.section {
    padding: 110px 0;
    scroll-margin-top: 96px;
}

.section-soft {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.3));
    border-top: 1px solid rgba(255, 255, 255, 0.45);
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

.section-heading {
    max-width: 720px;
    margin-bottom: 40px;
}

.section-heading h2,
.cta-panel h2 {
    font-size: clamp(2.1rem, 5vw, 4rem);
}

.section-heading p {
    margin: 16px 0 0;
    font-size: 1rem;
}

.challenge-grid,
.capability-grid,
.differentiator-grid,
.impact-grid {
    display: grid;
    gap: 18px;
}

.challenge-grid,
.capability-grid,
.differentiator-grid,
.impact-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.panel,
.capability-card {
    padding: 28px;
    border-radius: 26px;
}

.panel h3,
.capability-card h3,
.use-case span,
.workflow-step h3,
.feature-row h3 {
    margin: 0;
    letter-spacing: -0.03em;
}

.panel h3,
.capability-card h3,
.workflow-step h3,
.feature-row h3 {
    font-size: 1.18rem;
}

.panel p,
.capability-card p,
.workflow-step p,
.feature-row p {
    margin: 10px 0 0;
    font-size: 0.95rem;
}

.icon-chip {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    font-size: 1.1rem;
}

.icon-red {
    color: #c44d4d;
    background: rgba(255, 110, 110, 0.12);
}

.icon-gold {
    color: #a87310;
    background: rgba(255, 191, 64, 0.16);
}

.icon-blue {
    color: var(--brand);
    background: rgba(91, 140, 255, 0.12);
}

.icon-ink {
    color: var(--brand-strong);
    background: rgba(39, 58, 95, 0.1);
}

.platform-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 32px;
    align-items: start;
}

.feature-list {
    display: grid;
    gap: 18px;
    margin-top: 28px;
}

.feature-row {
    padding: 22px 24px;
    border-left: 3px solid var(--brand);
    background: rgba(255, 255, 255, 0.46);
    border-radius: 0 20px 20px 0;
}

.showcase-frame {
    padding: 16px;
    border-radius: 32px;
}

.showcase-frame img {
    border-radius: 22px;
}

.capability-grid {
    margin-top: 18px;
}

/* =========================================================
   MINIMAL WORKFLOW SECTION
========================================================= */

.workflow-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 32px;
    align-items: start;
}

.workflow-steps {
    display: grid;
    gap: 14px;
}

.workflow-step {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    padding: 20px 22px;
    border: 1px solid rgba(215, 223, 239, 0.92);
    border-radius: 22px;
    background: var(--panel);
    box-shadow: 0 14px 36px rgba(30, 53, 94, 0.06);
}

.workflow-step-marker {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(91, 140, 255, 0.2);
    border-radius: 18px;
    color: var(--brand);
    background: rgba(91, 140, 255, 0.08);
    font-size: 0.92rem;
    font-weight: 800;
}

.workflow-step-content {
    min-width: 0;
    padding-top: 3px;
}

.workflow-step-content h3 {
    margin: 0;
    color: var(--ink);
    font-size: 1.08rem;
    line-height: 1.35;
    letter-spacing: -0.025em;
}

.workflow-step-content p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.65;
}

.workflow-visual {
    display: grid;
    gap: 18px;
    min-width: 0;
}

.workflow-showcase {
    min-height: 480px;
    overflow: hidden;
    padding: 16px;
    border: 1px solid rgba(215, 223, 239, 0.92);
    border-radius: 30px;
    background: var(--panel);
    box-shadow: var(--shadow);
}

.workflow-showcase img {
    width: 100%;
    height: 100%;
    min-height: 448px;
    border-radius: 20px;
    object-fit: cover;
    object-position: top center;
}

.mini-note {
    padding: 24px;
    border-radius: 24px;
}

.mini-note strong {
    display: block;
    font-size: 1.05rem;
    letter-spacing: -0.03em;
}

.mini-note p {
    margin: 10px 0 0;
}

.domain-library {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.domain-card {
    padding: 28px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 250, 255, 0.92));
    border: 1px solid rgba(215, 223, 239, 0.92);
    box-shadow: var(--shadow);
}

.domain-card-summary {
    min-height: 0;
}

.domain-workflow-toggle {
    width: 100%;
    min-height: 48px;
    margin-top: 20px;
    padding: 0 16px;
    border: 1px solid rgba(91, 140, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    color: var(--brand-strong);
    background: rgba(91, 140, 255, 0.07);
    cursor: pointer;
    font-size: 0.86rem;
    font-weight: 700;
    transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.domain-workflow-toggle:hover,
.domain-workflow-toggle:focus-visible {
    border-color: rgba(91, 140, 255, 0.42);
    background: rgba(91, 140, 255, 0.12);
    transform: translateY(-1px);
}

.domain-workflow-toggle i {
    transition: transform 0.3s ease;
}

.domain-card.is-expanded .domain-workflow-toggle i {
    transform: rotate(180deg);
}

.domain-workflow-content {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transition: grid-template-rows 0.36s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease;
}

.domain-workflow-content-inner {
    min-height: 0;
    overflow: hidden;
}

.domain-card.is-expanded .domain-workflow-content {
    grid-template-rows: 1fr;
    opacity: 1;
}

.domain-card h3 {
    margin: 14px 0 0;
    letter-spacing: -0.035em;
}

.domain-card h3 {
    font-size: 1.35rem;
    line-height: 1.2;
}

.domain-card p,
.recording-slot p {
    color: var(--muted);
    line-height: 1.65;
}

.domain-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.domain-pill,
.domain-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 0.71rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.domain-pill {
    background: rgba(91, 140, 255, 0.08);
    color: var(--brand-strong);
}

.domain-status {
    background: rgba(18, 28, 54, 0.06);
    color: var(--muted-soft);
}

.example-list,
.recording-slot {
    border-radius: 22px;
    border: 1px solid rgba(215, 223, 239, 0.92);
}

.example-list,
.recording-slot {
    margin-top: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.6);
}

.example-list strong,
.recording-slot strong {
    display: block;
    font-size: 0.92rem;
    letter-spacing: -0.02em;
}

.example-list ul {
    margin: 12px 0 0;
    padding-left: 18px;
}

.example-list li {
    margin-top: 8px;
    color: var(--ink);
    line-height: 1.55;
}

.recording-slot p {
    margin: 10px 0 0;
    font-size: 0.92rem;
}

.waveform {
    display: flex;
    align-items: flex-end;
    gap: 7px;
    height: 42px;
    margin-top: 16px;
}

.waveform span {
    width: 8px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--brand-bright), var(--brand));
    opacity: 0.9;
}

.waveform span:nth-child(1) {
    height: 24px;
}

.waveform span:nth-child(2) {
    height: 34px;
}

.waveform span:nth-child(3) {
    height: 18px;
}

.waveform span:nth-child(4) {
    height: 38px;
}

.waveform span:nth-child(5) {
    height: 28px;
}

.waveform span:nth-child(6) {
    height: 20px;
}

.domain-card-accent {
    background: radial-gradient(circle at top right, rgba(255, 171, 136, 0.2), transparent 28%), linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 250, 255, 0.92));
}

.impact-shell {
    padding: 42px;
    border-radius: 36px;
    background: linear-gradient(135deg, rgba(91, 140, 255, 0.08), rgba(255, 255, 255, 0.75)), rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(215, 223, 239, 0.86);
    box-shadow: var(--shadow);
}

.impact-copy {
    max-width: 780px;
}

.impact-grid {
    margin-top: 28px;
}

.impact-card {
    padding: 24px;
    border-radius: 24px;
}

.impact-card strong {
    display: block;
    margin-bottom: 10px;
    font-size: 1.5rem;
    letter-spacing: -0.04em;
}

.impact-card span {
    color: var(--muted);
    line-height: 1.55;
}

.impact-quote {
    margin: 28px 0 0;
    padding: 26px 28px;
    border-left: 4px solid var(--brand);
    color: var(--brand-strong);
    font-size: 1.08rem;
    line-height: 1.7;
    background: rgba(255, 255, 255, 0.64);
    border-radius: 0 24px 24px 0;
}

.faq-section .section-heading {
    margin-bottom: 28px;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-list details {
    border-radius: 22px;
    padding: 0 22px;
}

.faq-list summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 0;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "+";
    color: var(--brand-strong);
    font-size: 1.25rem;
}

.faq-list details[open] summary::after {
    content: "-";
}

.faq-list p {
    margin: 0 0 22px;
    padding-top: 0;
}

.faq-list details[open] {
    background: radial-gradient(circle at top right, rgba(103, 213, 255, 0.08), transparent 30%), var(--panel);
}

.faq-list details[open] summary {
    color: var(--brand-strong);
}

.faq-list details {
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-list details[open] {
    border-color: rgba(91, 140, 255, 0.38);
}

.faq-list summary::after {
    transition: transform 0.25s ease;
}

.faq-list details[open] summary::after {
    transform: rotate(180deg);
}

.cta-section {
    padding-top: 30px;
}

.cta-panel {
    padding: 42px;
    border-radius: 36px;
    text-align: center;
    background: radial-gradient(circle at top center, rgba(103, 213, 255, 0.24), transparent 34%), radial-gradient(circle at bottom right, rgba(255, 171, 136, 0.18), transparent 28%), linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(239, 244, 255, 0.92));
}

.cta-panel p {
    max-width: 700px;
    margin: 18px auto 0;
}

.cta-panel .hero-actions {
    justify-content: center;
}

.contact-section {
    padding-top: 30px;
}

.contact-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    gap: 42px;
    align-items: center;
    padding: 42px;
    border-radius: 36px;
    background: radial-gradient(circle at top left, rgba(103, 213, 255, 0.2), transparent 34%), radial-gradient(circle at bottom right, rgba(255, 171, 136, 0.16), transparent 30%), rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(215, 223, 239, 0.92);
    box-shadow: var(--shadow);
}

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

.contact-copy .eyebrow {
    margin-bottom: 14px;
}

.contact-copy h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.contact-copy p {
    max-width: 580px;
    margin: 18px 0 0;
    color: var(--muted);
    line-height: 1.7;
}

.contact-options {
    display: grid;
    gap: 16px;
}

.contact-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    min-width: 0;
    padding: 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(215, 223, 239, 0.92);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-card:hover,
.contact-card:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(91, 140, 255, 0.48);
    box-shadow: 0 20px 42px rgba(30, 53, 94, 0.12);
}

.contact-icon {
    width: 52px;
    height: 52px;
    flex: 0 0 auto;
    border-radius: 18px;
    display: grid;
    place-items: center;
    color: var(--brand);
    background: rgba(91, 140, 255, 0.1);
}

.contact-details {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-details small {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.contact-details strong {
    overflow-wrap: anywhere;
    font-size: 1rem;
    letter-spacing: -0.02em;
}

.contact-arrow {
    color: var(--muted-soft);
    font-size: 0.9rem;
}

.floating-cta {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 45;
    display: grid;
    justify-items: end;
    gap: 12px;
}

.floating-cta-menu {
    display: grid;
    gap: 10px;
    min-width: 220px;
    padding: 12px;
    border: 1px solid rgba(215, 223, 239, 0.92);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 60px rgba(30, 53, 94, 0.2);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px) scale(0.96);
    transform-origin: bottom right;
    transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.25s ease;
}

.floating-cta.is-open .floating-cta-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.floating-cta-link {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 46px;
    padding: 0 14px;
    border-radius: 15px;
    color: var(--ink);
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.floating-cta-link:hover,
.floating-cta-link:focus-visible {
    color: var(--brand-strong);
    background: rgba(91, 140, 255, 0.1);
    transform: translateX(-2px);
}

.floating-cta-link i {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: var(--brand);
    background: rgba(91, 140, 255, 0.1);
}

.floating-cta-toggle {
    width: 58px;
    height: 58px;
    border: 0;
    border-radius: 20px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--brand-strong), var(--brand));
    box-shadow: 0 18px 40px rgba(91, 140, 255, 0.34);
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-cta-toggle:hover,
.floating-cta-toggle:focus-visible {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 22px 46px rgba(91, 140, 255, 0.4);
}

.floating-cta-toggle i {
    transition: transform 0.3s ease;
}

.floating-cta.is-open .floating-cta-toggle i {
    transform: rotate(45deg);
}

.site-footer {
    padding: 28px 0 50px;
}

.footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(196, 207, 230, 0.65);
}

.site-footer strong {
    display: block;
    margin-bottom: 6px;
}

.site-footer p {
    margin: 0;
    font-size: 0.92rem;
}

.site-footer a {
    color: var(--brand-strong);
    font-weight: 600;
}

html[data-theme="dark"] body {
    color: #eef4ff;
    background: radial-gradient(circle at top left, rgba(91, 140, 255, 0.26), transparent 24%), radial-gradient(circle at 80% 12%, rgba(255, 171, 136, 0.12), transparent 20%), linear-gradient(180deg, #07111f 0%, #0a1526 38%, #101c31 100%);
}

html[data-theme="dark"] {
    --panel: rgba(11, 21, 38, 0.92);
    --panel-solid: #0d1729;
    --line: #263756;
    --line-strong: #314666;
    --ink: #eef4ff;
    --muted: #a6b6d3;
    --muted-soft: #8194b5;
    --brand-strong: #d8e3ff;
    --shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
}

html[data-theme="dark"] .site-header {
    background: rgba(7, 17, 31, 0.74);
    border-bottom-color: rgba(38, 55, 86, 0.8);
}

html[data-theme="dark"] .site-header.is-scrolled {
    background: rgba(7, 17, 31, 0.9);
    border-bottom-color: rgba(49, 70, 102, 0.92);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.3);
}

html[data-theme="dark"] .menu-toggle,
html[data-theme="dark"] .theme-toggle,
html[data-theme="dark"] .button-secondary,
html[data-theme="dark"] .hero-tags li,
html[data-theme="dark"] .feature-row,
html[data-theme="dark"] .domain-card,
html[data-theme="dark"] .recording-slot,
html[data-theme="dark"] .example-list,
html[data-theme="dark"] .impact-shell,
html[data-theme="dark"] .impact-quote,
html[data-theme="dark"] .cta-panel,
html[data-theme="dark"] .faq-list details,
html[data-theme="dark"] .hero-card,
html[data-theme="dark"] .metric-card,
html[data-theme="dark"] .capability-card,
html[data-theme="dark"] .panel,
html[data-theme="dark"] .workflow-step,
html[data-theme="dark"] .showcase-frame,
html[data-theme="dark"] .mini-note,
html[data-theme="dark"] .impact-card {
    background: rgba(11, 21, 38, 0.92);
    border-color: rgba(49, 70, 102, 0.88);
}

html[data-theme="dark"] .site-nav {
    background: transparent;
}

html[data-theme="dark"] .site-nav a {
    color: #b7c4dc;
}

html[data-theme="dark"] .theme-toggle .icon-moon {
    display: none;
}

html[data-theme="dark"] .theme-toggle .icon-sun {
    display: inline-flex;
    color: #ffd979;
}

html[data-theme="dark"] .section-soft {
    background: linear-gradient(180deg, rgba(8, 16, 30, 0.72), rgba(12, 22, 38, 0.86));
    border-top-color: rgba(38, 55, 86, 0.8);
    border-bottom-color: rgba(38, 55, 86, 0.8);
}

html[data-theme="dark"] .domain-status {
    background: rgba(255, 255, 255, 0.06);
}

html[data-theme="dark"] .waveform span {
    background: linear-gradient(180deg, #8ae6ff, #7fa2ff);
}

html[data-theme="dark"] .brand-logo {
    filter: drop-shadow(0 0 6px rgba(103, 213, 255, 0.35)) drop-shadow(0 0 14px rgba(91, 140, 255, 0.24));
}

html[data-theme="dark"] .brand:hover .brand-logo {
    filter: drop-shadow(0 0 8px rgba(103, 213, 255, 0.48)) drop-shadow(0 0 18px rgba(91, 140, 255, 0.34));
    transform: translateY(calc(-50% - 1px));
}

html[data-theme="dark"] .site-nav.is-open {
    background: rgba(10, 19, 34, 0.98);
}

html[data-theme="dark"] .contact-panel,
html[data-theme="dark"] .contact-card {
    background: rgba(11, 21, 38, 0.92);
    border-color: rgba(49, 70, 102, 0.88);
}

html[data-theme="dark"] .cursor-glow-card::after {
    background: radial-gradient(280px circle at var(--pointer-x, 50%) var(--pointer-y, 50%), rgba(103, 213, 255, 0.14), rgba(91, 140, 255, 0.08) 28%, transparent 68%);
}

html[data-theme="dark"] .workflow-step,
html[data-theme="dark"] .workflow-showcase {
    border-color: rgba(49, 70, 102, 0.88);
    background: rgba(11, 21, 38, 0.92);
}

html[data-theme="dark"] .workflow-step-marker {
    color: #8ae6ff;
    border-color: rgba(103, 213, 255, 0.24);
    background: rgba(103, 213, 255, 0.08);
}

html[data-theme="dark"] .domain-workflow-toggle,
html[data-theme="dark"] .floating-cta-menu {
    background: rgba(11, 21, 38, 0.94);
    border-color: rgba(49, 70, 102, 0.88);
}

html.theme-changing body,
html.theme-changing .site-header,
html.theme-changing .site-nav,
html.theme-changing .button,
html.theme-changing .panel,
html.theme-changing .capability-card,
html.theme-changing .metric-card,
html.theme-changing .impact-card,
html.theme-changing .domain-card,
html.theme-changing .workflow-step,
html.theme-changing .faq-list details,
html.theme-changing .contact-panel,
html.theme-changing .contact-card {
    transition: color 0.28s ease, background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.65s ease var(--reveal-delay, 0ms), transform 0.65s ease var(--reveal-delay, 0ms);
}

html.reveal-ready .reveal {
    opacity: 0;
    transform: translateY(24px);
}

html.reveal-ready .reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

@keyframes live-indicator-pulse {
    0% {
        opacity: 0.8;
        transform: scale(0.75);
    }

    70%,
    100% {
        opacity: 0;
        transform: scale(1.55);
    }
}

@keyframes hero-glow-left {
    0% {
        transform: translate3d(-4%, -2%, 0) scale(0.94);
    }

    50% {
        transform: translate3d(15%, 10%, 0) scale(1.12);
    }

    100% {
        transform: translate3d(3%, 24%, 0) scale(1);
    }
}

@keyframes hero-glow-right {
    0% {
        transform: translate3d(4%, -8%, 0) scale(1);
    }

    50% {
        transform: translate3d(-14%, 8%, 0) scale(1.13);
    }

    100% {
        transform: translate3d(2%, 20%, 0) scale(0.96);
    }
}

@keyframes hero-screen-float {

    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }

    50% {
        transform: translate3d(0, -10px, 0) rotate(-0.6deg);
    }
}

@keyframes hero-card-float {

    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, -8px, 0);
    }
}

@media (prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto;
    }

    .cursor-trail-canvas {
        display: none;
    }

    .hero-orbit-button__text {
        animation: none;
    }

    .hero-actions {
        align-items: stretch;
    }

    .hero-orbit-button {
        width: 104px;
        height: 104px;

        flex-basis: 104px;

        align-self: center;
    }

    .hero-orbit-button__text>span {
        inset: 7px;

        font-size: 0.57rem;
    }

    .hero-glow,
    .hero-screen-secondary,
    .hero-card,
    .live-indicator-dot::after {
        animation: none;
    }

    .domain-workflow-content,
    .floating-cta-menu {
        transition: none;
    }

    .reveal,
    html.reveal-ready .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

@media (pointer:coarse) {
    .cursor-trail-canvas {
        display: none;
    }
}

@media (max-width:1100px) {

    .hero-grid,
    .platform-grid,
    .workflow-grid {
        grid-template-columns: 1fr;
    }

    .contact-panel {
        grid-template-columns: 1fr;
    }

    .hero-stage {
        min-height: 760px;
    }

    .challenge-grid,
    .capability-grid,
    .differentiator-grid,
    .impact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .domain-library {
        grid-template-columns: 1fr;
    }

    .workflow-showcase {
        min-height: 440px;
    }

    .workflow-showcase img {
        min-height: 408px;
    }

}

@media (max-width:900px) {
    .menu-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 8px);
        left: 20px;
        right: 20px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 18px;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.97);
        border: 1px solid var(--line);
        box-shadow: var(--shadow);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-12px) scale(0.985);
        transform-origin: top center;
        transition: opacity 0.24s ease, visibility 0.24s ease, transform 0.24s ease;
    }

    .site-nav.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0) scale(1);
    }

    .site-nav a:not(.nav-cta) {
        width: 100%;
        padding: 11px 12px;
        border-radius: 14px;
    }

    .site-nav a:not(.nav-cta)::after {
        display: none;
    }

    .site-nav a:not(.nav-cta):hover,
    .site-nav a:not(.nav-cta):focus-visible,
    .site-nav a:not(.nav-cta).is-active {
        background: rgba(91, 140, 255, 0.1);
    }

    .nav-cta {
        margin-left: 0;
        width: 100%;
    }

    .hero {
        padding-top: 34px;
    }

    .hero-card {
        width: min(290px, 56%);
    }

    .hero-metrics,
    .domain-library {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width:640px) {
    :root {
        --container: min(100% - 24px, 1180px);
    }

    .brand {
        width: 190px;
        height: 54px;
        flex-basis: 190px;
    }

    .brand-logo {
        width: 190px;
        height: 76px;
        transform: translateY(-50%);
    }

    .brand-copy strong {
        font-size: 1rem;
    }

    .brand-copy small {
        font-size: 0.58rem;
    }

    .contact-panel {
        padding: 28px 20px;
        gap: 28px;
    }

    .contact-card {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .contact-arrow {
        display: none;
    }

    .nav-row {
        height: 64px;
        min-height: 64px;
        gap: 12px;
    }

    .site-header.is-scrolled .nav-row {
        height: 64px;
    }

    .nav-tools {
        gap: 9px;
    }

    .menu-toggle,
    .theme-toggle {
        width: 44px;
        height: 44px;
        border-radius: 14px;
    }

    .section,
    .cta-section {
        padding: 82px 0;
    }

    .hero-stage {
        min-height: 490px;
    }

    .hero-screen-main {
        inset: 84px 0 90px 0;
    }

    .hero-screen-secondary {
        width: 54%;
        right: 0;
    }

    .hero-card {
        position: relative;
        top: 0;
        right: 0;
        width: 100%;
        margin-bottom: 16px;
    }

    .hero h1 {
        max-width: 9ch;
    }

    .hero-actions,
    .cta-panel .hero-actions {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .hero-metrics,
    .challenge-grid,
    .capability-grid,
    .differentiator-grid,
    .impact-grid,
    .domain-library {
        grid-template-columns: 1fr;
    }

    .impact-shell,
    .cta-panel,
    .panel,
    .capability-card,
    .showcase-frame,
    .metric-card,
    .impact-card,
    .faq-list details,
    .domain-card {
        padding-left: 20px;
        padding-right: 20px;
    }

    .workflow-grid {
        gap: 24px;
    }

    .workflow-steps {
        gap: 12px;
    }

    .workflow-step {
        grid-template-columns: 52px minmax(0, 1fr);
        gap: 14px;
        padding: 17px;
    }

    .workflow-step-marker {
        width: 52px;
        height: 52px;
        border-radius: 16px;
        font-size: 0.82rem;
    }

    .workflow-step-content {
        padding-top: 1px;
    }

    .workflow-step-content h3 {
        font-size: 1rem;
    }

    .workflow-step-content p {
        margin-top: 6px;
        font-size: 0.85rem;
        line-height: 1.55;
    }

    .workflow-showcase {
        min-height: 340px;
        padding: 12px;
        border-radius: 24px;
    }

    .workflow-showcase img {
        min-height: 316px;
        border-radius: 16px;
    }

    .floating-cta {
        right: 14px;
        bottom: 14px;
    }

    .floating-cta-menu {
        min-width: min(260px, calc(100vw - 28px));
    }

    .floating-cta-toggle {
        width: 54px;
        height: 54px;
        border-radius: 18px;
    }

    .footer-row {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width:900px) {

    html[data-theme="dark"] .site-nav a:not(.nav-cta):hover,
    html[data-theme="dark"] .site-nav a:not(.nav-cta):focus-visible,
    html[data-theme="dark"] .site-nav a:not(.nav-cta).is-active {
        background: rgba(103, 213, 255, 0.1);
    }
}

@media (max-width:420px) {
    .brand {
        width: 158px;
        flex-basis: 158px;
    }

    .brand-logo {
        width: 168px;
        height: 72px;
    }

    .nav-row {
        gap: 8px;
    }

    .nav-tools {
        gap: 7px;
    }

    .menu-toggle,
    .theme-toggle {
        width: 42px;
        height: 42px;
    }
}