:root {
    --obsidian: #090909;
    --charcoal: #141414;
    --graphite: #202020;
    --slate: #3a3a3a;
    --champagne: #d7c3a3;
    --soft-gold: #b99a63;
    --ivory: #f5f0e8;
    --warm-white: #fffdf8;
    --muted-text: #a8a29a;
    --line: rgba(255, 255, 255, 0.10);
    --gold-line: rgba(215, 195, 163, 0.26);
    --cool-glow: rgba(105, 132, 166, 0.22);
    --deep-glass: rgba(14, 14, 14, 0.84);
    --container: 1180px;
    --space-1: 8px;
    --space-2: 14px;
    --space-3: 22px;
    --space-4: 34px;
    --space-5: 56px;
    --space-6: 88px;
    --space-7: 128px;
    --radius-panel: 28px;
    --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
    --motion-slow: 900ms;
    --motion-medium: 360ms;
    --shadow-panel: 0 42px 110px rgba(0, 0, 0, 0.42);
    --serif: "Cormorant Garamond", Playfair Display, Georgia, serif;
    --sans: Inter, "Avenir Next", Arial, sans-serif;
}

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

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

body {
    margin: 0;
    min-width: 320px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px),
        var(--obsidian);
    background-size: 92px 92px;
    color: var(--ivory);
    font-family: Inter, "Avenir Next", Arial, sans-serif;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(118deg, rgba(215, 195, 163, 0.11), transparent 28%),
        linear-gradient(292deg, rgba(255, 253, 248, 0.05), transparent 34%),
        linear-gradient(180deg, rgba(9, 9, 9, 0.1), var(--obsidian) 76%);
}

body::after {
    content: "";
    position: fixed;
    inset: auto -18vw -30vh -18vw;
    height: 58vh;
    pointer-events: none;
    background:
        radial-gradient(circle at 72% 38%, rgba(105, 132, 166, 0.13), transparent 35%),
        radial-gradient(circle at 28% 54%, rgba(215, 195, 163, 0.08), transparent 40%);
    filter: blur(18px);
    opacity: 0.75;
    z-index: 0;
}

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

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

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

h1,
h2,
h3,
p,
ul {
    margin: 0;
}

h1,
h2,
.display-serif {
    font-family: "Cormorant Garamond", Playfair Display, Georgia, serif;
    font-weight: 600;
    letter-spacing: 0;
}

h1 {
    max-width: 820px;
    font-size: clamp(3.8rem, 6.7vw, 7.5rem);
    line-height: 0.89;
}

h2 {
    font-size: clamp(2.65rem, 5vw, 5.4rem);
    line-height: 1.04;
}

h3 {
    font-size: 1.12rem;
    line-height: 1.25;
    font-weight: 600;
}

p,
li {
    color: var(--muted-text);
    line-height: 1.75;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 0 max(26px, calc((100vw - var(--container)) / 2));
    border-bottom: 1px solid transparent;
    background: linear-gradient(180deg, rgba(9, 9, 9, 0.62), rgba(9, 9, 9, 0));
    transition: background 240ms ease, border-color 240ms ease, backdrop-filter 240ms ease, box-shadow 240ms ease;
}

.site-header.is-scrolled {
    border-color: rgba(215, 195, 163, 0.12);
    background: rgba(10, 10, 10, 0.72);
    backdrop-filter: blur(22px);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
}

.wordmark {
    color: var(--warm-white);
    font-size: 1.95rem;
    font-weight: 700;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    text-shadow: 0 0 28px rgba(255, 253, 248, 0.12);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    color: var(--ivory);
    font-size: 0.92rem;
}

.site-nav a:not(.nav-cta) {
    position: relative;
    color: rgba(245, 240, 232, 0.78);
}

.site-nav a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--champagne), transparent);
    opacity: 0;
    transform: scaleX(0.4);
    transition: opacity 220ms ease, transform 220ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--warm-white);
}

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

.login-link {
    margin-left: 8px;
}

.nav-cta,
.button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.94rem;
    font-weight: 600;
    transition: transform 180ms var(--ease-premium), background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.nav-cta,
.button-primary {
    background: linear-gradient(135deg, #e2d0ae, #c7aa72);
    color: var(--obsidian);
    border-color: rgba(215, 195, 163, 0.72);
    box-shadow: inset 0 1px 0 rgba(255, 253, 248, 0.24);
}

.button-secondary {
    color: var(--ivory);
    border-color: rgba(215, 195, 163, 0.24);
    background: rgba(255, 255, 255, 0.035);
}

.nav-cta:hover,
.nav-cta:focus-visible,
.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    border-color: rgba(215, 195, 163, 0.46);
    background: rgba(215, 195, 163, 0.08);
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--ivory);
}

.nav-toggle span {
    transition: transform 220ms ease, opacity 220ms ease;
    width: 18px;
    height: 1px;
    display: block;
    margin: 0 auto;
    background: currentColor;
}

.nav-toggle span + span {
    margin-top: 6px;
}

.nav-toggle[aria-expanded="true"] {
    border-color: rgba(215, 195, 163, 0.44);
    background: rgba(215, 195, 163, 0.09);
    box-shadow: 0 0 34px rgba(215, 195, 163, 0.12);
}

.nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(38deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-38deg);
}

.site-nav .nav-kicker,
.site-nav .nav-copy,
.site-nav .nav-arrow,
.site-nav .mobile-label {
    display: none;
}

main,
.site-footer {
    position: relative;
    z-index: 1;
}

body.nav-open {
    overflow: hidden;
    touch-action: none;
}

.hero {
    position: relative;
    min-height: 100vh;
    padding: 126px max(26px, calc((100vw - var(--container)) / 2)) 76px;
    display: grid;
    gap: 54px;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(9, 9, 9, 0.96) 0%, rgba(9, 9, 9, 0.86) 45%, rgba(20, 20, 20, 0.78) 100%);
}

.cinematic-hero {
    isolation: isolate;
    background:
        radial-gradient(circle at 72% 36%, rgba(105, 132, 166, 0.18), transparent 34%),
        radial-gradient(circle at 62% 62%, rgba(215, 195, 163, 0.12), transparent 42%),
        linear-gradient(90deg, rgba(9, 9, 9, 0.98) 0%, rgba(9, 9, 9, 0.9) 45%, rgba(18, 18, 18, 0.82) 100%);
}

.cinematic-hero::after {
    content: "";
    position: absolute;
    inset: 14% 4% 7% 42%;
    border-radius: 52% 48% 50% 50%;
    background:
        radial-gradient(circle at 50% 50%, rgba(215, 195, 163, 0.12), transparent 38%),
        radial-gradient(circle at 60% 42%, rgba(105, 132, 166, 0.18), transparent 46%);
    filter: blur(28px);
    opacity: 0.8;
    animation: atmosphereDrift 14s ease-in-out infinite alternate;
    z-index: -1;
}

.hero-atmosphere {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: -1;
}

.hero-atmosphere span {
    position: absolute;
    border-radius: 999px;
    opacity: 0.55;
    filter: blur(14px);
}

.hero-atmosphere span:nth-child(1) {
    width: 32vw;
    height: 1px;
    top: 26%;
    right: 7%;
    background: linear-gradient(90deg, transparent, rgba(215, 195, 163, 0.62), transparent);
}

.hero-atmosphere span:nth-child(2) {
    width: 1px;
    height: 44vh;
    top: 20%;
    right: 28%;
    background: linear-gradient(180deg, transparent, rgba(105, 132, 166, 0.48), transparent);
}

.hero-atmosphere span:nth-child(3) {
    width: 38vw;
    height: 38vw;
    bottom: -18vw;
    right: -8vw;
    border: 1px solid rgba(215, 195, 163, 0.14);
    box-shadow: inset 0 0 70px rgba(105, 132, 166, 0.08);
}

.hero-home {
    grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
}

.hero-content {
    max-width: 800px;
    min-width: 0;
}

.eyebrow {
    margin-bottom: 22px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--champagne);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    line-height: 1.4;
    text-transform: uppercase;
}

.eyebrow::after {
    content: "";
    width: 72px;
    height: 1px;
    background: var(--soft-gold);
    opacity: 0.8;
}

.hero-copy {
    max-width: 680px;
    margin-top: 28px;
    color: rgba(245, 240, 232, 0.78);
    font-size: clamp(1.02rem, 1.3vw, 1.2rem);
}

.hero .button-row {
    margin-top: 34px;
}

.microcopy {
    margin-top: 18px;
    color: rgba(215, 195, 163, 0.72);
    font-size: 0.92rem;
}

.dashboard-frame,
.lux-card,
.pricing-card,
.form-card,
.login-card,
.image-frame,
.mini-dashboard,
.feature-panel {
    border: 1px solid var(--line);
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 253, 248, 0.06), rgba(255, 253, 248, 0.018)),
        rgba(20, 20, 20, 0.78);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.07),
        0 36px 90px rgba(0, 0, 0, 0.36);
}

.product-stage {
    position: relative;
    min-height: 620px;
    display: grid;
    align-items: center;
    perspective: 1200px;
}

.stage-ring {
    position: absolute;
    inset: 6% -2% 4% 8%;
    border: 1px solid rgba(215, 195, 163, 0.16);
    border-radius: 48%;
    transform: rotate(-12deg);
    box-shadow:
        0 0 120px rgba(105, 132, 166, 0.16),
        inset 0 0 120px rgba(215, 195, 163, 0.05);
}

.hero-dashboard {
    position: relative;
    z-index: 2;
    transform: rotateX(2deg) rotateY(-8deg) translateZ(0);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 36px 90px rgba(0, 0, 0, 0.45),
        0 0 90px rgba(105, 132, 166, 0.12);
}

.floating-card {
    position: absolute;
    z-index: 3;
    width: 210px;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid rgba(215, 195, 163, 0.2);
    background:
        linear-gradient(180deg, rgba(255, 253, 248, 0.07), rgba(255, 253, 248, 0.02)),
        rgba(15, 15, 15, 0.82);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(18px);
    animation: cardFloat 7s ease-in-out infinite;
}

.floating-card span {
    display: block;
    color: var(--champagne);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.floating-card strong {
    display: block;
    margin-top: 8px;
    color: var(--ivory);
    line-height: 1.25;
}

.float-card-one {
    top: 5%;
    right: 7%;
}

.float-card-two {
    left: -4%;
    bottom: 18%;
    animation-delay: -2s;
}

.float-card-three {
    right: 0;
    bottom: 4%;
    animation-delay: -4s;
}

.hero-home.cinematic-hero {
    min-height: 100svh;
    grid-template-columns: minmax(0, 1fr) minmax(580px, 1fr);
    gap: clamp(12px, 3vw, 64px);
    padding-top: clamp(118px, 10vh, 152px);
    padding-bottom: clamp(54px, 7vh, 88px);
    background:
        radial-gradient(circle at 76% 22%, rgba(105, 132, 166, 0.18), transparent 30rem),
        radial-gradient(circle at 64% 64%, rgba(215, 195, 163, 0.13), transparent 36rem),
        radial-gradient(circle at 6% 96%, rgba(215, 195, 163, 0.08), transparent 32rem),
        linear-gradient(105deg, #050505 0%, #090909 42%, #121212 68%, #050505 100%);
}

.hero-home.cinematic-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 0.34;
    background:
        linear-gradient(90deg, transparent 0, rgba(215, 195, 163, 0.1) 1px, transparent 1px) 0 0 / 29vw 100%,
        linear-gradient(180deg, transparent 0, rgba(255, 253, 248, 0.035) 1px, transparent 1px) 0 72% / 100% 188px;
    mask-image: radial-gradient(circle at 68% 42%, #000, transparent 70%);
}

.hero-home.cinematic-hero::after {
    inset: 4% -10% -8% 34%;
    border-radius: 54% 46% 48% 52%;
    opacity: 0.86;
    filter: blur(34px);
    background:
        radial-gradient(circle at 54% 44%, rgba(215, 195, 163, 0.16), transparent 30%),
        radial-gradient(circle at 62% 50%, rgba(105, 132, 166, 0.2), transparent 46%),
        radial-gradient(circle at 44% 62%, rgba(255, 253, 248, 0.05), transparent 44%);
}

.hero-home .hero-atmosphere span:nth-child(1) {
    top: 18%;
    right: 12%;
    width: 42vw;
    opacity: 0.42;
}

.hero-home .hero-atmosphere span:nth-child(2) {
    top: 8%;
    right: 34%;
    height: 66vh;
    opacity: 0.3;
}

.hero-home .hero-atmosphere span:nth-child(3) {
    width: 52vw;
    height: 52vw;
    right: -18vw;
    bottom: -24vw;
    opacity: 0.56;
}

.hero-home .hero-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
    align-self: center;
    padding-bottom: clamp(0px, 1vh, 14px);
    transform: translateY(clamp(-34px, -3.2vh, -18px));
}

.campaign-headline {
    max-width: 620px;
    font-size: clamp(3.72rem, 4.05vw, 4.72rem);
    line-height: 1.08;
    letter-spacing: 0;
    text-wrap: auto;
    text-shadow: none;
}

.campaign-headline span {
    display: block;
    white-space: normal;
}

.hero-home .hero-copy {
    max-width: 520px;
    margin-top: 38px;
    color: rgba(245, 240, 232, 0.72);
    font-size: clamp(1.03rem, 1.05vw, 1.16rem);
    line-height: 1.84;
}

.hero-home .button-primary {
    background: linear-gradient(135deg, #e1cfad, #b99a63);
}

.hero-home .product-stage {
    z-index: 3;
    min-height: clamp(620px, 72vh, 820px);
    align-self: stretch;
    margin-right: max(-110px, calc((var(--container) - 100vw) / 2 - 28px));
    transform: translateX(clamp(128px, 8.8vw, 190px));
}

.hero-home .product-stage::before {
    content: "";
    position: absolute;
    inset: 8% -8% 4% 10%;
    z-index: 0;
    border-radius: 42px;
    background:
        radial-gradient(circle at 64% 22%, rgba(255, 253, 248, 0.1), transparent 24%),
        radial-gradient(circle at 42% 62%, rgba(105, 132, 166, 0.2), transparent 42%),
        linear-gradient(135deg, rgba(255, 253, 248, 0.03), rgba(255, 253, 248, 0));
    filter: blur(18px);
}

.hero-home .stage-ring {
    inset: 2% -18% 0 4%;
    border-color: rgba(215, 195, 163, 0.18);
    opacity: 0.78;
}

.hero-home .hero-dashboard {
    width: min(790px, 100%);
    margin-left: auto;
    padding: 26px;
    border-radius: 30px;
    border-color: rgba(215, 195, 163, 0.18);
    background:
        linear-gradient(180deg, rgba(255, 253, 248, 0.075), rgba(255, 253, 248, 0.018)),
        radial-gradient(circle at 74% 20%, rgba(105, 132, 166, 0.12), transparent 36%),
        rgba(15, 15, 15, 0.88);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(215, 195, 163, 0.07),
        0 54px 150px rgba(0, 0, 0, 0.58),
        0 0 120px rgba(105, 132, 166, 0.14);
    transform: rotateX(3deg) rotateY(-10deg) translate3d(0, 0, 0) scale(1.04);
}

.hero-home .dashboard-top {
    min-height: 62px;
}

.hero-home .dashboard-grid {
    grid-template-columns: minmax(0, 1.45fr) minmax(210px, 0.82fr);
    gap: 16px;
}

.hero-home .timeline-panel {
    background:
        linear-gradient(180deg, rgba(255, 253, 248, 0.052), rgba(255, 253, 248, 0.018)),
        rgba(255, 255, 255, 0.028);
}

.hero-home .timeline-item {
    padding: 16px;
}

.hero-home .timeline-item.active {
    border-color: rgba(215, 195, 163, 0.28);
    background:
        linear-gradient(90deg, rgba(215, 195, 163, 0.13), rgba(255, 253, 248, 0.035)),
        rgba(255, 255, 255, 0.04);
    box-shadow: inset 3px 0 0 rgba(215, 195, 163, 0.72);
}

.priority-signal {
    border-color: rgba(215, 195, 163, 0.2);
    background: rgba(215, 195, 163, 0.06);
}

.dashboard-frame {
    padding: 24px;
    overflow: hidden;
    min-width: 0;
}

.dashboard-top {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid var(--line);
    color: var(--ivory);
}

.status-chip {
    position: relative;
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(215, 195, 163, 0.1);
    color: var(--champagne);
    border: 1px solid rgba(215, 195, 163, 0.28);
    font-size: 0.82rem;
}

.status-chip::before {
    content: "";
    width: 7px;
    height: 7px;
    margin-right: 8px;
    border-radius: 50%;
    background: var(--champagne);
    box-shadow: 0 0 0 0 rgba(215, 195, 163, 0.34);
    animation: handledPulse 2.8s ease-out infinite;
}

.dashboard-grid {
    margin-top: 22px;
    display: grid;
    grid-template-columns: 1.3fr 0.82fr;
    gap: 14px;
}

.timeline-panel,
.side-panel,
.wide-panel {
    padding: 18px;
    border-radius: 18px;
    background: rgba(9, 9, 9, 0.48);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.wide-panel {
    grid-column: 1 / -1;
}

.panel-label,
.lux-card span,
.pricing-card .plan,
.fine-label {
    color: var(--champagne);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.timeline-item {
    margin-top: 14px;
    padding: 15px;
    display: grid;
    grid-template-columns: 58px 1fr;
    column-gap: 12px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.028);
}

.timeline-item.active {
    border-color: rgba(215, 195, 163, 0.28);
}

.timeline-item span {
    color: var(--champagne);
    font-weight: 700;
}

.timeline-item strong,
.assignment strong {
    color: var(--ivory);
    font-weight: 600;
}

.timeline-item small {
    grid-column: 2;
    color: var(--muted-text);
}

.assignment {
    margin-top: 12px;
    padding: 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.028);
}

.assignment span {
    display: block;
    margin-bottom: 4px;
    color: var(--muted-text);
    font-size: 0.82rem;
}

.signal-line {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 10px;
    margin: 18px 0 12px;
}

.signal-line span {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--champagne), transparent);
}

.statement-bar {
    width: min(var(--container), calc(100% - 52px));
    margin: -34px auto 0;
    padding: 24px 28px;
    border: 1px solid var(--gold-line);
    border-radius: 24px;
    background: rgba(20, 20, 20, 0.82);
    backdrop-filter: blur(18px);
}

.cinematic-band {
    min-height: 760px;
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(460px, 1.15fr);
    gap: 58px;
    align-items: center;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.band-copy {
    max-width: 560px;
}

.band-copy p:not(.eyebrow) {
    margin-top: 22px;
}

.network-orbit {
    position: relative;
    min-height: 560px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 50%, rgba(215, 195, 163, 0.12), transparent 18%),
        radial-gradient(circle at 50% 50%, rgba(105, 132, 166, 0.08), transparent 47%);
}

.network-orbit i {
    position: absolute;
    inset: 18%;
    border: 1px solid rgba(215, 195, 163, 0.14);
    border-radius: 50%;
}

.network-orbit i:nth-of-type(2) {
    inset: 30%;
    border-color: rgba(105, 132, 166, 0.18);
}

.network-orbit i:nth-of-type(3) {
    inset: 8%;
    border-style: dashed;
    opacity: 0.42;
}

.node {
    position: absolute;
    min-width: 96px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border-radius: 999px;
    color: var(--ivory);
    border: 1px solid rgba(255, 255, 255, 0.11);
    background: rgba(20, 20, 20, 0.82);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.34);
}

.node-core {
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    min-width: 120px;
    min-height: 120px;
    border-color: rgba(215, 195, 163, 0.38);
    color: var(--champagne);
}

.node-a { top: 5%; left: 42%; }
.node-b { top: 22%; right: 6%; }
.node-c { bottom: 18%; right: 10%; }
.node-d { bottom: 6%; left: 32%; }
.node-e { top: 34%; left: 2%; }

.quiet-statement {
    align-items: center;
}

.statement-type {
    max-width: 960px;
    font-size: clamp(4rem, 8.8vw, 9rem);
    line-height: 0.86;
}

.operations-theater {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(540px, 1.28fr);
    gap: 48px;
    align-items: center;
}

.theater-copy h2 {
    max-width: 560px;
}

.theater-board {
    position: relative;
    display: grid;
    gap: 12px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background:
        linear-gradient(145deg, rgba(105, 132, 166, 0.08), transparent 38%),
        rgba(18, 18, 18, 0.78);
    box-shadow: 0 42px 110px rgba(0, 0, 0, 0.4);
}

.theater-board::before {
    content: "";
    position: absolute;
    top: 30px;
    bottom: 30px;
    left: 96px;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(215, 195, 163, 0.32), transparent);
}

.theater-lane {
    position: relative;
    display: grid;
    grid-template-columns: 84px 1fr;
    gap: 8px 18px;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.028);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.theater-lane.active {
    border-color: rgba(215, 195, 163, 0.36);
    background: rgba(215, 195, 163, 0.07);
}

.theater-lane span {
    color: var(--champagne);
    font-weight: 700;
}

.theater-lane strong {
    color: var(--ivory);
}

.theater-lane small {
    grid-column: 2;
    color: var(--muted-text);
}

.statement-bar p {
    color: var(--ivory);
    text-align: center;
}

.section,
.final-cta,
.site-footer {
    width: min(var(--container), calc(100% - 52px));
    margin: 0 auto;
}

.section {
    padding: 112px 0;
}

.split,
.visual-split,
.page-grid,
.login-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
    gap: 56px;
    align-items: start;
}

.section-number {
    color: rgba(215, 195, 163, 0.18);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(7rem, 14vw, 15rem);
    line-height: 0.8;
}

.section-copy p + p {
    margin-top: 18px;
}

.section-copy h2 + p,
.section-heading h2 + p {
    margin-top: 26px;
}

.section-heading {
    max-width: 820px;
    margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
    margin-top: 20px;
    max-width: 700px;
}

.card-grid {
    display: grid;
    gap: 18px;
}

.card-grid.six {
    grid-template-columns: 1.08fr 0.92fr 1fr;
}

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

.lux-card,
.pricing-card {
    min-height: 250px;
    padding: 30px;
    border-color: rgba(255, 255, 255, 0.115);
    background:
        linear-gradient(180deg, rgba(255, 253, 248, 0.055), rgba(255, 253, 248, 0.016)),
        rgba(18, 18, 18, 0.8);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.065),
        0 30px 80px rgba(0, 0, 0, 0.28);
    transition: transform 240ms var(--ease-premium), border-color 240ms ease, background 240ms ease, box-shadow 240ms ease;
}

.lux-card:hover,
.pricing-card:hover {
    transform: translateY(-6px);
    border-color: rgba(215, 195, 163, 0.34);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 44px 120px rgba(0, 0, 0, 0.45),
        0 0 70px rgba(105, 132, 166, 0.08);
}

.card-grid.six .lux-card:nth-child(1) {
    min-height: 330px;
    grid-row: span 2;
}

.card-grid.six .lux-card:nth-child(3),
.card-grid.six .lux-card:nth-child(5) {
    min-height: 290px;
}

.card-grid.six .lux-card:nth-child(1) h3 {
    margin-top: 112px;
}

.lux-card h3 {
    margin-top: 46px;
}

.lux-card p,
.pricing-card p {
    margin-top: 12px;
}

.connected-section .section-heading {
    max-width: 860px;
    margin-bottom: clamp(42px, 5vw, 68px);
}

.connected-section {
    scroll-margin-top: 132px;
}

.connected-section .section-heading h2 {
    max-width: 10.5ch;
}

.connected-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(16px, 2vw, 24px);
}

.connected-grid .lux-card {
    min-height: 260px;
    display: grid;
    align-content: space-between;
    padding: clamp(26px, 3vw, 34px);
}

.connected-grid .lux-card h3,
.connected-grid .lux-card:nth-child(1) h3,
.connected-grid .lux-card:nth-child(3) h3,
.connected-grid .lux-card:nth-child(5) h3 {
    margin-top: 0;
}

.connected-grid .lux-card span {
    align-self: start;
}

.connected-grid .lux-card p {
    max-width: 25rem;
    line-height: 1.55;
}

.image-frame {
    padding: 10px;
    overflow: hidden;
}

.image-frame img {
    width: 100%;
    border-radius: 18px;
}

.check-list {
    margin-top: 34px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 14px;
}

.check-list li {
    position: relative;
    padding-left: 24px;
    color: var(--ivory);
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.78em;
    width: 10px;
    height: 1px;
    background: var(--champagne);
}

.security-teaser {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.security-teaser .button {
    margin-top: 28px;
}

.final-cta {
    margin-top: 56px;
    margin-bottom: 88px;
    padding: 68px;
    border: 1px solid var(--gold-line);
    border-radius: 28px;
    background:
        linear-gradient(120deg, rgba(215, 195, 163, 0.12), transparent 46%),
        rgba(20, 20, 20, 0.78);
}

.final-cta h2 {
    max-width: 760px;
}

.final-cta p:not(.eyebrow) {
    max-width: 620px;
    margin-top: 18px;
}

.final-cta .button-row {
    margin-top: 34px;
}

.site-footer {
    position: relative;
    padding: 92px 0 54px;
    border-top: 1px solid var(--line);
    overflow: hidden;
}

.site-footer::before {
    content: "OMNISANT";
    position: absolute;
    right: -18px;
    top: 34px;
    color: rgba(215, 195, 163, 0.055);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(6rem, 12vw, 15rem);
    line-height: 1;
    pointer-events: none;
}

.site-footer::after {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 180px;
    background: radial-gradient(circle at 72% 0%, rgba(105, 132, 166, 0.12), transparent 42%);
    pointer-events: none;
}

.site-footer > div:first-child {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    gap: 28px;
}

.footer-grid {
    position: relative;
    z-index: 1;
    margin-top: 46px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-link {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: rgba(245, 240, 232, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.035);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.social-link svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.social-link:hover,
.social-link:focus-visible {
    color: var(--ivory);
    border-color: rgba(215, 195, 163, 0.36);
    background: rgba(215, 195, 163, 0.08);
    transform: translateY(-2px);
}

.social-link.is-placeholder {
    cursor: default;
}

.footer-grid nav {
    display: grid;
    gap: 10px;
}

.footer-grid strong {
    color: var(--ivory);
    margin-bottom: 6px;
}

.footer-grid a,
.copyright {
    color: var(--muted-text);
}

.footer-grid a {
    transition: color 180ms ease, transform 180ms ease;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
    color: var(--ivory);
    transform: translateX(2px);
}

.copyright {
    position: relative;
    z-index: 1;
    margin-top: 42px;
}

.page-hero {
    min-height: 70vh;
    padding-bottom: 72px;
    background:
        radial-gradient(circle at 78% 28%, rgba(105, 132, 166, 0.12), transparent 32%),
        radial-gradient(circle at 22% 78%, rgba(215, 195, 163, 0.08), transparent 34%),
        linear-gradient(90deg, rgba(9, 9, 9, 0.96), rgba(12, 12, 12, 0.9));
}

.page-hero .hero-content {
    max-width: 940px;
}

.page-platform .page-hero,
.page-security .page-hero,
.page-terms .page-hero {
    justify-items: center;
    text-align: center;
}

.page-platform .page-hero .eyebrow,
.page-security .page-hero .eyebrow,
.page-terms .page-hero .eyebrow {
    justify-content: center;
}

.page-pricing .page-hero,
.page-private-service .page-hero,
.page-privacy .page-hero {
    background:
        radial-gradient(circle at 14% 28%, rgba(215, 195, 163, 0.11), transparent 34%),
        radial-gradient(circle at 82% 62%, rgba(105, 132, 166, 0.14), transparent 36%),
        linear-gradient(110deg, rgba(9, 9, 9, 0.98), rgba(20, 20, 20, 0.82));
}

.page-operations .page-hero,
.page-daily-operations .page-hero,
.page-schedule .page-hero,
.page-staff .page-hero,
.page-household-staff .page-hero {
    align-items: end;
    min-height: 82vh;
}

.page-service .page-hero,
.page-private-service .page-hero {
    background:
        radial-gradient(circle at 70% 24%, rgba(215, 195, 163, 0.11), transparent 32%),
        radial-gradient(circle at 18% 72%, rgba(105, 132, 166, 0.13), transparent 34%),
        linear-gradient(105deg, rgba(9, 9, 9, 0.98), rgba(18, 18, 18, 0.86));
}

.page-login .site-header + main {
    background:
        radial-gradient(circle at 18% 22%, rgba(215, 195, 163, 0.12), transparent 34%),
        radial-gradient(circle at 88% 72%, rgba(105, 132, 166, 0.14), transparent 34%);
}

.mini-dashboard {
    padding: 26px;
}

.module-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.module-list span,
.role-pill {
    min-height: 74px;
    display: flex;
    align-items: center;
    padding: 16px;
    border-radius: 18px;
    color: var(--ivory);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line);
}

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

.pricing-card {
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border-color: rgba(215, 195, 163, 0.42);
    background:
        linear-gradient(180deg, rgba(215, 195, 163, 0.1), rgba(255, 253, 248, 0.018)),
        rgba(20, 20, 20, 0.82);
}

.pricing-card {
    min-height: 520px;
}

.pricing-card .plan {
    margin-bottom: 18px;
}

.pricing-card h3 {
    max-width: 320px;
}

.price {
    margin-top: 34px;
    color: var(--ivory);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 3.4rem;
    line-height: 1;
}

.pricing-card ul {
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.pricing-card .button {
    margin-top: auto;
}

.form-card,
.login-card {
    padding: 34px;
    border-radius: var(--radius-panel);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.field {
    display: grid;
    gap: 8px;
}

.field.full {
    grid-column: 1 / -1;
}

.form-card > .button {
    margin-top: 28px;
}

label {
    color: var(--ivory);
    font-size: 0.86rem;
}

input,
select,
textarea {
    width: 100%;
    min-height: 50px;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 0 15px;
    background: rgba(9, 9, 9, 0.56);
    color: var(--ivory);
    outline: none;
}

textarea {
    min-height: 132px;
    padding-top: 14px;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(215, 195, 163, 0.48);
}

.confirmation {
    display: none;
    margin-top: 18px;
    color: var(--champagne);
}

.confirmation.is-visible {
    display: block;
}

.confirmation.is-error {
    color: #e2b8a7;
}

button:disabled {
    cursor: not-allowed;
    opacity: 0.62;
}

.login-layout {
    width: min(var(--container), calc(100% - 52px));
    min-height: 100vh;
    margin: 0 auto;
    padding: 140px 0 86px;
    align-items: center;
}

.brand-panel {
    min-height: 580px;
    padding: 42px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(215, 195, 163, 0.13), transparent 34%),
        linear-gradient(315deg, rgba(255, 253, 248, 0.06), transparent 38%),
        rgba(20, 20, 20, 0.86);
    border: 1px solid var(--line);
}

.login-card h1 {
    font-size: clamp(3.2rem, 6vw, 5.6rem);
}

.remember-row {
    margin: 16px 0 22px;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    color: var(--muted-text);
    font-size: 0.9rem;
}

.remember-row input {
    width: auto;
    min-height: auto;
    margin-right: 8px;
}

.legal-hero {
    min-height: 54vh;
}

.legal-jump {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.legal-jump a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    padding: 0 16px;
    border: 1px solid var(--gold-line);
    border-radius: 999px;
    color: var(--ivory);
    background: rgba(255, 255, 255, 0.035);
    font-size: 0.9rem;
    font-weight: 600;
}

.legal-title {
    padding-bottom: 22px;
}

.legal-document {
    width: min(920px, calc(100% - 52px));
    margin: 0 auto 86px;
    padding: 46px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 253, 248, 0.045), rgba(255, 253, 248, 0.014)),
        rgba(20, 20, 20, 0.72);
}

.legal-document h2 {
    margin-bottom: 18px;
    font-family: Inter, "Avenir Next", Arial, sans-serif;
    font-size: 1.15rem;
    line-height: 1.35;
    color: var(--ivory);
}

.legal-document h3 {
    margin-top: 26px;
    margin-bottom: 8px;
    color: var(--champagne);
}

.legal-document p + p,
.legal-document ul + p,
.legal-document p + ul {
    margin-top: 14px;
}

.legal-document ul {
    padding-left: 20px;
}

.legal-document li + li {
    margin-top: 6px;
}

.legal-document strong,
.legal-document a {
    color: var(--ivory);
}

.legal-section {
    margin-top: 34px;
    padding-top: 34px;
    border-top: 1px solid var(--line);
}

.error-hero {
    min-height: 100svh;
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
    background:
        radial-gradient(circle at 72% 38%, rgba(105, 132, 166, 0.2), transparent 32rem),
        radial-gradient(circle at 16% 78%, rgba(215, 195, 163, 0.14), transparent 30rem),
        linear-gradient(120deg, #050505 0%, #101010 48%, #070707 100%);
}

.error-panel {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.error-code {
    display: block;
    margin: 18px 0 26px;
    color: rgba(215, 195, 163, 0.2);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(8rem, 22vw, 18rem);
    font-weight: 700;
    line-height: 0.72;
}

.error-panel h1 {
    max-width: 9.8ch;
}

.error-orbit {
    position: relative;
    min-height: min(62vw, 680px);
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 50%, rgba(215, 195, 163, 0.12), transparent 18%),
        radial-gradient(circle at 52% 50%, rgba(105, 132, 166, 0.1), transparent 46%);
    filter: drop-shadow(0 52px 90px rgba(0, 0, 0, 0.42));
}

.error-orbit i {
    position: absolute;
    inset: 16%;
    border: 1px solid rgba(215, 195, 163, 0.14);
    border-radius: 50%;
}

.error-orbit i:nth-of-type(2) {
    inset: 29%;
    border-color: rgba(105, 132, 166, 0.18);
}

.error-orbit i:nth-of-type(3) {
    inset: 6%;
    border-style: dashed;
    opacity: 0.42;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity var(--motion-slow) var(--ease-premium), transform var(--motion-slow) var(--ease-premium);
}

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

@keyframes handledPulse {
    0% { box-shadow: 0 0 0 0 rgba(215, 195, 163, 0.34); }
    70% { box-shadow: 0 0 0 9px rgba(215, 195, 163, 0); }
    100% { box-shadow: 0 0 0 0 rgba(215, 195, 163, 0); }
}

@keyframes atmosphereDrift {
    from { transform: translate3d(-1%, 1%, 0) scale(0.98); }
    to { transform: translate3d(2%, -1%, 0) scale(1.04); }
}

@keyframes cardFloat {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, -10px, 0); }
}

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

    .reveal,
    .nav-cta,
    .button,
    .lux-card,
    .pricing-card {
        transition: none;
        transform: none;
    }

    .status-chip::before {
        animation: none;
    }
}

@media (max-width: 1040px) {
    .site-header {
        height: 76px;
    }

    .nav-toggle {
        display: block;
        position: fixed;
        top: 14px;
        right: 24px;
        left: auto;
        z-index: 10001;
    }

    .site-nav {
        position: fixed;
        inset: 0;
        z-index: 9999;
        display: flex;
        padding: 118px 26px 34px;
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        background:
            radial-gradient(circle at 82% 20%, rgba(105, 132, 166, 0.22), transparent 34%),
            radial-gradient(circle at 18% 82%, rgba(215, 195, 163, 0.14), transparent 34%),
            rgba(4, 4, 4, 0.995);
        backdrop-filter: blur(20px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 260ms ease, visibility 260ms ease, transform 260ms ease;
    }

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

    .site-nav a {
        font-size: clamp(1.8rem, 8vw, 3.4rem);
        font-family: "Cormorant Garamond", Georgia, serif;
        line-height: 1;
        opacity: 0;
        transform: translateY(12px);
        transition: opacity 360ms ease, transform 360ms ease;
    }

    .site-nav.is-open a {
        opacity: 1;
        transform: translateY(0);
    }

    .site-nav.is-open a:nth-child(2) { transition-delay: 40ms; }
    .site-nav.is-open a:nth-child(3) { transition-delay: 80ms; }
    .site-nav.is-open a:nth-child(4) { transition-delay: 120ms; }
    .site-nav.is-open a:nth-child(5) { transition-delay: 160ms; }
    .site-nav.is-open a:nth-child(6) { transition-delay: 200ms; }
    .site-nav.is-open a:nth-child(7) { transition-delay: 240ms; }

    body.nav-open .site-header {
        z-index: 10000;
    }

    .site-nav .login-link {
        margin-left: 0;
    }

    .site-nav .nav-cta {
        width: 100%;
        margin-top: auto;
        font-family: Inter, Arial, sans-serif;
        font-size: 1rem;
    }

    .hero,
    .hero-home,
    .error-hero,
    .split,
    .visual-split,
    .page-grid,
    .cinematic-band,
    .operations-theater,
    .login-layout {
        grid-template-columns: 1fr;
    }

    .dashboard-frame {
        max-width: 760px;
    }

    .card-grid.six,
    .card-grid.three,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .card-grid.six .lux-card:nth-child(1) {
        grid-row: auto;
    }

    .card-grid.six .lux-card:nth-child(1) h3 {
        margin-top: 46px;
    }

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

    .product-stage {
        min-height: 540px;
    }

    .floating-card {
        width: 190px;
    }

    .hero-home.cinematic-hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-bottom: 86px;
    }

    .campaign-headline {
        width: auto;
        max-width: 620px;
        font-size: clamp(3.5rem, 5.7vw, 4.45rem);
        line-height: 1.08;
    }

    .hero-home .hero-content {
        align-self: auto;
        padding-bottom: 0;
        transform: none;
    }

    .hero-home .product-stage {
        min-height: 620px;
        margin-right: 0;
        transform: none;
    }

    .hero-home .hero-dashboard {
        width: min(820px, 92%);
        margin-inline: auto;
        transform: rotateX(2deg) rotateY(-4deg) scale(1.02);
    }
}

@media (max-width: 700px) {
    h1 {
        max-width: 11ch;
        font-size: clamp(4.05rem, 15.2vw, 5.15rem);
        line-height: 0.93;
    }

    h2 {
        font-size: clamp(2.35rem, 11vw, 3.55rem);
    }

    .hero,
    .login-layout {
        padding: 116px 20px 64px;
    }

    .hero-content,
    .dashboard-frame,
    .product-stage,
    .mini-dashboard,
    .form-card,
    .login-card {
        width: 100%;
        max-width: none;
    }

    .dashboard-frame {
        padding: 18px;
    }

    .product-stage {
        min-height: 650px;
    }

    .hero-dashboard {
        transform: none;
    }

    .floating-card {
        position: relative;
        width: 100%;
        margin-top: 10px;
        inset: auto;
        animation: none;
    }

    .stage-ring {
        inset: 6% -30% 16%;
    }

    .dashboard-top {
        align-items: flex-start;
        flex-direction: column;
        padding-bottom: 16px;
    }

    .status-chip {
        max-width: 100%;
        white-space: normal;
    }

    .timeline-item {
        grid-template-columns: 1fr;
    }

    .timeline-item small {
        grid-column: auto;
    }

    .hero-copy {
        max-width: 100%;
        font-size: 1rem;
        line-height: 1.6;
    }

    .eyebrow {
        max-width: 100%;
        font-size: 0.68rem;
        gap: 10px;
        letter-spacing: 0.18em;
    }

    .eyebrow::after {
        width: 42px;
    }

    .section,
    .final-cta,
    .statement-bar,
    .site-footer,
    .login-layout {
        width: calc(100% - 40px);
        max-width: 350px;
    }

    .section {
        padding: 78px 0;
    }

    .button-row,
    .dashboard-grid,
    .card-grid.six,
    .card-grid.three,
    .pricing-grid,
    .form-grid,
    .module-list,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .card-grid.six .lux-card,
    .card-grid.six .lux-card:nth-child(1),
    .card-grid.six .lux-card:nth-child(3),
    .card-grid.six .lux-card:nth-child(5) {
        min-height: 230px;
    }

    .cinematic-band,
    .operations-theater {
        min-height: auto;
        gap: 30px;
    }

    .network-orbit {
        min-height: 350px;
    }

    .node {
        min-width: 76px;
        min-height: 38px;
        padding: 0 12px;
        font-size: 0.78rem;
    }

    .node-core {
        min-width: 92px;
        min-height: 92px;
    }

    .statement-type {
        font-size: clamp(3.1rem, 14vw, 4.8rem);
    }

    .theater-board {
        padding: 18px;
    }

    .theater-board::before {
        left: 76px;
    }

    .theater-lane {
        grid-template-columns: 62px 1fr;
        padding: 15px;
    }

    .button-row {
        flex-direction: column;
    }

    .button,
    .form-card .button {
        width: 100%;
    }

    .wide-panel,
    .field.full {
        grid-column: auto;
    }

    .final-cta {
        padding: 34px 24px;
    }

    .site-footer > div:first-child,
    .remember-row {
        flex-direction: column;
    }

    .brand-panel {
        min-height: 380px;
        padding: 28px;
    }

    .legal-document {
        width: calc(100% - 40px);
        max-width: 350px;
        padding: 28px 22px;
    }

    .campaign-headline {
        width: auto;
        max-width: 100%;
        font-size: clamp(2.92rem, 11.4vw, 3.6rem);
        line-height: 1.02;
    }
}

@media (max-width: 700px) {
    :root {
        --mobile-header-height: 92px;
    }

    body {
        background:
            radial-gradient(circle at 50% -12%, rgba(215, 195, 163, 0.12), transparent 32rem),
            radial-gradient(circle at 100% 18%, rgba(106, 132, 166, 0.14), transparent 28rem),
            linear-gradient(180deg, #050505 0%, var(--obsidian) 46%, #070707 100%);
    }

    .site-header {
        width: 100%;
        height: calc(var(--mobile-header-height) + env(safe-area-inset-top));
        padding: env(safe-area-inset-top) 24px 0;
        background: linear-gradient(180deg, rgba(5, 5, 5, 0.78), rgba(5, 5, 5, 0));
        border-bottom-color: transparent;
    }

    .site-header.is-scrolled {
        background: rgba(8, 8, 8, 0.76);
        border-bottom-color: rgba(215, 195, 163, 0.1);
        backdrop-filter: blur(22px);
    }

    .wordmark {
        font-size: 1.02rem;
        letter-spacing: 0.32em;
    }

    .nav-toggle {
        top: calc(env(safe-area-inset-top) + 17px);
        right: 22px;
        left: auto;
        width: 58px;
        height: 58px;
        border-color: rgba(215, 195, 163, 0.2);
        border-radius: 999px;
        background:
            radial-gradient(circle at 34% 22%, rgba(255, 253, 248, 0.12), transparent 38%),
            linear-gradient(145deg, rgba(30, 29, 27, 0.86), rgba(9, 9, 9, 0.74));
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.08),
            0 18px 44px rgba(0, 0, 0, 0.28);
        backdrop-filter: blur(18px);
    }

    .nav-toggle span {
        width: 21px;
        height: 1px;
        background: var(--ivory);
        box-shadow: 0 0 16px rgba(215, 195, 163, 0.2);
    }

    .site-nav {
        padding: calc(var(--mobile-header-height) + env(safe-area-inset-top) + 34px) 26px max(38px, env(safe-area-inset-bottom));
        gap: clamp(18px, 3.2svh, 28px);
        background:
            radial-gradient(circle at 78% 10%, rgba(105, 132, 166, 0.18), transparent 26rem),
            radial-gradient(circle at 8% 92%, rgba(185, 154, 99, 0.13), transparent 24rem),
            linear-gradient(180deg, rgba(12, 14, 15, 0.998), rgba(2, 2, 2, 1) 76%);
        transform: translateY(-14px) scale(1.01);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
        transition: opacity 300ms var(--ease), visibility 300ms var(--ease), transform 420ms var(--ease);
    }

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

    .site-nav a {
        font-size: clamp(2.32rem, 10.8vw, 4rem);
        letter-spacing: -0.01em;
        color: rgba(245, 240, 232, 0.74);
    }

    .site-nav .nav-cta {
        min-height: 68px;
        justify-content: center;
        margin-top: auto;
        font-family: Inter, Arial, sans-serif;
        font-size: 1rem;
        letter-spacing: 0.03em;
        color: var(--obsidian);
    }

    .hero,
    .login-layout {
        padding: calc(var(--mobile-header-height) + env(safe-area-inset-top) + 54px) 24px max(90px, calc(env(safe-area-inset-bottom) + 82px));
    }

    .hero,
    .hero-home,
    .page-hero,
    .error-hero {
        min-height: auto;
    }

    .hero-home {
        gap: 34px;
    }

    .hero-home.cinematic-hero {
        padding-top: calc(var(--mobile-header-height) + env(safe-area-inset-top) + 30px);
        padding-bottom: max(72px, calc(env(safe-area-inset-bottom) + 66px));
        background:
            radial-gradient(circle at 92% 11%, rgba(105, 132, 166, 0.18), transparent 18rem),
            radial-gradient(circle at 10% 72%, rgba(215, 195, 163, 0.1), transparent 20rem),
            linear-gradient(180deg, #050505 0%, #090909 44%, #111 68%, #050505 100%);
    }

    .page-hero {
        padding-bottom: max(86px, calc(env(safe-area-inset-bottom) + 74px));
    }

    h1 {
        max-width: 11ch;
        font-size: clamp(3.78rem, 14.2vw, 4.9rem);
        line-height: 0.93;
        letter-spacing: 0;
    }

    .hero-home h1 {
        max-width: 12ch;
    }

    .hero-home .campaign-headline {
        width: auto;
        max-width: 100%;
        font-size: clamp(2.92rem, 11.4vw, 3.6rem);
        line-height: 1.02;
    }

    .page-platform h1,
    .page-operations h1,
    .page-staff h1,
    .page-service h1,
    .page-security h1,
    .page-pricing h1,
    .page-privacy h1,
    .page-terms h1 {
        max-width: 11.5ch;
        font-size: clamp(3.26rem, 12.3vw, 4.36rem);
        line-height: 0.96;
    }

    .page-about h1,
    .page-schedule h1,
    .page-request-access h1 {
        max-width: 11ch;
        font-size: clamp(3.34rem, 12.7vw, 4.48rem);
        line-height: 0.95;
    }

    h2 {
        font-size: clamp(2.7rem, 11vw, 4.1rem);
        line-height: 1.04;
    }

    p,
    li {
        font-size: 1.08rem;
        line-height: 1.65;
    }

    .hero-copy {
        max-width: 18.8rem;
        font-size: clamp(1.08rem, 4.7vw, 1.22rem);
        line-height: 1.62;
    }

    .hero-home .hero-copy {
        max-width: 19.5rem;
        margin-top: 22px;
    }

    .eyebrow {
        max-width: 24rem;
        font-size: 0.68rem;
        gap: 10px;
        letter-spacing: 0.18em;
    }

    .eyebrow::after {
        width: 42px;
    }

    .hero-content,
    .dashboard-frame,
    .product-stage,
    .mini-dashboard,
    .form-card,
    .login-card {
        width: 100%;
        max-width: none;
    }

    .form-card,
    .login-card,
    .mini-dashboard,
    .dashboard-frame {
        max-width: 560px;
        margin-inline: auto;
    }

    .hero .button-row {
        margin-top: 30px;
        gap: 16px;
    }

    .button,
    .form-card .button,
    .login-card .button {
        min-height: 66px;
        font-size: 1rem;
    }

    .microcopy {
        max-width: 18rem;
        margin-top: 18px;
    }

    .product-stage {
        min-height: auto;
        max-height: none;
        margin-top: 22px;
        padding: 16px 0 30px;
        overflow: visible;
        border-radius: 34px;
        isolation: isolate;
        mask-image: none;
    }

    .hero-home .product-stage {
        display: block;
        min-height: auto;
        max-height: none;
        margin-top: 28px;
        padding: 0 0 max(48px, env(safe-area-inset-bottom));
        border-radius: 34px;
        overflow: visible;
        mask-image: none;
    }

    .product-stage::before {
        inset: 1rem -30% auto;
        height: 22rem;
        opacity: 0.85;
    }

    .stage-ring {
        inset: 7% -44% 12%;
        opacity: 0.78;
    }

    .hero-dashboard {
        transform: none;
        border-radius: 28px;
    }

    .hero-home .hero-dashboard {
        width: 100%;
        max-width: none;
        margin-left: 0;
        padding: 18px;
        transform: none;
        border-radius: 28px;
    }

    .hero-home .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .hero-home .timeline-panel,
    .hero-home .side-panel,
    .hero-home .wide-panel {
        padding: 15px;
    }

    .hero-home .timeline-item {
        grid-template-columns: 54px minmax(0, 1fr);
        padding: 14px;
    }

    .hero-home .timeline-item small {
        grid-column: 2;
    }

    .dashboard-frame {
        padding: 18px;
    }

    .floating-card {
        position: relative;
        inset: auto;
        width: calc(100% - 28px);
        margin: 12px auto 0;
        padding: 14px 16px;
        border-radius: 18px;
        animation: none;
    }

    .hero-home .floating-card {
        display: none;
    }

    .dashboard-top {
        align-items: flex-start;
        flex-direction: column;
        padding-bottom: 16px;
    }

    .status-chip {
        max-width: 100%;
        white-space: normal;
    }

    .timeline-item {
        grid-template-columns: 1fr;
    }

    .timeline-item small {
        grid-column: auto;
    }

    .section,
    .final-cta,
    .statement-bar,
    .site-footer,
    .login-layout {
        width: calc(100% - 48px);
        max-width: none;
    }

    .section {
        padding: 92px 0;
    }

    .statement-bar {
        margin-top: -22px;
        padding: 22px;
    }

    .card-grid.six,
    .card-grid.three,
    .pricing-grid,
    .form-grid,
    .module-list,
    .footer-grid,
    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .card-grid,
    .pricing-grid {
        gap: 18px;
    }

    .lux-card,
    .pricing-card {
        min-height: auto;
        padding: 24px 22px;
        border-radius: 26px;
    }

    .card-grid .lux-card:nth-child(even),
    .pricing-grid .pricing-card:nth-child(even) {
        transform: translateY(8px);
    }

    .card-grid.six .lux-card,
    .card-grid.six .lux-card:nth-child(1),
    .card-grid.six .lux-card:nth-child(3),
    .card-grid.six .lux-card:nth-child(5) {
        min-height: 0;
    }

    .card-grid.six .lux-card h3,
    .card-grid.six .lux-card:nth-child(1) h3 {
        margin-top: 38px;
    }

    .lux-card h3,
    .pricing-card h3 {
        margin-top: 34px;
        font-size: clamp(1.32rem, 5.2vw, 1.72rem);
        line-height: 1.12;
    }

    .lux-card p,
    .pricing-card p {
        margin-top: 10px;
        font-size: 1rem;
        line-height: 1.55;
    }
    }

    .cinematic-band,
    .operations-theater {
        min-height: auto;
        gap: 36px;
    }

    .network-orbit {
        min-height: 390px;
        margin-inline: -8px;
    }

    .error-hero {
        gap: 34px;
    }

    .error-code {
        margin: 14px 0 22px;
        font-size: clamp(7rem, 30vw, 9rem);
    }

    .error-panel h1 {
        max-width: 10.5ch;
    }

    .error-orbit {
        min-height: 360px;
        margin-inline: -8px;
    }

    .node {
        min-width: 76px;
        min-height: 38px;
        padding: 0 12px;
        font-size: 0.78rem;
    }

    .node-core {
        min-width: 92px;
        min-height: 92px;
    }

    .statement-type {
        font-size: clamp(3.1rem, 14vw, 4.8rem);
    }

    .theater-board {
        padding: 18px;
    }

    .theater-board::before {
        left: 76px;
    }

    .theater-lane {
        grid-template-columns: 62px 1fr;
        padding: 15px;
    }

    .button-row {
        flex-direction: column;
    }

    .button,
    .form-card .button {
        width: 100%;
    }

    .module-list {
        gap: 14px;
    }

    .module-list span {
        min-height: 70px;
    }

    .wide-panel,
    .field.full {
        grid-column: auto;
    }

    .form-card,
    .login-card {
        padding: 30px 24px;
    }

    .final-cta {
        padding: 42px 26px;
        margin-bottom: max(82px, env(safe-area-inset-bottom));
    }

    .site-footer > div:first-child,
    .remember-row {
        flex-direction: column;
    }

    .site-footer {
        padding-top: 108px;
        padding-bottom: max(76px, calc(env(safe-area-inset-bottom) + 54px));
    }

    .site-footer > div:first-child {
        gap: 18px;
    }

    .site-footer > div:first-child p {
        max-width: 18rem;
        color: rgba(245, 240, 232, 0.68);
        font-family: "Cormorant Garamond", Georgia, serif;
        font-size: clamp(2.2rem, 10vw, 3.4rem);
        line-height: 0.98;
    }

    .footer-grid {
        gap: 34px;
        margin-top: 58px;
    }

    .footer-grid a {
        color: rgba(245, 240, 232, 0.54);
    }

    .footer-grid strong {
        color: rgba(215, 195, 163, 0.78);
    }

    .brand-panel {
        min-height: 380px;
        padding: 28px;
    }

    .legal-document {
        width: calc(100% - 48px);
        max-width: 760px;
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    :root {
        --mobile-header-height: 90px;
    }

    .site-header {
        padding-inline: 22px;
    }

    .wordmark {
        font-size: 0.94rem;
        letter-spacing: 0.3em;
    }

    .hero,
    .login-layout {
        padding-inline: 22px;
        padding-top: calc(var(--mobile-header-height) + env(safe-area-inset-top) + 38px);
    }

    h1 {
        font-size: clamp(3.5rem, 14.8vw, 4.52rem);
        max-width: 10.8ch;
    }

    .page-platform h1,
    .page-operations h1,
    .page-staff h1,
    .page-service h1,
    .page-security h1,
    .page-pricing h1,
    .page-privacy h1,
    .page-terms h1,
    .page-about h1,
    .page-schedule h1,
    .page-request-access h1 {
        font-size: clamp(3.28rem, 13.8vw, 4.3rem);
        max-width: 11.2ch;
    }

    .hero-copy {
        max-width: 18rem;
    }

    .section,
    .final-cta,
    .statement-bar,
    .site-footer,
    .login-layout,
    .legal-document {
        width: calc(100% - 44px);
    }

    .section {
        padding: 84px 0;
    }

    .product-stage {
        max-height: 535px;
        border-radius: 30px;
    }

    .network-orbit {
        min-height: 360px;
    }

    .error-orbit {
        min-height: 330px;
    }
}

@media (max-width: 700px) {
    body.nav-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }

    .site-header {
        min-height: calc(var(--mobile-header-height) + env(safe-area-inset-top));
    }

    .nav-toggle {
        width: 54px;
        height: 54px;
        top: calc(env(safe-area-inset-top) + 18px);
    }

    .site-nav {
        overflow: hidden auto;
        min-height: 100svh;
        height: 100dvh;
        padding: calc(env(safe-area-inset-top) + 108px) 26px max(28px, calc(env(safe-area-inset-bottom) + 28px));
        gap: clamp(14px, 2.4svh, 22px);
        background:
            radial-gradient(circle at 82% 8%, rgba(105, 132, 166, 0.16), transparent 22rem),
            radial-gradient(circle at 8% 92%, rgba(185, 154, 99, 0.1), transparent 20rem),
            linear-gradient(180deg, rgba(12, 14, 15, 1), rgba(2, 2, 2, 1) 78%);
    }

    .site-nav::before {
        content: "OMNISANT";
        position: absolute;
        top: calc(env(safe-area-inset-top) + 35px);
        left: 26px;
        color: rgba(255, 253, 248, 0.88);
        font-family: Inter, Arial, sans-serif;
        font-size: 0.82rem;
        font-weight: 700;
        letter-spacing: 0.3em;
    }

    .site-nav::after {
        content: "connected household systems";
        position: absolute;
        top: calc(env(safe-area-inset-top) + 60px);
        left: 26px;
        color: rgba(215, 195, 163, 0.55);
        font-size: 0.72rem;
        letter-spacing: 0.12em;
        text-transform: uppercase;
    }

    .site-nav a {
        font-size: clamp(2rem, 9vw, 3.1rem);
        line-height: 0.98;
    }

    .site-nav .nav-cta {
        min-height: 64px;
        margin-top: auto;
        flex: 0 0 auto;
        opacity: 1;
        background: linear-gradient(135deg, #e5d2ad, #b99a63);
    }

    .page-hero {
        align-items: start;
        min-height: auto;
        padding-top: calc(var(--mobile-header-height) + env(safe-area-inset-top) + 42px);
        padding-bottom: 72px;
    }

    .page-operations .page-hero,
    .page-daily-operations .page-hero,
    .page-schedule .page-hero,
    .page-staff .page-hero,
    .page-household-staff .page-hero {
        align-items: start;
        min-height: auto;
    }

    .section,
    .final-cta {
        scroll-margin-top: calc(var(--mobile-header-height) + env(safe-area-inset-top) + 18px);
    }

    .page-hero .hero-content {
        padding-top: 0;
    }

    .page-operations .page-hero h1,
    .page-daily-operations .page-hero h1 {
        max-width: 10.8ch;
        font-size: clamp(3.15rem, 12vw, 4.05rem);
        line-height: 0.98;
    }

    .page-operations .visual-split,
    .page-daily-operations .visual-split {
        padding-top: 56px;
        padding-bottom: 64px;
        gap: 34px;
    }

    .page-operations .visual-split .dashboard-frame,
    .page-daily-operations .visual-split .dashboard-frame {
        order: 2;
        padding: 16px;
    }

    .page-operations .visual-split .section-copy,
    .page-daily-operations .visual-split .section-copy {
        order: 1;
    }

    .page-operations .visual-split .dashboard-grid,
    .page-daily-operations .visual-split .dashboard-grid {
        gap: 14px;
    }

    .operations-theater {
        padding-top: 64px;
        padding-bottom: 72px;
        gap: 28px;
        scroll-margin-top: calc(var(--mobile-header-height) + env(safe-area-inset-top) + 18px);
    }

    .operations-theater .theater-copy h2 {
        max-width: 10.8ch;
        font-size: clamp(3.1rem, 12vw, 4rem);
        line-height: 0.98;
    }

    .theater-board {
        gap: 10px;
        padding: 18px;
        border-radius: 24px;
    }

    .theater-board::before {
        display: none;
    }

    .theater-lane {
        grid-template-columns: 58px minmax(0, 1fr);
        gap: 4px 13px;
        padding: 15px 14px;
        border-radius: 16px;
    }

    .theater-lane span {
        font-size: 0.88rem;
    }

    .theater-lane strong {
        font-size: 1rem;
    }

    .theater-lane small {
        grid-column: 2;
        font-size: 0.88rem;
        line-height: 1.45;
    }

    .site-footer::before {
        right: auto;
        left: 34px;
        top: 34px;
        max-width: calc(100vw - 68px);
        overflow: hidden;
        font-size: clamp(4.2rem, 20vw, 5.8rem);
        opacity: 0.55;
    }
}

@media (max-width: 380px) {
    .site-nav a {
        font-size: clamp(1.82rem, 8.4vw, 2.72rem);
    }

    .site-nav {
        gap: 13px;
    }

    .theater-lane {
        grid-template-columns: 54px minmax(0, 1fr);
        padding-inline: 12px;
    }
}

@media (max-width: 768px) {
    :root {
        --mobile-page-pad: clamp(24px, 7vw, 34px);
        --mobile-section-y: clamp(62px, 14vw, 92px);
        --mobile-card-pad: clamp(18px, 5vw, 26px);
        --mobile-display: clamp(3rem, 13.5vw, 4.05rem);
        --mobile-h1-line: 0.98;
        --mobile-header-height: 104px;
    }

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    html.nav-open,
    body.nav-open {
        overflow: hidden;
        overscroll-behavior: none;
    }

    body.nav-open {
        position: fixed;
        top: var(--locked-scroll-y, 0);
        left: 0;
        right: 0;
        width: 100%;
    }

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

    img,
    svg,
    video,
    canvas {
        max-width: 100%;
        height: auto;
    }

    .site-header {
        z-index: 9000;
        min-height: calc(var(--mobile-header-height) + env(safe-area-inset-top));
        height: calc(var(--mobile-header-height) + env(safe-area-inset-top));
        padding: env(safe-area-inset-top) var(--mobile-page-pad) 0;
        background: linear-gradient(180deg, rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0.22) 72%, transparent);
        border-bottom: 1px solid rgba(255, 255, 255, 0.055);
    }

    body.nav-open .site-header {
        z-index: 10001;
        background: transparent;
        border-bottom-color: transparent;
        backdrop-filter: none;
        box-shadow: none;
    }

    .site-header .wordmark {
        font-size: clamp(1.02rem, 5.6vw, 1.45rem);
        letter-spacing: 0.34em;
        max-width: calc(100vw - 118px);
        white-space: nowrap;
    }

    .nav-toggle {
        z-index: 10002;
        top: calc(env(safe-area-inset-top) + 24px);
        right: var(--mobile-page-pad);
        width: 60px;
        height: 60px;
        border-radius: 999px;
    }

    .site-nav {
        position: fixed;
        inset: 0;
        z-index: 9999;
        width: 100vw;
        height: 100dvh;
        min-height: 100svh;
        max-width: 100vw;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 16px;
        padding: calc(env(safe-area-inset-top) + 132px) var(--mobile-page-pad) max(34px, calc(env(safe-area-inset-bottom) + 34px));
        overflow: hidden auto;
        color: var(--ivory);
        background:
            radial-gradient(circle at 82% 8%, rgba(105, 132, 166, 0.18), transparent 20rem),
            radial-gradient(circle at 8% 88%, rgba(185, 154, 99, 0.12), transparent 22rem),
            linear-gradient(180deg, rgba(7, 8, 8, 0.985), rgba(2, 2, 2, 0.998) 78%);
        backdrop-filter: blur(22px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: none;
        transition: opacity 240ms var(--ease), visibility 240ms var(--ease);
    }

    .site-nav::before {
        content: "Navigation";
        position: static;
        order: -2;
        margin-bottom: 6px;
        color: rgba(215, 195, 163, 0.82);
        font-family: Inter, Arial, sans-serif;
        font-size: 0.76rem;
        font-weight: 700;
        letter-spacing: 0.22em;
        line-height: 1.2;
        text-transform: uppercase;
    }

    .site-nav::after {
        content: "connected household systems";
        position: static;
        order: -1;
        margin: -8px 0 8px;
        color: rgba(245, 240, 232, 0.46);
        font-family: Inter, Arial, sans-serif;
        font-size: 0.78rem;
        font-weight: 600;
        letter-spacing: 0.12em;
        line-height: 1.4;
        text-transform: uppercase;
    }

    .site-nav.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
    }

    .site-nav a,
    .site-nav a:not(.nav-cta) {
        width: 100%;
        max-width: 100%;
        min-height: 0;
        padding: 0;
        color: rgba(245, 240, 232, 0.84);
        font-family: Inter, Arial, sans-serif;
        font-size: clamp(1.15rem, 5vw, 1.38rem);
        font-weight: 600;
        line-height: 1.35;
        letter-spacing: 0;
        opacity: 1;
        transform: none;
        transition: color 180ms ease;
    }

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

    .site-nav .login-link {
        margin-left: 0;
        margin-top: 8px;
    }

    .site-nav .nav-cta {
        width: 100%;
        min-height: 64px;
        margin-top: 12px;
        padding: 0 22px;
        flex: 0 0 auto;
        color: var(--obsidian);
        font-size: 1rem;
        letter-spacing: 0.02em;
    }

    .hero,
    .page-hero,
    .error-hero,
    .login-layout {
        width: 100%;
        padding-inline: var(--mobile-page-pad);
        padding-top: calc(var(--mobile-header-height) + env(safe-area-inset-top) + 34px);
        padding-bottom: max(68px, calc(env(safe-area-inset-bottom) + 58px));
    }

    .hero-home.cinematic-hero {
        padding-top: calc(var(--mobile-header-height) + env(safe-area-inset-top) + 26px);
        padding-bottom: max(56px, calc(env(safe-area-inset-bottom) + 48px));
        gap: 22px;
    }

    h1,
    .page-platform h1,
    .page-operations h1,
    .page-staff h1,
    .page-service h1,
    .page-security h1,
    .page-pricing h1,
    .page-privacy h1,
    .page-terms h1,
    .page-about h1,
    .page-schedule h1,
    .page-request-access h1 {
        max-width: 11.8ch;
        font-size: var(--mobile-display);
        line-height: var(--mobile-h1-line);
        letter-spacing: 0;
    }

    .hero-home .campaign-headline {
        max-width: 100%;
        font-size: clamp(2.72rem, 10.7vw, 3.05rem);
        line-height: 1;
    }

    h2 {
        font-size: clamp(2.7rem, 11.4vw, 3.95rem);
        line-height: 1.04;
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    p,
    li {
        font-size: clamp(1.02rem, 4.3vw, 1.16rem);
        line-height: 1.56;
    }

    .hero-copy,
    .hero-home .hero-copy {
        max-width: 21rem;
        margin-top: 24px;
        font-size: clamp(1.08rem, 4.8vw, 1.2rem);
        line-height: 1.56;
    }

    .eyebrow {
        max-width: 100%;
        gap: 12px;
        font-size: 0.72rem;
        line-height: 1.38;
        letter-spacing: 0.18em;
    }

    .eyebrow::after {
        width: clamp(42px, 18vw, 72px);
        flex: 0 1 auto;
    }

    .hero .button-row {
        margin-top: 30px;
        gap: 14px;
        width: 100%;
        max-width: 21rem;
    }

    .button,
    .nav-cta,
    .form-card .button,
    .login-card .button {
        width: 100%;
        max-width: 100%;
        min-height: 64px;
        padding-inline: 22px;
    }

    .microcopy {
        max-width: 21rem;
        margin-top: 16px;
    }

    .section,
    .final-cta,
    .statement-bar,
    .site-footer,
    .legal-document,
    .login-layout {
        width: calc(100% - (var(--mobile-page-pad) * 2));
        max-width: none;
    }

    .section {
        padding: var(--mobile-section-y) 0;
    }

    .split,
    .visual-split,
    .page-grid,
    .operations-theater,
    .quiet-statement {
        gap: clamp(28px, 8vw, 42px);
    }

    .split > *,
    .visual-split > *,
    .page-grid > *,
    .article-layout > * {
        min-width: 0;
        max-width: 100%;
    }

    .statement-bar {
        margin-top: -10px;
        padding: 22px var(--mobile-card-pad);
        border-radius: 24px;
    }

    .lux-card,
    .pricing-card,
    .form-card,
    .login-card,
    .mini-dashboard,
    .dashboard-frame,
    .feature-panel {
        padding: var(--mobile-card-pad);
        border-radius: 24px;
    }

    .card-grid {
        gap: 16px;
    }

    .lux-card,
    .pricing-card {
        min-height: auto;
    }

    .card-grid.six .lux-card:nth-child(1),
    .card-grid.six .lux-card:nth-child(3),
    .card-grid.six .lux-card:nth-child(5) {
        min-height: auto;
    }

    .card-grid.six .lux-card:nth-child(1) h3,
    .lux-card h3 {
        margin-top: 34px;
    }

    .product-stage,
    .hero-home .product-stage {
        min-height: auto;
        max-height: none;
        margin-top: 12px;
        padding-bottom: max(34px, env(safe-area-inset-bottom));
        overflow: visible;
        mask-image: none;
    }

    .hero-home .hero-dashboard {
        width: 100%;
        max-width: none;
        margin-inline: 0;
    }

    .stage-ring {
        inset: 8% -18% 8%;
        opacity: 0.42;
    }

    .network-orbit {
        width: min(100%, 390px);
        min-height: 340px;
        margin-inline: auto;
        overflow: visible;
    }

    .node {
        min-width: 76px;
        min-height: 38px;
        padding-inline: 12px;
        font-size: 0.82rem;
    }

    .node-core {
        min-width: 94px;
        min-height: 94px;
    }

    .node-a { top: 5%; left: 39%; }
    .node-b { top: 22%; right: 0; }
    .node-c { bottom: 20%; right: 2%; }
    .node-d { bottom: 6%; left: 30%; }
    .node-e { top: 36%; left: 0; }

    .pricing-grid {
        gap: 18px;
    }

    .pricing-card {
        width: 100%;
        padding: var(--mobile-card-pad);
    }

    .pricing-grid .pricing-card:nth-child(even) {
        transform: none;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .field.full {
        grid-column: auto;
    }

    input,
    select,
    textarea {
        min-height: 56px;
        max-width: 100%;
    }

    .form-card > .button {
        margin-top: 26px;
    }

    .page-request-access .page-grid {
        padding-top: 44px;
    }

    .final-cta {
        margin-top: 28px;
        margin-bottom: 56px;
        padding: 34px var(--mobile-card-pad);
    }

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

    .site-footer {
        padding-top: 72px;
        padding-bottom: max(70px, calc(env(safe-area-inset-bottom) + 48px));
    }

    .site-footer::before {
        left: max(38px, var(--mobile-page-pad));
        top: 32px;
        max-width: calc(100vw - 76px);
        font-size: clamp(4rem, 19vw, 5.4rem);
    }

    .site-footer > div:first-child {
        display: grid;
        gap: 16px;
    }

    .site-footer > div:first-child .wordmark {
        font-size: 1rem;
        letter-spacing: 0.34em;
    }

    .site-footer > div:first-child p {
        max-width: 18rem;
        font-size: clamp(2rem, 9vw, 3rem);
        line-height: 1.03;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 42px;
    }

    .footer-grid nav {
        display: grid;
        gap: 9px;
    }

    .copyright {
        margin-top: 34px;
    }
}

@media (max-width: 430px) {
    :root {
        --mobile-header-height: 98px;
    }

    .site-header {
        min-height: calc(var(--mobile-header-height) + env(safe-area-inset-top));
        height: calc(var(--mobile-header-height) + env(safe-area-inset-top));
    }

    .site-header .wordmark {
        font-size: clamp(0.98rem, 5.6vw, 1.28rem);
        letter-spacing: 0.32em;
    }

    .nav-toggle {
        width: 56px;
        height: 56px;
        top: calc(env(safe-area-inset-top) + 21px);
    }

    .site-nav {
        padding-top: calc(env(safe-area-inset-top) + 122px);
        gap: 15px;
    }

    .hero-home.cinematic-hero {
        padding-top: calc(var(--mobile-header-height) + env(safe-area-inset-top) + 22px);
    }

    .hero-home .campaign-headline {
        font-size: clamp(2.72rem, 10.7vw, 3.05rem);
    }

    .page-hero {
        min-height: auto;
    }

    .page-hero h1 {
        font-size: clamp(3rem, 13.2vw, 3.9rem);
    }
}


.contact-hero .hero-content {
    max-width: 940px;
}

.contact-grid {
    align-items: start;
}

.contact-methods {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.contact-methods .support-callout {
    margin: 0;
}

.contact-methods strong {
    display: block;
    margin-bottom: 8px;
    color: var(--champagne);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.contact-methods a,
.contact-support-grid a {
    color: var(--champagne);
    font-weight: 700;
}

.contact-form {
    position: relative;
}

.contact-form .message-field {
    grid-column: 1 / -1;
}

.contact-form .message-field textarea {
    width: 100%;
}

.honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-support-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.contact-support-grid .lux-card {
    min-height: 260px;
}

.contact-support-grid .lux-card a {
    display: inline-flex;
    margin-top: 22px;
}

button:disabled {
    cursor: not-allowed;
    opacity: 0.62;
}

.login-layout {
    width: min(var(--container), calc(100% - 52px));
    min-height: 100vh;
    margin: 0 auto;
    padding: 140px 0 86px;
    align-items: center;
}

.brand-panel {
    min-height: 580px;
    padding: 42px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(215, 195, 163, 0.13), transparent 34%),
        linear-gradient(315deg, rgba(255, 253, 248, 0.06), transparent 38%),
        rgba(20, 20, 20, 0.86);
    border: 1px solid var(--line);
}

.login-card h1 {
    font-size: clamp(3.2rem, 6vw, 5.6rem);
}

.remember-row {
    margin: 16px 0 22px;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    color: var(--muted-text);
    font-size: 0.9rem;
}

.remember-row input {
    width: auto;
    min-height: auto;
    margin-right: 8px;
}

.legal-hero {
    min-height: 54vh;
}

.legal-jump {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.legal-jump a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    padding: 0 16px;
    border: 1px solid var(--gold-line);
    border-radius: 999px;
    color: var(--ivory);
    background: rgba(255, 255, 255, 0.035);
    font-size: 0.9rem;
    font-weight: 600;
}

.legal-title {
    padding-bottom: 22px;
}

.legal-document {
    width: min(920px, calc(100% - 52px));
    margin: 0 auto 86px;
    padding: 46px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 253, 248, 0.045), rgba(255, 253, 248, 0.014)),
        rgba(20, 20, 20, 0.72);
}

.legal-document h2 {
    margin-bottom: 18px;
    font-family: Inter, "Avenir Next", Arial, sans-serif;
    font-size: 1.15rem;
    line-height: 1.35;
    color: var(--ivory);
}

.legal-document h3 {
    margin-top: 26px;
    margin-bottom: 8px;
    color: var(--champagne);
}

.legal-document p + p,
.legal-document ul + p,
.legal-document p + ul {
    margin-top: 14px;
}

.legal-document ul {
    padding-left: 20px;
}

.legal-document li + li {
    margin-top: 6px;
}

.legal-document strong,
.legal-document a {
    color: var(--ivory);
}

.legal-section {
    margin-top: 34px;
    padding-top: 34px;
    border-top: 1px solid var(--line);
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity var(--motion-slow) var(--ease-luxury), transform var(--motion-slow) var(--ease-luxury);
}

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

@keyframes handledPulse {
    0% { box-shadow: 0 0 0 0 rgba(215, 195, 163, 0.34); }
    70% { box-shadow: 0 0 0 9px rgba(215, 195, 163, 0); }
    100% { box-shadow: 0 0 0 0 rgba(215, 195, 163, 0); }
}

@keyframes atmosphereDrift {
    from { transform: translate3d(-1%, 1%, 0) scale(0.98); }
    to { transform: translate3d(2%, -1%, 0) scale(1.04); }
}

@keyframes cardFloat {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, -10px, 0); }
}

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

    .reveal,
    .nav-cta,
    .button,
    .lux-card,
    .pricing-card {
        transition: none;
        transform: none;
    }

    .status-chip::before {
        animation: none;
    }
}

@media (max-width: 1040px) {
    .site-header {
        height: 76px;
    }

    .nav-toggle {
        display: block;
        position: fixed;
        top: 14px;
        right: 24px;
        left: auto;
        z-index: 10001;
    }

    .site-nav {
        position: fixed;
        inset: 0;
        z-index: 9999;
        display: flex;
        padding: 118px 26px 34px;
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        background:
            radial-gradient(circle at 82% 20%, rgba(105, 132, 166, 0.22), transparent 34%),
            radial-gradient(circle at 18% 82%, rgba(215, 195, 163, 0.14), transparent 34%),
            rgba(4, 4, 4, 0.995);
        backdrop-filter: blur(20px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 260ms ease, visibility 260ms ease, transform 260ms ease;
    }

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

    .site-nav a {
        font-size: clamp(1.8rem, 8vw, 3.4rem);
        font-family: "Cormorant Garamond", Georgia, serif;
        line-height: 1;
        opacity: 0;
        transform: translateY(12px);
        transition: opacity 360ms ease, transform 360ms ease;
    }

    .site-nav.is-open a {
        opacity: 1;
        transform: translateY(0);
    }

    .site-nav.is-open a:nth-child(2) { transition-delay: 40ms; }
    .site-nav.is-open a:nth-child(3) { transition-delay: 80ms; }
    .site-nav.is-open a:nth-child(4) { transition-delay: 120ms; }
    .site-nav.is-open a:nth-child(5) { transition-delay: 160ms; }
    .site-nav.is-open a:nth-child(6) { transition-delay: 200ms; }
    .site-nav.is-open a:nth-child(7) { transition-delay: 240ms; }

    body.nav-open .site-header {
        z-index: 10000;
    }

    .site-nav .login-link {
        margin-left: 0;
    }

    .site-nav .nav-cta {
        width: 100%;
        margin-top: auto;
        font-family: Inter, Arial, sans-serif;
        font-size: 1rem;
    }

    .hero,
    .hero-home,
    .split,
    .visual-split,
    .page-grid,
    .cinematic-band,
    .operations-theater,
    .login-layout {
        grid-template-columns: 1fr;
    }

    .dashboard-frame {
        max-width: 760px;
    }

    .card-grid.six,
    .card-grid.three,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .card-grid.six .lux-card:nth-child(1) {
        grid-row: auto;
    }

    .card-grid.six .lux-card:nth-child(1) h3 {
        margin-top: 46px;
    }

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

    .product-stage {
        min-height: 540px;
    }

    .floating-card {
        width: 190px;
    }
}

@media (max-width: 700px) {
    h1 {
        max-width: 11ch;
        font-size: clamp(4.05rem, 15.2vw, 5.15rem);
        line-height: 0.93;
    }

    h2 {
        font-size: clamp(2.35rem, 11vw, 3.55rem);
    }

    .hero,
    .login-layout {
        padding: 116px 20px 64px;
    }

    .hero-content,
    .dashboard-frame,
    .product-stage,
    .mini-dashboard,
    .form-card,
    .login-card {
        width: 100%;
        max-width: none;
    }

    .dashboard-frame {
        padding: 18px;
    }

    .product-stage {
        min-height: 650px;
    }

    .hero-dashboard {
        transform: none;
    }

    .floating-card {
        position: relative;
        width: 100%;
        margin-top: 10px;
        inset: auto;
        animation: none;
    }

    .stage-ring {
        inset: 6% -30% 16%;
    }

    .dashboard-top {
        align-items: flex-start;
        flex-direction: column;
        padding-bottom: 16px;
    }

    .status-chip {
        max-width: 100%;
        white-space: normal;
    }

    .timeline-item {
        grid-template-columns: 1fr;
    }

    .timeline-item small {
        grid-column: auto;
    }

    .hero-copy {
        max-width: 100%;
        font-size: 1rem;
        line-height: 1.6;
    }

    .eyebrow {
        max-width: 100%;
        font-size: 0.68rem;
        gap: 10px;
        letter-spacing: 0.18em;
    }

    .eyebrow::after {
        width: 42px;
    }

    .section,
    .final-cta,
    .statement-bar,
    .site-footer,
    .login-layout {
        width: calc(100% - 40px);
        max-width: 350px;
    }

    .section {
        padding: 78px 0;
    }

    .button-row,
    .dashboard-grid,
    .card-grid.six,
    .card-grid.three,
    .pricing-grid,
    .form-grid,
    .module-list,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .card-grid.six .lux-card,
    .card-grid.six .lux-card:nth-child(1),
    .card-grid.six .lux-card:nth-child(3),
    .card-grid.six .lux-card:nth-child(5) {
        min-height: 230px;
    }

    .cinematic-band,
    .operations-theater {
        min-height: auto;
        gap: 30px;
    }

    .network-orbit {
        min-height: 350px;
    }

    .node {
        min-width: 76px;
        min-height: 38px;
        padding: 0 12px;
        font-size: 0.78rem;
    }

    .node-core {
        min-width: 92px;
        min-height: 92px;
    }

    .statement-type {
        font-size: clamp(3.1rem, 14vw, 4.8rem);
    }

    .theater-board {
        padding: 18px;
    }

    .theater-board::before {
        left: 76px;
    }

    .theater-lane {
        grid-template-columns: 62px 1fr;
        padding: 15px;
    }

    .button-row {
        flex-direction: column;
    }

    .button,
    .form-card .button {
        width: 100%;
    }

    .wide-panel,
    .field.full {
        grid-column: auto;
    }

    .final-cta {
        padding: 34px 24px;
    }

    .site-footer > div:first-child,
    .remember-row {
        flex-direction: column;
    }

    .brand-panel {
        min-height: 380px;
        padding: 28px;
    }

    .legal-document {
        width: calc(100% - 40px);
        max-width: 350px;
        padding: 28px 22px;
    }
}

@media (max-width: 700px) {
    :root {
        --mobile-header-height: 92px;
    }

    body {
        background:
            radial-gradient(circle at 50% -12%, rgba(215, 195, 163, 0.12), transparent 32rem),
            radial-gradient(circle at 100% 18%, rgba(106, 132, 166, 0.14), transparent 28rem),
            linear-gradient(180deg, #050505 0%, var(--obsidian) 46%, #070707 100%);
    }

    .site-header {
        width: 100%;
        height: calc(var(--mobile-header-height) + env(safe-area-inset-top));
        padding: env(safe-area-inset-top) 24px 0;
        background: linear-gradient(180deg, rgba(5, 5, 5, 0.78), rgba(5, 5, 5, 0));
        border-bottom-color: transparent;
    }

    .site-header.is-scrolled {
        background: rgba(8, 8, 8, 0.76);
        border-bottom-color: rgba(215, 195, 163, 0.1);
        backdrop-filter: blur(22px);
    }

    .wordmark {
        font-size: 0.86rem;
        letter-spacing: 0.3em;
    }

    .nav-toggle {
        top: calc(env(safe-area-inset-top) + 17px);
        right: 22px;
        left: auto;
        width: 58px;
        height: 58px;
        border-color: rgba(215, 195, 163, 0.2);
        border-radius: 999px;
        background:
            radial-gradient(circle at 34% 22%, rgba(255, 253, 248, 0.12), transparent 38%),
            linear-gradient(145deg, rgba(30, 29, 27, 0.86), rgba(9, 9, 9, 0.74));
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.08),
            0 18px 44px rgba(0, 0, 0, 0.28);
        backdrop-filter: blur(18px);
    }

    .nav-toggle span {
        width: 21px;
        height: 1px;
        background: var(--ivory);
        box-shadow: 0 0 16px rgba(215, 195, 163, 0.2);
    }

    .site-nav {
        padding: calc(var(--mobile-header-height) + env(safe-area-inset-top) + 34px) 26px max(38px, env(safe-area-inset-bottom));
        gap: clamp(18px, 3.2svh, 28px);
        background:
            radial-gradient(circle at 78% 10%, rgba(105, 132, 166, 0.18), transparent 26rem),
            radial-gradient(circle at 8% 92%, rgba(185, 154, 99, 0.13), transparent 24rem),
            linear-gradient(180deg, rgba(12, 14, 15, 0.998), rgba(2, 2, 2, 1) 76%);
        transform: translateY(-14px) scale(1.01);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
        transition: opacity 300ms var(--ease), visibility 300ms var(--ease), transform 420ms var(--ease);
    }

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

    .site-nav a {
        font-size: clamp(2.32rem, 10.8vw, 4rem);
        letter-spacing: -0.01em;
        color: rgba(245, 240, 232, 0.74);
    }

    .site-nav .nav-cta {
        min-height: 68px;
        justify-content: center;
        margin-top: auto;
        font-family: Inter, Arial, sans-serif;
        font-size: 1rem;
        letter-spacing: 0.03em;
        color: var(--obsidian);
    }

    .hero,
    .login-layout {
        padding: calc(var(--mobile-header-height) + env(safe-area-inset-top) + 54px) 24px max(90px, calc(env(safe-area-inset-bottom) + 82px));
    }

    .hero,
    .hero-home,
    .page-hero {
        min-height: auto;
    }

    .hero-home {
        gap: 42px;
    }

    .page-hero {
        padding-bottom: max(86px, calc(env(safe-area-inset-bottom) + 74px));
    }

    h1 {
        max-width: 11ch;
        font-size: clamp(3.78rem, 14.2vw, 4.9rem);
        line-height: 0.93;
        letter-spacing: 0;
    }

    .hero-home h1 {
        max-width: 10.5ch;
    }

    .page-platform h1,
    .page-operations h1,
    .page-staff h1,
    .page-service h1,
    .page-security h1,
    .page-pricing h1,
    .page-privacy h1,
    .page-terms h1 {
        max-width: 11.5ch;
        font-size: clamp(3.26rem, 12.3vw, 4.36rem);
        line-height: 0.96;
    }

    .page-about h1,
    .page-schedule h1,
    .page-request-access h1 {
        max-width: 11ch;
        font-size: clamp(3.34rem, 12.7vw, 4.48rem);
        line-height: 0.95;
    }

    h2 {
        font-size: clamp(2.7rem, 11vw, 4.1rem);
        line-height: 0.96;
    }

    p,
    li {
        font-size: 1.08rem;
        line-height: 1.65;
    }

    .hero-copy {
        max-width: 18.8rem;
        font-size: clamp(1.08rem, 4.7vw, 1.22rem);
        line-height: 1.62;
    }

    .eyebrow {
        max-width: 24rem;
        font-size: 0.68rem;
        gap: 10px;
        letter-spacing: 0.18em;
    }

    .eyebrow::after {
        width: 42px;
    }

    .hero-content,
    .dashboard-frame,
    .product-stage,
    .mini-dashboard,
    .form-card,
    .login-card {
        width: 100%;
        max-width: none;
    }

    .form-card,
    .login-card,
    .mini-dashboard,
    .dashboard-frame {
        max-width: 560px;
        margin-inline: auto;
    }

    .hero .button-row {
        margin-top: 36px;
        gap: 16px;
    }

    .button,
    .form-card .button,
    .login-card .button {
        min-height: 66px;
        font-size: 1rem;
    }

    .microcopy {
        max-width: 18rem;
        margin-top: 22px;
    }

    .product-stage {
        min-height: auto;
        max-height: 570px;
        margin-top: 22px;
        padding: 16px 0 30px;
        overflow: hidden;
        border-radius: 34px;
        isolation: isolate;
        mask-image: linear-gradient(to bottom, #000 0%, #000 84%, transparent 100%);
    }

    .product-stage::before {
        inset: 1rem -30% auto;
        height: 22rem;
        opacity: 0.85;
    }

    .stage-ring {
        inset: 7% -44% 12%;
        opacity: 0.78;
    }

    .hero-dashboard {
        transform: none;
        border-radius: 28px;
    }

    .dashboard-frame {
        padding: 18px;
    }

    .floating-card {
        position: relative;
        inset: auto;
        width: calc(100% - 28px);
        margin: 12px auto 0;
        padding: 14px 16px;
        border-radius: 18px;
        animation: none;
    }

    .dashboard-top {
        align-items: flex-start;
        flex-direction: column;
        padding-bottom: 16px;
    }

    .status-chip {
        max-width: 100%;
        white-space: normal;
    }

    .timeline-item {
        grid-template-columns: 1fr;
    }

    .timeline-item small {
        grid-column: auto;
    }

    .section,
    .final-cta,
    .statement-bar,
    .site-footer,
    .login-layout {
        width: calc(100% - 48px);
        max-width: none;
    }

    .section {
        padding: 92px 0;
    }

    .statement-bar {
        margin-top: -22px;
        padding: 22px;
    }

    .card-grid.six,
    .card-grid.three,
    .pricing-grid,
    .form-grid,
    .module-list,
    .footer-grid,
    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .card-grid,
    .pricing-grid {
        gap: 18px;
    }

    .lux-card,
    .pricing-card {
        min-height: auto;
        padding: 24px 22px;
        border-radius: 26px;
    }

    .card-grid .lux-card:nth-child(even),
    .pricing-grid .pricing-card:nth-child(even) {
        transform: translateY(8px);
    }

    .card-grid.six .lux-card,
    .card-grid.six .lux-card:nth-child(1),
    .card-grid.six .lux-card:nth-child(3),
    .card-grid.six .lux-card:nth-child(5) {
        min-height: 0;
    }

    .card-grid.six .lux-card h3,
    .card-grid.six .lux-card:nth-child(1) h3 {
        margin-top: 38px;
    }

    .lux-card h3,
    .pricing-card h3 {
        margin-top: 34px;
        font-size: clamp(1.32rem, 5.2vw, 1.72rem);
        line-height: 1.12;
    }

    .lux-card p,
    .pricing-card p {
        margin-top: 10px;
        font-size: 1rem;
        line-height: 1.55;
    }
    }

    .cinematic-band,
    .operations-theater {
        min-height: auto;
        gap: 36px;
    }

    .network-orbit {
        min-height: 390px;
        margin-inline: -8px;
    }

    .node {
        min-width: 76px;
        min-height: 38px;
        padding: 0 12px;
        font-size: 0.78rem;
    }

    .node-core {
        min-width: 92px;
        min-height: 92px;
    }

    .statement-type {
        font-size: clamp(3.1rem, 14vw, 4.8rem);
    }

    .theater-board {
        padding: 18px;
    }

    .theater-board::before {
        left: 76px;
    }

    .theater-lane {
        grid-template-columns: 62px 1fr;
        padding: 15px;
    }

    .button-row {
        flex-direction: column;
    }

    .button,
    .form-card .button {
        width: 100%;
    }

    .module-list {
        gap: 14px;
    }

    .module-list span {
        min-height: 70px;
    }

    .wide-panel,
    .field.full {
        grid-column: auto;
    }

    .form-card,
    .login-card {
        padding: 30px 24px;
    }

    .final-cta {
        padding: 42px 26px;
        margin-bottom: max(82px, env(safe-area-inset-bottom));
    }

    .site-footer > div:first-child,
    .remember-row {
        flex-direction: column;
    }

    .site-footer {
        padding-top: 108px;
        padding-bottom: max(76px, calc(env(safe-area-inset-bottom) + 54px));
    }

    .site-footer > div:first-child {
        gap: 18px;
    }

    .site-footer > div:first-child p {
        max-width: 18rem;
        color: rgba(245, 240, 232, 0.68);
        font-family: "Cormorant Garamond", Georgia, serif;
        font-size: clamp(2.2rem, 10vw, 3.4rem);
        line-height: 0.98;
    }

    .footer-grid {
        gap: 34px;
        margin-top: 58px;
    }

    .footer-grid a {
        color: rgba(245, 240, 232, 0.54);
    }

    .footer-grid strong {
        color: rgba(215, 195, 163, 0.78);
    }

    .brand-panel {
        min-height: 380px;
        padding: 28px;
    }

    .legal-document {
        width: calc(100% - 48px);
        max-width: 760px;
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    :root {
        --mobile-header-height: 90px;
    }

    .site-header {
        padding-inline: 22px;
    }

    .wordmark {
        font-size: 0.8rem;
        letter-spacing: 0.28em;
    }

    .hero,
    .login-layout {
        padding-inline: 22px;
        padding-top: calc(var(--mobile-header-height) + env(safe-area-inset-top) + 38px);
    }

    h1 {
        font-size: clamp(3.5rem, 14.8vw, 4.52rem);
        max-width: 10.8ch;
    }

    .page-platform h1,
    .page-operations h1,
    .page-staff h1,
    .page-service h1,
    .page-security h1,
    .page-pricing h1,
    .page-privacy h1,
    .page-terms h1,
    .page-about h1,
    .page-schedule h1,
    .page-request-access h1 {
        font-size: clamp(3.28rem, 13.8vw, 4.3rem);
        max-width: 11.2ch;
    }

    .hero-copy {
        max-width: 18rem;
    }

    .section,
    .final-cta,
    .statement-bar,
    .site-footer,
    .login-layout,
    .legal-document {
        width: calc(100% - 44px);
    }

    .section {
        padding: 84px 0;
    }

    .product-stage {
        max-height: 535px;
        border-radius: 30px;
    }

    .network-orbit {
        min-height: 360px;
    }
}

.support-hero .hero-content {
    max-width: 900px;
}

.support-intro .section-heading p {
    max-width: 780px;
}

.support-guide-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.support-guide-grid .lux-card {
    min-height: 260px;
}

.support-guide-grid .lux-card a {
    display: inline-flex;
    margin-top: 22px;
    color: var(--champagne);
    font-weight: 700;
}

.support-article .page-hero {
    min-height: 62vh;
}

.article-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 56px;
    align-items: start;
}

.article-toc {
    position: sticky;
    top: 112px;
    border: 1px solid rgba(215, 195, 163, 0.14);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.026);
    padding: 20px;
}

.article-toc strong {
    display: block;
    margin-bottom: 14px;
    color: var(--champagne);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.article-toc a {
    display: block;
    padding: 10px 0;
    color: rgba(245, 240, 232, 0.68);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.article-body {
    max-width: 820px;
}

.article-body h2 {
    margin-top: 46px;
    font-size: clamp(2.15rem, 4vw, 3.8rem);
}

.article-body h2:first-child {
    margin-top: 0;
}

.article-body h3 {
    margin-top: 26px;
    color: var(--warm-white);
}

.article-body p,
.article-body li {
    font-size: 1.02rem;
    line-height: 1.72;
}

.article-body ul,
.article-body ol {
    margin: 14px 0 24px;
    padding-left: 22px;
}

.article-body table {
    width: 100%;
    table-layout: fixed;
    margin: 20px 0 28px;
    border-collapse: collapse;
    border: 1px solid rgba(215, 195, 163, 0.16);
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.026);
}

.article-body th,
.article-body td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(245, 240, 232, 0.72);
    text-align: left;
    vertical-align: top;
    overflow-wrap: anywhere;
}

.article-body th {
    color: var(--champagne);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.article-body tr:last-child td {
    border-bottom: 0;
}

.article-body blockquote,
.support-callout {
    margin: 24px 0;
    padding: 22px 24px;
    border-left: 2px solid rgba(215, 195, 163, 0.72);
    border-radius: 0 18px 18px 0;
    background: rgba(255, 255, 255, 0.026);
    color: var(--ivory);
}

.article-body blockquote {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.12;
}

@media (max-width: 980px) {
    .support-guide-grid,
    .contact-support-grid,
    .article-layout {
        grid-template-columns: 1fr;
    }

    .article-toc {
        position: static;
    }
}

.why-page .hero-copy {
    max-width: 760px;
}

.why-lines {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
    margin-bottom: 30px;
    color: var(--ivory);
    font-family: var(--serif);
    font-size: clamp(1.15rem, 2vw, 1.55rem);
    line-height: 1.05;
}

.why-pull {
    margin: 26px 0;
    padding: 24px 30px;
    color: var(--ivory);
    font-family: var(--serif);
    font-size: clamp(2.25rem, 6vw, 5.4rem);
    line-height: 0.96;
    border: 1px solid rgba(215, 195, 163, 0.20);
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.018));
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.why-pull.secondary {
    color: rgba(245, 240, 232, 0.78);
    font-size: clamp(1.9rem, 4.8vw, 4.4rem);
}

.example-card p {
    max-width: 48rem;
}

.page-why .why-essay {
    max-width: 1060px;
    margin-inline: auto;
}

.why-incidents-heading {
    max-width: 780px;
    margin-bottom: clamp(34px, 4.5vw, 58px);
}

.why-incidents-heading p:not(.eyebrow) {
    max-width: 620px;
    margin-top: 22px;
    color: rgba(245, 240, 232, 0.62);
    font-size: clamp(1.02rem, 1.1vw, 1.16rem);
    line-height: 1.68;
}

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

.why-incident-row {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) 96px;
    gap: clamp(18px, 3vw, 34px);
    align-items: center;
    min-height: 150px;
    padding: clamp(24px, 3vw, 34px) clamp(22px, 3vw, 34px);
    border: 1px solid rgba(255, 255, 255, 0.078);
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 253, 248, 0.032), rgba(255, 253, 248, 0.01)),
        rgba(11, 11, 11, 0.78);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
    transition: transform var(--motion), border-color var(--motion), background var(--motion);
}

.why-incident-row:hover {
    transform: translateY(-2px);
    border-color: rgba(215, 195, 163, 0.17);
    background:
        linear-gradient(180deg, rgba(255, 253, 248, 0.042), rgba(255, 253, 248, 0.014)),
        rgba(13, 13, 13, 0.84);
}

.incident-number {
    align-self: stretch;
    display: flex;
    align-items: flex-start;
    padding-top: 4px;
    color: rgba(215, 195, 163, 0.84);
    font-family: var(--sans);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.incident-copy {
    position: relative;
    padding-left: clamp(20px, 2.6vw, 32px);
}

.incident-copy::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.18rem;
    bottom: 0.24rem;
    width: 1px;
    background: linear-gradient(180deg, rgba(215, 195, 163, 0.16), rgba(255, 255, 255, 0.035));
}

.incident-copy h3 {
    margin: 0 0 12px;
    color: rgba(255, 253, 248, 0.94);
    font-family: var(--serif);
    font-size: clamp(1.7rem, 2.6vw, 2.55rem);
    line-height: 1;
    font-weight: 600;
}

.incident-copy p {
    max-width: 680px;
    margin: 0;
    color: rgba(245, 240, 232, 0.62);
    font-size: clamp(0.95rem, 1vw, 1.04rem);
    line-height: 1.68;
}

.incident-signal {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 74px;
    height: 34px;
    padding-inline: 13px;
    border: 1px solid rgba(215, 195, 163, 0.14);
    border-radius: 999px;
    color: rgba(215, 195, 163, 0.68);
    background: rgba(255, 255, 255, 0.025);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.page-why .why-philosophy-copy,
.page-why .why-scattered-copy {
    font-size: clamp(1.02rem, 1.08vw, 1.15rem);
    line-height: 1.72;
}

.page-why .why-philosophy-copy strong,
.page-why .why-scattered-copy strong {
    color: rgba(245, 240, 232, 0.9);
    font-weight: 600;
}

.why-context-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 26px 0 28px;
}

.why-context-list span {
    min-height: 42px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 999px;
    color: rgba(245, 240, 232, 0.68);
    background: rgba(255, 255, 255, 0.022);
    font-size: 0.82rem;
    line-height: 1.2;
}

.why-built-section {
    max-width: 1060px;
    margin-inline: auto;
}

.why-built-section .section-heading {
    max-width: 820px;
    margin-bottom: clamp(34px, 4vw, 54px);
}

.why-built-section .section-heading p:not(.eyebrow) {
    max-width: 680px;
    margin-top: 22px;
    color: rgba(245, 240, 232, 0.62);
    font-size: clamp(1.02rem, 1.1vw, 1.16rem);
    line-height: 1.68;
}

.why-principle-list {
    display: grid;
    border-top: 1px solid rgba(255, 255, 255, 0.075);
}

.why-principle-row {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: clamp(18px, 3vw, 36px);
    padding: clamp(26px, 3vw, 38px) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.075);
}

.why-principle-row > span {
    color: rgba(215, 195, 163, 0.72);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.why-principle-row h3 {
    margin: 0 0 10px;
    color: rgba(255, 253, 248, 0.94);
    font-family: var(--serif);
    font-size: clamp(1.8rem, 2.7vw, 2.7rem);
    line-height: 1;
}

.why-principle-row p {
    max-width: 720px;
    margin: 0;
    color: rgba(245, 240, 232, 0.62);
    font-size: clamp(1rem, 1.05vw, 1.1rem);
    line-height: 1.68;
}

.why-closing p:not(.eyebrow) {
    max-width: 980px;
    color: var(--ivory);
    font-family: var(--serif);
    font-size: clamp(3.2rem, 8vw, 7.2rem);
    line-height: 0.95;
}

@media (max-width: 700px) {
    .why-lines {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .why-pull {
        padding: 20px;
        border-radius: 22px;
    }

    .why-incident-row {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 14px;
        padding: 22px 18px;
        border-radius: 22px;
    }

    .incident-number {
        align-self: auto;
        font-size: 0.82rem;
        letter-spacing: 0.12em;
    }

    .incident-copy {
        padding-left: 0;
    }

    .incident-copy::before {
        display: none;
    }

    .incident-copy h3 {
        font-size: clamp(1.48rem, 7vw, 2.05rem);
    }

    .incident-copy p {
        font-size: 0.98rem;
        line-height: 1.62;
    }

    .incident-signal {
        justify-self: start;
        margin-top: 2px;
    }

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

    .why-principle-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .why-principle-row h3 {
        font-size: clamp(1.55rem, 7vw, 2.1rem);
    }
}

/* Why page: grounded fragmentation narrative. */
.page-why .why-problem {
    display: grid;
    grid-template-columns: minmax(280px, 0.78fr) minmax(520px, 1.22fr);
    gap: clamp(58px, 7vw, 104px);
    align-items: start;
    max-width: 1180px;
    margin-inline: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.why-problem-intro {
    position: sticky;
    top: 140px;
    max-width: 520px;
}

.why-problem-intro h2 {
    margin-top: 18px;
    font-size: clamp(3.6rem, 5.8vw, 6.8rem);
    line-height: 0.9;
}

.why-problem-intro p:not(.eyebrow) {
    max-width: 470px;
    margin-top: 30px;
    color: rgba(245, 240, 232, 0.62);
    font-size: clamp(1.04rem, 1.15vw, 1.18rem);
    line-height: 1.72;
}

.why-fragmentation-board {
    display: grid;
    gap: 28px;
    padding: clamp(28px, 3.2vw, 42px);
    border: 1px solid rgba(255, 255, 255, 0.085);
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(255, 253, 248, 0.034), rgba(255, 253, 248, 0.01)),
        rgba(12, 12, 12, 0.82);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.page-why .why-lines {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 0;
    color: rgba(245, 240, 232, 0.7);
    font-family: var(--sans);
    font-size: 0.82rem;
    line-height: 1.2;
}

.page-why .why-lines span {
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.025);
}

.why-friction {
    display: grid;
    gap: 10px;
    padding-block: 6px;
}

.page-why .why-pull,
.page-why .why-pull.secondary,
.page-why .why-pull.tertiary {
    margin: 0;
    padding: 18px 22px;
    color: rgba(245, 240, 232, 0.9);
    font-family: var(--serif);
    font-size: clamp(1.85rem, 3vw, 3.1rem);
    line-height: 0.98;
    border: 1px solid rgba(215, 195, 163, 0.13);
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(255, 253, 248, 0.035), rgba(255, 253, 248, 0.01)),
        rgba(8, 8, 8, 0.54);
    box-shadow: none;
}

.page-why .why-pull.secondary,
.page-why .why-pull.tertiary {
    color: rgba(245, 240, 232, 0.72);
    font-size: clamp(1.45rem, 2.35vw, 2.35rem);
}

.why-problem-copy {
    display: grid;
    gap: 16px;
    color: rgba(245, 240, 232, 0.62);
    font-size: 1rem;
    line-height: 1.68;
}

.why-problem-copy p {
    margin: 0;
}

@media (max-width: 768px) {
    .page-why .why-problem {
        grid-template-columns: 1fr;
        gap: 44px;
        max-width: none;
    }

    .why-problem-intro {
        position: static;
        max-width: none;
    }

    .why-problem-intro h2 {
        font-size: clamp(3.25rem, 13vw, 4.75rem);
    }

    .why-fragmentation-board {
        padding: 22px;
        border-radius: 26px;
    }

    .page-why .why-lines {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 9px;
    }

    .page-why .why-lines span {
        min-height: 42px;
        padding-inline: 12px;
    }
}

@media (max-width: 380px) {
    .page-why .why-lines {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .site-nav {
        gap: 0;
        padding: calc(env(safe-area-inset-top) + 118px) var(--mobile-page-pad) max(28px, calc(env(safe-area-inset-bottom) + 28px));
        background:
            radial-gradient(circle at 78% 8%, rgba(105, 132, 166, 0.14), transparent 19rem),
            radial-gradient(circle at 8% 94%, rgba(185, 154, 99, 0.09), transparent 20rem),
            linear-gradient(180deg, rgba(7, 8, 8, 0.992), rgba(2, 2, 2, 0.998) 78%);
    }

    .site-nav::before {
        content: "OMNISANT";
        margin-bottom: 22px;
        color: rgba(255, 253, 248, 0.88);
        font-size: 0.92rem;
        letter-spacing: 0.42em;
    }

    .site-nav::after {
        content: "Private operational infrastructure";
        margin: -14px 0 18px;
        color: rgba(215, 195, 163, 0.62);
        font-size: 0.66rem;
        letter-spacing: 0.20em;
    }

    .site-nav a,
    .site-nav a:not(.nav-cta) {
        position: relative;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-areas:
            "kicker arrow"
            "title arrow"
            "copy arrow";
        gap: 5px 18px;
        padding: 18px 2px 18px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.085);
        color: rgba(245, 240, 232, 0.92);
        font-family: Inter, Arial, sans-serif;
        letter-spacing: 0;
    }

    .site-nav a:not(.nav-cta):hover,
    .site-nav a:not(.nav-cta):focus-visible {
        color: var(--warm-white);
    }

    .site-nav .nav-kicker,
    .site-nav .nav-copy,
    .site-nav .nav-arrow,
    .site-nav .mobile-label {
        display: block;
    }

    .site-nav .desktop-label {
        display: none;
    }

    .site-nav .nav-kicker {
        grid-area: kicker;
        color: rgba(215, 195, 163, 0.76);
        font-size: 0.68rem;
        font-weight: 700;
        letter-spacing: 0.18em;
        line-height: 1.25;
        text-transform: uppercase;
    }

    .site-nav .nav-title {
        grid-area: title;
        color: var(--ivory);
        font-family: var(--serif);
        font-size: clamp(1.92rem, 8.2vw, 2.55rem);
        font-weight: 600;
        line-height: 0.96;
        letter-spacing: 0;
    }

    .site-nav .nav-copy {
        grid-area: copy;
        max-width: 20rem;
        color: rgba(245, 240, 232, 0.58);
        font-size: 0.88rem;
        font-weight: 500;
        line-height: 1.45;
    }

    .site-nav .nav-arrow {
        grid-area: arrow;
        align-self: center;
        color: rgba(215, 195, 163, 0.66);
        font-family: Inter, Arial, sans-serif;
        font-size: 1.15rem;
        font-weight: 400;
        transition: transform 180ms ease, color 180ms ease;
    }

    .site-nav a:not(.nav-cta):hover .nav-arrow,
    .site-nav a:not(.nav-cta):focus-visible .nav-arrow {
        color: var(--champagne);
        transform: translateX(3px);
    }

    .site-nav .login-link {
        margin: 0;
    }

    .site-nav .nav-cta {
        display: flex;
        justify-content: space-between;
        min-height: 64px;
        margin-top: 22px;
        padding: 0 22px 0 26px;
        border: 1px solid rgba(215, 195, 163, 0.62);
        background: linear-gradient(135deg, rgba(226, 208, 174, 0.98), rgba(199, 170, 114, 0.94));
        box-shadow: inset 0 1px 0 rgba(255, 253, 248, 0.22);
        color: var(--obsidian);
        font-size: 0.98rem;
        letter-spacing: 0.01em;
    }

    .site-nav .nav-cta .mobile-label {
        display: block;
    }

    .site-nav .nav-cta .nav-arrow {
        display: block;
        color: rgba(9, 9, 9, 0.78);
        font-size: 1.05rem;
    }

    .nav-toggle[aria-expanded="true"] {
        border-color: rgba(215, 195, 163, 0.34);
        background: rgba(255, 255, 255, 0.045);
        box-shadow: none;
    }
}

/* Membership refinement pass: quieter hierarchy, more room, less SaaS density. */
.page-platform .section,
.page-operations .section,
.page-daily-operations .section,
.page-why .section,
.page-security .section,
.page-pricing .section {
    padding-block: clamp(128px, 12vw, 178px);
}

.page-platform .page-hero,
.page-operations .page-hero,
.page-daily-operations .page-hero,
.page-why .page-hero,
.page-security .page-hero,
.page-pricing .page-hero {
    min-height: clamp(640px, 78vh, 820px);
    padding-bottom: clamp(96px, 10vw, 150px);
}

.page-platform .section-heading,
.page-operations .section-heading,
.page-daily-operations .section-heading,
.page-why .section-heading,
.page-security .section-heading,
.page-pricing .section-heading {
    max-width: 900px;
    margin-bottom: clamp(48px, 5vw, 76px);
}

.page-platform .split,
.page-platform .visual-split,
.page-operations .split,
.page-operations .visual-split,
.page-daily-operations .split,
.page-daily-operations .visual-split,
.page-security .split,
.page-pricing .split,
.page-login .login-layout {
    gap: clamp(72px, 8vw, 112px);
}

.page-platform .cinematic-band {
    min-height: clamp(620px, 74vh, 780px);
    align-items: center;
    border-block: 1px solid rgba(255, 255, 255, 0.07);
    background:
        radial-gradient(circle at 72% 42%, rgba(105, 132, 166, 0.10), transparent 31rem),
        radial-gradient(circle at 18% 64%, rgba(215, 195, 163, 0.055), transparent 26rem),
        linear-gradient(180deg, rgba(255, 255, 255, 0.012), transparent 54%);
}

.page-platform .network-orbit {
    opacity: 0.88;
}

.household-system {
    position: relative;
    width: min(100%, 760px);
    min-height: 600px;
    margin-inline: auto;
    border: 0;
    border-radius: 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 50%, rgba(215, 195, 163, 0.105), transparent 12rem),
        radial-gradient(ellipse at 56% 56%, rgba(105, 132, 166, 0.075), transparent 25rem);
    box-shadow: none;
}

.household-system::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(88%, 640px);
    aspect-ratio: 1.28 / 1;
    border: 1px solid rgba(245, 240, 232, 0.05);
    border-radius: 999px;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.system-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    color: rgba(215, 195, 163, 0.16);
}

.system-lines circle,
.system-lines path {
    fill: none;
    stroke: currentColor;
    stroke-width: 1;
    vector-effect: non-scaling-stroke;
}

.system-lines .inner {
    color: rgba(245, 240, 232, 0.12);
}

.system-lines .outer {
    color: rgba(245, 240, 232, 0.07);
}

.system-lines .system-spoke {
    color: rgba(215, 195, 163, 0.16);
}

.system-lines .system-frame {
    color: rgba(245, 240, 232, 0.065);
    stroke-dasharray: 3 7;
}

.system-node {
    position: absolute;
    width: auto;
    width: 158px;
    min-width: 158px;
    min-height: 92px;
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    align-items: center;
    justify-items: start;
    gap: 8px 12px;
    padding: 17px 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(255, 253, 248, 0.04), rgba(255, 253, 248, 0.012)),
        rgba(13, 13, 13, 0.9);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.035),
        0 20px 46px rgba(0, 0, 0, 0.28);
}

.system-icon {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
    grid-column: 1;
    grid-row: 1 / span 2;
    color: rgba(215, 195, 163, 0.62);
    fill: none;
    stroke: currentColor;
    stroke-width: 1.55;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.system-node span {
    grid-column: 2;
    color: rgba(245, 240, 232, 0.82);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.system-node strong {
    grid-column: 2;
    display: block;
    color: rgba(255, 253, 248, 0.88);
    font-size: 1rem;
    font-weight: 650;
    line-height: 1.15;
}

.system-node small {
    grid-column: 2;
    color: rgba(245, 240, 232, 0.52);
    font-size: 0.73rem;
    font-weight: 500;
    line-height: 1.35;
}

.system-core {
    inset: 50% auto auto 50%;
    width: 172px;
    min-width: 172px;
    min-height: 172px;
    transform: translate(-50%, -50%);
    display: grid;
    justify-items: center;
    align-content: center;
    grid-template-columns: 1fr;
    gap: 7px;
    text-align: center;
    border-radius: 999px;
    border-color: rgba(215, 195, 163, 0.34);
    background:
        radial-gradient(circle at 50% 50%, rgba(215, 195, 163, 0.14), transparent 72%),
        rgba(12, 12, 12, 0.92);
    box-shadow:
        inset 0 0 0 1px rgba(255, 253, 248, 0.035),
        0 22px 64px rgba(0, 0, 0, 0.34);
}

.system-core .system-icon {
    grid-column: auto;
    grid-row: auto;
    width: 22px;
    height: 22px;
    color: rgba(215, 195, 163, 0.68);
}

.system-core span {
    grid-column: auto;
    color: rgba(215, 195, 163, 0.78);
    font-size: 0.74rem;
    letter-spacing: 0.16em;
}

.system-core strong {
    display: block;
    grid-column: auto;
    max-width: 118px;
    margin-top: 5px;
    color: rgba(245, 240, 232, 0.68);
    font-size: 0.82rem;
    font-weight: 560;
    line-height: 1.3;
}

.system-core small {
    display: none;
}

.system-people { top: 34px; left: 50%; transform: translateX(-50%); }
.system-places { top: 118px; right: 18px; }
.system-events { right: 18px; bottom: 118px; }
.system-requests { bottom: 82px; left: 50%; transform: translateX(-50%); }
.system-services { left: 18px; bottom: 118px; }
.system-procurement { top: 118px; left: 18px; }

.system-caption {
    position: absolute;
    left: 50%;
    width: min(86%, 430px);
    bottom: 18px;
    margin: 0;
    color: rgba(245, 240, 232, 0.6);
    font-size: 0.92rem;
    line-height: 1.5;
    text-align: center;
    transform: translateX(-50%);
}

.capability-section {
    display: grid;
    grid-template-columns: minmax(280px, 0.78fr) minmax(520px, 1.22fr);
    gap: clamp(58px, 7vw, 104px);
    align-items: start;
}

.capability-intro {
    position: sticky;
    top: 140px;
    max-width: 520px;
}

.capability-intro h2 {
    margin-top: 18px;
    font-size: clamp(3.4rem, 5.4vw, 6.4rem);
    line-height: 0.9;
}

.capability-intro p:not(.eyebrow) {
    max-width: 470px;
    margin-top: 28px;
    color: var(--muted-text);
    font-size: clamp(1.04rem, 1.2vw, 1.18rem);
    line-height: 1.65;
}

.capability-list {
    display: grid;
    gap: 12px;
}

.capability-row {
    min-height: 132px;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) 34px;
    gap: 24px;
    align-items: center;
    padding: 24px 26px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(255, 253, 248, 0.038), rgba(255, 253, 248, 0.01)),
        rgba(14, 14, 14, 0.82);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
    transition:
        border-color var(--motion-med) var(--ease),
        background var(--motion-med) var(--ease),
        transform var(--motion-med) var(--ease);
}

.capability-row:hover {
    border-color: rgba(215, 195, 163, 0.2);
    background:
        linear-gradient(180deg, rgba(215, 195, 163, 0.045), rgba(255, 253, 248, 0.012)),
        rgba(17, 17, 17, 0.88);
    transform: translateY(-2px);
}

.capability-number {
    color: rgba(215, 195, 163, 0.7);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.capability-row h3 {
    margin: 0;
    color: rgba(245, 240, 232, 0.94);
    font-size: clamp(1.35rem, 1.55vw, 1.75rem);
    line-height: 1.05;
}

.capability-row p {
    max-width: 560px;
    margin: 9px 0 0;
    color: rgba(245, 240, 232, 0.58);
    font-size: 0.96rem;
    line-height: 1.52;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.capability-arrow {
    justify-self: end;
    color: rgba(215, 195, 163, 0.42);
    font-size: 1rem;
    line-height: 1;
}

.module-architecture {
    display: grid;
    gap: clamp(44px, 5vw, 70px);
}

.module-architecture .section-heading {
    max-width: 860px;
    margin-inline: auto;
    text-align: center;
}

.module-architecture .section-heading p:not(.eyebrow) {
    max-width: 660px;
    margin: 26px auto 0;
    color: var(--muted-text);
    font-size: clamp(1.04rem, 1.2vw, 1.16rem);
    line-height: 1.65;
}

.module-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.module-card {
    min-height: 168px;
    display: grid;
    align-content: space-between;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(255, 253, 248, 0.038), rgba(255, 253, 248, 0.012)),
        rgba(14, 14, 14, 0.82);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
    transition:
        border-color var(--motion-med) var(--ease),
        background var(--motion-med) var(--ease),
        transform var(--motion-med) var(--ease);
}

.module-card:hover {
    border-color: rgba(215, 195, 163, 0.2);
    background:
        linear-gradient(180deg, rgba(215, 195, 163, 0.04), rgba(255, 253, 248, 0.012)),
        rgba(17, 17, 17, 0.88);
    transform: translateY(-2px);
}

.module-card span {
    color: rgba(215, 195, 163, 0.7);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.module-card h3 {
    margin: 0;
    color: rgba(245, 240, 232, 0.94);
    font-size: clamp(1.18rem, 1.45vw, 1.5rem);
    line-height: 1.05;
}

.workflow-section {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(520px, 1.28fr);
    gap: clamp(58px, 7vw, 104px);
    align-items: start;
}

.workflow-intro {
    max-width: 520px;
}

.workflow-intro h2 {
    margin-top: 18px;
    font-size: clamp(3.4rem, 5.4vw, 6.2rem);
    line-height: 0.9;
}

.workflow-list {
    display: grid;
    gap: 12px;
}

.workflow-row {
    min-height: 132px;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) 34px;
    gap: 24px;
    align-items: center;
    padding: 24px 26px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(255, 253, 248, 0.038), rgba(255, 253, 248, 0.01)),
        rgba(14, 14, 14, 0.82);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
    transition:
        border-color var(--motion-med) var(--ease),
        background var(--motion-med) var(--ease),
        transform var(--motion-med) var(--ease);
}

.workflow-row:hover {
    border-color: rgba(215, 195, 163, 0.2);
    background:
        linear-gradient(180deg, rgba(215, 195, 163, 0.04), rgba(255, 253, 248, 0.012)),
        rgba(17, 17, 17, 0.88);
    transform: translateY(-2px);
}

.workflow-number {
    color: rgba(215, 195, 163, 0.7);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.workflow-row h3 {
    margin: 0;
    color: rgba(245, 240, 232, 0.94);
    font-size: clamp(1.35rem, 1.55vw, 1.75rem);
    line-height: 1.05;
}

.workflow-row p {
    max-width: 560px;
    margin: 9px 0 0;
    color: rgba(245, 240, 232, 0.58);
    font-size: 0.96rem;
    line-height: 1.52;
}

.workflow-arrow {
    justify-self: end;
    color: rgba(215, 195, 163, 0.42);
    font-size: 1rem;
    line-height: 1;
}

.platform-cta {
    padding-block: clamp(82px, 9vw, 124px);
    background:
        radial-gradient(circle at 50% 0%, rgba(215, 195, 163, 0.06), transparent 28rem),
        rgba(9, 9, 9, 0.88);
    border-color: rgba(255, 255, 255, 0.095);
}

.page-platform .card-grid.six,
.page-security .card-grid.six {
    gap: clamp(22px, 2.5vw, 34px);
}

.page-platform .lux-card,
.page-security .lux-card,
.page-operations .lux-card,
.page-daily-operations .lux-card,
.page-pricing .pricing-card {
    border-color: rgba(255, 255, 255, 0.095);
    background:
        linear-gradient(180deg, rgba(255, 253, 248, 0.042), rgba(255, 253, 248, 0.012)),
        rgba(15, 15, 15, 0.84);
}

.page-platform .lux-card:hover,
.page-security .lux-card:hover,
.page-operations .lux-card:hover,
.page-daily-operations .lux-card:hover,
.page-pricing .pricing-card:hover {
    border-color: rgba(215, 195, 163, 0.22);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.065),
        0 42px 100px rgba(0, 0, 0, 0.36);
}

.page-operations .dashboard-frame,
.page-daily-operations .dashboard-frame,
.page-platform .mini-dashboard {
    margin-block: 12px;
    transform: none;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.07),
        0 48px 130px rgba(0, 0, 0, 0.48);
}

.page-operations .visual-split,
.page-daily-operations .visual-split {
    align-items: center;
}

.page-why .page-hero {
    background:
        radial-gradient(circle at 74% 22%, rgba(105, 132, 166, 0.09), transparent 30rem),
        linear-gradient(180deg, rgba(255, 255, 255, 0.012), rgba(9, 9, 9, 0.98));
}

.page-why .why-lines {
    gap: 16px 28px;
    margin-bottom: clamp(42px, 5vw, 72px);
}

.page-why .why-pull {
    margin: clamp(44px, 6vw, 82px) 0;
    border-color: rgba(215, 195, 163, 0.15);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.042), rgba(255, 255, 255, 0.012)),
        rgba(10, 10, 10, 0.64);
}

.page-why .example-card {
    padding-block: clamp(34px, 4vw, 54px);
}

.page-security {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px),
        #060606;
    background-size: 110px 110px;
}

.page-security .page-hero {
    background:
        radial-gradient(circle at 80% 18%, rgba(105, 132, 166, 0.075), transparent 31rem),
        linear-gradient(180deg, rgba(4, 4, 4, 0.98), rgba(7, 7, 7, 0.96));
}

.page-security .security-hero .hero-content {
    max-width: 940px;
}

.page-security .security-hero h1 {
    max-width: 11.5ch;
}

.page-security .security-hero .hero-copy {
    max-width: 690px;
    color: rgba(245, 240, 232, 0.68);
    font-size: clamp(1.08rem, 1.25vw, 1.24rem);
    line-height: 1.68;
}

.security-principles {
    max-width: 1060px;
    margin-inline: auto;
}

.security-principles .section-heading {
    max-width: 820px;
}

.security-principles .section-heading p:not(.eyebrow) {
    max-width: 700px;
    color: rgba(245, 240, 232, 0.64);
    font-size: clamp(1.02rem, 1.1vw, 1.16rem);
    line-height: 1.7;
}

.security-principle-list {
    display: grid;
    margin-top: clamp(42px, 5vw, 70px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.security-principle-row {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: clamp(18px, 3vw, 36px);
    padding: clamp(26px, 3vw, 38px) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.security-principle-row > span {
    color: rgba(215, 195, 163, 0.72);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.security-principle-row h3 {
    margin: 0 0 10px;
    color: rgba(255, 253, 248, 0.94);
    font-family: var(--serif);
    font-size: clamp(1.8rem, 2.7vw, 2.7rem);
    line-height: 1;
}

.security-principle-row p {
    max-width: 720px;
    margin: 0;
    color: rgba(245, 240, 232, 0.62);
    font-size: clamp(1rem, 1.05vw, 1.1rem);
    line-height: 1.68;
}

.page-security .section-number {
    color: rgba(215, 195, 163, 0.105);
}

.security-visibility .section-copy p {
    font-size: clamp(1.02rem, 1.08vw, 1.15rem);
    line-height: 1.72;
}

.page-security .final-cta {
    background:
        linear-gradient(120deg, rgba(105, 132, 166, 0.055), transparent 46%),
        rgba(9, 9, 9, 0.86);
    border-color: rgba(255, 255, 255, 0.11);
}

.page-pricing .page-hero {
    background:
        radial-gradient(circle at 18% 24%, rgba(215, 195, 163, 0.075), transparent 31rem),
        radial-gradient(circle at 86% 70%, rgba(105, 132, 166, 0.08), transparent 32rem),
        linear-gradient(115deg, rgba(7, 7, 7, 0.99), rgba(16, 16, 16, 0.9));
}

.page-pricing .pricing-grid {
    gap: clamp(24px, 3vw, 38px);
}

.page-pricing .pricing-card {
    min-height: 560px;
    padding: clamp(34px, 3vw, 46px);
}

.page-pricing .pricing-card.featured {
    border-color: rgba(215, 195, 163, 0.28);
    background:
        linear-gradient(180deg, rgba(215, 195, 163, 0.055), rgba(255, 253, 248, 0.012)),
        rgba(17, 17, 17, 0.88);
}

.page-pricing .plan,
.page-pricing .price {
    color: rgba(245, 240, 232, 0.94);
}

.page-login {
    background:
        radial-gradient(circle at 15% 15%, rgba(215, 195, 163, 0.055), transparent 28rem),
        radial-gradient(circle at 85% 78%, rgba(105, 132, 166, 0.08), transparent 30rem),
        #060606;
}

.page-login .login-layout {
    max-width: 1120px;
    min-height: 100svh;
    align-items: center;
    gap: clamp(28px, 4vw, 58px);
}

.page-login .brand-panel {
    min-height: 590px;
    justify-content: space-between;
    padding: clamp(34px, 4vw, 52px);
    background:
        linear-gradient(145deg, rgba(255, 253, 248, 0.045), transparent 38%),
        rgba(12, 12, 12, 0.88);
    border-color: rgba(255, 255, 255, 0.105);
}

.page-login .login-access-panel h2 {
    max-width: 8.4ch;
    font-size: clamp(3.8rem, 5.6vw, 6.2rem);
    line-height: 0.92;
}

.page-login .login-access-panel p:not(.eyebrow) {
    max-width: 440px;
    margin-top: 24px;
    color: rgba(245, 240, 232, 0.64);
    font-size: clamp(1rem, 1.05vw, 1.12rem);
    line-height: 1.68;
}

.access-points {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.access-points li {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 999px;
    color: rgba(245, 240, 232, 0.7);
    background: rgba(255, 255, 255, 0.022);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.page-login .login-card {
    padding: clamp(38px, 4vw, 58px);
    background:
        linear-gradient(180deg, rgba(255, 253, 248, 0.052), rgba(255, 253, 248, 0.014)),
        rgba(13, 13, 13, 0.9);
    border-color: rgba(255, 255, 255, 0.11);
}

.page-login .login-card h1 {
    font-size: clamp(3.6rem, 5.6vw, 5.8rem);
    line-height: 0.95;
}

.page-login .login-card .hero-copy {
    max-width: 420px;
    margin-top: 12px;
    color: rgba(245, 240, 232, 0.62);
    font-size: 1.02rem;
    line-height: 1.62;
}

.sso-stack {
    display: grid;
    gap: 12px;
    margin: 28px 0 20px;
}

.sso-button {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 13px 18px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 18px;
    color: rgba(255, 253, 248, 0.9);
    background: rgba(255, 255, 255, 0.026);
    transition: border-color var(--motion), background var(--motion), transform var(--motion);
}

.sso-button:hover {
    transform: translateY(-1px);
    border-color: rgba(215, 195, 163, 0.18);
    background: rgba(255, 255, 255, 0.038);
}

.sso-button span {
    font-weight: 700;
}

.sso-button small {
    color: rgba(245, 240, 232, 0.52);
    font-size: 0.78rem;
}

.login-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 22px 0;
    color: rgba(215, 195, 163, 0.68);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.login-divider::before,
.login-divider::after {
    content: "";
    height: 1px;
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
}

.page-login .login-card form {
    display: grid;
    gap: 17px;
}

.page-login .login-card input[type="email"],
.page-login .login-card input[type="password"] {
    min-height: 58px;
}

.login-secondary-row {
    margin-top: 16px;
}

.contact-form .form-grid > .message-field {
    grid-column: 1 / -1 !important;
}

.contact-form .form-grid > .message-field textarea {
    width: 100%;
}

.button-primary,
.site-nav .nav-cta {
    background: linear-gradient(135deg, rgba(219, 204, 174, 0.96), rgba(193, 166, 116, 0.92));
    box-shadow: inset 0 1px 0 rgba(255, 253, 248, 0.22);
}

@media (max-width: 768px) {
    .page-platform .section,
    .page-operations .section,
    .page-daily-operations .section,
    .page-why .section,
    .page-security .section,
    .page-pricing .section {
        padding-block: clamp(96px, 22vw, 128px);
    }

    .page-platform .page-hero,
    .page-operations .page-hero,
    .page-daily-operations .page-hero,
    .page-why .page-hero,
    .page-security .page-hero,
    .page-pricing .page-hero {
        min-height: auto;
        padding-bottom: max(92px, calc(env(safe-area-inset-bottom) + 76px));
    }

    .page-platform .visual-split,
    .page-operations .visual-split,
    .page-daily-operations .visual-split,
    .page-security .split,
    .page-pricing .split {
        gap: 54px;
    }

    .page-platform .cinematic-band {
        min-height: auto;
        gap: 58px;
    }

    .page-pricing .pricing-card {
        min-height: auto;
        padding: clamp(28px, 7vw, 36px);
    }

    .page-login .login-layout {
        width: min(100% - 48px, 560px);
        padding-top: calc(var(--mobile-header-height) + env(safe-area-inset-top) + 56px);
    }

    .page-security .security-hero h1 {
        max-width: 10.5ch;
    }

    .security-principle-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .security-principle-row h3 {
        font-size: clamp(1.55rem, 7vw, 2.1rem);
    }

    .page-login .brand-panel {
        display: none;
    }

    .page-login .login-card {
        padding: clamp(28px, 7vw, 38px);
    }

    .page-login .login-card h1 {
        font-size: clamp(3rem, 13vw, 4.35rem);
    }

    .sso-button {
        min-height: 60px;
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .site-nav {
        padding-top: calc(env(safe-area-inset-top) + 120px);
    }

    .site-nav::after {
        content: "PRIVATE HOUSEHOLD INFRASTRUCTURE";
    }

    .site-nav a,
    .site-nav a:not(.nav-cta) {
        padding-block: clamp(17px, 4.5vw, 22px);
    }
}

/* Final mobile navigation containment rail. Keep this after all earlier nav rules. */
@media (max-width: 768px) {
    .nav-toggle {
        top: calc(env(safe-area-inset-top) + 22px);
        right: var(--mobile-page-pad);
        width: 52px;
        height: 52px;
        border-color: rgba(245, 240, 232, 0.16);
        background:
            linear-gradient(145deg, rgba(28, 29, 29, 0.78), rgba(8, 8, 8, 0.74));
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.055),
            0 12px 30px rgba(0, 0, 0, 0.22);
    }

    .nav-toggle[aria-expanded="true"] {
        border-color: rgba(215, 195, 163, 0.2);
        background: rgba(14, 14, 14, 0.76);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    }

    .nav-toggle span {
        width: 19px;
        height: 1px;
        box-shadow: none;
    }

    .site-nav {
        gap: 0;
        align-items: stretch;
        padding:
            calc(env(safe-area-inset-top) + 108px)
            var(--mobile-page-pad)
            max(42px, calc(env(safe-area-inset-bottom) + 42px));
        overflow: hidden auto;
        background:
            radial-gradient(circle at 74% 8%, rgba(105, 132, 166, 0.105), transparent 18rem),
            radial-gradient(circle at 12% 92%, rgba(215, 195, 163, 0.055), transparent 18rem),
            linear-gradient(90deg, rgba(255, 255, 255, 0.016) 1px, transparent 1px),
            linear-gradient(180deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px),
            linear-gradient(180deg, rgba(8, 9, 9, 0.992), rgba(2, 2, 2, 0.998) 76%);
        background-size: auto, auto, 84px 84px, 84px 84px, auto;
    }

    .site-nav::before {
        content: "OMNISANT";
        flex: 0 0 auto;
        margin: 0 0 8px;
        color: rgba(255, 253, 248, 0.86);
        font-family: var(--sans);
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.44em;
        line-height: 1;
        white-space: nowrap;
    }

    .site-nav::after {
        content: "PRIVATE HOUSEHOLD INFRASTRUCTURE";
        flex: 0 0 auto;
        margin: 0 0 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.085);
        color: rgba(215, 195, 163, 0.52);
        font-family: var(--sans);
        font-size: 0.58rem;
        font-weight: 700;
        letter-spacing: 0.16em;
        line-height: 1.25;
        white-space: nowrap;
    }

    .site-nav a,
    .site-nav a:not(.nav-cta) {
        width: 100%;
        min-height: 92px;
        max-height: 92px;
        padding: 12px 0;
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) 34px;
        grid-template-rows: 12px 28px 28px;
        grid-template-areas:
            "kicker arrow"
            "title arrow"
            "copy arrow";
        column-gap: 18px;
        row-gap: 4px;
        align-items: center;
        border-top: 1px solid rgba(255, 255, 255, 0.075);
        overflow: hidden;
        color: rgba(245, 240, 232, 0.88);
        opacity: 1;
        transform: none;
        contain: layout paint;
    }

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

    .site-nav .nav-kicker {
        grid-area: kicker;
        align-self: end;
        min-width: 0;
        color: rgba(215, 195, 163, 0.58);
        font-family: var(--sans);
        font-size: 0.56rem;
        font-weight: 700;
        letter-spacing: 0.13em;
        line-height: 1;
        text-transform: uppercase;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .site-nav .nav-title {
        grid-area: title;
        align-self: center;
        min-width: 0;
        color: rgba(255, 253, 248, 0.95);
        font-family: var(--serif);
        font-size: clamp(1.48rem, 6.2vw, 1.86rem);
        font-weight: 500;
        line-height: 0.92;
        letter-spacing: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .site-nav .nav-copy {
        grid-area: copy;
        align-self: start;
        min-width: 0;
        max-width: 18rem;
        color: rgba(245, 240, 232, 0.56);
        font-family: var(--sans);
        font-size: 0.76rem;
        font-weight: 500;
        line-height: 1.24;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .site-nav .nav-arrow {
        grid-area: arrow;
        justify-self: end;
        align-self: center;
        width: 34px;
        color: rgba(215, 195, 163, 0.42);
        font-family: var(--sans);
        font-size: 0.98rem;
        line-height: 1;
        text-align: right;
        transform: none;
    }

    .site-nav a:not(.nav-cta):hover .nav-arrow,
    .site-nav a:not(.nav-cta):focus-visible .nav-arrow {
        color: rgba(215, 195, 163, 0.62);
        transform: none;
    }

    .site-nav .login-link {
        margin: 0;
    }

    .site-nav .nav-cta {
        flex: 0 0 auto;
        min-height: 62px;
        max-height: none;
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        margin-top: 22px;
        margin-bottom: max(8px, env(safe-area-inset-bottom));
        padding: 0 22px 0 24px;
        border-radius: 999px;
        border-color: rgba(215, 195, 163, 0.42);
        font-family: var(--sans);
        font-size: 0.95rem;
        font-weight: 600;
        letter-spacing: 0;
        overflow: visible;
        contain: none;
    }

    .site-nav .nav-cta .nav-arrow {
        display: block;
        width: auto;
        color: rgba(9, 9, 9, 0.62);
        font-size: 0.92rem;
    }
}

@media (max-width: 380px) {
    .site-nav {
        padding-top: calc(env(safe-area-inset-top) + 100px);
    }

    .site-nav a,
    .site-nav a:not(.nav-cta) {
        min-height: 88px;
        max-height: 88px;
        grid-template-columns: minmax(0, 1fr) 28px;
        grid-template-rows: 11px 26px 27px;
        column-gap: 14px;
        padding-block: 11px;
    }

    .site-nav .nav-title {
        font-size: clamp(1.36rem, 6.1vw, 1.66rem);
    }

    .site-nav .nav-copy {
        font-size: 0.72rem;
        line-height: 1.22;
    }

    .site-nav .nav-arrow {
        width: 28px;
        font-size: 0.9rem;
    }
}

/* Today page narrative pacing and operational structure. */
.page-daily-operations .today-overview {
    min-height: clamp(720px, 78vh, 860px);
    align-items: center;
    gap: clamp(84px, 8vw, 130px);
    border-top: 1px solid rgba(255, 255, 255, 0.055);
    border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}

.page-daily-operations .today-overview .section-copy {
    order: 1;
    max-width: 570px;
}

.page-daily-operations .today-overview .dashboard-frame {
    order: 2;
    margin: 0;
}

.page-daily-operations .today-overview .section-copy h2,
.page-daily-operations .today-theater .theater-copy h2,
.page-daily-operations .today-capabilities .capability-intro h2 {
    max-width: 620px;
    line-height: 0.9;
}

.page-daily-operations .today-overview .section-copy p:not(.eyebrow),
.page-daily-operations .today-theater .theater-copy p:not(.eyebrow),
.page-daily-operations .today-capabilities .capability-intro p:not(.eyebrow) {
    max-width: 520px;
    margin-top: 28px;
    color: rgba(245, 240, 232, 0.62);
    line-height: 1.72;
}

.page-daily-operations .dashboard-frame,
.page-daily-operations .theater-board {
    border-color: rgba(255, 255, 255, 0.095);
    background:
        linear-gradient(180deg, rgba(255, 253, 248, 0.035), rgba(255, 253, 248, 0.01)),
        rgba(13, 13, 13, 0.86);
}

.page-daily-operations .today-theater {
    min-height: clamp(740px, 82vh, 900px);
    grid-template-columns: minmax(300px, 0.72fr) minmax(560px, 1.28fr);
    gap: clamp(84px, 8vw, 132px);
    align-items: center;
}

.page-daily-operations .today-theater .theater-board {
    gap: 16px;
    padding: clamp(28px, 3vw, 42px);
    border-radius: 30px;
}

.page-daily-operations .today-theater .theater-lane {
    min-height: 82px;
    border-color: rgba(255, 255, 255, 0.085);
}

.page-daily-operations .today-capabilities {
    display: grid;
    grid-template-columns: minmax(280px, 0.74fr) minmax(520px, 1.26fr);
    gap: clamp(64px, 7vw, 112px);
    align-items: start;
}

.page-daily-operations .today-capabilities .capability-intro {
    position: sticky;
    top: 140px;
}

.page-daily-operations .today-capabilities .workflow-row {
    min-height: 142px;
}

.page-daily-operations .today-proof {
    display: grid;
    grid-template-columns: 0.32fr minmax(0, 1.05fr) minmax(280px, 0.78fr);
    gap: clamp(34px, 5vw, 82px);
    align-items: center;
    padding-block: clamp(112px, 11vw, 168px);
    border-top: 1px solid rgba(255, 255, 255, 0.055);
    border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}

.page-daily-operations .today-proof .section-number {
    color: rgba(215, 195, 163, 0.26);
}

.page-daily-operations .today-proof .section-copy p:not(.eyebrow) {
    max-width: 420px;
    color: rgba(245, 240, 232, 0.62);
    line-height: 1.7;
}

.page-daily-operations .today-cta {
    padding-block: clamp(84px, 9vw, 126px);
    background:
        radial-gradient(circle at 50% 0%, rgba(215, 195, 163, 0.055), transparent 28rem),
        rgba(9, 9, 9, 0.88);
    border-color: rgba(255, 255, 255, 0.095);
}

@media (max-width: 768px) {
    .page-daily-operations .today-overview,
    .page-daily-operations .today-theater,
    .page-daily-operations .today-capabilities,
    .page-daily-operations .today-proof {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: clamp(46px, 13vw, 68px);
        padding-block: clamp(104px, 24vw, 136px);
    }

    .page-daily-operations .today-overview .section-copy,
    .page-daily-operations .today-overview .dashboard-frame {
        order: 0;
    }

    .page-daily-operations .today-overview .section-copy {
        order: 1;
    }

    .page-daily-operations .today-overview .dashboard-frame {
        order: 2;
    }

    .page-daily-operations .today-overview .section-copy h2,
    .page-daily-operations .today-theater .theater-copy h2,
    .page-daily-operations .today-capabilities .capability-intro h2 {
        font-size: clamp(3.25rem, 13vw, 4.75rem);
    }

    .page-daily-operations .today-capabilities .capability-intro {
        position: static;
    }

    .page-daily-operations .today-capabilities .workflow-row {
        min-height: 156px;
    }

    .page-daily-operations .today-proof .section-number {
        font-size: clamp(4rem, 20vw, 6rem);
    }

    .page-daily-operations .today-cta {
        padding-block: clamp(72px, 18vw, 104px);
    }
}

@media (max-width: 768px) {
    .module-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .module-card {
        min-height: 132px;
        padding: 18px;
        border-radius: 18px;
    }

    .module-card h3 {
        font-size: 1.12rem;
    }

    .workflow-section {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .workflow-intro {
        max-width: none;
    }

    .workflow-intro h2 {
        font-size: clamp(3.25rem, 13vw, 4.75rem);
    }

    .workflow-row {
        min-height: 156px;
        grid-template-columns: 42px minmax(0, 1fr) 24px;
        gap: 14px;
        padding: 20px 18px;
        border-radius: 18px;
    }

    .workflow-number {
        font-size: 0.66rem;
        letter-spacing: 0.14em;
    }

    .workflow-row h3 {
        font-size: 1.18rem;
    }

    .workflow-row p {
        font-size: 0.86rem;
        line-height: 1.45;
    }

    .workflow-arrow {
        font-size: 0.9rem;
    }

    .platform-cta {
        padding-block: clamp(72px, 18vw, 104px);
    }

    .capability-section {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .capability-intro {
        position: static;
        max-width: none;
    }

    .capability-intro h2 {
        font-size: clamp(3.25rem, 13vw, 4.75rem);
    }

    .capability-row {
        min-height: 156px;
        grid-template-columns: 42px minmax(0, 1fr) 24px;
        gap: 14px;
        padding: 20px 18px;
        border-radius: 18px;
    }

    .capability-number {
        font-size: 0.66rem;
        letter-spacing: 0.14em;
    }

    .capability-row h3 {
        font-size: 1.18rem;
    }

    .capability-row p {
        font-size: 0.86rem;
        line-height: 1.45;
        -webkit-line-clamp: 3;
        line-clamp: 3;
    }

    .capability-arrow {
        font-size: 0.9rem;
    }

    .household-system {
        width: 100%;
        min-height: auto;
        display: grid;
        gap: 12px;
        padding: 22px;
        border-radius: 28px;
    }

    .household-system::before,
    .system-lines {
        display: none;
    }

    .system-node,
    .system-core,
    .system-people,
    .system-places,
    .system-services,
    .system-requests,
    .system-events,
    .system-procurement,
    .system-caption {
        position: static;
        width: 100%;
        min-height: auto;
        transform: none;
    }

    .system-core {
        min-height: 120px;
        margin-bottom: 4px;
        justify-items: start;
        text-align: left;
        border-color: rgba(215, 195, 163, 0.24);
    }

    .system-core strong {
        max-width: none;
    }

    .system-node {
        display: grid;
        grid-template-columns: 28px minmax(0, 0.88fr) minmax(0, 1.12fr);
        align-items: center;
        justify-items: start;
        gap: 14px;
        padding: 16px 17px;
        border-radius: 16px;
    }

    .system-node span {
        grid-column: 2;
        font-size: 0.62rem;
        letter-spacing: 0.15em;
    }

    .system-node strong {
        grid-column: 3;
        display: block;
        font-size: 0.82rem;
    }

    .system-node small {
        grid-column: 3;
        font-size: 0.74rem;
    }

    .system-node .system-icon {
        grid-column: 1;
        grid-row: 1;
        width: 18px;
        height: 18px;
    }

    .system-caption {
        margin-top: 8px;
        color: rgba(245, 240, 232, 0.62);
        font-size: 0.88rem;
        text-align: left;
    }
}

@media (max-width: 430px) {
    .household-system {
        padding: 18px;
    }

    .system-node {
        grid-template-columns: 26px 1fr;
        gap: 7px;
    }

    .system-node span,
    .system-node strong,
    .system-node small {
        grid-column: 2;
    }

    .system-node .system-icon {
        grid-row: 1 / span 2;
    }
}

/* Final footer refinement: tighter, editorial, and system-aligned. */
.site-footer {
    padding:
        clamp(58px, 6vw, 82px)
        clamp(32px, 4vw, 58px)
        clamp(34px, 3.5vw, 48px);
    background:
        radial-gradient(circle at 10% 18%, rgba(215, 195, 163, 0.055), transparent 22rem),
        linear-gradient(180deg, rgba(255, 253, 248, 0.012), transparent 36%),
        rgba(7, 7, 7, 0.96);
}

.site-footer::before {
    left: clamp(18px, 3.5vw, 50px);
    right: auto;
    top: clamp(42px, 4.8vw, 64px);
    font-size: clamp(6rem, 13vw, 13.6rem);
    opacity: 0.5;
}

.site-footer::after {
    height: 120px;
    background: radial-gradient(circle at 76% 0%, rgba(105, 132, 166, 0.075), transparent 38%);
}

.site-footer > div:first-child {
    width: min(360px, 32%);
    display: grid;
    align-content: start;
    gap: 18px;
}

.site-footer > div:first-child .wordmark {
    display: inline-block;
    margin-bottom: 0;
    font-size: 1.05rem;
    letter-spacing: 0.48em;
}

.site-footer > div:first-child p {
    max-width: 13rem;
    margin: 0;
    color: rgba(245, 240, 232, 0.82);
    font-family: var(--serif);
    font-size: clamp(1.85rem, 2.4vw, 2.7rem);
    line-height: 0.96;
}

.social-links {
    padding-top: 4px;
    gap: 9px;
}

.social-link {
    width: 38px;
    height: 38px;
    border-color: rgba(255, 255, 255, 0.105);
    background: rgba(255, 255, 255, 0.026);
}

.social-link svg {
    width: 17px;
    height: 17px;
}

.footer-grid {
    width: min(760px, 64%);
    margin-top: clamp(-120px, -8vw, -72px);
    margin-left: auto;
    padding-top: 0;
    border-top: 0;
    grid-template-columns: 0.8fr 1.45fr 0.8fr 0.65fr;
    gap: clamp(28px, 4vw, 64px);
}

.footer-grid nav {
    gap: 9px;
}

.footer-grid strong {
    margin-bottom: 7px;
    color: rgba(215, 195, 163, 0.78);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.footer-grid a {
    width: fit-content;
    color: rgba(245, 240, 232, 0.52);
    font-size: 0.9rem;
    line-height: 1.35;
}

.copyright {
    width: min(760px, 64%);
    margin-top: 34px;
    margin-left: auto;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.055);
    color: rgba(245, 240, 232, 0.44);
    font-size: 0.84rem;
}

/* Footer containment fix: use explicit grid placement instead of overlap-prone offsets. */
.site-footer {
    display: grid;
    grid-template-columns: minmax(240px, 0.82fr) minmax(0, 1.58fr);
    grid-template-areas:
        "brand links"
        "brand copy";
    column-gap: clamp(38px, 5vw, 72px);
    row-gap: 30px;
    align-items: start;
    overflow: hidden;
}

.site-footer > div:first-child {
    grid-area: brand;
    width: auto;
}

.footer-grid {
    grid-area: links;
    width: auto;
    margin: 0;
    min-width: 0;
    grid-template-columns: minmax(86px, 0.85fr) minmax(148px, 1.35fr) minmax(96px, 0.82fr) minmax(68px, 0.58fr);
    gap: clamp(18px, 2.8vw, 40px);
}

.footer-grid nav {
    min-width: 0;
}

.copyright {
    grid-area: copy;
    width: auto;
    margin: 0;
}

@media (max-width: 1050px) {
    .site-footer {
        grid-template-columns: 1fr;
        grid-template-areas:
            "brand"
            "links"
            "copy";
        row-gap: 28px;
    }

    .footer-grid {
        padding-top: 28px;
        border-top: 1px solid rgba(255, 255, 255, 0.075);
    }
}

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

    .connected-grid .lux-card {
        min-height: 220px;
    }

    .site-footer {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-areas:
            "brand"
            "links"
            "copy";
        padding:
            56px
            var(--mobile-page-pad)
            max(42px, calc(env(safe-area-inset-bottom) + 36px));
    }

    .site-footer::before {
        left: var(--mobile-page-pad);
        right: auto;
        top: 18px;
        max-width: none;
        font-size: clamp(4.4rem, 19vw, 6.2rem);
    }

    .site-footer > div:first-child {
        width: 100%;
        display: grid;
        gap: 16px;
    }

    .site-footer > div:first-child .wordmark {
        font-size: 1rem;
        letter-spacing: 0.34em;
        margin-bottom: 8px;
    }

    .site-footer > div:first-child p {
        max-width: 22rem;
        font-family: var(--serif);
        font-size: clamp(1.75rem, 8vw, 2.45rem);
        line-height: 0.98;
    }

    .social-links {
        padding-top: 0;
    }

    .footer-grid {
        width: 100%;
        margin-left: 0;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 24px;
        margin-top: 28px;
        padding-top: 26px;
        border-top: 1px solid rgba(255, 255, 255, 0.075);
    }

    .footer-grid nav {
        gap: 8px;
    }

    .footer-grid a {
        font-size: 0.9rem;
    }

    .copyright {
        width: 100%;
        margin-left: 0;
        margin-top: 28px;
        padding-top: 20px;
    }
}

/* Why page final rhythm: remove accidental dead-zone between narrative blocks. */
.page-why .why-scattered-section {
    padding-bottom: clamp(36px, 4vw, 64px);
}

.page-why .why-scattered-section + .why-built-section {
    padding-top: clamp(52px, 5vw, 82px);
}
