:root {
    color-scheme: dark;
    --bg: #05080d;
    --bg-soft: #090e16;
    --surface: rgba(14, 21, 31, 0.74);
    --surface-solid: #0e151f;
    --surface-raised: #141d2a;
    --line: rgba(226, 237, 255, 0.09);
    --line-strong: rgba(226, 237, 255, 0.16);
    --text: #f6f8fc;
    --text-soft: #aab6c7;
    --text-dim: #748196;
    --mint: #72f0cc;
    --mint-strong: #45d9af;
    --blue: #5d83ff;
    --blue-soft: #91a8ff;
    --violet: #9d8cff;
    --danger: #ff7d87;
    --shadow: 0 32px 100px rgba(0, 0, 0, 0.48);
    --container: 1220px;
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-move: cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
    overflow-x: clip;
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

body {
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    overflow-x: clip;
    background: radial-gradient(circle at 12% 6%, rgba(114, 240, 204, 0.07), transparent 30rem),
        radial-gradient(circle at 86% 4%, rgba(93, 131, 255, 0.11), transparent 34rem), var(--bg);
    color: var(--text);
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

p {
    text-wrap: pretty;
}

body.menu-open {
    overflow: hidden;
}

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

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

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

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

button {
    color: inherit;
}

code {
    border: 1px solid rgba(120, 232, 199, 0.15);
    border-radius: 0.38em;
    background: rgba(120, 232, 199, 0.08);
    color: var(--mint);
    font-family: "Cascadia Code", "SFMono-Regular", Consolas, monospace;
    font-size: 0.86em;
    padding: 0.08em 0.34em;
}

::selection {
    background: rgba(120, 232, 199, 0.28);
    color: var(--text);
}

:focus-visible {
    outline: 2px solid var(--mint);
    outline-offset: 4px;
}

.container {
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto;
}

.section {
    position: relative;
    padding-block: 128px;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    border-radius: 10px;
    background: var(--text);
    color: var(--bg);
    font-weight: 750;
    transform: translateY(-160%);
    transition: transform 180ms var(--ease-out);
}

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

.page-ambient {
    position: absolute;
    z-index: -1;
    inset: 0 0 auto;
    height: 980px;
    overflow: hidden;
    pointer-events: none;
}

.ambient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(16px);
    opacity: 0.26;
}

.ambient-orb--mint {
    top: 70px;
    left: -170px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(120, 232, 199, 0.4), transparent 68%);
}

.ambient-orb--blue {
    top: 130px;
    right: -220px;
    width: 570px;
    height: 570px;
    background: radial-gradient(circle, rgba(79, 124, 255, 0.4), transparent 70%);
}

.ambient-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.72), transparent 90%);
}

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    left: 0;
    padding-top: 12px;
    pointer-events: none;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
    background: transparent;
}

.header-inner {
    position: relative;
    z-index: 102;
    display: flex;
    min-height: 64px;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    border: 1px solid rgba(226, 237, 255, 0.08);
    border-radius: 18px;
    background: rgba(8, 12, 19, 0.62);
    box-shadow: 0 10px 38px rgba(0, 0, 0, 0.12);
    padding: 0 10px 0 16px;
    pointer-events: auto;
    -webkit-backdrop-filter: blur(18px) saturate(135%);
    backdrop-filter: blur(18px) saturate(135%);
    transition:
        background-color 220ms ease,
        border-color 220ms ease,
        box-shadow 220ms ease,
        transform 220ms var(--ease-out);
}

.site-header.is-scrolled .header-inner,
.site-header.is-menu-open .header-inner {
    border-color: rgba(226, 237, 255, 0.13);
    background: rgba(8, 12, 19, 0.88);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.3);
}

.scroll-progress {
    position: fixed;
    z-index: 104;
    top: 0;
    right: 0;
    left: 0;
    height: 2px;
    overflow: hidden;
    pointer-events: none;
}

.scroll-progress span {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--mint), #62d9ef 55%, var(--blue-soft));
    box-shadow: 0 0 14px rgba(114, 240, 204, 0.55);
    transform: scaleX(0);
    transform-origin: left center;
}

.menu-backdrop {
    position: fixed;
    z-index: 98;
    inset: 0;
    display: none;
    border: 0;
    background: rgba(2, 5, 9, 0.64);
    opacity: 0;
    pointer-events: none;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    transition: opacity 180ms ease;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--text);
    font-size: 1.08rem;
    font-weight: 800;
    letter-spacing: -0.035em;
}

.brand-mark {
    width: 35px;
    height: 35px;
    border-radius: 10px;
    box-shadow: 0 7px 22px rgba(79, 124, 255, 0.18);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.desktop-nav a,
.footer-links a {
    position: relative;
    color: var(--text-soft);
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 180ms ease;
}

.desktop-nav a::after {
    position: absolute;
    right: 28%;
    bottom: -9px;
    left: 28%;
    height: 2px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--mint), var(--blue-soft));
    content: "";
    opacity: 0;
    transform: scaleX(0.35);
    transition:
        opacity 160ms ease,
        transform 180ms var(--ease-out);
}

.desktop-nav a.is-active {
    color: var(--text);
}

.desktop-nav a.is-active::after {
    opacity: 1;
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

.button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid transparent;
    border-radius: 13px;
    padding: 0 18px;
    cursor: pointer;
    font-size: 0.91rem;
    font-weight: 760;
    line-height: 1;
    transition:
        transform 180ms var(--ease-out),
        background-color 180ms ease,
        border-color 180ms ease,
        color 180ms ease,
        box-shadow 180ms ease;
}

.button:active {
    transform: scale(0.97);
}

.button svg,
.text-link svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.button--primary {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: linear-gradient(135deg, var(--mint), #70d7ff 64%, #8ca0ff);
    box-shadow:
        0 12px 34px rgba(93, 208, 206, 0.22),
        0 1px 0 rgba(255, 255, 255, 0.42) inset;
    color: #07110f;
}

.button--primary::after {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(105deg, transparent 22%, rgba(255, 255, 255, 0.38) 48%, transparent 74%);
    content: "";
    transform: translate3d(-130%, 0, 0);
    transition: transform 650ms var(--ease-out);
}

.button--ghost {
    border-color: var(--line-strong);
    background: rgba(255, 255, 255, 0.035);
    color: var(--text);
}

.button--quiet {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.035);
    color: var(--text);
}

.button--large {
    min-height: 54px;
    border-radius: 15px;
    padding-inline: 22px;
    font-size: 0.96rem;
}

.menu-toggle {
    display: none;
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.035);
    cursor: pointer;
    place-items: center;
}

.menu-toggle span {
    position: absolute;
    width: 18px;
    height: 1.5px;
    border-radius: 2px;
    background: var(--text);
    transition: transform 220ms var(--ease-move);
}

.menu-toggle span:first-child {
    transform: translateY(-4px);
}

.menu-toggle span:last-child {
    transform: translateY(4px);
}

.menu-toggle[aria-expanded="true"] span:first-child {
    transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
    transform: rotate(-45deg);
}

.mobile-menu {
    display: none;
}

.hero {
    min-height: 920px;
    padding-top: 182px;
    padding-bottom: 108px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(570px, 1.14fr);
    align-items: center;
    gap: clamp(54px, 6vw, 96px);
}

.hero-copy {
    position: relative;
    z-index: 2;
    min-width: 0;
}

.hero-copy::before {
    position: absolute;
    z-index: -1;
    top: -110px;
    left: -160px;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(114, 240, 204, 0.1), transparent 66%);
    content: "";
    pointer-events: none;
}

.eyebrow,
.section-label,
.micro-label,
.app-kicker,
.result-label {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.125em;
    text-transform: uppercase;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1px solid rgba(120, 232, 199, 0.16);
    border-radius: 999px;
    background: rgba(120, 232, 199, 0.06);
    color: #bdeedf;
    padding: 8px 12px;
}

.eyebrow-pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 0 5px rgba(120, 232, 199, 0.1);
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

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

h1 {
    max-width: 720px;
    margin: 24px 0 24px;
    font-size: clamp(3.45rem, 5.7vw, 6rem);
    font-weight: 800;
    letter-spacing: -0.074em;
    line-height: 0.96;
}

h1 span {
    background: linear-gradient(112deg, var(--text) 4%, var(--mint) 42%, #70d7ef 66%, var(--blue-soft));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.hero-lead {
    max-width: 590px;
    margin-bottom: 31px;
    color: var(--text-soft);
    font-size: clamp(1.03rem, 1.6vw, 1.18rem);
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 11px 20px;
    margin: 26px 0 0;
    padding: 0;
    color: var(--text-dim);
    font-size: 0.78rem;
    font-weight: 600;
    list-style: none;
}

.hero-trust li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hero-trust svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: var(--mint);
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-visual {
    position: relative;
    z-index: 1;
    min-width: 0;
    perspective: 1300px;
}

.hero-visual::before {
    position: absolute;
    z-index: -2;
    inset: -12% -9%;
    border: 1px solid rgba(145, 168, 255, 0.07);
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.018), transparent 55%);
    content: "";
    transform: rotate(-8deg);
}

.visual-halo {
    position: absolute;
    z-index: -1;
    inset: 8% 4% -8%;
    border-radius: 50%;
    background: radial-gradient(circle at 25% 45%, rgba(120, 232, 199, 0.2), transparent 35%),
        radial-gradient(circle at 78% 28%, rgba(79, 124, 255, 0.23), transparent 42%);
    filter: blur(34px);
}

.app-window {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(226, 237, 255, 0.15);
    border-radius: 26px;
    background: #0b1119;
    box-shadow:
        0 55px 130px rgba(0, 0, 0, 0.58),
        0 1px 0 rgba(255, 255, 255, 0.08) inset,
        0 0 0 1px rgba(93, 131, 255, 0.04) inset;
    transform: rotateY(-4deg) rotateX(2deg);
    transform-style: preserve-3d;
}

.app-window.is-animating {
    will-change: transform;
}

.app-window.is-resetting {
    transition: transform 520ms var(--ease-out);
}

.window-bar {
    display: flex;
    height: 48px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    background: #0b0f16;
    padding-inline: 16px;
}

.window-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.69rem;
    font-weight: 750;
}

.window-brand svg {
    width: 21px;
    height: 21px;
    border-radius: 6px;
}

.window-controls {
    display: flex;
    gap: 10px;
}

.window-controls span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
}

.app-layout {
    display: grid;
    min-height: 410px;
    grid-template-columns: 126px 1fr;
}

.app-sidebar {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    background: #0a0e15;
    padding: 19px 12px;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 9px;
    border-radius: 8px;
    color: #657184;
    font-size: 0.58rem;
    font-weight: 650;
    padding: 8px 9px;
}

.sidebar-item svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sidebar-item.is-active {
    background: rgba(120, 232, 199, 0.09);
    color: var(--mint);
}

.app-content {
    min-width: 0;
    background: radial-gradient(circle at 100% 0%, rgba(79, 124, 255, 0.08), transparent 38%), #0e131c;
    padding: 24px;
}

.app-heading,
.panel-title,
.service-row,
.result-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.app-heading strong {
    display: block;
    margin-top: 4px;
    font-size: 1rem;
    letter-spacing: -0.02em;
}

.app-kicker {
    color: #667285;
    font-size: 0.48rem;
}

.profile-pill,
.running-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(120, 232, 199, 0.12);
    border-radius: 999px;
    background: rgba(120, 232, 199, 0.06);
    color: #9fddcc;
    font-size: 0.51rem;
    font-weight: 700;
    padding: 5px 8px;
}

.profile-pill span,
.status-dot,
.result-status i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 8px rgba(120, 232, 199, 0.65);
}

.app-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
    margin: 21px 0 14px;
}

.app-stats article {
    min-width: 0;
    border: 1px solid rgba(255, 255, 255, 0.065);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.025);
    padding: 12px;
}

.app-stats span,
.app-stats small,
.service-row small,
.panel-title small {
    display: block;
    color: #677386;
    font-size: 0.47rem;
}

.app-stats strong {
    display: block;
    overflow: hidden;
    margin: 6px 0 3px;
    font-size: 0.7rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.app-stats small {
    display: flex;
    align-items: center;
    gap: 5px;
}

.service-panel {
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    background: rgba(8, 12, 18, 0.52);
    padding: 14px;
}

.panel-title {
    margin-bottom: 8px;
    font-size: 0.63rem;
    font-weight: 720;
}

.panel-action {
    color: var(--mint);
    font-size: 0.52rem;
}

.service-row {
    display: grid;
    grid-template-columns: 27px minmax(0, 1fr) auto auto;
    gap: 9px;
    border-top: 1px solid rgba(255, 255, 255, 0.055);
    padding-block: 10px;
}

.service-row > span:nth-child(2) {
    min-width: 0;
}

.service-row strong {
    display: block;
    overflow: hidden;
    font-size: 0.55rem;
    line-height: 1.4;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.service-icon {
    display: grid;
    width: 27px;
    height: 27px;
    place-items: center;
    border-radius: 8px;
    font-size: 0.45rem;
    font-style: normal;
    font-weight: 800;
}

.service-icon--apache {
    background: rgba(255, 119, 90, 0.12);
    color: #ff967e;
}

.service-icon--php {
    background: rgba(138, 164, 255, 0.12);
    color: #9aadff;
}

.service-icon--mysql {
    background: rgba(91, 201, 255, 0.11);
    color: #70cfff;
}

.signal {
    display: flex;
    align-items: end;
    gap: 2px;
    height: 12px;
}

.signal b {
    width: 2px;
    border-radius: 2px;
    background: var(--mint);
}

.signal b:nth-child(1) {
    height: 4px;
}

.signal b:nth-child(2) {
    height: 8px;
}

.signal b:nth-child(3) {
    height: 11px;
}

.running-pill {
    font-size: 0.43rem;
    padding: 4px 7px;
}

.floating-card {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 14px;
    background: rgba(15, 21, 30, 0.9);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.35);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    padding: 11px 13px;
    animation-play-state: paused;
}

.hero-visual.is-in-view .floating-card--domain {
    animation: float-domain 5.6s ease-in-out infinite;
}

.hero-visual.is-in-view .floating-card--verified {
    animation: float-verified 6.2s ease-in-out infinite;
}

@keyframes float-domain {
    50% {
        transform: translate3d(0, -7px, 0);
    }
}

@keyframes float-verified {
    50% {
        transform: translate3d(0, 6px, 0);
    }
}

.hero-visual.is-in-view .signal b {
    animation: signal-pulse 1.7s ease-in-out infinite alternate;
}

.hero-visual.is-in-view .signal b:nth-child(2) {
    animation-delay: 120ms;
}

.hero-visual.is-in-view .signal b:nth-child(3) {
    animation-delay: 240ms;
}

@keyframes signal-pulse {
    50% {
        opacity: 0.35;
        transform: scaleY(0.68);
    }
}

.floating-card--domain {
    right: -28px;
    bottom: 48px;
}

.floating-card--verified {
    top: 78px;
    left: -38px;
}

.floating-card small,
.floating-card strong {
    display: block;
}

.floating-card small {
    color: var(--text-dim);
    font-size: 0.52rem;
}

.floating-card strong {
    font-size: 0.66rem;
}

.floating-card > i {
    width: 7px;
    height: 7px;
    margin-left: 3px;
    border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 10px rgba(120, 232, 199, 0.7);
}

.floating-icon,
.feature-icon,
.security-check {
    display: grid;
    place-items: center;
    border: 1px solid rgba(120, 232, 199, 0.12);
    background: rgba(120, 232, 199, 0.08);
    color: var(--mint);
}

.floating-icon {
    width: 29px;
    height: 29px;
    border-radius: 9px;
}

.floating-icon svg,
.feature-icon svg,
.security-check svg,
.browser-chip svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.stack-marquee {
    overflow: hidden;
    border-block: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.018);
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 36s linear infinite;
    animation-play-state: paused;
}

.stack-marquee.is-in-view .marquee-track {
    animation-play-state: running;
}

.marquee-group {
    display: flex;
    min-width: max-content;
    align-items: center;
    gap: 28px;
    padding: 21px 14px;
}

.marquee-group span {
    color: #8994a4;
    font-size: 0.76rem;
    font-weight: 760;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.marquee-group i {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--mint), var(--blue));
}

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

.proof-strip {
    position: relative;
    border-bottom: 1px solid var(--line);
    background: linear-gradient(
            90deg,
            transparent,
            rgba(114, 240, 204, 0.025) 35%,
            rgba(93, 131, 255, 0.035) 70%,
            transparent
        ),
        rgba(255, 255, 255, 0.01);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.proof-grid article {
    display: grid;
    min-height: 132px;
    align-content: center;
    gap: 5px;
    padding: 24px 38px;
}

.proof-grid article + article {
    border-left: 1px solid var(--line);
}

.proof-grid strong {
    background: linear-gradient(100deg, var(--text) 20%, var(--mint), var(--blue-soft));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-size: 1.3rem;
    letter-spacing: -0.035em;
}

.proof-grid span {
    color: var(--text-dim);
    font-size: 0.76rem;
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.65fr);
    align-items: end;
    gap: 48px;
    margin-bottom: 54px;
}

.section-heading--center {
    max-width: 780px;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-inline: auto;
    text-align: center;
}

.section-label {
    display: inline-block;
    margin-bottom: 15px;
    background: linear-gradient(100deg, var(--mint), var(--blue-soft));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

h2 {
    margin-bottom: 0;
    font-size: clamp(2.4rem, 4vw, 4.2rem);
    font-weight: 770;
    letter-spacing: -0.058em;
    line-height: 1.05;
}

h3 {
    font-size: 1.2rem;
    letter-spacing: -0.032em;
    line-height: 1.28;
}

.section-heading > p,
.section-heading--center > p,
.workflow-copy > p,
.security-copy > p,
.faq-heading > p,
.cta-card p {
    margin-bottom: 0;
    color: var(--text-soft);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 18px;
}

.bento-card {
    position: relative;
    min-height: 320px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.042), transparent 48%), rgba(12, 18, 27, 0.76);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.025) inset;
    padding: 28px;
    transition:
        transform 260ms var(--ease-out),
        border-color 260ms ease,
        background-color 260ms ease,
        box-shadow 260ms ease;
}

.bento-card::before {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 88% 8%, rgba(79, 124, 255, 0.1), transparent 36%);
    content: "";
    pointer-events: none;
}

.bento-card::after {
    position: absolute;
    top: -1px;
    right: 16%;
    left: 16%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(114, 240, 204, 0.48), rgba(145, 168, 255, 0.38), transparent);
    content: "";
    opacity: 0.45;
}

.card-spotlight {
    position: absolute;
    z-index: 0;
    top: -130px;
    left: -130px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(114, 240, 204, 0.13), rgba(93, 131, 255, 0.045) 38%, transparent 70%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease;
}

.bento-card.is-spotlight .card-spotlight {
    opacity: 1;
    will-change: transform, opacity;
}

.bento-card--packages,
.bento-card--terminal {
    grid-column: span 7;
}

.bento-card--services,
.bento-card--data {
    grid-column: span 5;
}

.bento-card--domains,
.bento-card--projects {
    grid-column: span 6;
}

.card-topline {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.feature-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    box-shadow:
        0 9px 24px rgba(69, 217, 175, 0.08),
        0 1px 0 rgba(255, 255, 255, 0.08) inset;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
}

.micro-label {
    color: var(--text-dim);
    font-size: 0.62rem;
}

.bento-card h3,
.bento-card > p {
    position: relative;
    z-index: 1;
    max-width: 570px;
}

.bento-card h3 {
    margin-bottom: 11px;
}

.bento-card > p {
    margin-bottom: 25px;
    color: var(--text-soft);
    font-size: 0.9rem;
}

.package-list {
    position: relative;
    z-index: 1;
    display: grid;
    max-width: 520px;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.package-list > span {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 2px 10px;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: rgba(6, 9, 14, 0.42);
    padding: 11px;
}

.package-list b {
    font-size: 0.69rem;
}

.package-list small {
    grid-row: 2;
    color: var(--text-dim);
    font-size: 0.58rem;
}

.package-list i {
    grid-row: 1 / 3;
    grid-column: 2;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--blue-soft);
}

.package-list i.is-ready {
    background: var(--mint);
    box-shadow: 0 0 9px rgba(120, 232, 199, 0.55);
}

.service-orbit {
    position: absolute;
    right: 24px;
    bottom: -90px;
    width: 225px;
    height: 225px;
    border: 1px solid rgba(120, 232, 199, 0.1);
    border-radius: 50%;
}

.service-orbit::before {
    position: absolute;
    inset: 28px;
    border: 1px dashed rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    content: "";
}

.orbit-core,
.orbit-node {
    position: absolute;
    display: grid;
    place-items: center;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    background: #111821;
}

.orbit-core {
    top: 50%;
    left: 50%;
    width: 56px;
    height: 56px;
    transform: translate(-50%, -50%);
}

.orbit-core i {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--mint);
    box-shadow:
        0 0 0 8px rgba(120, 232, 199, 0.07),
        0 0 30px rgba(120, 232, 199, 0.35);
}

.orbit-node {
    width: 40px;
    height: 40px;
    color: var(--text-soft);
    font-size: 0.55rem;
    font-weight: 800;
    animation: node-float 3.8s ease-in-out infinite;
    animation-play-state: paused;
}

.service-orbit.is-in-view .orbit-node {
    animation-play-state: running;
}

.orbit-node--one {
    top: 2px;
    left: 90px;
}

.orbit-node--two {
    top: 116px;
    right: -4px;
    animation-delay: -1.2s;
}

.orbit-node--three {
    top: 116px;
    left: -4px;
    animation-delay: -2.4s;
}

@keyframes node-float {
    50% {
        transform: translate3d(0, -7px, 0);
    }
}

.browser-chip {
    display: flex;
    max-width: 410px;
    align-items: center;
    gap: 10px;
    overflow: hidden;
    border: 1px solid rgba(120, 232, 199, 0.13);
    border-radius: 12px;
    background: rgba(5, 10, 14, 0.55);
    color: var(--mint);
    padding: 12px 15px;
}

.browser-chip > span {
    width: 7px;
    height: 7px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 8px rgba(120, 232, 199, 0.45);
}

.browser-chip strong {
    overflow: hidden;
    color: #cae8e0;
    font-family: "Cascadia Code", Consolas, monospace;
    font-size: 0.71rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.recipe-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.recipe-tags span {
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.025);
    color: var(--text-soft);
    font-size: 0.67rem;
    font-weight: 700;
    padding: 7px 11px;
}

.terminal-preview {
    display: grid;
    max-width: 520px;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #080c12;
    color: #8590a0;
    font-family: "Cascadia Code", Consolas, monospace;
    font-size: 0.67rem;
    padding: 15px;
}

.terminal-preview i {
    color: var(--mint);
    font-style: normal;
}

.terminal-success {
    color: #9acbbd;
}

.terminal-cursor {
    display: inline-block;
    width: 7px;
    height: 14px;
    background: var(--mint);
    animation: cursor-blink 1.05s steps(1, end) infinite;
    animation-play-state: paused;
}

.terminal-preview.is-in-view .terminal-cursor {
    animation-play-state: running;
}

@keyframes cursor-blink {
    50% {
        opacity: 0;
    }
}

.data-flow {
    display: flex;
    align-items: center;
    gap: 9px;
}

.data-flow span {
    border: 1px solid var(--line);
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.025);
    color: var(--text-soft);
    font-size: 0.59rem;
    font-weight: 700;
    padding: 9px 10px;
}

.data-flow i {
    width: 18px;
    height: 1px;
    background: linear-gradient(90deg, rgba(120, 232, 199, 0.1), var(--mint));
}

.workflow-section {
    background: linear-gradient(180deg, transparent, rgba(79, 124, 255, 0.035) 50%, transparent), var(--bg);
}

.workflow-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(540px, 1.28fr);
    align-items: start;
    gap: clamp(60px, 9vw, 130px);
}

.workflow-copy {
    position: sticky;
    top: 130px;
}

.workflow-copy h2,
.security-copy h2,
.faq-heading h2 {
    margin-bottom: 22px;
    font-size: clamp(2.2rem, 3.4vw, 3.5rem);
}

.workflow-copy > p,
.security-copy > p,
.faq-heading > p {
    margin-bottom: 25px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--mint);
    font-size: 0.88rem;
    font-weight: 750;
}

.text-link svg {
    transition: transform 180ms var(--ease-out);
}

.workflow-steps {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.workflow-step {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: start;
    gap: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(14, 19, 28, 0.66);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.025) inset;
    padding: 26px;
}

.workflow-step::before {
    position: absolute;
    top: 22px;
    bottom: 22px;
    left: -1px;
    width: 2px;
    border-radius: 0 99px 99px 0;
    background: linear-gradient(var(--mint), var(--blue-soft));
    content: "";
    opacity: 0.55;
}

.step-number {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid rgba(120, 232, 199, 0.13);
    border-radius: 13px;
    background: rgba(120, 232, 199, 0.06);
    color: var(--mint);
    font-family: "Cascadia Code", Consolas, monospace;
    font-size: 0.72rem;
    font-weight: 800;
}

.workflow-step h3 {
    margin: 1px 0 7px;
}

.workflow-step p {
    margin-bottom: 0;
    color: var(--text-soft);
    font-size: 0.88rem;
}

.step-state {
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--text-dim);
    font-size: 0.58rem;
    font-weight: 750;
    padding: 6px 9px;
    white-space: nowrap;
}

.stack-builder {
    display: grid;
    grid-template-columns: 1fr 0.84fr;
    overflow: hidden;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-lg);
    background: rgba(13, 18, 26, 0.74);
    box-shadow:
        var(--shadow),
        0 1px 0 rgba(255, 255, 255, 0.06) inset;
}

.stack-options {
    display: grid;
    gap: 27px;
    padding: 42px;
}

.stack-options fieldset {
    margin: 0;
    border: 0;
    padding: 0;
}

.stack-options legend {
    margin-bottom: 11px;
    color: var(--text-soft);
    font-size: 0.76rem;
    font-weight: 750;
}

.choice-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.choice-row button {
    min-height: 40px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.025);
    color: var(--text-soft);
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 700;
    padding-inline: 13px;
    transition:
        transform 160ms var(--ease-out),
        background-color 160ms ease,
        border-color 160ms ease,
        color 160ms ease,
        box-shadow 160ms ease;
}

.choice-row button:active {
    transform: scale(0.97);
}

.choice-row button[aria-pressed="true"] {
    border-color: rgba(120, 232, 199, 0.35);
    background: rgba(120, 232, 199, 0.09);
    box-shadow: 0 0 0 1px rgba(120, 232, 199, 0.05) inset;
    color: var(--mint);
}

.stack-result {
    margin: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 21px;
    background: radial-gradient(circle at 80% 15%, rgba(79, 124, 255, 0.14), transparent 33%), #090d13;
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

.result-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    color: var(--text-dim);
    padding: 13px 16px;
}

.result-toolbar > span {
    display: flex;
    gap: 6px;
}

.result-toolbar i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
}

.result-toolbar small {
    font-family: "Cascadia Code", Consolas, monospace;
    font-size: 0.58rem;
}

.result-content {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    padding: 40px;
}

.result-label {
    color: var(--mint);
    font-size: 0.6rem;
}

.result-content h3 {
    margin: 10px 0 26px;
    font-size: 1.7rem;
}

.result-content dl {
    display: grid;
    gap: 10px;
    margin: 0;
}

.result-content dl > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    padding-bottom: 10px;
}

.result-content dt {
    color: var(--text-dim);
    font-size: 0.7rem;
}

.result-content dd {
    margin: 0;
    color: #d8e1ed;
    font-family: "Cascadia Code", Consolas, monospace;
    font-size: 0.72rem;
    font-weight: 700;
}

.result-status {
    gap: 14px;
    margin-top: auto;
    padding-top: 34px;
}

.result-status span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #9acbbd;
    font-size: 0.66rem;
    font-weight: 650;
}

.result-status small {
    border: 1px solid rgba(120, 232, 199, 0.13);
    border-radius: 999px;
    color: var(--mint);
    font-family: "Cascadia Code", Consolas, monospace;
    font-size: 0.57rem;
    padding: 6px 8px;
}

.security-card {
    display: grid;
    grid-template-columns: minmax(300px, 0.84fr) minmax(460px, 1.16fr);
    gap: clamp(50px, 8vw, 110px);
    overflow: hidden;
    border: 1px solid rgba(120, 232, 199, 0.12);
    border-radius: var(--radius-lg);
    background: radial-gradient(circle at 5% 5%, rgba(120, 232, 199, 0.1), transparent 35%),
        radial-gradient(circle at 100% 100%, rgba(79, 124, 255, 0.1), transparent 34%), rgba(13, 18, 26, 0.76);
    padding: clamp(38px, 6vw, 72px);
    box-shadow:
        0 32px 90px rgba(0, 0, 0, 0.25),
        0 1px 0 rgba(255, 255, 255, 0.045) inset;
}

.security-list {
    display: grid;
    gap: 10px;
}

.security-list article {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 15px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: rgba(6, 10, 15, 0.32);
    padding: 17px;
}

.security-check {
    width: 32px;
    height: 32px;
    border-radius: 10px;
}

.security-list h3 {
    margin: 1px 0 4px;
    font-size: 0.91rem;
}

.security-list p {
    margin-bottom: 0;
    color: var(--text-dim);
    font-size: 0.76rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(520px, 1.28fr);
    align-items: start;
    gap: clamp(60px, 9vw, 130px);
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-list details {
    border-bottom: 1px solid var(--line);
}

.faq-list details[open] {
    border-bottom-color: rgba(114, 240, 204, 0.2);
}

.faq-list summary {
    display: flex;
    min-height: 76px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    cursor: pointer;
    font-weight: 720;
    list-style: none;
    transition: color 180ms ease;
}

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

.faq-list summary span {
    position: relative;
    width: 24px;
    height: 24px;
    flex: 0 0 auto;
    border: 1px solid var(--line);
    border-radius: 50%;
}

.faq-list summary span::before,
.faq-list summary span::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 9px;
    height: 1px;
    background: var(--text-soft);
    content: "";
    transform: translate(-50%, -50%);
    transition: transform 220ms var(--ease-out);
}

.faq-list summary span::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

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

.faq-list details[open] summary span::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.faq-list details > p {
    max-width: 680px;
    margin: -6px 48px 25px 0;
    color: var(--text-soft);
    font-size: 0.91rem;
}

.faq-list details[open] > p {
    animation: faq-answer-in 220ms var(--ease-out) both;
}

@keyframes faq-answer-in {
    from {
        opacity: 0;
        transform: translate3d(0, -6px, 0);
    }
}

.final-cta {
    padding-top: 60px;
}

.cta-card {
    position: relative;
    display: flex;
    min-height: 330px;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    overflow: hidden;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-lg);
    background: linear-gradient(120deg, rgba(120, 232, 199, 0.08), transparent 42%),
        linear-gradient(300deg, rgba(79, 124, 255, 0.1), transparent 44%), #0e141d;
    box-shadow: var(--shadow);
    padding: clamp(38px, 6vw, 72px);
}

.cta-card > div:not(.cta-glow) {
    position: relative;
    z-index: 1;
}

.cta-card h2 {
    max-width: 650px;
    margin-bottom: 18px;
}

.cta-card p {
    max-width: 590px;
}

.cta-glow {
    position: absolute;
    right: -15%;
    bottom: -90%;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79, 124, 255, 0.22), transparent 66%);
    pointer-events: none;
}

.cta-actions {
    display: grid;
    flex: 0 0 auto;
    gap: 12px;
    justify-items: center;
}

.cta-actions > span {
    color: var(--text-dim);
    font-size: 0.68rem;
    font-weight: 650;
}

.site-footer {
    border-top: 1px solid var(--line);
    padding-top: 70px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 70px;
    padding-bottom: 58px;
}

.footer-grid > div:first-child > p {
    max-width: 340px;
    margin: 17px 0 0;
    color: var(--text-dim);
    font-size: 0.83rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 150px);
    gap: 35px;
}

.footer-links > div {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links strong {
    margin-bottom: 5px;
    font-size: 0.76rem;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid var(--line);
    color: var(--text-dim);
    font-size: 0.68rem;
    padding-block: 22px;
}

.back-to-top {
    position: fixed;
    z-index: 90;
    right: max(22px, calc((100vw - var(--container)) / 2));
    bottom: 24px;
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid var(--line-strong);
    border-radius: 14px;
    background: rgba(12, 18, 27, 0.86);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.28);
    color: var(--text);
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, 10px, 0) scale(0.94);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    transition:
        opacity 180ms ease,
        transform 220ms var(--ease-out),
        border-color 180ms ease,
        background-color 180ms ease;
}

.back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0) scale(1);
}

.back-to-top svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.js .reveal {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
    transition:
        opacity 680ms var(--ease-out),
        transform 680ms var(--ease-out);
}

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

.bento-grid .reveal:nth-child(2),
.workflow-steps .reveal:nth-child(2) {
    transition-delay: 70ms;
}

.bento-grid .reveal:nth-child(3),
.workflow-steps .reveal:nth-child(3) {
    transition-delay: 140ms;
}

.bento-grid .reveal:nth-child(4) {
    transition-delay: 50ms;
}

.bento-grid .reveal:nth-child(5) {
    transition-delay: 100ms;
}

.bento-grid .reveal:nth-child(6) {
    transition-delay: 150ms;
}

@media (hover: hover) and (pointer: fine) {
    .desktop-nav a:hover,
    .footer-links a:hover,
    .faq-list summary:hover {
        color: var(--text);
    }

    .button--primary:hover {
        box-shadow: 0 15px 42px rgba(93, 208, 206, 0.32);
        transform: translateY(-2px);
    }

    .button--primary:hover::after {
        transform: translate3d(130%, 0, 0);
    }

    .button--ghost:hover,
    .button--quiet:hover {
        border-color: rgba(255, 255, 255, 0.22);
        background: rgba(255, 255, 255, 0.065);
        transform: translateY(-2px);
    }

    .text-link:hover svg {
        transform: translateX(4px);
    }

    .bento-card:hover {
        border-color: rgba(120, 232, 199, 0.18);
        background-color: rgba(16, 23, 33, 0.88);
        box-shadow: 0 24px 55px rgba(0, 0, 0, 0.24);
        transform: scale(1.012);
    }

    .choice-row button:hover {
        border-color: rgba(255, 255, 255, 0.19);
        color: var(--text);
        transform: translateY(-1px);
    }

    .back-to-top:hover {
        border-color: rgba(114, 240, 204, 0.28);
        background: rgba(18, 28, 39, 0.94);
        transform: translate3d(0, -2px, 0) scale(1);
    }
}

@media (max-width: 1100px) {
    .hero {
        padding-top: 146px;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 0.88fr) minmax(500px, 1.12fr);
        gap: 42px;
    }

    h1 {
        font-size: clamp(3.15rem, 6vw, 4.7rem);
    }

    .app-layout {
        grid-template-columns: 105px 1fr;
    }

    .app-content {
        padding: 20px;
    }

    .floating-card--domain {
        right: -10px;
    }

    .floating-card--verified {
        left: -18px;
    }

    .workflow-grid,
    .faq-grid {
        gap: 70px;
    }
}

@media (max-width: 920px) {
    .section {
        padding-block: 96px;
    }

    .site-header {
        padding-top: 8px;
    }

    .header-inner {
        min-height: 64px;
    }

    .desktop-nav,
    .header-download {
        display: none;
    }

    .menu-toggle {
        position: relative;
        display: grid;
    }

    .menu-backdrop {
        display: block;
    }

    .site-header.is-menu-open .menu-backdrop {
        opacity: 1;
        pointer-events: auto;
    }

    .mobile-menu {
        position: fixed;
        z-index: 101;
        top: 84px;
        right: max(16px, calc((100vw - var(--container)) / 2));
        left: max(16px, calc((100vw - var(--container)) / 2));
        display: flex;
        max-height: calc(100dvh - 100px);
        flex-direction: column;
        gap: 3px;
        overflow-y: auto;
        border: 1px solid var(--line-strong);
        border-radius: 22px;
        background: radial-gradient(circle at 90% 5%, rgba(93, 131, 255, 0.13), transparent 34%), rgba(8, 13, 20, 0.98);
        box-shadow: 0 28px 80px rgba(0, 0, 0, 0.52);
        padding: 14px;
        opacity: 0;
        pointer-events: none;
        transform: translate3d(0, -10px, 0) scale(0.97);
        transform-origin: top right;
        transition:
            opacity 180ms ease,
            transform 240ms var(--ease-out);
    }

    .mobile-menu.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translate3d(0, 0, 0) scale(1);
    }

    .mobile-menu__label {
        color: var(--text-dim);
        font-size: 0.64rem;
        font-weight: 800;
        letter-spacing: 0.14em;
        padding: 7px 11px 10px;
        text-transform: uppercase;
    }

    .mobile-menu > a:not(.button) {
        display: flex;
        min-height: 54px;
        align-items: center;
        gap: 15px;
        border: 1px solid transparent;
        border-radius: 13px;
        color: var(--text-soft);
        font-size: 1.02rem;
        font-weight: 720;
        padding: 10px 12px;
        transition:
            background-color 160ms ease,
            border-color 160ms ease,
            color 160ms ease;
    }

    .mobile-menu > a:not(.button) > span {
        color: var(--mint);
        font-family: "Cascadia Code", Consolas, monospace;
        font-size: 0.61rem;
        opacity: 0.62;
    }

    .mobile-menu > a:not(.button).is-active {
        border-color: rgba(114, 240, 204, 0.11);
        background: rgba(114, 240, 204, 0.055);
        color: var(--text);
    }

    .mobile-menu .button {
        margin-top: 10px;
    }

    .hero {
        min-height: auto;
        padding-top: 154px;
        padding-bottom: 82px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 74px;
    }

    .hero-copy {
        max-width: 700px;
    }

    h1 {
        font-size: clamp(3.4rem, 9vw, 5.4rem);
    }

    .hero-visual {
        width: min(100%, 700px);
        margin-inline: auto;
    }

    .proof-grid article {
        padding-inline: 24px;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-heading > p {
        max-width: 650px;
    }

    .bento-card--packages,
    .bento-card--services,
    .bento-card--domains,
    .bento-card--projects,
    .bento-card--terminal,
    .bento-card--data {
        grid-column: span 6;
    }

    .package-list {
        grid-template-columns: 1fr;
    }

    .workflow-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .workflow-copy {
        position: static;
        max-width: 650px;
    }

    .stack-builder,
    .security-card {
        grid-template-columns: 1fr;
    }

    .stack-result {
        min-height: 410px;
    }

    .cta-card {
        align-items: start;
        flex-direction: column;
    }

    .cta-actions {
        justify-items: start;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(calc(100% - 32px), var(--container));
    }

    .section {
        padding-block: 78px;
    }

    .header-inner {
        min-height: 60px;
        border-radius: 16px;
        padding-left: 13px;
    }

    .mobile-menu {
        top: 76px;
        max-height: calc(100dvh - 92px);
    }

    .hero {
        padding-top: 126px;
        padding-bottom: 72px;
    }

    h1 {
        margin-top: 20px;
        font-size: clamp(2.75rem, 12.8vw, 4.2rem);
        letter-spacing: -0.06em;
        line-height: 0.98;
        overflow-wrap: anywhere;
    }

    .hero-lead {
        font-size: 1rem;
    }

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

    .hero-actions .button {
        width: 100%;
    }

    .hero-trust {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero-grid {
        gap: 58px;
    }

    .hero-copy::before {
        top: -90px;
        left: -220px;
    }

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

    .proof-grid article {
        min-height: 102px;
        padding: 20px 4px;
    }

    .proof-grid article + article {
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .app-window {
        border-radius: 18px;
        transform: none;
    }

    .app-layout {
        min-height: 315px;
        grid-template-columns: 56px 1fr;
    }

    .app-sidebar {
        gap: 7px;
        padding: 13px 8px;
    }

    .sidebar-item {
        justify-content: center;
        padding: 9px;
        font-size: 0;
    }

    .sidebar-item svg {
        width: 17px;
        height: 17px;
    }

    .app-content {
        padding: 14px;
    }

    .app-heading {
        align-items: flex-start;
    }

    .app-heading strong {
        font-size: 0.76rem;
    }

    .profile-pill {
        font-size: 0;
        padding: 7px;
    }

    .profile-pill span {
        width: 6px;
        height: 6px;
    }

    .app-stats {
        grid-template-columns: repeat(2, 1fr);
        margin-block: 14px 10px;
    }

    .app-stats article:nth-child(3) {
        display: none;
    }

    .service-panel {
        padding: 10px;
    }

    .service-row {
        grid-template-columns: 25px minmax(0, 1fr) auto;
    }

    .signal {
        display: none;
    }

    .floating-card--domain {
        right: -4px;
        bottom: -35px;
    }

    .floating-card--verified {
        top: -28px;
        left: -4px;
    }

    .floating-card {
        padding: 8px 10px;
    }

    .floating-card small {
        font-size: 0.46rem;
    }

    .floating-card strong {
        font-size: 0.56rem;
    }

    h2 {
        font-size: clamp(2.1rem, 11vw, 3.1rem);
    }

    .section-heading {
        margin-bottom: 38px;
    }

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

    .bento-card--packages,
    .bento-card--services,
    .bento-card--domains,
    .bento-card--projects,
    .bento-card--terminal,
    .bento-card--data {
        grid-column: 1;
    }

    .bento-card {
        min-height: 290px;
        padding: 23px;
    }

    .package-list {
        grid-template-columns: repeat(3, 1fr);
    }

    .package-list > span {
        padding: 9px;
    }

    .data-flow {
        flex-wrap: wrap;
    }

    .workflow-step {
        grid-template-columns: auto 1fr;
        gap: 16px;
        padding: 21px;
    }

    .step-state {
        grid-column: 2;
        justify-self: start;
    }

    .stack-builder {
        border-radius: 22px;
    }

    .stack-options {
        gap: 22px;
        padding: 26px 20px;
    }

    .stack-result {
        min-height: 380px;
        margin: 8px;
        border-radius: 16px;
    }

    .result-content {
        padding: 28px 22px;
    }

    .security-card,
    .cta-card {
        border-radius: 22px;
        padding: 30px 22px;
    }

    .security-card {
        gap: 40px;
    }

    .security-list article {
        padding: 14px;
    }

    .faq-grid {
        gap: 30px;
    }

    .faq-list summary {
        min-height: 70px;
        font-size: 0.92rem;
    }

    .cta-card {
        min-height: 0;
        gap: 34px;
    }

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

    .cta-actions {
        justify-items: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

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

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .back-to-top {
        right: 16px;
        bottom: 16px;
    }
}

@media (max-width: 430px) {
    .eyebrow {
        font-size: 0.63rem;
        letter-spacing: 0.08em;
    }

    .window-bar {
        height: 42px;
    }

    .window-controls {
        gap: 7px;
    }

    .app-layout {
        grid-template-columns: 50px 1fr;
    }

    .app-content {
        padding: 11px;
    }

    .app-stats article {
        padding: 9px;
    }

    .running-pill {
        font-size: 0;
        padding: 5px;
    }

    .running-pill::after {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--mint);
        content: "";
    }

    .package-list {
        grid-template-columns: 1fr;
    }

    .service-orbit {
        right: 5px;
        opacity: 0.72;
    }

    .result-status {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* Shared preferences, bilingual controls, and refreshed page compositions */

[data-theme-switching] *,
[data-theme-switching] *::before,
[data-theme-switching] *::after {
    transition: none !important;
}

.header-preferences,
.language-switch {
    display: flex;
    align-items: center;
}

.header-preferences {
    gap: 8px;
}

.language-switch {
    gap: 2px;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.025);
    padding: 3px;
}

.language-switch button,
.theme-toggle {
    border: 0;
    color: var(--text-dim);
    cursor: pointer;
}

.language-switch button {
    min-width: 33px;
    min-height: 32px;
    border-radius: 8px;
    background: transparent;
    font-size: 0.65rem;
    font-weight: 850;
    letter-spacing: 0.04em;
    transition:
        background-color 150ms ease,
        color 150ms ease,
        box-shadow 150ms ease,
        transform 140ms var(--ease-out);
}

.language-switch button[aria-pressed="true"] {
    background: var(--surface-raised);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
    color: var(--text);
}

.language-switch button:active,
.theme-toggle:active {
    transform: scale(0.96);
}

.theme-toggle {
    position: relative;
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.028);
    transition:
        transform 140ms var(--ease-out),
        background-color 180ms ease,
        border-color 180ms ease,
        color 180ms ease;
}

.theme-icon {
    grid-area: 1 / 1;
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition:
        opacity 170ms ease,
        transform 200ms var(--ease-out);
}

.theme-icon--moon,
[data-theme="light"] .theme-icon--sun {
    opacity: 0;
    transform: scale(0.72) rotate(-25deg);
}

[data-theme="light"] .theme-icon--moon {
    opacity: 1;
    transform: scale(1) rotate(0);
}

/* Rebuilt hero: narrative first, product stage second. */

.hero {
    min-height: 0;
    padding-top: 166px;
    padding-bottom: 112px;
}

.hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 78px;
}

.hero-copy {
    width: min(100%, 980px);
    margin-inline: auto;
    text-align: center;
}

.hero-copy::before {
    top: -170px;
    left: 50%;
    width: 760px;
    height: 470px;
    background: radial-gradient(circle, rgba(114, 240, 204, 0.11), transparent 68%);
    transform: translateX(-50%);
}

.hero .eyebrow {
    margin-inline: auto;
}

.hero h1 {
    max-width: 1000px;
    margin: 30px auto 26px;
    font-size: clamp(4.4rem, 7.7vw, 7.3rem);
    line-height: 0.88;
    letter-spacing: -0.078em;
}

.hero h1 span {
    display: block;
}

.hero h1 .hero-title-plain {
    background: none;
    color: var(--text);
    -webkit-text-fill-color: currentColor;
}

.hero-lead {
    max-width: 700px;
    margin: 0 auto 34px;
    font-size: clamp(1.05rem, 1.7vw, 1.24rem);
}

.hero-actions,
.hero-trust {
    justify-content: center;
}

.hero-trust {
    margin-top: 28px;
}

.hero-visual {
    width: min(100%, 1060px);
    margin-inline: auto;
    perspective: 1600px;
}

.hero-visual::before {
    inset: -14% -7% -9%;
    border-color: rgba(145, 168, 255, 0.09);
    border-radius: 42%;
    transform: rotate(-4deg);
}

.visual-halo {
    inset: -7% 4% -14%;
    opacity: 0.95;
}

.hero-stage-status {
    position: absolute;
    z-index: 4;
    top: -27px;
    right: 28px;
    display: flex;
    min-height: 48px;
    align-items: center;
    gap: 28px;
    border: 1px solid var(--line-strong);
    border-radius: 14px;
    background: rgba(10, 16, 24, 0.88);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
    color: #c7d2e2;
    padding: 9px 13px;
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}

.hero-stage-status span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.65rem;
}

.hero-stage-status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 12px rgba(114, 240, 204, 0.65);
}

.hero-stage-status code {
    border: 0;
    background: rgba(114, 240, 204, 0.08);
    font-size: 0.62rem;
}

.hero .app-window {
    border-radius: 28px;
    transform: rotateX(1.5deg);
}

.floating-card--verified {
    top: 88px;
    left: -28px;
}

.floating-card--domain {
    right: -24px;
    bottom: 58px;
}

/* Privacy page shares the same visual system. */

.privacy-page {
    min-height: 100vh;
}

.legal-main {
    position: relative;
}

.legal-hero {
    padding: 154px 0 88px;
    border-bottom: 1px solid var(--line);
}

.legal-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 55px;
    color: var(--text-dim);
    font-size: 0.78rem;
    font-weight: 750;
}

.legal-back svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 170ms var(--ease-out);
}

.legal-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.62fr);
    align-items: end;
    gap: clamp(50px, 8vw, 120px);
}

.legal-hero h1 {
    max-width: 760px;
    margin: 8px 0 0;
    font-size: clamp(4rem, 7vw, 7rem);
    line-height: 0.91;
}

.legal-hero h1 .hero-title-plain {
    background: none;
    color: var(--text);
    -webkit-text-fill-color: currentColor;
}

.legal-intro {
    margin-bottom: 9px;
    color: var(--text-soft);
    font-size: 1.03rem;
    line-height: 1.8;
}

.legal-metadata {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 820px;
    margin-top: 58px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.018);
}

.legal-metadata > span {
    display: grid;
    gap: 3px;
    padding: 18px 21px;
}

.legal-metadata > span + span {
    border-left: 1px solid var(--line);
}

.legal-metadata small,
.legal-toc > span {
    color: var(--text-dim);
    font-size: 0.63rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.legal-metadata strong {
    font-size: 0.8rem;
}

.legal-shell {
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
    align-items: start;
    gap: clamp(55px, 8vw, 115px);
    padding-top: 92px;
    padding-bottom: 130px;
}

.legal-toc {
    position: sticky;
    top: 116px;
    display: grid;
    gap: 21px;
}

.legal-toc nav {
    display: grid;
    border-left: 1px solid var(--line);
}

.legal-toc a {
    position: relative;
    color: var(--text-dim);
    font-size: 0.76rem;
    font-weight: 680;
    padding: 8px 0 8px 17px;
    transition: color 160ms ease;
}

.legal-toc a::before {
    position: absolute;
    top: 9px;
    bottom: 9px;
    left: -1px;
    width: 2px;
    border-radius: 99px;
    background: var(--mint);
    content: "";
    opacity: 0;
}

.legal-toc a.is-active,
.legal-toc a[aria-current="location"] {
    color: var(--text);
}

.legal-toc a.is-active::before,
.legal-toc a[aria-current="location"]::before {
    opacity: 1;
}

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

.legal-section {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 28px;
    border-top: 1px solid var(--line);
    padding: 48px 0 52px;
}

.legal-section:first-child {
    border-top: 0;
}

.legal-section__number {
    color: var(--mint);
    font-family: "Cascadia Code", Consolas, monospace;
    font-size: 0.68rem;
    font-weight: 800;
    padding-top: 5px;
}

.legal-section h2 {
    margin-bottom: 18px;
    font-size: clamp(1.75rem, 3vw, 2.45rem);
    letter-spacing: -0.045em;
    line-height: 1.1;
}

.legal-section h3 {
    margin: 30px 0 9px;
    font-size: 1rem;
}

.legal-section p,
.legal-section li {
    color: var(--text-soft);
    font-size: 0.94rem;
}

.legal-section p {
    margin-bottom: 13px;
}

.legal-section ul {
    display: grid;
    gap: 10px;
    margin: 17px 0 0;
    padding-left: 20px;
}

.legal-section li::marker {
    color: var(--mint);
}

.legal-summary {
    position: relative;
    margin-bottom: 24px;
    overflow: hidden;
    border: 1px solid rgba(114, 240, 204, 0.16);
    border-radius: 24px;
    background: radial-gradient(circle at 0 0, rgba(114, 240, 204, 0.09), transparent 37%),
        radial-gradient(circle at 100% 100%, rgba(93, 131, 255, 0.08), transparent 42%), rgba(13, 19, 28, 0.66);
    padding: 40px;
}

.legal-notice {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 13px;
    margin-top: 25px;
    border: 1px solid rgba(114, 240, 204, 0.14);
    border-radius: 14px;
    background: rgba(114, 240, 204, 0.055);
    color: var(--text-soft);
    font-size: 0.8rem;
    padding: 15px;
}

.legal-notice svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: var(--mint);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.legal-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 22px;
}

.legal-contact-grid a {
    display: grid;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    padding: 16px;
    transition:
        border-color 160ms ease,
        background-color 160ms ease,
        transform 160ms var(--ease-out);
}

.legal-contact-grid span {
    color: var(--text-dim);
    font-size: 0.66rem;
}

.legal-contact-grid strong {
    overflow: hidden;
    font-size: 0.78rem;
    text-overflow: ellipsis;
}

/* Light theme keeps the product preview dark while the page surfaces become bright. */

:root[data-theme="light"] {
    color-scheme: light;
    --bg: #f5f7fb;
    --bg-soft: #edf1f7;
    --surface: rgba(255, 255, 255, 0.78);
    --surface-solid: #ffffff;
    --surface-raised: #ffffff;
    --line: rgba(22, 35, 55, 0.1);
    --line-strong: rgba(22, 35, 55, 0.16);
    --text: #111a29;
    --text-soft: #526176;
    --text-dim: #78869a;
    --mint: #0da983;
    --mint-strong: #078b6d;
    --blue: #4268e8;
    --blue-soft: #647fe8;
    --shadow: 0 32px 90px rgba(36, 55, 82, 0.14);
}

[data-theme="light"] body {
    background: radial-gradient(circle at 12% 5%, rgba(13, 169, 131, 0.08), transparent 31rem),
        radial-gradient(circle at 88% 4%, rgba(66, 104, 232, 0.09), transparent 34rem), var(--bg);
}

[data-theme="light"] .ambient-grid {
    background-image: linear-gradient(rgba(28, 48, 77, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(28, 48, 77, 0.045) 1px, transparent 1px);
}

[data-theme="light"] .header-inner {
    border-color: rgba(22, 35, 55, 0.1);
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0 14px 45px rgba(42, 58, 84, 0.08);
}

[data-theme="light"] .site-header.is-scrolled .header-inner,
[data-theme="light"] .site-header.is-menu-open .header-inner {
    border-color: rgba(22, 35, 55, 0.14);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 55px rgba(42, 58, 84, 0.13);
}

[data-theme="light"] .button--ghost,
[data-theme="light"] .button--quiet,
[data-theme="light"] .theme-toggle,
[data-theme="light"] .language-switch {
    background: rgba(255, 255, 255, 0.72);
}

[data-theme="light"] code {
    border-color: rgba(13, 169, 131, 0.16);
    background: rgba(13, 169, 131, 0.07);
    color: #087c61;
}

[data-theme="light"] .eyebrow {
    border-color: rgba(13, 169, 131, 0.2);
    background: rgba(13, 169, 131, 0.07);
    color: #08775e;
}

[data-theme="light"] .stack-marquee,
[data-theme="light"] .proof-strip {
    background-color: rgba(255, 255, 255, 0.44);
}

[data-theme="light"] .bento-card,
[data-theme="light"] .workflow-step,
[data-theme="light"] .stack-builder,
[data-theme="light"] .security-card,
[data-theme="light"] .cta-card,
[data-theme="light"] .legal-summary {
    background-color: rgba(255, 255, 255, 0.82);
    box-shadow: 0 22px 60px rgba(42, 58, 84, 0.08);
}

[data-theme="light"] .package-list > span,
[data-theme="light"] .recipe-tags span,
[data-theme="light"] .data-flow span,
[data-theme="light"] .security-list article,
[data-theme="light"] .legal-contact-grid a {
    background: rgba(255, 255, 255, 0.76);
}

[data-theme="light"] .workflow-section {
    background: linear-gradient(180deg, transparent, rgba(66, 104, 232, 0.035) 50%, transparent), var(--bg);
}

[data-theme="light"] .stack-options {
    background: rgba(255, 255, 255, 0.42);
}

[data-theme="light"] .choice-row button {
    background: rgba(255, 255, 255, 0.75);
    color: var(--text-soft);
}

[data-theme="light"] .choice-row button[aria-pressed="true"] {
    border-color: rgba(13, 169, 131, 0.35);
    background: rgba(13, 169, 131, 0.09);
    color: #08775e;
}

[data-theme="light"] .faq-list details[open] summary,
[data-theme="light"] .text-link {
    color: #087c61;
}

[data-theme="light"] .back-to-top {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 14px 36px rgba(42, 58, 84, 0.14);
}

[data-theme="light"] .hero-visual {
    --text: #f6f8fc;
    --text-soft: #aab6c7;
    --text-dim: #748196;
    --mint: #72f0cc;
    --mint-strong: #45d9af;
    --blue: #5d83ff;
    --blue-soft: #91a8ff;
    --line: rgba(226, 237, 255, 0.09);
    --line-strong: rgba(226, 237, 255, 0.16);
    color: var(--text);
}

@media (hover: hover) and (pointer: fine) {
    .legal-back:hover svg {
        transform: translateX(-4px);
    }

    .legal-contact-grid a:hover {
        border-color: rgba(114, 240, 204, 0.2);
        background-color: rgba(114, 240, 204, 0.035);
        transform: translateY(-2px);
    }
}

@media (max-width: 920px) {
    .header-preferences .language-switch {
        display: none;
    }

    .mobile-menu {
        top: 0;
        right: 0;
        bottom: 0;
        left: auto;
        width: min(88vw, 390px);
        height: 100dvh;
        max-height: none;
        gap: 0;
        overflow-y: auto;
        border: 0;
        border-left: 1px solid var(--line-strong);
        border-radius: 28px 0 0 28px;
        background: radial-gradient(circle at 92% 5%, rgba(93, 131, 255, 0.13), transparent 31%), rgba(8, 13, 20, 0.98);
        padding: 98px 18px 22px;
        opacity: 1;
        transform: translate3d(104%, 0, 0);
        transform-origin: center right;
        transition: transform 280ms cubic-bezier(0.32, 0.72, 0, 1);
    }

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

    [data-theme="light"] .mobile-menu {
        background: radial-gradient(circle at 92% 5%, rgba(66, 104, 232, 0.1), transparent 31%),
            rgba(249, 251, 255, 0.99);
        box-shadow: -30px 0 90px rgba(35, 52, 80, 0.17);
    }

    .mobile-menu__header {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 20px;
        border-bottom: 1px solid var(--line);
        padding: 3px 4px 22px;
    }

    .mobile-menu__header > div {
        display: grid;
        gap: 5px;
    }

    .mobile-menu__header strong {
        font-size: 1.45rem;
        letter-spacing: -0.04em;
    }

    .mobile-menu__label {
        padding: 0;
    }

    .mobile-menu__status {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        border: 1px solid rgba(114, 240, 204, 0.13);
        border-radius: 999px;
        background: rgba(114, 240, 204, 0.055);
        color: var(--text-soft);
        font-size: 0.58rem;
        font-weight: 750;
        padding: 6px 8px;
    }

    .mobile-menu__status i,
    .theme-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--mint);
        box-shadow: 0 0 8px rgba(114, 240, 204, 0.5);
    }

    .mobile-menu__nav {
        display: grid;
        padding-block: 13px;
    }

    .mobile-menu__nav a {
        display: grid;
        min-height: 57px;
        grid-template-columns: 28px minmax(0, 1fr) auto;
        align-items: center;
        gap: 10px;
        border-radius: 13px;
        color: var(--text-soft);
        padding: 8px 11px;
        transition:
            background-color 150ms ease,
            color 150ms ease;
    }

    .mobile-menu__nav a > span {
        color: var(--mint);
        font-family: "Cascadia Code", Consolas, monospace;
        font-size: 0.6rem;
        opacity: 0.68;
    }

    .mobile-menu__nav a > b {
        font-size: 0.94rem;
    }

    .mobile-menu__nav a > i {
        font-size: 0.75rem;
        font-style: normal;
        opacity: 0.45;
    }

    .mobile-menu__nav a.is-active {
        background: rgba(114, 240, 204, 0.065);
        color: var(--text);
    }

    .mobile-menu__preferences {
        display: grid;
        gap: 8px;
        border-block: 1px solid var(--line);
        padding-block: 17px;
    }

    .mobile-menu__preferences > span {
        margin-bottom: 2px;
        color: var(--text-dim);
        font-size: 0.62rem;
        font-weight: 800;
        letter-spacing: 0.12em;
        text-transform: uppercase;
    }

    .mobile-preference-row {
        display: flex;
        min-height: 45px;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        border: 0;
        background: transparent;
        color: var(--text-soft);
        font-size: 0.76rem;
        padding: 0;
    }

    .mobile-preference-row strong {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: var(--text);
        font-size: 0.68rem;
    }

    .mobile-menu__cta {
        width: 100%;
        margin-top: 18px;
    }

    .mobile-menu__footer {
        margin: 13px 0 0;
        color: var(--text-dim);
        font-size: 0.58rem;
        text-align: center;
    }

    .hero {
        padding-top: 146px;
    }

    .hero h1 {
        font-size: clamp(4rem, 11vw, 6rem);
    }

    .hero-visual {
        width: min(100%, 760px);
    }

    .legal-hero__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .legal-intro {
        max-width: 650px;
    }

    .legal-shell {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .legal-toc {
        position: static;
    }

    .legal-toc nav {
        display: flex;
        gap: 7px;
        overflow-x: auto;
        border: 0;
        scrollbar-width: none;
        padding-bottom: 4px;
    }

    .legal-toc nav::-webkit-scrollbar {
        display: none;
    }

    .legal-toc a {
        flex: 0 0 auto;
        border: 1px solid var(--line);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.02);
        padding: 8px 12px;
    }

    .legal-toc a::before {
        display: none;
    }
}

@media (max-width: 680px) {
    .header-preferences {
        margin-left: auto;
    }

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

    .hero {
        padding-top: 126px;
        padding-bottom: 82px;
    }

    .hero-grid {
        gap: 70px;
    }

    .hero h1 {
        margin-top: 24px;
        font-size: clamp(3.25rem, 15vw, 4.6rem);
        line-height: 0.92;
    }

    .hero-lead {
        font-size: 0.98rem;
    }

    .hero-trust {
        align-items: center;
    }

    .hero-stage-status {
        top: -23px;
        right: 12px;
        left: 12px;
        justify-content: space-between;
    }

    .hero-stage-status code {
        max-width: 44%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .hero .app-window {
        border-radius: 20px;
    }

    .legal-hero {
        padding: 126px 0 68px;
    }

    .legal-back {
        margin-bottom: 42px;
    }

    .legal-hero h1 {
        font-size: clamp(3.2rem, 17vw, 4.6rem);
    }

    .legal-metadata {
        grid-template-columns: 1fr;
        margin-top: 38px;
    }

    .legal-metadata > span + span {
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .legal-shell {
        padding-top: 62px;
        padding-bottom: 90px;
    }

    .legal-section {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 38px 0 42px;
    }

    .legal-summary {
        padding: 27px 22px;
    }

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

/* Hero system v3: contained product surfaces shared by home and privacy. */

html[data-smooth-scroll="true"] {
    scroll-behavior: auto;
}

.hero-surface {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(226, 237, 255, 0.12);
    border-radius: 34px;
    background: radial-gradient(circle at 85% 10%, rgba(93, 131, 255, 0.13), transparent 34%),
        radial-gradient(circle at 8% 92%, rgba(114, 240, 204, 0.08), transparent 30%),
        linear-gradient(145deg, rgba(18, 27, 39, 0.96), rgba(8, 13, 20, 0.98));
    box-shadow:
        0 45px 120px rgba(0, 0, 0, 0.36),
        inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.hero-surface::before {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
    background-size: 42px 42px;
    content: "";
    opacity: 0.4;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to bottom, black, transparent 72%);
    mask-image: linear-gradient(to bottom, black, transparent 72%);
}

.hero {
    min-height: 0;
    padding-top: 126px;
    padding-bottom: 76px;
}

.hero-panel {
    isolation: isolate;
}

.hero-panel__chrome,
.legal-hero-card__top {
    position: relative;
    z-index: 3;
    display: flex;
    min-height: 62px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-bottom: 1px solid rgba(226, 237, 255, 0.085);
    background: rgba(5, 9, 15, 0.38);
    padding: 13px 24px;
}

.hero-panel__identity,
.hero-panel__status,
.legal-document-id {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #77869a;
    font-family: "Cascadia Code", "SFMono-Regular", Consolas, monospace;
    font-size: 0.62rem;
    font-weight: 650;
    letter-spacing: 0.025em;
}

.hero-panel__identity > i {
    width: 10px;
    height: 10px;
    border: 2px solid var(--mint);
    border-radius: 3px;
    box-shadow: 0 0 14px rgba(114, 240, 204, 0.25);
    transform: rotate(45deg);
}

.hero-panel__identity b {
    color: #e8edf6;
    font-family: Inter, ui-sans-serif, system-ui, sans-serif;
    font-size: 0.69rem;
}

.hero-panel__status,
.legal-document-id {
    border: 1px solid rgba(114, 240, 204, 0.13);
    border-radius: 999px;
    background: rgba(114, 240, 204, 0.045);
    color: #9eadbf;
    padding: 7px 10px;
}

.hero-panel__status i,
.legal-document-id i {
    width: 6px;
    height: 6px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 11px rgba(114, 240, 204, 0.7);
}

.hero-panel .hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(520px, 1.05fr);
    align-items: center;
    gap: clamp(28px, 4vw, 58px);
    padding: clamp(54px, 6vw, 78px) 48px 64px;
}

.hero-panel .hero-copy {
    width: auto;
    margin: 0;
    text-align: left;
}

.hero-panel .hero-copy::before {
    top: -150px;
    left: -210px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(114, 240, 204, 0.1), transparent 66%);
    transform: none;
}

.hero-panel .eyebrow {
    margin-inline: 0;
}

.hero-panel h1 {
    max-width: 620px;
    margin: 25px 0 24px;
    font-size: clamp(3.5rem, 4.65vw, 4.85rem);
    line-height: 0.94;
    letter-spacing: -0.072em;
}

.hero-panel h1 span {
    display: block;
    white-space: nowrap;
}

.hero-panel .hero-lead {
    max-width: 540px;
    margin: 0 0 30px;
    font-size: clamp(1rem, 1.35vw, 1.12rem);
}

.hero-panel .hero-actions,
.hero-panel .hero-trust {
    justify-content: flex-start;
}

.hero-panel .hero-trust {
    margin-top: 25px;
}

.hero-panel .hero-visual {
    width: 103%;
    margin: 10px -6% 8px 3%;
    perspective: 1500px;
}

.hero-panel .hero-visual::before {
    inset: -14% -7%;
    border-color: rgba(145, 168, 255, 0.08);
    border-radius: 38%;
    transform: rotate(-5deg);
}

.hero-panel .visual-halo {
    inset: -8% 1% -12%;
    opacity: 0.86;
}

.hero-panel .app-window {
    border-radius: 23px;
    box-shadow:
        0 42px 100px rgba(0, 0, 0, 0.55),
        0 1px 0 rgba(255, 255, 255, 0.08) inset,
        0 0 0 1px rgba(93, 131, 255, 0.04) inset;
    transform: rotateY(-2.25deg) rotateX(1.4deg);
}

.hero-panel .hero-stage-status {
    top: -22px;
    right: 16px;
}

.hero-panel .floating-card--verified {
    top: 80px;
    left: -22px;
}

.hero-panel .floating-card--domain {
    right: -8px;
    bottom: 44px;
}

.hero-panel__footer {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(226, 237, 255, 0.085);
    background: rgba(5, 9, 15, 0.38);
}

.hero-panel__footer > span {
    display: grid;
    min-width: 0;
    grid-template-columns: 8px auto;
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 10px;
    padding: 19px 25px;
}

.hero-panel__footer > span + span {
    border-left: 1px solid rgba(226, 237, 255, 0.085);
}

.hero-panel__footer i {
    width: 7px;
    height: 7px;
    grid-row: 1 / 3;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--mint), var(--blue-soft));
    box-shadow: 0 0 14px rgba(114, 240, 204, 0.32);
}

.hero-panel__footer b {
    overflow: hidden;
    color: #e9eef6;
    font-size: 0.72rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hero-panel__footer small {
    overflow: hidden;
    color: #718095;
    font-size: 0.6rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Privacy hero uses the same surface language with a privacy-specific signal card. */

.legal-hero {
    border-bottom: 0;
    padding: 126px 0 76px;
}

.legal-hero-card {
    isolation: isolate;
}

.legal-hero-card__top {
    min-height: 62px;
}

.legal-hero-card .legal-back {
    margin: 0;
    color: #9aa8ba;
}

.legal-hero__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
    align-items: center;
    gap: clamp(54px, 7vw, 105px);
    padding: clamp(58px, 7vw, 88px) clamp(34px, 6vw, 74px) 64px;
}

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

.legal-hero h1 {
    max-width: 680px;
    margin: 16px 0 0;
    font-size: clamp(4rem, 6.2vw, 6.2rem);
    line-height: 0.92;
    letter-spacing: -0.072em;
}

.legal-hero h1 span {
    display: block;
}

.legal-hero__aside {
    display: grid;
    gap: 25px;
}

.legal-intro {
    margin: 0;
    color: #a6b3c4;
    font-size: 1rem;
    line-height: 1.78;
}

.privacy-signal {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
    border: 1px solid rgba(114, 240, 204, 0.14);
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(114, 240, 204, 0.095), rgba(93, 131, 255, 0.045)), rgba(5, 9, 15, 0.46);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
    padding: 18px;
}

.privacy-signal__icon {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid rgba(114, 240, 204, 0.2);
    border-radius: 14px;
    background: rgba(114, 240, 204, 0.09);
    color: var(--mint);
}

.privacy-signal__icon svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.privacy-signal > span:last-child {
    display: grid;
    gap: 2px;
}

.privacy-signal small {
    color: #758599;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.privacy-signal strong {
    color: #edf4f8;
    font-size: 0.88rem;
}

.privacy-signal em {
    color: #8c9bad;
    font-size: 0.66rem;
    font-style: normal;
    line-height: 1.55;
}

.legal-hero-card .legal-metadata {
    position: relative;
    z-index: 2;
    max-width: none;
    margin: 0;
    border-width: 1px 0 0;
    border-color: rgba(226, 237, 255, 0.085);
    border-radius: 0;
    background: rgba(5, 9, 15, 0.38);
}

.legal-hero-card .legal-metadata > span {
    padding: 19px 25px;
}

/* Deliberate, one-time entrance choreography for the new page heroes. */

@keyframes hero-surface-enter {
    from {
        opacity: 0;
        transform: translate3d(0, 14px, 0);
    }
}

@keyframes hero-chunk-enter {
    from {
        opacity: 0;
        transform: translate3d(0, 10px, 0);
    }
}

.js .hero-panel,
.js .legal-hero-card {
    animation: hero-surface-enter 760ms var(--ease-out) both;
}

.js .hero-panel .hero-copy,
.js .legal-hero__title {
    animation: hero-chunk-enter 720ms 90ms var(--ease-out) both;
}

.js .hero-panel .hero-visual,
.js .legal-hero__aside {
    animation: hero-chunk-enter 760ms 160ms var(--ease-out) both;
}

.js .hero-panel__footer,
.js .legal-hero-card .legal-metadata {
    animation: hero-chunk-enter 680ms 220ms var(--ease-out) both;
}

/* Light surfaces retain the same hierarchy while the app preview stays dark. */

[data-theme="light"] .hero-surface {
    border-color: rgba(24, 41, 67, 0.11);
    background: radial-gradient(circle at 85% 10%, rgba(66, 104, 232, 0.1), transparent 34%),
        radial-gradient(circle at 8% 92%, rgba(13, 169, 131, 0.07), transparent 30%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 252, 0.98));
    box-shadow:
        0 36px 100px rgba(36, 55, 82, 0.13),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

[data-theme="light"] .hero-surface::before {
    background-image: linear-gradient(rgba(28, 48, 77, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(28, 48, 77, 0.04) 1px, transparent 1px);
}

[data-theme="light"] .hero-panel__chrome,
[data-theme="light"] .legal-hero-card__top,
[data-theme="light"] .hero-panel__footer,
[data-theme="light"] .legal-hero-card .legal-metadata {
    border-color: rgba(22, 35, 55, 0.095);
    background: rgba(255, 255, 255, 0.54);
}

[data-theme="light"] .hero-panel__identity,
[data-theme="light"] .hero-panel__status,
[data-theme="light"] .legal-document-id {
    color: #68778b;
}

[data-theme="light"] .hero-panel__identity b,
[data-theme="light"] .hero-panel__footer b,
[data-theme="light"] .privacy-signal strong {
    color: #172234;
}

[data-theme="light"] .hero-panel__footer small,
[data-theme="light"] .privacy-signal em,
[data-theme="light"] .privacy-signal small,
[data-theme="light"] .legal-intro {
    color: #68778b;
}

[data-theme="light"] .hero-panel__footer > span + span {
    border-color: rgba(22, 35, 55, 0.095);
}

[data-theme="light"] .legal-hero-card .legal-back {
    color: #58687d;
}

[data-theme="light"] .privacy-signal {
    border-color: rgba(13, 169, 131, 0.17);
    background: linear-gradient(145deg, rgba(13, 169, 131, 0.075), rgba(66, 104, 232, 0.04)), rgba(255, 255, 255, 0.64);
}

@media (max-width: 1080px) {
    .hero-panel .hero-grid {
        grid-template-columns: 1fr;
        gap: 62px;
        padding-inline: clamp(34px, 6vw, 66px);
    }

    .hero-panel .hero-copy {
        max-width: 720px;
    }

    .hero-panel .hero-visual {
        width: min(100%, 820px);
        margin: 0 auto;
    }

    .legal-hero__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .legal-hero__aside {
        max-width: 700px;
    }

    .legal-hero h1 {
        max-width: 820px;
    }
}

@media (max-width: 680px) {
    .hero,
    .legal-hero {
        padding-top: 108px;
        padding-bottom: 58px;
    }

    .hero-surface {
        border-radius: 24px;
    }

    .hero-panel__chrome,
    .legal-hero-card__top {
        min-height: 54px;
        gap: 12px;
        padding: 10px 15px;
    }

    .hero-panel__identity > span:last-child,
    .legal-document-id > span {
        display: none;
    }

    .hero-panel__status,
    .legal-document-id {
        padding: 6px 8px;
    }

    .hero-panel .hero-grid {
        gap: 54px;
        padding: 44px 20px 46px;
    }

    .hero-panel h1 {
        margin-top: 22px;
        font-size: clamp(2.25rem, 11.8vw, 3.2rem);
        line-height: 0.94;
        overflow-wrap: normal;
    }

    .hero-panel .hero-trust {
        align-items: flex-start;
    }

    .hero-panel .hero-lead {
        font-size: 0.96rem;
    }

    .hero-panel .hero-stage-status {
        top: -22px;
        right: 8px;
        left: 8px;
    }

    .hero-panel .floating-card--verified {
        top: -28px;
        left: -2px;
    }

    .hero-panel .floating-card--domain {
        right: -2px;
        bottom: -34px;
    }

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

    .hero-panel__footer > span {
        min-height: 64px;
        padding: 13px 19px;
    }

    .hero-panel__footer > span + span {
        border-top: 1px solid rgba(226, 237, 255, 0.085);
        border-left: 0;
    }

    [data-theme="light"] .hero-panel__footer > span + span {
        border-color: rgba(22, 35, 55, 0.095);
    }

    .legal-hero__grid {
        gap: 30px;
        padding: 44px 20px 42px;
    }

    .legal-hero h1 {
        font-size: clamp(3.25rem, 16vw, 4.25rem);
    }

    .legal-intro {
        font-size: 0.94rem;
    }

    .privacy-signal {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 12px;
        border-radius: 17px;
        padding: 15px;
    }

    .privacy-signal__icon {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }

    .legal-hero-card .legal-metadata {
        grid-template-columns: 1fr;
    }

    .legal-hero-card .legal-metadata > span {
        padding: 15px 19px;
    }

    .legal-hero-card .legal-metadata > span + span {
        border-top: 1px solid rgba(226, 237, 255, 0.085);
        border-left: 0;
    }
}