:root {
    --c-ice-black: #0E1116;
    --c-neon-aqua: #00FFE1;
    --c-electric-ice: #4CC9F0;
    --c-frost-white: #F8FAFC;
    --c-steel-blue: #3A506B;
    --space-xs: 0.35rem;
    --space-sm: 0.65rem;
    --space-md: 1rem;
    --space-lg: 1.75rem;
    --space-xl: 2.75rem;
    --space-2xl: 4.25rem;
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.75rem;
    --shadow-soft: 0 12px 40px rgba(14, 17, 22, 0.45);
    --shadow-glow: 0 0 0 1px rgba(0, 255, 225, 0.12), 0 18px 50px rgba(76, 201, 240, 0.08);
    --font-sans: "Segoe UI", system-ui, -apple-system, sans-serif;
    --text-body: 1.02rem;
    --text-small: 0.88rem;
    --line-tight: 1.25;
    --line-body: 1.65;
    --max-read: 38rem;
    --rail-w: 17.5rem;
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --dur: 0.55s;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: var(--text-body);
    line-height: var(--line-body);
    color: var(--c-frost-white);
    background: var(--c-ice-black);
    min-height: 100vh;
    overflow-x: hidden;
}

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

a {
    color: var(--c-electric-ice);
    text-decoration-thickness: 1px;
    text-underline-offset: 0.2em;
    transition: color 0.25s var(--ease-out), opacity 0.25s var(--ease-out);
}

a:hover {
    color: var(--c-neon-aqua);
}

:focus-visible {
    outline: 2px solid var(--c-neon-aqua);
    outline-offset: 3px;
}

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

.app {
    display: flex;
    min-height: 100vh;
}

.rail {
    position: fixed;
    inset: 0 auto 0 0;
    width: var(--rail-w);
    padding: var(--space-xl) var(--space-lg);
    background: linear-gradient(180deg, #121722 0%, var(--c-ice-black) 55%, #0a0c10 100%);
    border-right: 1px solid rgba(248, 250, 252, 0.06);
    z-index: 40;
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.rail-brand {
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--c-neon-aqua);
    line-height: var(--line-tight);
}

.rail-brand span {
    display: block;
    margin-top: var(--space-sm);
    font-size: 1.35rem;
    letter-spacing: 0.02em;
    text-transform: none;
    color: var(--c-frost-white);
    font-weight: 600;
}

.rail-nav {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.rail-nav a {
    display: block;
    padding: var(--space-sm) 0;
    color: rgba(248, 250, 252, 0.82);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s var(--ease-out), color 0.3s var(--ease-out), transform 0.35s var(--ease-out);
}

.rail-nav a:hover {
    color: var(--c-frost-white);
    border-color: rgba(0, 255, 225, 0.35);
    transform: translateX(4px);
}

.rail-nav a[aria-current="page"] {
    color: var(--c-neon-aqua);
    border-color: rgba(0, 255, 225, 0.5);
}

.rail-meta {
    margin-top: auto;
    font-size: var(--text-small);
    color: rgba(248, 250, 252, 0.55);
    line-height: 1.5;
}

.rail-meta a {
    color: var(--c-electric-ice);
    text-decoration: none;
}

.rail-meta a:hover {
    text-decoration: underline;
}

.main-wrap {
    margin-left: var(--rail-w);
    flex: 1;
    min-width: 0;
}

.topbar {
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) var(--space-lg);
    background: rgba(14, 17, 22, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(248, 250, 252, 0.06);
    position: sticky;
    top: 0;
    z-index: 30;
}

.topbar-title {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.burger {
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 255, 225, 0.22);
    background: linear-gradient(145deg, rgba(58, 80, 107, 0.55), rgba(14, 17, 22, 0.95));
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    flex-shrink: 0;
    transition: border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), transform 0.2s var(--ease-out);
}

.burger:hover {
    border-color: rgba(0, 255, 225, 0.45);
    box-shadow: 0 0 0 3px rgba(76, 201, 240, 0.12);
}

.burger:active {
    transform: scale(0.96);
}

.burger__box {
    width: 1.375rem;
    height: 14px;
    position: relative;
    display: block;
}

.burger__line {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--c-frost-white), rgba(248, 250, 252, 0.78));
    transition: transform 0.42s var(--ease-out), opacity 0.28s var(--ease-out), top 0.42s var(--ease-out);
}

.burger__line:nth-child(1) {
    top: 0;
}

.burger__line:nth-child(2) {
    top: 6px;
}

.burger__line:nth-child(3) {
    top: 12px;
}

.burger.is-open {
    border-color: rgba(0, 255, 225, 0.5);
    box-shadow: 0 0 0 2px rgba(0, 255, 225, 0.12);
}

.burger.is-open .burger__line:nth-child(1) {
    top: 6px;
    transform: rotate(45deg);
}

.burger.is-open .burger__line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.burger.is-open .burger__line:nth-child(3) {
    top: 6px;
    transform: rotate(-45deg);
}

.mobile-panel {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 35;
    pointer-events: none;
}

.mobile-panel.is-open {
    pointer-events: auto;
}

.mobile-panel-backdrop {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(14, 17, 22, 0.72);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.45s var(--ease-out);
}

.mobile-panel.is-open .mobile-panel-backdrop {
    opacity: 1;
}

.mobile-panel-inner {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 2;
    width: min(22rem, 92vw);
    max-width: 100%;
    background: linear-gradient(180deg, #121722 0%, #0a0e14 100%);
    border-right: 1px solid rgba(0, 255, 225, 0.14);
    box-shadow: 16px 0 48px rgba(0, 0, 0, 0.55);
    padding: 0;
    transform: translate3d(-105%, 0, 0);
    transition: transform 0.5s var(--ease-out);
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-panel.is-open .mobile-panel-inner {
    transform: translate3d(0, 0, 0);
}

.mobile-panel__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: 1.15rem 1rem;
    border-bottom: 1px solid rgba(248, 250, 252, 0.06);
    background: linear-gradient(90deg, rgba(58, 80, 107, 0.28), transparent);
    flex-shrink: 0;
}

.mobile-panel__brand {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--c-neon-aqua);
    line-height: 1.35;
}

.mobile-panel__close {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(248, 250, 252, 0.12);
    background: rgba(14, 17, 22, 0.65);
    color: var(--c-frost-white);
    font-size: 1.45rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.25s var(--ease-out), color 0.25s var(--ease-out), background 0.25s var(--ease-out);
}

.mobile-panel__close:hover {
    border-color: rgba(0, 255, 225, 0.35);
    color: var(--c-neon-aqua);
    background: rgba(0, 255, 225, 0.06);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 1rem 0.85rem;
}

.mobile-nav a {
    color: var(--c-frost-white);
    text-decoration: none;
    padding: 0.8rem 0.95rem;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    transition: border-color 0.25s var(--ease-out), background 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}

.mobile-nav a:hover {
    background: rgba(0, 255, 225, 0.07);
    border-color: rgba(0, 255, 225, 0.14);
    transform: translateX(4px);
}

.mobile-nav__label {
    margin: 0.75rem 1rem 0.35rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(248, 250, 252, 0.06);
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(248, 250, 252, 0.38);
}

.mobile-nav--compact a {
    font-size: var(--text-small);
    padding: 0.55rem 0.95rem;
    color: rgba(248, 250, 252, 0.82);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.85rem 1.5rem;
    border-radius: 999px;
    border: none;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), background 0.35s var(--ease-out), color 0.35s var(--ease-out);
}

.btn-primary {
    background: linear-gradient(135deg, var(--c-neon-aqua), var(--c-electric-ice));
    color: var(--c-ice-black);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 0 1px rgba(0, 255, 225, 0.25), 0 22px 55px rgba(76, 201, 240, 0.18);
}

.btn-ghost {
    background: transparent;
    color: var(--c-frost-white);
    border: 1px solid rgba(248, 250, 252, 0.18);
}

.btn-ghost:hover {
    border-color: rgba(0, 255, 225, 0.45);
    color: var(--c-neon-aqua);
}

.section {
    padding: var(--space-2xl) clamp(1.25rem, 4vw, 3.5rem);
}

.section-tight {
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
}

.section-muted {
    background: linear-gradient(180deg, rgba(58, 80, 107, 0.12) 0%, transparent 100%);
}

.section-elevated {
    background: radial-gradient(120% 80% at 10% 0%, rgba(76, 201, 240, 0.08), transparent 55%), var(--c-ice-black);
}

.hero {
    position: relative;
    min-height: min(92vh, 52rem);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    padding: var(--space-2xl) clamp(1.25rem, 4vw, 3.5rem) var(--space-2xl);
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: -20% -10% auto -10%;
    height: 70%;
    background: radial-gradient(ellipse at 30% 20%, rgba(0, 255, 225, 0.09), transparent 60%);
    animation: hero-mist 14s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes hero-mist {
    0% {
        opacity: 0.55;
        transform: translate3d(0, 0, 0) scale(1);
    }

    100% {
        opacity: 1;
        transform: translate3d(2%, -1%, 0) scale(1.03);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 34rem;
}

.hero-kicker {
    font-size: var(--text-small);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(248, 250, 252, 0.55);
    margin: 0 0 var(--space-md);
    animation: fade-rise 0.9s var(--ease-out) both;
}

.hero h1 {
    margin: 0 0 var(--space-lg);
    font-size: clamp(2rem, 4vw, 2.85rem);
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -0.02em;
    animation: fade-rise 1s var(--ease-out) 0.08s both;
}

.hero-lead {
    margin: 0 0 var(--space-xl);
    color: rgba(248, 250, 252, 0.72);
    max-width: var(--max-read);
    animation: fade-rise 1.05s var(--ease-out) 0.16s both;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    animation: fade-rise 1.1s var(--ease-out) 0.24s both;
}

@keyframes fade-rise {
    from {
        opacity: 0;
        transform: translate3d(0, 18px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.hero-visual {
    position: relative;
    z-index: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    animation: float-soft 9s ease-in-out infinite, fade-rise 1.2s var(--ease-out) 0.12s both;
}

@keyframes float-soft {

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

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

.hero-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 255, 225, 0.08), transparent 45%);
    pointer-events: none;
    animation: sheen 8s linear infinite;
}

@keyframes sheen {
    0% {
        opacity: 0.4;
    }

    50% {
        opacity: 0.85;
    }

    100% {
        opacity: 0.4;
    }
}

.hero-badge {
    position: absolute;
    bottom: var(--space-lg);
    left: var(--space-lg);
    padding: var(--space-sm) var(--space-md);
    background: rgba(14, 17, 22, 0.72);
    border: 1px solid rgba(0, 255, 225, 0.22);
    border-radius: 999px;
    font-size: var(--text-small);
    color: rgba(248, 250, 252, 0.85);
    backdrop-filter: blur(8px);
    animation: pulse-line 4.5s ease-in-out infinite;
}

@keyframes pulse-line {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 225, 0);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(0, 255, 225, 0.08);
    }
}

.strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--space-md);
    padding: var(--space-lg) clamp(1.25rem, 4vw, 3.5rem);
    border-top: 1px solid rgba(248, 250, 252, 0.06);
    border-bottom: 1px solid rgba(248, 250, 252, 0.06);
    background: rgba(58, 80, 107, 0.18);
}

.strip-item {
    text-align: center;
    padding: var(--space-md);
    opacity: 0;
    transform: translate3d(0, 12px, 0);
    transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}

.strip-item.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.strip-icon {
    width: 2.5rem;
    height: 2.5rem;
    margin: 0 auto var(--space-sm);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0, 255, 225, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-neon-aqua);
    font-size: 1.1rem;
    transition: transform 0.45s var(--ease-out);
}

.strip-item:hover .strip-icon {
    transform: scale(1.06);
}

.strip-item strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: var(--space-xs);
}

.strip-item span {
    font-size: var(--text-small);
    color: rgba(248, 250, 252, 0.55);
}

.grid-bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--space-md);
}

.bento {
    grid-column: span 4;
    padding: var(--space-xl);
    border-radius: var(--radius-md);
    background: rgba(58, 80, 107, 0.22);
    border: 1px solid rgba(248, 250, 252, 0.06);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    opacity: 0;
    transform: translate3d(0, 22px, 0);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out), border-color 0.35s var(--ease-out);
}

.bento.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.bento:hover {
    border-color: rgba(76, 201, 240, 0.28);
}

.bento h3 {
    margin: 0 0 var(--space-sm);
    font-size: 1.15rem;
}

.bento p {
    margin: 0;
    color: rgba(248, 250, 252, 0.68);
    font-size: 0.95rem;
}

.bento-wide {
    grid-column: span 8;
}

.split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-xl);
    align-items: center;
}

.split h2 {
    margin: 0 0 var(--space-md);
    font-size: clamp(1.55rem, 2.6vw, 2rem);
}

.split p {
    margin: 0 0 var(--space-md);
    color: rgba(248, 250, 252, 0.72);
}

.timeline {
    position: relative;
    padding-left: var(--space-xl);
}

.timeline::before {
    content: "";
    position: absolute;
    left: 0.55rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--c-neon-aqua), var(--c-steel-blue));
    transform-origin: top;
    transform: scaleY(0);
    transition: transform 1.1s var(--ease-out);
}

.timeline.is-visible::before {
    transform: scaleY(1);
}

.timeline-step {
    position: relative;
    padding-bottom: var(--space-xl);
    opacity: 0;
    transform: translate3d(-8px, 12px, 0);
    transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}

.timeline-step.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.timeline-step::before {
    content: "";
    position: absolute;
    left: calc(-1 * var(--space-xl) + 0.2rem);
    top: 0.35rem;
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 50%;
    background: var(--c-ice-black);
    border: 2px solid var(--c-neon-aqua);
}

.timeline-step h3 {
    margin: 0 0 var(--space-xs);
    font-size: 1.05rem;
}

.timeline-step p {
    margin: 0;
    color: rgba(248, 250, 252, 0.65);
    font-size: 0.95rem;
}

.cta-panel {
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    background: linear-gradient(135deg, rgba(58, 80, 107, 0.45), rgba(14, 17, 22, 0.95));
    border: 1px solid rgba(0, 255, 225, 0.14);
    display: grid;
    gap: var(--space-lg);
    align-items: center;
    grid-template-columns: 1fr auto;
    box-shadow: var(--shadow-soft);
    animation: cta-breathe 10s ease-in-out infinite;
}

@keyframes cta-breathe {

    0%,
    100% {
        box-shadow: var(--shadow-soft);
    }

    50% {
        box-shadow: 0 18px 55px rgba(76, 201, 240, 0.12);
    }
}

.cta-panel p {
    margin: 0;
    max-width: 36rem;
    color: rgba(248, 250, 252, 0.78);
}

.page-head {
    padding: var(--space-2xl) clamp(1.25rem, 4vw, 3.5rem) var(--space-lg);
    border-bottom: 1px solid rgba(248, 250, 252, 0.06);
}

.page-head h1 {
    margin: 0 0 var(--space-sm);
    font-size: clamp(1.85rem, 3.2vw, 2.4rem);
}

.page-head p {
    margin: 0;
    max-width: 40rem;
    color: rgba(248, 250, 252, 0.65);
}

.article-block {
    max-width: 46rem;
}

.article-block h2 {
    margin: var(--space-xl) 0 var(--space-md);
    font-size: 1.35rem;
}

.article-block p,
.article-block li {
    color: rgba(248, 250, 252, 0.78);
}

.article-block ul {
    padding-left: 1.2rem;
}

.media-rise {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    opacity: 0;
    transform: translate3d(0, 28px, 0) scale(0.98);
    transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}

.media-rise.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.card-row {
    display: grid;
    gap: var(--space-md);
}

.info-card {
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    background: rgba(58, 80, 107, 0.2);
    border: 1px solid rgba(248, 250, 252, 0.06);
    transition: border-color 0.35s var(--ease-out), transform 0.45s var(--ease-out);
    opacity: 0;
    transform: translate3d(0, 16px, 0);
}

.info-card.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.info-card:hover {
    border-color: rgba(76, 201, 240, 0.25);
    transform: translate3d(0, -3px, 0);
}

.info-card h3 {
    margin: 0 0 var(--space-sm);
    font-size: 1.05rem;
}

.info-card p {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(248, 250, 252, 0.68);
}

.form-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.field label {
    display: block;
    font-size: var(--text-small);
    margin-bottom: var(--space-xs);
    color: rgba(248, 250, 252, 0.78);
}

.field input,
.field textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(248, 250, 252, 0.12);
    background: rgba(14, 17, 22, 0.65);
    color: var(--c-frost-white);
    font: inherit;
    transition: border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: rgba(0, 255, 225, 0.45);
    box-shadow: 0 0 0 3px rgba(76, 201, 240, 0.12);
}

.field textarea {
    min-height: 9rem;
    resize: vertical;
}

.field-error {
    font-size: var(--text-small);
    color: #ffb4b4;
    min-height: 1.2rem;
    margin-top: var(--space-xs);
}

.field.is-invalid input,
.field.is-invalid textarea {
    border-color: rgba(255, 120, 120, 0.55);
}

.check {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: var(--text-small);
    color: rgba(248, 250, 252, 0.72);
}

.check input {
    margin-top: 0.2rem;
}

.site-compliance {
    padding: var(--space-lg) clamp(1rem, 4vw, 3rem);
    border-top: 1px solid rgba(248, 250, 252, 0.08);
    background: rgba(58, 80, 107, 0.22);
}

.site-compliance__inner {
    max-width: 60rem;
    margin: 0 auto;
}

.site-compliance p {
    margin: 0;
    font-size: var(--text-small);
    line-height: 1.55;
    color: rgba(248, 250, 252, 0.58);
}

.site-compliance strong {
    color: rgba(248, 250, 252, 0.85);
}

.site-compliance a {
    color: rgba(76, 201, 240, 0.88);
}

.site-footer {
    padding: var(--space-xl) clamp(1.25rem, 4vw, 3.5rem);
    border-top: 1px solid rgba(248, 250, 252, 0.06);
    display: grid;
    gap: var(--space-lg);
    grid-template-columns: 1fr auto;
    align-items: start;
    font-size: var(--text-small);
    color: rgba(248, 250, 252, 0.5);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-links a {
    color: rgba(248, 250, 252, 0.65);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--c-neon-aqua);
}

.legal-page {
    padding: var(--space-2xl) clamp(1.25rem, 4vw, 3.5rem);
    max-width: 52rem;
}

.legal-page h1 {
    margin: 0 0 var(--space-lg);
    font-size: clamp(1.65rem, 2.5vw, 2.1rem);
}

.legal-page h2 {
    margin: var(--space-xl) 0 var(--space-md);
    font-size: 1.2rem;
}

.legal-page p,
.legal-page li {
    color: rgba(248, 250, 252, 0.78);
}

.legal-page ul {
    padding-left: 1.2rem;
}

.legal-hero {
    position: relative;
    padding: clamp(2rem, 6vw, 4rem) clamp(1rem, 4vw, 3.5rem) clamp(1.75rem, 4vw, 2.5rem);
    overflow: hidden;
    border-bottom: 1px solid rgba(248, 250, 252, 0.06);
}

.legal-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 90% 70% at 0% 0%, rgba(0, 255, 225, 0.12), transparent 55%), radial-gradient(ellipse 70% 50% at 100% 100%, rgba(76, 201, 240, 0.1), transparent 50%);
    pointer-events: none;
}

.legal-hero--privacy::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 8%;
    width: 40%;
    height: 3px;
    background: linear-gradient(90deg, var(--c-neon-aqua), transparent);
    opacity: 0.55;
}

.legal-hero--cookies::after {
    content: "";
    position: absolute;
    right: 5%;
    top: 20%;
    width: 120px;
    height: 120px;
    border: 1px solid rgba(0, 255, 225, 0.12);
    border-radius: 50%;
    pointer-events: none;
}

.legal-hero--terms::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 1px;
    background: repeating-linear-gradient(90deg, rgba(76, 201, 240, 0.35) 0 8px, transparent 8px 16px);
    opacity: 0.4;
}

.legal-hero--return::after {
    content: "";
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 18px solid rgba(0, 255, 225, 0.15);
    pointer-events: none;
}

.legal-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 48rem;
}

.legal-hero__eyebrow {
    margin: 0 0 var(--space-sm);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(248, 250, 252, 0.45);
}

.legal-hero__date {
    display: inline-block;
    margin: 0 0 var(--space-md);
    padding: 0.35rem 0.85rem;
    font-size: var(--text-small);
    font-variant-numeric: tabular-nums;
    color: var(--c-neon-aqua);
    border: 1px solid rgba(0, 255, 225, 0.28);
    border-radius: 999px;
    background: rgba(14, 17, 22, 0.5);
}

.legal-hero__stamp {
    display: inline-block;
    margin: 0 0 var(--space-md);
    padding: 0.35rem 0.85rem;
    font-size: var(--text-small);
    color: rgba(248, 250, 252, 0.55);
    border: 1px dashed rgba(0, 255, 225, 0.28);
    border-radius: 999px;
    background: rgba(14, 17, 22, 0.35);
}

.legal-hero h1 {
    margin: 0 0 var(--space-md);
    font-size: clamp(1.65rem, 4vw, 2.35rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.legal-hero__lead {
    margin: 0;
    max-width: 40rem;
    color: rgba(248, 250, 252, 0.68);
    font-size: 1.02rem;
    line-height: 1.6;
}

.legal-doc {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 16rem);
    gap: var(--space-xl);
    align-items: start;
    padding: var(--space-xl) clamp(1rem, 4vw, 3.5rem) var(--space-2xl);
    max-width: 72rem;
    margin: 0 auto;
}

.legal-doc__main {
    min-width: 0;
}

.legal-doc__main h2 {
    margin: var(--space-xl) 0 var(--space-md);
    font-size: 1.22rem;
    color: var(--c-frost-white);
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(76, 201, 240, 0.15);
}

.legal-doc__main h2:first-of-type {
    margin-top: 0;
}

.legal-doc__main h3 {
    margin: var(--space-lg) 0 var(--space-sm);
    font-size: 1.05rem;
    color: rgba(248, 250, 252, 0.92);
}

.legal-doc__main p,
.legal-doc__main li {
    color: rgba(248, 250, 252, 0.78);
}

.legal-doc__main ul {
    padding-left: 1.25rem;
}

.legal-doc__aside {
    position: sticky;
    top: 1rem;
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(248, 250, 252, 0.08);
    background: linear-gradient(160deg, rgba(58, 80, 107, 0.35), rgba(14, 17, 22, 0.9));
    box-shadow: var(--shadow-soft);
}

.legal-doc__aside h2 {
    margin: 0 0 var(--space-md);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--c-electric-ice);
}

.legal-doc__aside p,
.legal-doc__aside li {
    font-size: var(--text-small);
    color: rgba(248, 250, 252, 0.65);
    margin: 0 0 var(--space-sm);
}

.legal-doc__aside ul {
    margin: 0;
    padding-left: 1rem;
}

.legal-callout {
    margin: var(--space-lg) 0;
    padding: var(--space-lg);
    border-left: 3px solid var(--c-neon-aqua);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    background: rgba(58, 80, 107, 0.2);
}

.legal-callout p {
    margin: 0;
}

.legal-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin: var(--space-md) 0;
}

.legal-two-col>div {
    padding: var(--space-md);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(248, 250, 252, 0.06);
    background: rgba(14, 17, 22, 0.45);
}

.thank-page {
    padding: var(--space-xl) clamp(1rem, 4vw, 3rem) var(--space-2xl);
}

.thank-hero {
    position: relative;
    max-width: 52rem;
    margin: 0 auto var(--space-xl);
    padding: clamp(2rem, 5vw, 3.5rem);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 255, 225, 0.2);
    background: linear-gradient(145deg, rgba(58, 80, 107, 0.4), rgba(14, 17, 22, 0.95));
    text-align: center;
    overflow: hidden;
}

.thank-hero::before {
    content: "";
    position: absolute;
    top: -40%;
    left: 50%;
    width: 120%;
    height: 80%;
    transform: translateX(-50%);
    background: radial-gradient(ellipse, rgba(0, 255, 225, 0.09), transparent 65%);
    pointer-events: none;
}

.thank-hero__icon {
    position: relative;
    z-index: 1;
    width: 4rem;
    height: 4rem;
    margin: 0 auto var(--space-md);
    border-radius: 50%;
    border: 2px solid rgba(0, 255, 225, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--c-neon-aqua);
    background: rgba(14, 17, 22, 0.6);
}

.thank-hero h1 {
    position: relative;
    z-index: 1;
    margin: 0 0 var(--space-md);
    font-size: clamp(1.75rem, 4vw, 2.35rem);
}

.thank-hero__lead {
    position: relative;
    z-index: 1;
    margin: 0 auto var(--space-lg);
    max-width: 36rem;
    color: rgba(248, 250, 252, 0.75);
    line-height: 1.65;
}

.thank-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-md);
    max-width: 56rem;
    margin: 0 auto var(--space-xl);
}

.thank-card-mini {
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(248, 250, 252, 0.08);
    background: rgba(58, 80, 107, 0.18);
    transition: border-color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.thank-card-mini:hover {
    border-color: rgba(76, 201, 240, 0.25);
    transform: translateY(-3px);
}

.thank-card-mini h2 {
    margin: 0 0 var(--space-sm);
    font-size: 0.95rem;
    color: var(--c-electric-ice);
}

.thank-card-mini p {
    margin: 0;
    font-size: var(--text-small);
    color: rgba(248, 250, 252, 0.65);
    line-height: 1.55;
}

.thank-steps {
    max-width: 44rem;
    margin: 0 auto var(--space-xl);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    border: 1px dashed rgba(0, 255, 225, 0.2);
    background: rgba(14, 17, 22, 0.5);
}

.thank-steps h2 {
    margin: 0 0 var(--space-md);
    font-size: 1.05rem;
    text-align: center;
}

.thank-steps ol {
    margin: 0;
    padding-left: 1.35rem;
    color: rgba(248, 250, 252, 0.72);
}

.thank-steps li {
    margin-bottom: var(--space-sm);
}

.thank-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
    margin-bottom: var(--space-xl);
}

.thank-note {
    max-width: 40rem;
    margin: 0 auto;
    padding: var(--space-md);
    font-size: var(--text-small);
    color: rgba(248, 250, 252, 0.5);
    text-align: center;
    line-height: 1.55;
}

.cookie-overlay {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: var(--space-lg);
    pointer-events: none;
}

.cookie-overlay.is-active {
    pointer-events: auto;
}

.cookie-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(14, 17, 22, 0.55);
    opacity: 0;
    transition: opacity 0.45s var(--ease-out);
}

.cookie-overlay.is-active .cookie-backdrop {
    opacity: 1;
}

.cookie-card {
    position: relative;
    z-index: 1;
    width: min(52rem, 100%);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    background: #121722;
    border: 1px solid rgba(248, 250, 252, 0.1);
    box-shadow: var(--shadow-soft);
    transform: translate3d(0, 120%, 0);
    transition: transform 0.55s var(--ease-out);
}

.cookie-overlay.is-active .cookie-card {
    transform: translate3d(0, 0, 0);
}

.cookie-card p {
    margin: 0 0 var(--space-md);
    color: rgba(248, 250, 252, 0.75);
}

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.cookie-settings {
    border-top: 1px solid rgba(248, 250, 252, 0.08);
    padding-top: var(--space-md);
    display: none;
    gap: var(--space-md);
    flex-direction: column;
}

.cookie-settings.is-open {
    display: flex;
}

.cookie-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid rgba(248, 250, 252, 0.06);
}

.cookie-row span {
    font-size: var(--text-small);
    color: rgba(248, 250, 252, 0.65);
}

.switch {
    position: relative;
    width: 2.85rem;
    height: 1.5rem;
    border-radius: 999px;
    background: rgba(248, 250, 252, 0.12);
    border: none;
    cursor: pointer;
    transition: background 0.3s var(--ease-out);
}

.switch::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 1.15rem;
    height: 1.15rem;
    border-radius: 50%;
    background: var(--c-frost-white);
    transition: transform 0.3s var(--ease-out);
}

.switch.is-on {
    background: rgba(0, 255, 225, 0.35);
}

.switch.is-on::after {
    transform: translateX(1.35rem);
}

.switch:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

@media (max-width: 1024px) {
    :root {
        --rail-w: 0px;
    }

    .rail {
        display: none;
    }

    .main-wrap {
        margin-left: 0;
    }

    .topbar {
        display: flex;
    }

    .mobile-panel {
        display: block;
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-visual {
        order: -1;
        max-width: 28rem;
        margin: 0 auto;
    }

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

    .bento,
    .bento-wide {
        grid-column: span 12;
    }

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

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

    .form-wrap {
        grid-template-columns: 1fr;
    }

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

    .legal-doc {
        grid-template-columns: 1fr;
    }

    .legal-doc__aside {
        position: static;
        order: -1;
    }

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

    .legal-two-col {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .strip {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
}

.page-herbs .page-head h1 {
    animation: fade-rise 0.85s var(--ease-out) both;
}

.page-herbs .page-head p {
    animation: fade-rise 0.95s var(--ease-out) 0.08s both;
}

.page-herbs .herbs-shift {
    animation: drift-x 12s ease-in-out infinite alternate;
}

@keyframes drift-x {
    0% {
        transform: translate3d(0, 0, 0);
    }

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

.page-strength .page-head h1 {
    animation: fade-rise 0.88s var(--ease-out) both;
}

.page-strength .strength-glow {
    position: relative;
}

.page-strength .strength-glow::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-lg);
    background: linear-gradient(120deg, rgba(0, 255, 225, 0.15), transparent 40%, rgba(76, 201, 240, 0.12));
    opacity: 0.55;
    animation: glow-rotate 14s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.page-strength .strength-glow img {
    position: relative;
    z-index: 1;
    border-radius: var(--radius-lg);
}

.page-strength .strength-glow.media-rise {
    overflow: visible;
}

@keyframes glow-rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.page-contact .contact-pulse {
    animation: float-soft 8s ease-in-out infinite;
}

.page-contact .form {
    animation: fade-rise 0.75s var(--ease-out) both;
}

@media (max-width: 380px) {
    .topbar {
        padding: 0.65rem 0.75rem;
    }
}

@media (max-width: 320px) {
    :root {
        --space-2xl: 2.25rem;
        --space-xl: 1.65rem;
        --space-lg: 1.35rem;
        --text-body: 0.94rem;
        --text-small: 0.8rem;
    }

    body {
        overflow-x: hidden;
    }

    .topbar-title {
        font-size: 0.68rem;
        max-width: calc(100vw - 5.25rem);
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .burger {
        width: 2.75rem;
        height: 2.75rem;
    }

    .burger__box {
        width: 1.25rem;
    }

    .mobile-panel-inner {
        width: 100%;
        max-width: 100%;
        border-right: none;
    }

    .mobile-panel__head {
        padding: 0.95rem 0.75rem;
    }

    .mobile-nav {
        padding: 0.75rem 0.65rem;
    }

    .section {
        padding-left: 0.7rem;
        padding-right: 0.7rem;
    }

    .hero {
        padding-left: 0.7rem;
        padding-right: 0.7rem;
    }

    .flow-hero,
    .flow-section,
    .flow-page-hero,
    .flow-diagonal {
        padding-left: 0.7rem;
        padding-right: 0.7rem;
    }

    .legal-hero {
        padding-left: 0.7rem;
        padding-right: 0.7rem;
    }

    .legal-doc {
        padding-left: 0.7rem;
        padding-right: 0.7rem;
    }

    .legal-page {
        padding-left: 0.7rem;
        padding-right: 0.7rem;
    }

    .site-footer {
        padding-left: 0.7rem;
        padding-right: 0.7rem;
    }

    .site-compliance {
        padding-left: 0.7rem;
        padding-right: 0.7rem;
    }

    .thank-page {
        padding-left: 0.7rem;
        padding-right: 0.7rem;
    }

    .btn {
        padding: 0.72rem 1.1rem;
        font-size: 0.9rem;
    }

    .thank-grid {
        gap: 0.6rem;
    }

    .thank-hero {
        padding: 1.15rem 0.75rem;
    }

    .thank-card-mini {
        padding: 0.95rem;
    }

    .cookie-overlay {
        padding: 0.65rem;
    }

    .cookie-card {
        padding: 1rem;
        border-radius: var(--radius-md);
    }

    .cookie-actions {
        flex-direction: column;
    }

    .cookie-actions .btn {
        width: 100%;
    }

    .footer-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.45rem;
    }

    .strip {
        gap: 0.5rem;
    }

    .grid-bento {
        gap: 0.65rem;
    }

    .rail {
        padding: var(--space-lg);
    }

    .flow-marquee__track {
        animation-duration: 28s;
    }

    .flow-hero__orb--a,
    .flow-hero__orb--b {
        animation: none;
        opacity: 0.35;
    }

    .flow-hero__mesh {
        animation: none;
    }
}

.page-flow .main-wrap {
    background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0, 255, 225, 0.06), transparent 50%), var(--c-ice-black);
}

.flow-hero {
    position: relative;
    min-height: min(92vh, 54rem);
    padding: clamp(2rem, 5vw, 4rem) clamp(1.25rem, 4vw, 3.5rem);
    overflow: hidden;
}

.flow-hero__mesh {
    position: absolute;
    inset: -30%;
    background: conic-gradient(from 120deg at 30% 40%, rgba(0, 255, 225, 0.07), transparent 40%, rgba(76, 201, 240, 0.08), transparent 70%, rgba(58, 80, 107, 0.15));
    animation: flow-mesh-spin 28s linear infinite;
    pointer-events: none;
}

@keyframes flow-mesh-spin {
    to {
        transform: rotate(360deg);
    }
}

.flow-hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    pointer-events: none;
    opacity: 0.45;
}

.flow-hero__orb--a {
    width: min(45vw, 22rem);
    height: min(45vw, 22rem);
    top: 5%;
    right: 8%;
    background: radial-gradient(circle, rgba(0, 255, 225, 0.35), transparent 65%);
    animation: flow-orb-a 9s ease-in-out infinite;
}

.flow-hero__orb--b {
    width: min(38vw, 18rem);
    height: min(38vw, 18rem);
    bottom: 10%;
    left: 5%;
    background: radial-gradient(circle, rgba(76, 201, 240, 0.3), transparent 65%);
    animation: flow-orb-b 11s ease-in-out infinite;
}

@keyframes flow-orb-a {

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

    50% {
        transform: translate3d(-4%, 6%, 0) scale(1.08);
    }
}

@keyframes flow-orb-b {

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

    50% {
        transform: translate3d(8%, -4%, 0) scale(1.06);
    }
}

.flow-hero__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
    max-width: 72rem;
    margin: 0 auto;
}

.flow-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 1rem;
    padding: 0.35rem 0.9rem;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(248, 250, 252, 0.55);
    border: 1px solid rgba(0, 255, 225, 0.22);
    border-radius: 999px;
    background: rgba(14, 17, 22, 0.55);
    backdrop-filter: blur(8px);
    animation: flow-fade-up 0.9s var(--ease-out) both;
}

.flow-eyebrow::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--c-neon-aqua);
    box-shadow: 0 0 12px var(--c-neon-aqua);
    animation: flow-pulse-dot 2.2s ease-in-out infinite;
}

@keyframes flow-pulse-dot {

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

    50% {
        opacity: 0.55;
        transform: scale(0.85);
    }
}

@keyframes flow-fade-up {
    from {
        opacity: 0;
        transform: translate3d(0, 20px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.flow-hero h1 {
    margin: 0 0 1.25rem;
    font-size: clamp(2.1rem, 5vw, 3.1rem);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.03em;
    animation: flow-fade-up 0.95s var(--ease-out) 0.06s both;
}

.flow-hero__lead {
    margin: 0 0 1.75rem;
    max-width: 36rem;
    color: rgba(248, 250, 252, 0.72);
    font-size: 1.08rem;
    line-height: 1.65;
    animation: flow-fade-up 1s var(--ease-out) 0.12s both;
}

.flow-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    animation: flow-fade-up 1.05s var(--ease-out) 0.18s both;
}

.flow-hero__visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: visible;
    animation: flow-fade-up 1.1s var(--ease-out) 0.1s both;
}

.flow-hero__visual img {
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    position: relative;
    z-index: 1;
    animation: flow-img-breathe 7s ease-in-out infinite;
}

@keyframes flow-img-breathe {

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

    50% {
        transform: scale(1.02);
    }
}

.flow-hero__ring {
    position: absolute;
    inset: -8px;
    border-radius: calc(var(--radius-lg) + 6px);
    border: 1px solid rgba(0, 255, 225, 0.25);
    z-index: 0;
    animation: flow-ring-pulse 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes flow-ring-pulse {

    0%,
    100% {
        opacity: 0.45;
        transform: scale(1);
    }

    50% {
        opacity: 0.85;
        transform: scale(1.02);
    }
}

.flow-hero__badge {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    z-index: 2;
    padding: 0.55rem 1rem;
    font-size: var(--text-small);
    color: rgba(248, 250, 252, 0.88);
    background: rgba(14, 17, 22, 0.78);
    border: 1px solid rgba(76, 201, 240, 0.28);
    border-radius: 999px;
    backdrop-filter: blur(10px);
}

.flow-marquee {
    border-block: 1px solid rgba(248, 250, 252, 0.06);
    background: linear-gradient(90deg, rgba(58, 80, 107, 0.25), rgba(14, 17, 22, 0.9), rgba(58, 80, 107, 0.25));
    overflow: hidden;
}

.flow-marquee__track {
    display: flex;
    gap: 3rem;
    width: max-content;
    padding: 0.85rem 0;
    animation: flow-marquee 38s linear infinite;
}

.flow-marquee__track:hover {
    animation-play-state: paused;
}

@keyframes flow-marquee {
    to {
        transform: translate3d(-50%, 0, 0);
    }
}

.flow-marquee span {
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(248, 250, 252, 0.45);
    white-space: nowrap;
}

.flow-marquee strong {
    color: var(--c-neon-aqua);
    font-weight: 600;
}

.flow-section {
    padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.25rem, 4vw, 3.5rem);
}

.flow-section--tight {
    padding-top: clamp(2rem, 4vw, 3rem);
    padding-bottom: clamp(2rem, 4vw, 3rem);
}

.flow-section--dark {
    background: linear-gradient(180deg, rgba(58, 80, 107, 0.14) 0%, transparent 100%);
}

.flow-section__title {
    margin: 0 0 1.25rem;
    font-size: clamp(1.65rem, 3.2vw, 2.25rem);
    letter-spacing: -0.02em;
}

.flow-prose {
    max-width: 48rem;
    margin: 0 auto;
    color: rgba(248, 250, 252, 0.76);
    line-height: 1.75;
}

.flow-prose p+p {
    margin-top: 1rem;
}

.flow-pillars {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    max-width: 72rem;
    margin: 0 auto;
}

.flow-pillar {
    padding: 1.35rem 1.15rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(248, 250, 252, 0.08);
    background: linear-gradient(165deg, rgba(58, 80, 107, 0.35), rgba(14, 17, 22, 0.85));
    transition: transform 0.45s var(--ease-out), border-color 0.35s var(--ease-out), box-shadow 0.45s var(--ease-out);
}

.flow-pillar:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 255, 225, 0.28);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.flow-pillar__num {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--c-electric-ice);
    margin-bottom: 0.5rem;
}

.flow-pillar h3 {
    margin: 0 0 0.65rem;
    font-size: 1.05rem;
}

.flow-pillar p {
    margin: 0;
    font-size: 0.92rem;
    color: rgba(248, 250, 252, 0.65);
    line-height: 1.55;
}

.flow-diagonal {
    position: relative;
    padding: clamp(2.5rem, 5vw, 4rem) clamp(1.25rem, 4vw, 3.5rem);
    overflow: hidden;
}

.flow-diagonal::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(58, 80, 107, 0.22) 0%, transparent 55%);
    transform: skewY(-1.2deg);
    transform-origin: 100% 0;
    pointer-events: none;
}

.flow-diagonal__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 70rem;
    margin: 0 auto;
    align-items: start;
}

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

.flow-list-check li {
    position: relative;
    padding-left: 1.6rem;
    margin-bottom: 0.85rem;
    color: rgba(248, 250, 252, 0.75);
    line-height: 1.55;
}

.flow-list-check li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45rem;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 2px;
    background: linear-gradient(135deg, var(--c-neon-aqua), var(--c-electric-ice));
    animation: flow-check-glow 3s ease-in-out infinite;
}

@keyframes flow-check-glow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 225, 0.35);
    }

    50% {
        box-shadow: 0 0 14px 2px rgba(0, 255, 225, 0.2);
    }
}

.flow-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    max-width: 68rem;
    margin: 0 auto;
}

.flow-stat {
    text-align: center;
    padding: 1.5rem 1rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(248, 250, 252, 0.06);
    background: rgba(14, 17, 22, 0.5);
    transition: transform 0.4s var(--ease-out);
}

.flow-stat:hover {
    transform: scale(1.04);
}

.flow-stat strong {
    display: block;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--c-frost-white), var(--c-electric-ice));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.35rem;
}

.flow-stat span {
    font-size: var(--text-small);
    color: rgba(248, 250, 252, 0.5);
    letter-spacing: 0.04em;
}

.flow-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    max-width: 64rem;
    margin: 0 auto;
    counter-reset: flowstep;
}

.flow-step {
    position: relative;
    padding: 1.5rem 1.25rem 1.5rem 3.25rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(76, 201, 240, 0.12);
    background: rgba(58, 80, 107, 0.15);
}

.flow-step::before {
    counter-increment: flowstep;
    content: counter(flowstep);
    position: absolute;
    left: 1rem;
    top: 1.35rem;
    width: 1.65rem;
    height: 1.65rem;
    border-radius: 50%;
    border: 1px solid rgba(0, 255, 225, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--c-neon-aqua);
}

.flow-step h3 {
    margin: 0 0 0.5rem;
    font-size: 1.05rem;
}

.flow-step p {
    margin: 0;
    font-size: 0.92rem;
    color: rgba(248, 250, 252, 0.68);
    line-height: 1.55;
}

.flow-faq details {
    border: 1px solid rgba(248, 250, 252, 0.08);
    border-radius: var(--radius-sm);
    margin-bottom: 0.65rem;
    background: rgba(14, 17, 22, 0.55);
    overflow: hidden;
    transition: border-color 0.3s var(--ease-out);
}

.flow-faq details[open] {
    border-color: rgba(0, 255, 225, 0.22);
}

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

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

.flow-faq summary::after {
    content: "+";
    font-size: 1.25rem;
    color: var(--c-neon-aqua);
    transition: transform 0.35s var(--ease-out);
}

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

.flow-faq p {
    margin: 0;
    padding: 0 1.15rem 1.1rem;
    font-size: 0.95rem;
    color: rgba(248, 250, 252, 0.68);
    line-height: 1.6;
}

.flow-cta-glass {
    max-width: 52rem;
    margin: 0 auto;
    padding: clamp(2rem, 4vw, 2.75rem);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 255, 225, 0.18);
    background: linear-gradient(135deg, rgba(58, 80, 107, 0.4), rgba(14, 17, 22, 0.92));
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    text-align: center;
}

.flow-cta-glass p {
    margin: 0 0 1.25rem;
    color: rgba(248, 250, 252, 0.78);
    line-height: 1.65;
}

.flow-page-hero {
    position: relative;
    padding: clamp(2.5rem, 6vw, 4rem) clamp(1.25rem, 4vw, 3.5rem) 2rem;
    overflow: hidden;
}

.flow-page-hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 225, 0.35), transparent);
}

.flow-page-hero h1 {
    margin: 0 0 1rem;
    font-size: clamp(1.85rem, 4vw, 2.65rem);
    letter-spacing: -0.02em;
    max-width: 52rem;
}

.flow-page-hero .flow-lead {
    margin: 0;
    max-width: 46rem;
    color: rgba(248, 250, 252, 0.68);
    line-height: 1.7;
    font-size: 1.05rem;
}

.flow-media-frame {
    position: relative;
    border-radius: var(--radius-lg);
}

.flow-media-frame img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.flow-media-frame::before {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(135deg, rgba(0, 255, 225, 0.45), rgba(76, 201, 240, 0.15), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    animation: flow-border-rotate 10s linear infinite;
}

@keyframes flow-border-rotate {
    to {
        filter: hue-rotate(360deg);
    }
}

.flow-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    max-width: 68rem;
    margin: 0 auto;
}

.flow-tile {
    padding: 1.35rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(248, 250, 252, 0.07);
    background: rgba(58, 80, 107, 0.18);
    transition: border-color 0.35s, transform 0.4s var(--ease-out);
}

.flow-tile:hover {
    border-color: rgba(76, 201, 240, 0.3);
    transform: translateY(-4px);
}

.flow-tile h3 {
    margin: 0 0 0.5rem;
    font-size: 1.02rem;
    color: var(--c-electric-ice);
}

.flow-tile p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(248, 250, 252, 0.68);
    line-height: 1.55;
}

.flow-quote {
    max-width: 40rem;
    margin: 0 auto;
    padding: 1.5rem 1.75rem;
    border-left: 3px solid var(--c-neon-aqua);
    font-size: 1.08rem;
    font-style: italic;
    color: rgba(248, 250, 252, 0.78);
    line-height: 1.65;
    background: rgba(58, 80, 107, 0.15);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.flow-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    max-width: 64rem;
    margin: 0 auto;
    align-items: start;
}

.flow-info-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.flow-info-card {
    padding: 1.25rem 1.35rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(248, 250, 252, 0.08);
    background: linear-gradient(160deg, rgba(58, 80, 107, 0.3), rgba(14, 17, 22, 0.85));
    animation: flow-fade-up 0.8s var(--ease-out) both;
}

.flow-info-card:nth-child(2) {
    animation-delay: 0.08s;
}

.flow-info-card:nth-child(3) {
    animation-delay: 0.16s;
}

.flow-info-card h2,
.flow-info-card h3 {
    margin: 0 0 0.5rem;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--c-neon-aqua);
}

.flow-info-card p {
    margin: 0;
    color: rgba(248, 250, 252, 0.78);
    line-height: 1.55;
}

.flow-form-shell {
    position: relative;
    padding: 2px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(0, 255, 225, 0.35), rgba(76, 201, 240, 0.15), rgba(58, 80, 107, 0.4));
    background-size: 200% 200%;
    animation: flow-form-bg 8s ease infinite;
}

@keyframes flow-form-bg {

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

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

.flow-form-shell__inner {
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: calc(var(--radius-lg) - 2px);
    background: rgba(14, 17, 22, 0.96);
}

.flow-reveal[data-animate] {
    opacity: 0;
    transform: translate3d(0, 32px, 0);
    transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
    transition-delay: var(--stagger, 0s);
}

.flow-reveal[data-animate].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

@media (max-width: 1024px) {
    .flow-hero__grid {
        grid-template-columns: 1fr;
    }

    .flow-hero__visual {
        order: -1;
        max-width: 28rem;
        margin: 0 auto;
        width: 100%;
    }

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

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

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

    .flow-diagonal__inner {
        grid-template-columns: 1fr;
    }

    .flow-grid-3 {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 520px) {
    .flow-pillars {
        grid-template-columns: 1fr;
    }

    .flow-stats {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {

    .flow-hero__mesh,
    .flow-marquee__track,
    .flow-hero__orb--a,
    .flow-hero__orb--b,
    .flow-hero__visual img,
    .flow-hero__ring,
    .flow-media-frame::before,
    .flow-form-shell {
        animation: none !important;
    }

    .flow-hero__visual img {
        transform: none !important;
    }
}