:root {
    --omanu-blue: #93A9B8;
    --omanu-blue-soft: #B5C8D5;
    --brand-navy: #0F1B33;
    --brand-navy-2: #1A2A4A;
    --brand-ink: #0A0A0B;
    --brand-ink-2: #15171B;
    --bg: #FFFFFF;
    --bg-inverse: #0A0A0B;
    --bg-muted: #F6F7F9;
    --surface-card: #FFFFFF;
    --surface-card-dk: #15171B;
    --fg1: #0A0A0B;
    --fg2: #3D414A;
    --fg3: #6B7280;
    --fg-on-dark-1: #FFFFFF;
    --fg-on-dark-2: #B7BCC6;
    --fg-on-dark-3: #8A91A0;
    --border: #E5E7EB;
    --border-strong: #0A0A0B;
    --border-on-dark: rgba(255, 255, 255, 0.08);
    --accent: var(--omanu-blue);
    --accent-fg: #FFFFFF;
    --check: #93A9B8;
    --link: #0A0A0B;
    --font-display: "Inter Tight", "Helvetica Neue", Helvetica, Arial, sans-serif;
    --font-body: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
    --font-mono: ui-monospace, SFMono-Regular, Menlo, monospace;
    --w-regular: 400;
    --w-medium: 500;
    --w-semibold: 600;
    --w-bold: 700;
    --w-black: 900;
    --fs-eyebrow: 0.78rem;
    --fs-meta: 0.875rem;
    --fs-body: 1.0625rem;
    --fs-lead: 1.25rem;
    --fs-h4: 1.5rem;
    --fs-h3: 2rem;
    --fs-h2: clamp(2.5rem, 4.5vw, 4rem);
    --fs-h1: clamp(3.5rem, 7vw, 6.5rem);
    --lh-tight: 1.02;
    --lh-snug: 1.15;
    --lh-body: 1.55;
    --lh-loose: 1.7;
    --tracking-eyebrow: 0.22em;
    --tracking-tight: -0.025em;
    --tracking-normal: 0;
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 24px;
    --space-6: 32px;
    --space-7: 48px;
    --space-8: 64px;
    --space-9: 96px;
    --space-10: 128px;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --radius-pill: 999px;
    --shadow-sm: 0 1px 2px rgba(10, 10, 11, 0.06);
    --shadow-md: 0 4px 14px rgba(10, 10, 11, 0.08);
    --shadow-lg: 0 18px 50px rgba(10, 10, 11, 0.12);
    --shadow-glow-teal: 0 0 0 6px rgba(147, 169, 184, 0.18);
    --ease-standard: cubic-bezier(0.2, 0.7, 0.2, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --dur-fast: 140ms;
    --dur-base: 220ms;
    --dur-slow: 420ms;
    --container-max: 1240px;
    --container-pad: 32px;
}

html {
    font-family: var(--font-body);
    color: var(--fg1);
}

body {
    font-size: var(--fs-body);
    line-height: var(--lh-body);
}

h1 {
    font-family: var(--font-display);
    font-weight: var(--w-black);
    font-size: var(--fs-h1);
    line-height: var(--lh-tight);
    letter-spacing: var(--tracking-tight);
    text-wrap: balance;
}

h2 {
    font-family: var(--font-display);
    font-weight: var(--w-black);
    font-size: var(--fs-h2);
    line-height: var(--lh-tight);
    letter-spacing: var(--tracking-tight);
    text-wrap: balance;
}

h3 {
    font-family: var(--font-display);
    font-weight: var(--w-bold);
    font-size: var(--fs-h3);
    line-height: var(--lh-snug);
    letter-spacing: -0.015em;
}

h4 {
    font-family: var(--font-display);
    font-weight: var(--w-bold);
    font-size: var(--fs-h4);
    line-height: var(--lh-snug);
}

.eyebrow {
    font-family: var(--font-body);
    font-weight: var(--w-medium);
    font-size: var(--fs-eyebrow);
    letter-spacing: var(--tracking-eyebrow);
    text-transform: uppercase;
    color: var(--fg3);
}

p {
    font-size: var(--fs-body);
    line-height: var(--lh-body);
    color: var(--fg2);
}

code, .mono {
    font-family: var(--font-mono);
    font-size: 0.95em;
}

.h-ghost {
    color: rgba(255, 255, 255, 0.45);
}

@media (min-width: 768px) {
    .finale__title {
        white-space: nowrap;
    }
}

.experience {
    overflow: hidden;
}

.experience > .container {
    position: relative;
    z-index: 1;
}

.experience__ambient {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.exp-hexes {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.exp-pt {
    position: absolute;
    bottom: -12px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #93A9B8;
    opacity: 0;
}

@media (prefers-reduced-motion: no-preference) {
    .exh {
        transform-box: fill-box;
        transform-origin: center;
        animation: exhFloat 11s ease-in-out infinite;
    }

    @keyframes exhFloat {
        0%, 100% {
            transform: translateY(0)
        }
        50% {
            transform: translateY(-16px)
        }
    }.exp-pt {
         animation: exptRise 15s linear infinite;
     }

    @keyframes exptRise {
        0% {
            transform: translateY(0);
            opacity: 0
        }
        12% {
            opacity: .55
        }
        86% {
            opacity: .55
        }
        100% {
            transform: translateY(-480px);
            opacity: 0
        }
    }
}

.exp-hexes {
    opacity: 0.45;
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    background: var(--brand-ink);
    color: var(--fg-on-dark-1);
    font-family: var(--font-body);
    font-size: var(--fs-body);
    line-height: var(--lh-body);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

a {
    color: inherit;
}

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

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

.page-decor {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.page-decor__hex {
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0ODAgMzIwIj4KICAKICA8ZGVmcz4KICAgIDxwYXR0ZXJuIGlkPSJoZXgiIHg9IjAiIHk9IjAiIHdpZHRoPSI2MCIgaGVpZ2h0PSI1MiIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+CiAgICAgIDxwb2x5Z29uIHBvaW50cz0iMzAsMiA1NiwxNiA1Niw0NCAzMCw1OCA0LDQ0IDQsMTYiIGZpbGw9Im5vbmUiIHN0cm9rZT0iIzFhNGE0YSIgc3Ryb2tlLXdpZHRoPSIwLjYiIG9wYWNpdHk9IjAuNTUiPjwvcG9seWdvbj4KICAgIDwvcGF0dGVybj4KICAgIDxyYWRpYWxHcmFkaWVudCBpZD0iZ2xvdyIgY3g9IjUwJSIgY3k9IjQwJSIgcj0iODAlIj4KICAgICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzBlMWEyNiI+PC9zdG9wPgogICAgICA8c3RvcCBvZmZzZXQ9IjYwJSIgc3RvcC1jb2xvcj0iIzA2MDkwZCI+PC9zdG9wPgogICAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiPjwvc3RvcD4KICAgIDwvcmFkaWFsR3JhZGllbnQ+CiAgPC9kZWZzPgogIDxyZWN0IHdpZHRoPSI0ODAiIGhlaWdodD0iMzIwIiBmaWxsPSJ1cmwoI2dsb3cpIj48L3JlY3Q+CiAgPHJlY3Qgd2lkdGg9IjQ4MCIgaGVpZ2h0PSIzMjAiIGZpbGw9InVybCgjaGV4KSI+PC9yZWN0PgogIAogIDxwb2x5Z29uIHBvaW50cz0iODAsNDAgMTA2LDU0IDEwNiw4MiA4MCw5NiA1NCw4MiA1NCw1NCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMkVCRkI3IiBzdHJva2Utd2lkdGg9IjEuMiIgb3BhY2l0eT0iMC43Ij48L3BvbHlnb24+CiAgPHBvbHlnb24gcG9pbnRzPSIzODAsMjYwIDQwNiwyNzQgNDA2LDMwMiAzODAsMzE2IDM1NCwzMDIgMzU0LDI3NCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMkVCRkI3IiBzdHJva2Utd2lkdGg9IjEuMiIgb3BhY2l0eT0iMC41NSI+PC9wb2x5Z29uPgo8L3N2Zz4=');
    background-size: 520px 360px;
    background-repeat: repeat;
    opacity: 0.22;
    mask-image: radial-gradient(60% 50% at 50% 30%, #000 0%, transparent 80%);
    -webkit-mask-image: radial-gradient(60% 50% at 50% 30%, #000 0%, transparent 80%);
    will-change: transform;
}

.page-decor__glow {
    position: absolute;
    width: 720px;
    height: 720px;
    filter: blur(60px);
    opacity: 0.55;
}

.page-decor__glow--tr {
    top: -260px;
    right: -260px;
    background: radial-gradient(circle at 50% 50%, rgba(147, 169, 184, 0.32), transparent 60%);
}

.page-decor__glow--bl {
    bottom: -300px;
    left: -300px;
    background: radial-gradient(circle at 50% 50%, rgba(147, 169, 184, 0.20), transparent 60%);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    line-height: 1;
    padding: 15px 26px;
    border-radius: var(--radius-pill);
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: transform var(--dur-fast) var(--ease-standard), background var(--dur-base) var(--ease-standard), border-color var(--dur-base) var(--ease-standard), box-shadow var(--dur-base) var(--ease-standard), color var(--dur-base) var(--ease-standard);
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn:active {
    transform: scale(0.98);
}

.btn--sm {
    padding: 10px 18px;
    font-size: 13px;
}

.btn--teal {
    background: var(--omanu-blue);
    color: #0A0A0B;
    box-shadow: 0 0 0 1px rgba(147, 169, 184, 0.4), 0 12px 30px -10px rgba(147, 169, 184, 0.55);
}

.btn--teal:hover {
    background: var(--omanu-blue-soft);
    box-shadow: 0 0 0 1px rgba(181, 200, 213, 0.6), 0 18px 36px -10px rgba(147, 169, 184, 0.7);
}

.btn--ghost-dark {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.18);
}

.btn--ghost-dark:hover {
    border-color: rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.04);
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 40px;
    transition: background var(--dur-base) var(--ease-standard), padding var(--dur-base) var(--ease-standard), border-color var(--dur-base) var(--ease-standard);
    border-bottom: 1px solid transparent;
}

.nav.is-solid {
    background: rgba(10, 10, 11, 0.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 14px 40px;
    border-bottom-color: rgba(255, 255, 255, 0.06);
}

.nav__brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
}

.nav__mark {
    flex: 0 0 auto;
}

.nav__wordmark {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.02em;
}

.nav__pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
}

.nav__link {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 9px 16px;
    border-radius: var(--radius-pill);
    transition: color var(--dur-fast), background var(--dur-fast);
}

.nav__link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.hero {
    position: relative;
    min-height: 100vh;
    padding: 160px 0 120px;
    display: flex;
    align-items: center;
    isolation: isolate;
    overflow: hidden;
}

.hero__inner {
    position: relative;
    z-index: 2;
    margin: 0 auto;
    max-width: 980px;
    padding: 0 var(--container-pad);
    text-align: center;
}

.hero__eyebrow {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 22px;
}

.hero__title {
    font-family: var(--font-display);
    font-weight: 900;
    margin: 0;
    line-height: 0.95;
    letter-spacing: -0.04em;
}

.hero__title-main {
    display: block;
    font-size: clamp(5rem, 13vw, 12rem);
    color: var(--omanu-blue);
    text-shadow: 0 0 50px rgba(147, 169, 184, 0.45);
}

.hero__title-ghost {
    display: block;
    margin-top: 18px;
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.45);
}

.hero__lead {
    margin: 32px auto 0;
    max-width: 56ch;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.78);
}

.hero__lead em {
    font-style: normal;
    color: #fff;
    font-weight: 600;
}

.hero__cta {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 38px;
}

.hero__accent-dot {
    position: absolute;
    top: 32%;
    right: 24%;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--omanu-blue);
    box-shadow: 0 0 0 6px rgba(147, 169, 184, 0.18), 0 0 22px rgba(147, 169, 184, 0.6);
    z-index: 2;
    animation: dot-pulse 2.6s ease-in-out infinite;
}

@keyframes dot-pulse {
    0%, 100% {
        box-shadow: 0 0 0 6px rgba(147, 169, 184, 0.18), 0 0 22px rgba(147, 169, 184, 0.5);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 14px rgba(147, 169, 184, 0.06), 0 0 36px rgba(147, 169, 184, 0.9);
        transform: scale(1.15);
    }
}

.hero__orbit {
    position: absolute;
    top: -180px;
    right: -180px;
    width: 720px;
    height: 720px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.85;
    will-change: transform;
    transition: opacity var(--dur-slow) var(--ease-standard);
}

.hero__hexcluster {
    position: absolute;
    bottom: -40px;
    left: -60px;
    width: 360px;
    height: 460px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.95;
    will-change: transform;
    transform-style: preserve-3d;
    transition: transform 400ms var(--ease-out);
}

.hero__hexcluster .hex {
    pointer-events: visibleStroke;
    transform-origin: center;
    transform-box: fill-box;
    opacity: calc(0.32 + var(--prox, 0) * 0.68);
    stroke-width: calc(1 + var(--prox, 0) * 1.4);
    filter: drop-shadow(0 0 calc(var(--prox, 0) * 14px) rgba(147, 169, 184, calc(var(--prox, 0) * 0.85)));
    transition: opacity 240ms var(--ease-standard), stroke-width 240ms var(--ease-standard), filter 240ms var(--ease-standard), transform 280ms var(--ease-standard);
}

.hero__hexcluster .hex:hover {
    --prox: 1;
    transform: scale(1.08);
}

.hero__hexcluster:has(.hex:hover) .hex {
    transform: scale(1.03);
}

.hero__hexcluster:has(.hex:hover) .hex:hover {
    transform: scale(1.1);
}

.socials {
    position: absolute;
    top: 50%;
    left: 28px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 14px;
    list-style: none;
    margin: 0;
    padding: 0;
    z-index: 3;
}

.socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: background var(--dur-fast), color var(--dur-fast), border-color var(--dur-fast), transform var(--dur-fast);
}

.socials a:hover {
    color: var(--omanu-blue);
    border-color: rgba(147, 169, 184, 0.5);
    background: rgba(147, 169, 184, 0.08);
    transform: translateX(2px);
}

.section {
    position: relative;
    z-index: 1;
    padding: 120px 0;
}

.section__head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 22px;
}

.section__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2rem, 3.4vw, 2.8rem);
    letter-spacing: -0.025em;
    margin: 0;
    color: #fff;
}

.cap-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 32px;
}

.cap {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cap__media {
    position: relative;
    aspect-ratio: 16/10;
    border-radius: var(--radius-lg);
    background: linear-gradient(160deg, #15171B 0%, #0d0f12 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 22px;
    overflow: hidden;
    transition: transform var(--dur-base) var(--ease-standard), border-color var(--dur-base) var(--ease-standard);
}

.cap__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(80% 60% at 50% 0%, rgba(147, 169, 184, 0.10), transparent 70%);
    pointer-events: none;
}

.cap:hover .cap__media {
    transform: translateY(-4px);
    border-color: rgba(147, 169, 184, 0.35);
}

.cap__media-inner {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.cap__chip {
    align-self: flex-start;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 6px 10px;
    border-radius: var(--radius-pill);
    background: rgba(147, 169, 184, 0.12);
    color: var(--omanu-blue);
    border: 1px solid rgba(147, 169, 184, 0.35);
}

.cap__chip--green {
    background: rgba(147, 169, 184, 0.15);
}

.cap__bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 999px;
    overflow: hidden;
}

.cap__bar span {
    display: block;
    height: 100%;
    background: var(--omanu-blue);
    border-radius: 999px;
}

.cap__meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
}

.cap__meta-num {
    font-family: var(--font-mono);
    color: #fff;
    font-weight: 600;
}

.cap__verdict {
    margin-top: 6px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.78);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-pill);
    padding: 7px 12px;
}

.cap__verdict strong {
    color: var(--omanu-blue);
    font-weight: 700;
}

.cap__verdict-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--omanu-blue);
    box-shadow: 0 0 0 4px rgba(147, 169, 184, 0.18);
}

.cap__plan-list {
    gap: 8px;
}

.cap__plan-item {
    display: grid;
    grid-template-columns:16px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 9px 12px;
    border-radius: 10px;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.62);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.cap__plan-item.is-done {
    color: rgba(255, 255, 255, 0.42);
    text-decoration: line-through;
    text-decoration-color: rgba(255, 255, 255, 0.2);
}

.cap__plan-item.is-active {
    color: #fff;
    background: rgba(147, 169, 184, 0.08);
    border-color: rgba(147, 169, 184, 0.30);
}

.cap__check {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: var(--omanu-blue);
}

.cap__plan-item.is-done .cap__check {
    border-color: var(--omanu-blue);
    background: rgba(147, 169, 184, 0.15);
}

.cap__check--active {
    border-color: var(--omanu-blue);
    background: radial-gradient(circle, var(--omanu-blue) 0 4px, transparent 5px);
}

.cap__plan-meta {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.42);
}

.cap__media--legal .cap__media-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 14px;
}

.cap__doc {
    flex: 1;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.cap__doc--alt {
    transform: translateY(20px);
    opacity: 0.75;
}

.cap__doc-tag {
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
}

.cap__doc-line {
    height: 5px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 999px;
}

.cap__doc-stamp {
    margin-top: 6px;
    align-self: flex-start;
    font-size: 11px;
    color: var(--omanu-blue);
    border: 1px solid rgba(147, 169, 184, 0.4);
    padding: 3px 9px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.cap__doc-stamp-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--omanu-blue);
}

.cap__media--market .cap__media-inner {
    gap: 16px;
}

.cap__chart {
    width: 100%;
    height: auto;
    margin-top: -10px;
}

.cap__locs {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cap__loc {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.72);
}

.cap__loc em {
    margin-left: auto;
    font-style: normal;
    font-family: var(--font-mono);
    color: var(--omanu-blue);
}

.cap__loc-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--omanu-blue);
    box-shadow: 0 0 0 3px rgba(147, 169, 184, 0.18);
}

.cap__loc-dot--soft {
    background: rgba(255, 255, 255, 0.5);
    box-shadow: none;
}

.cap__body {
    padding: 0 4px;
}

.cap__title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.015em;
    margin: 0 0 10px;
    color: #fff;
}

.cap__tags {
    list-style: none;
    margin: 0 0 10px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cap__tags li {
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cap__text {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.62);
}

.direction {
    padding: 90px 0 110px;
}

.direction .container {
    max-width: 1080px;
    text-align: center;
}

.direction__eyebrow {
    font-size: 12.5px;
    letter-spacing: 0.32em;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 24px;
    text-align: center;
}

.direction__text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.6rem, 2.6vw, 2.4rem);
    line-height: 1.25;
    letter-spacing: -0.018em;
    margin: 0;
    color: #fff;
    text-wrap: balance;
    text-align: center;
}

.t-strike {
    text-decoration: line-through;
    text-decoration-color: rgba(255, 255, 255, 0.35);
    text-decoration-thickness: 2px;
    color: rgba(255, 255, 255, 0.5);
}

.t-accent {
    color: var(--omanu-blue);
}

.direction__cta {
    margin-top: 40px;
    display: inline-flex;
}

.compare {
    margin: 56px auto 0;
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 20px;
    max-width: 920px;
    text-align: left;
}

.compare-card {
    border-radius: var(--radius-lg);
    padding: 28px 28px 32px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    transition: transform var(--dur-base) var(--ease-standard);
}

.compare-card:hover {
    transform: translateY(-3px);
}

.compare-card--other {
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.compare-card--us {
    background: #fff;
    color: #0A0A0B;
    box-shadow: 0 24px 60px -20px rgba(147, 169, 184, 0.35);
    position: relative;
}

.compare-card--us::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(160deg, rgba(147, 169, 184, 0.7), transparent 60%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.compare-card__head {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.compare-card__kicker {
    margin: 0;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--fg3);
}

.compare-card--other .compare-card__kicker {
    color: rgba(255, 255, 255, 0.4);
}

.compare-card__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 26px;
    letter-spacing: -0.02em;
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: inherit;
}

.compare-card--us .compare-card__title {
    color: #0A0A0B;
}

.compare-card__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.compare-card__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15.5px;
    line-height: 1.5;
}

.compare-card--us .compare-card__list li {
    color: #1f242c;
}

.compare-card__mark {
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    margin-top: 1px;
}

.compare-card__mark--neg {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.compare-card__mark--pos {
    background: rgba(147, 169, 184, 0.16);
    color: var(--omanu-blue);
    border: 1px solid rgba(147, 169, 184, 0.45);
}

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

.section--how {
    padding-top: 60px;
}

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

.step {
    position: relative;
    padding: 0 32px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.step:first-child {
    padding-left: 0;
}

.step:last-child {
    padding-right: 0;
    border-right: 0;
}

.step__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(147, 169, 184, 0.10);
    border: 1px solid rgba(147, 169, 184, 0.32);
    color: var(--omanu-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
}

.step__num {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

.step__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -0.015em;
    color: #fff;
    margin: 0;
}

.step__body {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
}

.marquee {
    position: relative;
    z-index: 1;
    padding: 28px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.015);
    overflow: hidden;
    white-space: nowrap;
}

.marquee__track {
    display: inline-flex;
    align-items: center;
    gap: 40px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(1.4rem, 2.4vw, 2rem);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    animation: marquee 32s linear infinite;
    padding-left: 40px;
}

.marquee__track span:nth-child(4n+1) {
    color: #fff;
}

.marquee__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--omanu-blue);
    flex: 0 0 10px;
    display: inline-block;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.finale {
    position: relative;
    z-index: 1;
    padding: 140px 0 160px;
    text-align: center;
    overflow: hidden;
    isolation: isolate;
}

.finale__art {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -42%);
    width: 760px;
    height: 760px;
    z-index: -1;
    opacity: 0.5;
    pointer-events: none;
    animation: finale-breathe 9s ease-in-out infinite;
}

.finale__inner {
    position: relative;
    z-index: 1;
    max-width: 940px;
}

.finale__eyebrow {
    font-size: 13px;
    letter-spacing: 0.32em;
    color: rgba(255, 255, 255, 0.55);
    margin: 0 0 22px;
}

.finale__title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(2.6rem, 6vw, 5rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
    margin: 0;
    color: #fff;
}

.t-ghost {
    color: rgba(255, 255, 255, 0.45);
}

.finale__lead {
    margin: 28px auto 36px;
    max-width: 52ch;
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.72);
}

.finale__form {
    display: flex;
    gap: 8px;
    max-width: 480px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-pill);
    padding: 6px;
}

.finale__form input {
    flex: 1;
    background: transparent;
    border: 0;
    outline: none;
    padding: 12px 18px;
    color: #fff;
    font-family: inherit;
    font-size: 15px;
}

.finale__form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.finale__form:focus-within {
    border-color: rgba(147, 169, 184, 0.5);
    box-shadow: 0 0 0 4px rgba(147, 169, 184, 0.10);
}

.finale__fineprint {
    margin: 18px 0 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.42);
}

.footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 30px 0;
    background: #0a0a0b;
}

.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.footer__brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 700;
    color: #fff;
}

.footer__copy {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.48);
}

.footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-flex;
    gap: 22px;
}

.footer__links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}

.footer__links a:hover {
    color: var(--omanu-blue);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }

    .marquee__track {
        animation: none;
    }
}

.problem {
    padding: 140px 0 120px;
    text-align: center;
}

.problem__inner {
    max-width: 820px;
    margin: 0 auto;
}

.problem__eyebrow {
    font-size: 12.5px;
    letter-spacing: 0.32em;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 24px;
}

.problem__title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
    margin: 0;
    color: #fff;
}

.problem__body {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 64ch;
    margin-left: auto;
    margin-right: auto;
}

.problem__body p {
    margin: 0;
    font-size: 17.5px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.72);
    text-wrap: pretty;
}

.problem__punch {
    margin-top: 8px !important;
    font-size: 19px !important;
    color: #fff !important;
}

.problem__punch em {
    font-style: italic;
    color: var(--omanu-blue);
    font-weight: 600;
}

.raw {
    padding: 90px 0 110px;
    position: relative;
}

.raw::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(147, 169, 184, 0.04), transparent);
    pointer-events: none;
}

.raw__grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
}

.raw__col--head {
    position: sticky;
    top: 100px;
}

.raw__eyebrow {
    font-size: 12.5px;
    letter-spacing: 0.32em;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 18px;
}

.raw__title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(2.2rem, 4.4vw, 3.6rem);
    line-height: 1.02;
    letter-spacing: -0.028em;
    margin: 0;
    color: #fff;
}

.raw__lead {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(1.2rem, 1.8vw, 1.5rem);
    line-height: 1.35;
    color: #fff;
    margin: 0 0 22px;
    letter-spacing: -0.012em;
}

.raw__text {
    margin: 0 0 28px;
    font-size: 16px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.7);
}

.raw__bullets {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.raw__bullets li {
    display: flex;
    gap: 12px;
    align-items: baseline;
    font-size: 15.5px;
    color: rgba(255, 255, 255, 0.85);
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
}

.raw__check {
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(147, 169, 184, 0.15);
    color: var(--omanu-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    border: 1px solid rgba(147, 169, 184, 0.4);
}

@media (max-width: 880px) {
    .raw__grid {
        grid-template-columns:1fr;
        gap: 36px;
    }

    .raw__col--head {
        position: static;
    }
}

.experience {
    padding: 120px 0;
}

.experience__grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 72px;
    align-items: center;
}

.experience__eyebrow {
    font-size: 12.5px;
    letter-spacing: 0.32em;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 22px;
}

.experience__title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.02;
    letter-spacing: -0.028em;
    margin: 0 0 28px;
    color: #fff;
}

.experience__lead {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 19px;
    line-height: 1.45;
    margin: 0 0 18px;
    color: #fff;
    letter-spacing: -0.01em;
}

.experience__text {
    margin: 0 0 32px;
    font-size: 16px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.65);
}

.experience__stats {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 18px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.experience__stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.experience__stat-num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 28px;
    letter-spacing: -0.02em;
    color: var(--omanu-blue);
}

.experience__stat-label {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.experience__media {
    position: relative;
    aspect-ratio: 5/4;
    border-radius: var(--radius-xl);
    background: radial-gradient(60% 80% at 70% 30%, rgba(147, 169, 184, 0.10), transparent 70%), linear-gradient(160deg, #15171B 0%, #0c0e11 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    padding: 24px;
}

.experience__media-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 24px 24px;
    background-position: 12px 12px;
    pointer-events: none;
}

.experience__lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.experience__node {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--omanu-blue);
    box-shadow: 0 0 0 4px rgba(147, 169, 184, 0.18);
}

.experience__node--a {
    top: 22%;
    left: 12%;
}

.experience__node--b {
    top: 76%;
    left: 18%;
    animation: node-pulse 3s ease-in-out infinite;
}

.experience__node--c {
    top: 38%;
    right: 14%;
    animation: node-pulse 4s ease-in-out infinite -1s;
}

.experience__node--d {
    top: 70%;
    right: 26%;
}

@keyframes node-pulse {
    0%, 100% {
        box-shadow: 0 0 0 4px rgba(147, 169, 184, 0.18);
    }
    50% {
        box-shadow: 0 0 0 9px rgba(147, 169, 184, 0.05);
    }
}

.experience__card {
    position: absolute;
    background: rgba(15, 17, 21, 0.92);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 12px;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    box-shadow: 0 12px 28px -10px rgba(0, 0, 0, 0.6);
    min-width: 180px;
    max-width: 230px;
}

.experience__card-tag {
    margin: 0;
    font-size: 10.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.experience__card-body {
    margin: 0;
    font-size: 13px;
    color: #fff;
    line-height: 1.4;
}

.experience__card-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.78);
}

.experience__card-list li {
    position: relative;
    padding-left: 12px;
}

.experience__card-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--omanu-blue);
}

.experience__card--1 {
    top: 14%;
    left: 6%;
    transform: rotate(-2deg);
}

.experience__card--2 {
    top: 30%;
    right: 6%;
    transform: rotate(1.5deg);
}

.experience__card--3 {
    bottom: 8%;
    left: 14%;
    transform: rotate(-1deg);
}

.experience__pill {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: var(--radius-pill);
    background: rgba(147, 169, 184, 0.15);
    color: var(--omanu-blue);
    border: 1px solid rgba(147, 169, 184, 0.4);
}

@media (max-width: 880px) {
    .experience__grid {
        grid-template-columns:1fr;
        gap: 48px;
    }

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

.mission {
    padding: 100px 0 120px;
}

.mission__grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 72px;
    align-items: center;
}

.mission__art {
    position: relative;
    aspect-ratio: 1/1;
    max-width: 520px;
    width: 100%;
    margin: 0 auto;
}

.mission__art svg {
    width: 100%;
    height: 100%;
}

.mission__eyebrow {
    font-size: 12.5px;
    letter-spacing: 0.32em;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 22px;
}

.mission__title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(2rem, 4.2vw, 3.4rem);
    line-height: 1.02;
    letter-spacing: -0.028em;
    margin: 0 0 24px;
    color: #fff;
}

.mission__lead {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 19px;
    line-height: 1.45;
    color: #fff;
    margin: 0 0 16px;
}

.mission__text {
    margin: 0 0 32px;
    font-size: 16px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 880px) {
    .mission__grid {
        grid-template-columns:1fr;
        gap: 48px;
    }

    .mission__art {
        order: -1;
        max-width: 400px;
    }
}

.cursor-ring, .cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    will-change: transform;
    opacity: 0;
}

.cursor-ring {
    width: 30px;
    height: 30px;
    border: 1.5px solid rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    transition: width 240ms var(--ease-out), height 240ms var(--ease-out), border-color 200ms var(--ease-out), background 200ms var(--ease-out), opacity 200ms;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--omanu-blue);
    border-radius: 50%;
    box-shadow: 0 0 14px rgba(147, 169, 184, 0.7);
    transition: opacity 200ms, transform 0ms;
}

body.has-custom-cursor .cursor-ring, body.has-custom-cursor .cursor-dot {
    opacity: 1;
}

body.cursor-on-link .cursor-ring {
    width: 56px;
    height: 56px;
    border-color: var(--omanu-blue);
    background: rgba(147, 169, 184, 0.10);
    border-width: 1.5px;
}

body.cursor-on-link .cursor-dot {
    opacity: 0;
}

body.cursor-pressing .cursor-ring {
    width: 22px;
    height: 22px;
    background: rgba(147, 169, 184, 0.18);
}

@media (hover: hover) and (pointer: fine) {
    body.has-custom-cursor, body.has-custom-cursor a, body.has-custom-cursor button, body.has-custom-cursor input, body.has-custom-cursor textarea, body.has-custom-cursor [role="button"] {
        cursor: none;
    }

    body.has-custom-cursor input, body.has-custom-cursor textarea {
        cursor: text;
    }
}

@media not all and (hover: hover),(pointer: coarse) {
    .cursor-ring, .cursor-dot {
        display: none;
    }
}

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

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

    .step {
        border-right: 0;
        padding: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        padding-bottom: 28px;
    }

    .step:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }

    .socials {
        display: none;
    }

    .nav__pill {
        display: none;
    }

    .hero__orbit {
        width: 480px;
        height: 480px;
        top: -120px;
        right: -180px;
    }

    .hero__hexcluster {
        display: none;
    }

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

@media (max-width: 640px) {
    .nav {
        padding: 16px 20px;
    }

    .container {
        padding: 0 20px;
    }

    .hero {
        padding: 130px 0 80px;
    }

    .finale__form {
        flex-direction: column;
        padding: 10px;
        border-radius: 18px;
    }

    .finale__form .btn {
        width: 100%;
    }
}

.nav__hamburger {
    display: none;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 10px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0;
}

.nav__hamburger span {
    display: block;
    width: 18px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform .2s, opacity .2s;
}

.nav.is-open .nav__hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav.is-open .nav__hamburger span:nth-child(2) {
    opacity: 0;
}

.nav.is-open .nav__hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 980px) {
    .nav__cta {
        display: none;
    }

    .nav__hamburger {
        display: inline-flex;
    }

    .nav__pill {
        display: none;
    }

    .nav.is-open .nav__pill {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 72px;
        left: 16px;
        right: 16px;
        padding: 18px;
        gap: 6px;
        background: rgba(10, 10, 11, 0.96);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 18px;
        z-index: 60;
    }

    .nav.is-open .nav__pill .nav__link {
        padding: 12px 16px;
        text-align: center;
    }
}

.footer {
    display: block !important;
    visibility: visible !important;
    position: relative;
    z-index: 5;
}

.footer__inner {
    justify-content: space-between;
}

@media (max-width: 640px) {
    .footer {
        padding: 24px 0 32px;
    }

    .footer__inner {
        flex-direction: column;
        gap: 12px;
        justify-content: center;
        text-align: center;
    }
}

/* ============================================================
   What Omanu Does — per-card hover animations
   ============================================================ */

/* (1) Idea Validation — bars pulse, verdict dot pops */
.cap__media--validate .cap__bar span {
    transform-origin: left center;
}

.cap:hover .cap__media--validate .cap__bar:nth-of-type(2) span {
    animation: cap-bar-grow 1.5s var(--ease-out) both;
}

.cap:hover .cap__media--validate .cap__bar:nth-of-type(4) span {
    animation: cap-bar-shrink 1.5s var(--ease-out) 0.15s both;
}

@keyframes cap-bar-grow {
    0% {
        transform: scaleX(0.45);
    }
    55% {
        transform: scaleX(1.18);
    }
    100% {
        transform: scaleX(1);
    }
}

@keyframes cap-bar-shrink {
    0% {
        transform: scaleX(1.4);
    }
    55% {
        transform: scaleX(0.55);
    }
    100% {
        transform: scaleX(1);
    }
}

.cap__media--validate .cap__verdict-dot {
    transition: transform 200ms var(--ease-out);
}

.cap:hover .cap__media--validate .cap__verdict-dot {
    animation: cap-verdict-pop 1.2s var(--ease-out) 0.4s;
}

@keyframes cap-verdict-pop {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 4px rgba(147, 169, 184, 0.18);
    }
    50% {
        transform: scale(1.5);
        box-shadow: 0 0 0 12px rgba(147, 169, 184, 0.04);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 4px rgba(147, 169, 184, 0.18);
    }
}

.cap__media--validate .cap__meta-num {
    transition: color 200ms, transform 200ms;
}

.cap:hover .cap__media--validate .cap__meta-num {
    color: var(--omanu-blue);
    transform: translateY(-1px);
}

/* (2) Personalized Action Plan — strike-through cascade */
.cap__media--plan .cap__plan-item {
    position: relative;
}

.cap__media--plan .cap__plan-item::after {
    content: "";
    position: absolute;
    left: 40px;
    right: 55px;
    top: 50%;
    height: 1.5px;
    background: linear-gradient(90deg, rgba(147, 169, 184, 0.9), rgba(147, 169, 184, 0.4));
    transform: scaleX(0);
    transform-origin: left center;
    pointer-events: none;
    border-radius: 2px;
}

.cap:hover .cap__media--plan .cap__plan-item:nth-child(3)::after {
    animation: cap-strike 0.55s var(--ease-out) 0.05s forwards;
}

.cap:hover .cap__media--plan .cap__plan-item:nth-child(4)::after {
    animation: cap-strike 0.55s var(--ease-out) 0.55s forwards;
}

.cap:hover .cap__media--plan .cap__plan-item:nth-child(5)::after {
    animation: cap-strike 0.55s var(--ease-out) 1.05s forwards;
}

@keyframes cap-strike {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

.cap__media--plan .cap__plan-item .cap__check {
    transition: background 280ms var(--ease-out), border-color 280ms var(--ease-out);
}

.cap:hover .cap__media--plan .cap__plan-item:nth-child(3) .cap__check {
    background: rgba(147, 169, 184, 0.15);
    border-color: var(--omanu-blue);
    transition-delay: 0.20s;
}

.cap:hover .cap__media--plan .cap__plan-item:nth-child(4) .cap__check {
    background: rgba(147, 169, 184, 0.15);
    border-color: var(--omanu-blue);
    transition-delay: 0.70s;
}

.cap:hover .cap__media--plan .cap__plan-item:nth-child(5) .cap__check {
    background: rgba(147, 169, 184, 0.15);
    border-color: var(--omanu-blue);
    transition-delay: 1.20s;
}

.cap__media--plan .cap__plan-item:not(.is-done):not(.is-active) {
    transition: color 280ms var(--ease-out);
}

.cap:hover .cap__media--plan .cap__plan-item:nth-child(4) {
    color: rgba(255, 255, 255, 0.42);
    transition-delay: 0.70s;
}

.cap:hover .cap__media--plan .cap__plan-item:nth-child(5) {
    color: rgba(255, 255, 255, 0.42);
    transition-delay: 1.20s;
}

/* (3) Legal & Compliance — doc lines redraw, Filed stamp drops in */
.cap__media--legal .cap__doc-line {
    transform-origin: left center;
}

.cap:hover .cap__media--legal .cap__doc-line {
    animation: cap-line-draw 0.65s var(--ease-out) both;
}

.cap:hover .cap__media--legal .cap__doc:first-child .cap__doc-line:nth-of-type(2) {
    animation-delay: 0.10s;
}

.cap:hover .cap__media--legal .cap__doc:first-child .cap__doc-line:nth-of-type(3) {
    animation-delay: 0.20s;
}

.cap:hover .cap__media--legal .cap__doc:first-child .cap__doc-line:nth-of-type(4) {
    animation-delay: 0.30s;
}

.cap:hover .cap__media--legal .cap__doc--alt .cap__doc-line:nth-of-type(2) {
    animation-delay: 0.55s;
}

.cap:hover .cap__media--legal .cap__doc--alt .cap__doc-line:nth-of-type(3) {
    animation-delay: 0.70s;
}

@keyframes cap-line-draw {
    0% {
        transform: scaleX(0);
        opacity: 0.35;
    }
    100% {
        transform: scaleX(1);
        opacity: 1;
    }
}

.cap__media--legal .cap__doc-stamp {
    transform-origin: center;
}

.cap:hover .cap__media--legal .cap__doc-stamp {
    animation: cap-stamp-drop 0.55s var(--ease-out) 0.55s both;
}

@keyframes cap-stamp-drop {
    0% {
        transform: translateY(-22px) scale(1.7) rotate(-14deg);
        opacity: 0;
    }
    60% {
        transform: translateY(3px) scale(0.92) rotate(3deg);
        opacity: 1;
    }
    100% {
        transform: translateY(0) scale(1) rotate(0);
        opacity: 1;
    }
}

.cap__media--legal .cap__doc-stamp-dot {
    transition: box-shadow 240ms;
}

.cap:hover .cap__media--legal .cap__doc-stamp-dot {
    animation: cap-stamp-pulse 1.2s ease-in-out 1.1s infinite;
}

@keyframes cap-stamp-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(147, 169, 184, 0.5);
    }
    50% {
        box-shadow: 0 0 0 5px rgba(147, 169, 184, 0);
    }
}

.cap__media--legal .cap__doc--alt {
    transition: transform 420ms var(--ease-out), opacity 320ms var(--ease-out);
}

.cap:hover .cap__media--legal .cap__doc--alt {
    transform: translateY(8px);
    opacity: 1;
}

/* (4) Market & Location Research — chart bobs, line redraws, city dots pulse */
.cap__media--market .cap__chart {
    transform-origin: center;
    will-change: transform;
}

.cap:hover .cap__media--market .cap__chart {
    animation: cap-chart-bob 2.4s ease-in-out infinite;
}

@keyframes cap-chart-bob {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.cap__media--market .cap__chart path:nth-of-type(2) {
    stroke-dasharray: 380;
    stroke-dashoffset: 0;
}

.cap:hover .cap__media--market .cap__chart path:nth-of-type(2) {
    animation: cap-chart-draw 1.3s var(--ease-out) both;
}

@keyframes cap-chart-draw {
    0% {
        stroke-dashoffset: 380;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

.cap__media--market .cap__chart circle:nth-of-type(2) {
    transform-origin: 170px 48px;
    transform-box: fill-box;
}

.cap:hover .cap__media--market .cap__chart circle:nth-of-type(2) {
    animation: cap-chart-halo 1.8s ease-in-out infinite;
}

@keyframes cap-chart-halo {
    0%, 100% {
        transform: scale(1);
        opacity: 0.18;
    }
    50% {
        transform: scale(1.8);
        opacity: 0.05;
    }
}

.cap__media--market .cap__loc-dot {
    transition: box-shadow 240ms, transform 240ms;
}

.cap:hover .cap__media--market .cap__loc:nth-child(1) .cap__loc-dot {
    animation: cap-loc-pulse 1.6s ease-in-out 0s infinite;
}

.cap:hover .cap__media--market .cap__loc:nth-child(2) .cap__loc-dot {
    animation: cap-loc-pulse 1.6s ease-in-out 0.25s infinite;
}

.cap:hover .cap__media--market .cap__loc:nth-child(3) .cap__loc-dot {
    animation: cap-loc-pulse 1.6s ease-in-out 0.5s infinite;
}

@keyframes cap-loc-pulse {
    0%, 100% {
        box-shadow: 0 0 0 3px rgba(147, 169, 184, 0.18);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(147, 169, 184, 0.02);
        transform: scale(1.25);
    }
}

.cap:hover .cap__media--market .cap__loc em {
    color: #fff;
    transition: color 300ms;
}

/* ============================================================
   Scroll reveal — blur-to-clear on enter (set --reveal via JS)
   ============================================================ */
.scroll-reveal {
    --reveal: 0;
    filter: blur(calc((1 - var(--reveal)) * 12px));
    opacity: calc(0.4 + var(--reveal) * 0.6);
    transform: translate3d(0, calc((1 - var(--reveal)) * 24px), 0);
    will-change: filter, opacity, transform;
}

@media (prefers-reduced-motion: reduce) {
    .scroll-reveal {
        --reveal: 1 !important;
        filter: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

.marquee__track.js-scroll {
    animation: none !important;
    will-change: transform;
}

/* ============================================================
   GSAP section stacking — Experience / Mission / Finale
   ============================================================ */
.experience, .mission, .finale {
    position: relative;
    background: var(--brand-ink);
}

.experience {
    z-index: 2;
}

.mission {
    z-index: 3;
}

.finale {
    z-index: 4;
}


/* ============================================================
   About Page
   ============================================================ */

.nav__link.is-current {
    color: var(--omanu-blue);
}

/* SAME section title as homepage */
.section__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2rem, 3.4vw, 2.8rem);
    letter-spacing: -0.025em;
    margin: 0;
    color: #fff;
    line-height: 1.08;
}

/* ============================================================
ABOUT HERO — same vocabulary as homepage hero, different content
============================================================ */
.about-hero {
    position: relative;
    padding: 170px 0 110px;
    display: flex;
    align-items: center;
    isolation: isolate;
    overflow: hidden;
}

.about-hero__inner {
    position: relative;
    z-index: 2;
    margin: 0 auto;
    max-width: 980px;
    padding: 0 var(--container-pad);
    text-align: center;
}

.about-hero__eyebrow {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 22px;
}

.about-hero__title {
    font-family: var(--font-display);
    font-weight: 900;
    margin: 0;
    line-height: 1;
    letter-spacing: -0.035em;
    font-size: clamp(2.8rem, 6vw, 5rem);
    color: #fff;
    text-wrap: balance;
}

.about-hero__title-ghost {
    display: block;
    margin-top: 6px;
    color: #93a9b8;
}

.about-hero__lead {
    margin: 32px auto 0;
    max-width: 56ch;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.78);
}

.about-hero__accent-dot {
    position: absolute;
    top: 38%;
    right: 22%;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--omanu-blue);
    box-shadow: 0 0 0 6px rgba(147, 169, 184, 0.18), 0 0 22px rgba(147, 169, 184, 0.6);
    z-index: 2;
    animation: dot-pulse 2.6s ease-in-out infinite;
}

.about-hero__orbit {
    position: absolute;
    top: -180px;
    right: -180px;
    width: 720px;
    height: 720px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.85;
    will-change: transform;
}

.about-hero__hex {
    position: absolute;
    bottom: -40px;
    left: -60px;
    width: 360px;
    height: 460px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.85;
}

/* ============================================================
ABOUT SECTION COMPOSITIONS — same typography, different layouts
============================================================ */
.about-section {
    position: relative;
    z-index: 1;
    padding: 120px 0;
}

.about-body {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.about-body p {
    margin: 0;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.74);
}

.about-body .punch {
    color: #fff;
    font-weight: 500;
    font-size: 19px;
}

/* Layout A: Flipped 2-col (body left, head right sticky) */
.about-flip__grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 80px;
    align-items: start;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

.about-flip__head {
    position: sticky;
    top: 100px;
    align-self: start;
    order: 2;
}

.about-flip__head .section__title {
    margin-top: 20px;
}

.about-flip__body {
    order: 1;
}

@media (max-width: 880px) {
    .about-flip__grid {
        grid-template-columns:1fr;
        gap: 32px;
    }

    .about-flip__head {
        position: static;
        order: 0;
    }

    .about-flip__body {
        order: 1;
    }
}

/* Layout B: Centered narrow column, LEFT-aligned text */
.about-narrow {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

.about-narrow .section__title {
    margin-top: 20px;
}

.about-narrow .about-body {
    margin-top: 36px;
}

/* Layout C: Centered narrow column, CENTER-aligned text + inline emphasis */
.about-center {
    text-align: center;
}

.about-center .about-body p {
    margin-left: auto;
    margin-right: auto;
    max-width: 60ch;
}

.about-emphasis {
    font-family: var(--font-display) !important;
    font-weight: 700 !important;
    font-size: clamp(1.25rem, 2vw, 1.65rem) !important;
    line-height: 1.3 !important;
    letter-spacing: -0.015em !important;
    color: #fff !important;
    margin: 18px auto !important;
    max-width: none !important;
}

.about-emphasis .t-accent {
    color: var(--omanu-blue);
}

/* Layout D: Standard 2-col sticky (head left, body right) with vertical step list */
.about-split__grid {
    display: grid;
    grid-template-columns:1fr 1.15fr;
    gap: 80px;
    align-items: start;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

.about-split__head {
    position: sticky;
    top: 100px;
    align-self: start;
}

.about-split__head .section__title {
    margin-top: 20px;
}

@media (max-width: 880px) {
    .about-split__grid {
        grid-template-columns:1fr;
        gap: 32px;
    }

    .about-split__head {
        position: static;
    }
}

/* Vertical step list (no card grid, no numbers) */
.about-stepsrow {
    list-style: none;
    margin: 36px 0 24px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.about-stepsrow li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: padding-left var(--dur-base) var(--ease-standard);
}

.about-stepsrow li:last-child {
    border-bottom: 0;
}

.about-stepsrow li:hover {
    padding-left: 6px;
    border-bottom-color: rgba(147, 169, 184, 0.4);
}

.about-stepsrow .dot {
    flex: 0 0 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--omanu-blue);
    box-shadow: 0 0 0 4px rgba(147, 169, 184, 0.15), 0 0 14px rgba(147, 169, 184, 0.55);
}

.about-stepsrow .lbl {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 22px;
    color: #fff;
    letter-spacing: -0.015em;
}

/* Where This Started — notebook visual */
.origin__grid {
    display: grid;
    grid-template-columns:1.1fr 0.9fr;
    gap: 72px;
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

.origin__copy .section__title {
    margin-top: 20px;
}

.origin__copy .about-body {
    margin-top: 32px;
}

@media (max-width: 880px) {
    .origin__grid {
        grid-template-columns:1fr;
        gap: 40px;
    }
}

.notebook {
    position: relative;
    background: linear-gradient(160deg, #15171B 0%, #0d0f12 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 28px 60px -24px rgba(0, 0, 0, 0.6);
    transform: rotate(-1.5deg);
    transition: transform var(--dur-base) var(--ease-standard);
}

.origin__visual:hover .notebook {
    transform: rotate(0deg);
}

.notebook__top {
    display: flex;
    gap: 14px;
    padding: 14px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.025);
}

.notebook__binder {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.20);
}

.notebook__page {
    padding: 28px 30px 30px;
}

.notebook__tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--omanu-blue);
    margin-bottom: 18px;
}

.notebook__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.notebook__list li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 15.5px;
    color: rgba(255, 255, 255, 0.82);
    transition: color 600ms var(--ease-standard);
}

.notebook__list li:last-child {
    border-bottom: 0;
}

.notebook__dot {
    flex: 0 0 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(147, 169, 184, 0.45);
    box-shadow: 0 0 0 3px rgba(147, 169, 184, 0.08);
    transition: background 400ms, box-shadow 400ms;
}

.notebook__label {
    position: relative;
}

.notebook__label::after {
    content: "";
    position: absolute;
    left: -2px;
    right: -4px;
    top: 50%;
    height: 1.5px;
    background: linear-gradient(90deg, rgba(147, 169, 184, 0.95), rgba(147, 169, 184, 0.25));
    transform: scaleX(0);
    transform-origin: left center;
    pointer-events: none;
    border-radius: 2px;
}

.origin__visual.is-in-view .notebook__list li:nth-child(1) .notebook__label::after {
    animation: notebook-strike 0.55s var(--ease-out) 0.20s forwards;
}

.origin__visual.is-in-view .notebook__list li:nth-child(2) .notebook__label::after {
    animation: notebook-strike 0.55s var(--ease-out) 0.55s forwards;
}

.origin__visual.is-in-view .notebook__list li:nth-child(3) .notebook__label::after {
    animation: notebook-strike 0.55s var(--ease-out) 0.90s forwards;
}

.origin__visual.is-in-view .notebook__list li:nth-child(4) .notebook__label::after {
    animation: notebook-strike 0.55s var(--ease-out) 1.25s forwards;
}

.origin__visual.is-in-view .notebook__list li:nth-child(5) .notebook__label::after {
    animation: notebook-strike 0.55s var(--ease-out) 1.60s forwards;
}

.origin__visual.is-in-view .notebook__list li:nth-child(1) {
    color: rgba(255, 255, 255, 0.38);
    transition-delay: 0.35s;
}

.origin__visual.is-in-view .notebook__list li:nth-child(2) {
    color: rgba(255, 255, 255, 0.38);
    transition-delay: 0.70s;
}

.origin__visual.is-in-view .notebook__list li:nth-child(3) {
    color: rgba(255, 255, 255, 0.38);
    transition-delay: 1.05s;
}

.origin__visual.is-in-view .notebook__list li:nth-child(4) {
    color: rgba(255, 255, 255, 0.38);
    transition-delay: 1.40s;
}

.origin__visual.is-in-view .notebook__list li:nth-child(5) {
    color: rgba(255, 255, 255, 0.38);
    transition-delay: 1.75s;
}

.origin__visual.is-in-view .notebook__list li:nth-child(1) .notebook__dot,
.origin__visual.is-in-view .notebook__list li:nth-child(2) .notebook__dot,
.origin__visual.is-in-view .notebook__list li:nth-child(3) .notebook__dot,
.origin__visual.is-in-view .notebook__list li:nth-child(4) .notebook__dot,
.origin__visual.is-in-view .notebook__list li:nth-child(5) .notebook__dot {
    background: rgba(147, 169, 184, 0.20);
    box-shadow: 0 0 0 3px rgba(147, 169, 184, 0.04);
}

@keyframes notebook-strike {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

/* ============================================================
FINALE — same as homepage but slightly tighter
============================================================ */
.finale {
    position: relative;
    z-index: 1;
    padding: 120px 0 150px;
    text-align: center;
    overflow: hidden;
    isolation: isolate;
}

@keyframes finale-breathe {
    0%, 100% {
        transform: translate(-50%, -42%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -42%) scale(1.04);
        opacity: 0.65;
    }
}

.finale__inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.finale__eyebrow {
    font-size: 13px;
    letter-spacing: 0.32em;
    color: rgba(255, 255, 255, 0.55);
    margin: 0 0 22px;
    text-transform: uppercase;
    font-weight: 500;
    font-family: var(--font-body);
}

.finale__lead {
    margin: 28px auto 12px;
    max-width: 54ch;
    font-size: 17px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.72);
}

.finale__punch {
    margin: 0 auto 32px;
    color: #fff;
    font-weight: 500;
    font-size: 19px;
}

body.cursor-on-link .cursor-ring {
    width: 56px;
    height: 56px;
    border-color: var(--omanu-blue);
    background: rgba(147, 169, 184, 0.10);
}

@media (hover: hover) and (pointer: fine) {
    body.has-custom-cursor, body.has-custom-cursor a, body.has-custom-cursor button, body.has-custom-cursor [role="button"] {
        cursor: none;
    }

    body.has-custom-cursor input, body.has-custom-cursor textarea {
        cursor: text;
    }
}

@media (max-width: 980px) {
    .nav__pill {
        display: none;
    }

    .about-hero__hex {
        display: none;
    }

    .about-hero__orbit {
        width: 480px;
        height: 480px;
        top: -120px;
        right: -180px;
    }
}

@media (max-width: 640px) {
    .nav {
        padding: 16px 20px;
    }

    .container {
        padding: 0 20px;
    }

    .about-hero {
        padding: 130px 0 80px;
    }

    .about-section {
        padding: 90px 0;
    }

    .finale {
        padding: 90px 0 110px;
    }
}

/* What We Believe — aperture focus */
.believe__grid {
    display: grid;
    grid-template-columns:0.9fr 1.1fr;
    gap: 72px;
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

.believe__copy .section__title {
    margin-top: 20px;
}

.believe__copy .about-body {
    margin-top: 32px;
}

.believe__visual {
    position: relative;
    aspect-ratio: 1/1;
    max-width: 440px;
    width: 100%;
    margin: 0 auto;
}

.aperture {
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
}

.aperture__iris {
    transform-box: fill-box;
    transform-origin: center;
    animation: ap-iris 28s linear infinite;
}

@keyframes ap-iris {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(60deg);
    }
}

.aperture__subject {
    transform-box: fill-box;
    transform-origin: center;
    filter: blur(7px);
    opacity: 0.4;
    transform: scale(1.1);
}

.aperture__corners {
    transform-box: fill-box;
    transform-origin: center;
    opacity: 0;
    transform: scale(1.3);
}

.aperture__lock {
    transform-box: fill-box;
    transform-origin: center;
    opacity: 0;
    transform: scale(1.65);
}

.believe__focuslabel {
    position: absolute;
    left: 50%;
    bottom: 6%;
    transform: translateX(-50%);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(147, 169, 184, 0);
}

.believe__visual.is-in-view .aperture__subject {
    animation: ap-focus 1.1s var(--ease-out) 0.15s forwards;
}

.believe__visual.is-in-view .aperture__corners {
    animation: ap-corners 0.8s var(--ease-out) forwards;
}

.believe__visual.is-in-view .aperture__lock {
    animation: ap-lock 1s var(--ease-out) 0.35s forwards;
}

.believe__visual.is-in-view .believe__focuslabel {
    animation: ap-label 0.6s ease 0.95s forwards;
}

@keyframes ap-focus {
    to {
        filter: blur(0);
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes ap-corners {
    from {
        opacity: 0;
        transform: scale(1.3);
    }
    to {
        opacity: 0.9;
        transform: scale(1);
    }
}

@keyframes ap-lock {
    0% {
        opacity: 0;
        transform: scale(1.65);
    }
    55% {
        opacity: 0.95;
    }
    100% {
        opacity: 0.65;
        transform: scale(1);
    }
}

@keyframes ap-label {
    to {
        color: rgba(147, 169, 184, 0.7);
    }
}

@media (max-width: 880px) {
    .believe__grid {
        grid-template-columns:1fr;
        gap: 40px;
    }

    .believe__visual {
        order: -1;
        max-width: 340px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .aperture__iris {
        animation: none;
    }

    .aperture__subject {
        filter: none;
        opacity: 1;
        transform: none;
    }

    .aperture__corners {
        opacity: 0.9;
        transform: none;
    }

    .aperture__lock {
        opacity: 0.65;
        transform: none;
    }

    .believe__focuslabel {
        color: rgba(147, 169, 184, 0.7);
    }
}

#believe .about-emphasis {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

#building .about-split__head {
    position: static;
}

#building .about-split__head .about-body {
    margin-top: 28px;
}

#building .about-stepsrow {
    margin-top: 6px;
}

@media (min-width: 981px) {
    .nav__pill {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
}

/* ============================================================
   Services Page
   ============================================================ */

.svc-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 24px;
    max-width: var(--container-max);
    margin: 48px auto 0;
    padding: 0 var(--container-pad);
}

.svc-card {
    /* --sx/--sy default to the card centre; services.html JS overrides them
       on mousemove to make the ::before glow follow the cursor. */
    --sx: 50%;
    --sy: 50%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: linear-gradient(160deg, #15171B 0%, #0d0f12 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 28px 28px 26px;
    transition: transform var(--dur-base) var(--ease-standard), border-color var(--dur-base) var(--ease-standard);
}

.svc-card:hover {
    transform: translateY(-4px);
    border-color: rgba(147, 169, 184, 0.35);
}

.svc-card:hover .svc-card__icon {
    background: rgba(147, 169, 184, 0.18);
    border-color: rgba(147, 169, 184, 0.55);
}

.svc-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.svc-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    background: rgba(147, 169, 184, 0.10);
    border: 1px solid rgba(147, 169, 184, 0.32);
    color: #93a9b8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background var(--dur-base) var(--ease-standard), border-color var(--dur-base) var(--ease-standard);
}

.svc-card__num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 34px;
    line-height: 1;
    letter-spacing: -0.02em;
    color: rgba(147, 169, 184, 0.32);
}

.svc-card__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -0.015em;
    color: #fff;
    margin: 0;
}

.svc-card__block {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.svc-card__block + .svc-card__block {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 16px;
}

.svc-card__label {
    margin: 0;
    font-family: var(--font-mono);
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #93a9b8;
}

.svc-card__block p:not(.svc-card__label) {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.62;
    color: rgba(255, 255, 255, 0.7);
}

.svc-card__block--lead p:not(.svc-card__label) {
    font-size: 15.5px;
    color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 980px) {
    .svc-grid {
        grid-template-columns:1fr;
        gap: 18px;
    }
}

.svc-card {
    overflow: hidden;
}

.svc-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(180px circle at var(--sx, 50%) var(--sy, 50%), rgba(147, 169, 184, 0.16), transparent 60%);
    opacity: 0;
    transition: opacity .25s ease;
    pointer-events: none;
}

.svc-card:hover::before {
    opacity: 1;
}

/* ============================================================
   Pricing Page
   ============================================================ */

.error404__cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-top: 36px;
    flex-wrap: wrap;
}

/* Plan grid — adapts to however many tiers PRICING_PLANS defines */
.pricing-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 24px;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
    align-items: stretch;
}

.price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 22px;
    background: linear-gradient(160deg, #15171B 0%, #0d0f12 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 32px 30px 30px;
    transition: transform var(--dur-base) var(--ease-standard), border-color var(--dur-base) var(--ease-standard);
}

.price-card:hover {
    transform: translateY(-4px);
    border-color: rgba(147, 169, 184, 0.35);
}

.price-card--featured {
    border-color: rgba(147, 169, 184, 0.5);
    box-shadow: 0 24px 60px -24px rgba(147, 169, 184, 0.35);
}

.price-card__badge {
    position: absolute;
    top: 20px;
    right: 22px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 5px 11px;
    border-radius: var(--radius-pill);
    background: rgba(147, 169, 184, 0.15);
    color: var(--omanu-blue);
    border: 1px solid rgba(147, 169, 184, 0.45);
}

.price-card__head {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.price-card__name {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 26px;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0;
}

.price-card__tagline {
    margin: 0;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.55);
}

.price-card__price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.price-card__amount {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 44px;
    line-height: 1;
    letter-spacing: -0.03em;
    color: #fff;
}

.price-card__period {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.5);
}

.price-card__desc {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.price-card__cta {
    width: 100%;
}

.price-card__features {
    list-style: none;
    margin: 4px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.price-card__features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14.5px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
}

.price-card__check {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(147, 169, 184, 0.15);
    color: var(--omanu-blue);
    border: 1px solid rgba(147, 169, 184, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    margin-top: 1px;
}

.pricing-note {
    max-width: 60ch;
    margin: 36px auto 0;
    padding: 0 var(--container-pad);
    text-align: center;
    font-size: 13.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
}

/* Starter -> Builder -> Founder journey reuses the global .steps/.step layout */
.pricing-journey {
    margin-top: 56px;
}

@media (max-width: 980px) {
    .pricing-grid {
        grid-template-columns:1fr;
        gap: 18px;
        max-width: 460px;
    }
}

/* ============================================================
   Contact Page
   ============================================================ */

.btn:disabled, .btn.is-loading {
    cursor: not-allowed;
    opacity: 0.7;
}

.btn:disabled:hover, .btn.is-loading:hover {
    transform: none;
}

.btn__spinner {
    display: none;
    width: 15px;
    height: 15px;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: btn-spin 0.6s linear infinite;
}

.btn.is-loading .btn__spinner {
    display: inline-block;
}

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

@media (prefers-reduced-motion: reduce) {
    .btn__spinner {
        animation-duration: 1.2s;
    }
}

.contact-grid {
    display: grid;
    grid-template-columns:0.85fr 1.15fr;
    gap: 64px;
    align-items: start;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

.contact-aside .section__title {
    margin-top: 18px;
}

.contact-aside__lead {
    margin: 24px 0 0;
    font-size: 16px;
    line-height: 1.62;
    color: rgba(255, 255, 255, 0.7);
    max-width: 38ch;
}

.contact-details {
    margin-top: 34px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-detail {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-detail__label {
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #93a9b8;
}

.contact-detail a, .contact-detail span {
    color: #fff;
    font-size: 16px;
    text-decoration: none;
}

.contact-detail a:hover {
    color: #93a9b8;
}

.contact-card {
    background: linear-gradient(160deg, #15171B 0%, #0d0f12 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 32px 30px 28px;
}

.contact-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
}

.contact-field label {
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.62);
}

.contact-input, .contact-textarea {
    width: 100%;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 13px 15px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 15px;
    transition: border-color var(--dur-fast), background var(--dur-fast);
}

.contact-input::placeholder, .contact-textarea::placeholder {
    color: rgba(255, 255, 255, 0.32);
}

.contact-input:focus, .contact-textarea:focus {
    outline: none;
    border-color: rgba(147, 169, 184, 0.55);
    background: rgba(147, 169, 184, 0.06);
}

.contact-textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-hp {
    position: absolute !important;
    left: -9999px !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-form__actions {
    margin-top: 6px;
}

.contact-note {
    margin: 14px 0 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
}

.contact-alert {
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 22px;
    font-size: 14.5px;
    line-height: 1.5;
}

.contact-alert--ok {
    background: rgba(147, 169, 184, 0.12);
    border: 1px solid rgba(147, 169, 184, 0.4);
    color: #cdd9e0;
}

.contact-alert--err {
    background: rgba(255, 99, 99, 0.10);
    border: 1px solid rgba(255, 99, 99, 0.35);
    color: #ffb3b3;
}

@media (max-width: 880px) {
    .contact-grid {
        grid-template-columns:1fr;
        gap: 36px;
    }
}

/* ============================================================
   Blogs Page
   ============================================================ */

.blog {
    padding: 120px 0 90px;
}

.blog__head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 50px;
    padding: 0 var(--container-pad);
}

.blog__title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    letter-spacing: -.03em;
    color: #fff;
    margin: 14px 0 16px;
    line-height: 1.05;
}

.blog__lead {
    font-size: 17px;
    color: rgba(255, 255, 255, .7);
    line-height: 1.6;
    margin: 0;
}

.blog__feature {
    max-width: var(--container-max);
    margin: 0 auto 22px;
    padding: 0 var(--container-pad);
}

.blog__grid {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 22px;
}

.blog__empty {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    color: rgba(255, 255, 255, .6);
    padding: 40px var(--container-pad);
}

.bc {
    display: block;
    text-decoration: none;
    background: linear-gradient(160deg, #15171b, #0d0f12);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    overflow: hidden;
    transition: transform .25s, border-color .25s;
}

.bc:hover {
    transform: translateY(-4px);
    border-color: rgba(147, 169, 184, .35);
}

.bc__img {
    aspect-ratio: 16/9;
    background-size: cover;
    background-position: center;
    background-color: #0d141a;
}

.bc__img--ph {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(147, 169, 184, .5);
    background: linear-gradient(140deg, #1b2730, #0d141a);
}

.bc__body {
    padding: 20px 22px 22px;
}

.bc__cat {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    color: #bcd2dd;
    background: rgba(147, 169, 184, .12);
    border: 1px solid rgba(147, 169, 184, .35);
    border-radius: 999px;
    padding: 4px 11px;
    margin-bottom: 12px;
}

.bc__title {
    font-family: var(--font-display);
    font-weight: 700;
    color: #fff;
    letter-spacing: -.01em;
    margin: 0 0 10px;
    line-height: 1.25;
}

.bc h2.bc__title {
    font-size: 24px;
}

.bc h3.bc__title {
    font-size: 17px;
}

.bc__excerpt {
    font-size: 14px;
    color: rgba(255, 255, 255, .6);
    line-height: 1.6;
    margin: 0 0 16px;
}

.bc__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, .5);
}

.bc--feature {
    display: grid;
    grid-template-columns:1.1fr 1fr;
}

.bc--feature .bc__img {
    aspect-ratio: auto;
    min-height: 280px;
}

.bc--feature .bc__body {
    padding: 30px 32px;
    align-self: center;
}

.pager {
    max-width: var(--container-max);
    margin: 46px auto 0;
    padding: 0 var(--container-pad);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.pager__link {
    display: inline-block;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    color: #bcd2dd;
    background: rgba(147, 169, 184, .12);
    border: 1px solid rgba(147, 169, 184, .35);
    border-radius: 999px;
    padding: 9px 18px;
    transition: border-color .25s, background .25s, transform .25s;
}

.pager__link:hover {
    transform: translateY(-2px);
    border-color: rgba(147, 169, 184, .6);
    background: rgba(147, 169, 184, .18);
}

.pager__link.is-disabled {
    opacity: .35;
    pointer-events: none;
}

.pager__status {
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
}

@media (max-width: 880px) {
    .bc--feature {
        grid-template-columns:1fr;
    }

    .bc--feature .bc__img {
        min-height: 200px;
    }

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

/* ============================================================
   Blog Template Page
   ============================================================ */

.post {
    position: relative;
    z-index: 1;
    padding: 120px 0 70px;
}

.post-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

.post__back {
    display: inline-block;
    font-size: 13px;
    color: #93a9b8;
    text-decoration: none;
    margin-bottom: 22px;
}

.post__back:hover {
    color: #fff;
}

.post__cat {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    color: #bcd2dd;
    background: rgba(147, 169, 184, .12);
    border: 1px solid rgba(147, 169, 184, .35);
    border-radius: 999px;
    padding: 5px 13px;
    margin-bottom: 16px;
}

.post__title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    line-height: 1.08;
    letter-spacing: -.025em;
    color: #fff;
    margin: 0 0 18px;
}

.post__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: rgba(255, 255, 255, .55);
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.post__avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(147, 169, 184, .18);
    border: 1px solid rgba(147, 169, 184, .4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #bcd2dd;
    font-weight: 500;
}

.post__author {
    color: rgba(255, 255, 255, .85);
}

.post__dot {
    opacity: .5;
}

.post__hero {
    margin: 0 0 36px;
}

.post__hero img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .08);
    display: block;
}

.post__hero-ph {
    aspect-ratio: 16/8;
    border-radius: 16px;
    background: linear-gradient(140deg, #1b2730, #0d141a);
    border: 1px solid rgba(147, 169, 184, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(147, 169, 184, .5);
}

.post__body {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .92);
}

.post__body p {
    margin: 0 0 20px;
}

.post__body h2 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.7rem;
    letter-spacing: -.02em;
    color: #fff;
    margin: 38px 0 14px;
}

.post__body h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.3rem;
    color: #fff;
    margin: 30px 0 12px;
}

.post__body a {
    color: #93a9b8;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.post__body a:hover {
    color: #bcd2dd;
}

.post__body ul, .post__body ol {
    margin: 0 0 20px;
    padding-left: 22px;
}

.post__body li {
    margin: 0 0 8px;
}

.post__body blockquote {
    border-left: 2px solid #93a9b8;
    margin: 24px 0;
    padding: 6px 0 6px 20px;
    color: #cdd9e0;
    font-size: 19px;
    line-height: 1.6;
}

.post__body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .08);
    margin: 14px 0;
}

.post__body strong {
    color: #fff;
}

.post__cta {
    max-width: 720px;
    margin: 56px auto 0;
    padding: 34px var(--container-pad) 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.post__cta h3 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.5rem;
    color: #fff;
    margin: 0 0 18px;
}

/* ============================================================
   Shared interactions — glass cursor + scroll reveal + sticky footer
   ============================================================ */

/* Glass cursor (activated by .glass-cur on <html> via JS) */
@media (hover: hover) and (pointer: fine) {
    html.glass-cur, html.glass-cur * {
        cursor: none !important;
    }
    .cursor-ring, .cursor-dot {
        display: none !important;
    }
    #glassCursor {
        position: fixed;
        top: 0;
        left: 0;
        width: 26px;
        height: 26px;
        pointer-events: none;
        z-index: 99999;
        opacity: 0;
        will-change: transform;
        transform: translate(-200px, -200px);
    }
}

/* Scroll reveal (mz) — .mz-in set via IntersectionObserver */
.mz-r {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .6s ease, transform .6s cubic-bezier(.2, .7, .2, 1);
}

.mz-r.mz-in {
    opacity: 1;
    transform: none;
}

/* Sticky footer for short pages (opt-in via body.has-sticky-footer) */
body.has-sticky-footer {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body.has-sticky-footer main {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
}

body.has-sticky-footer .footer {
    margin-top: auto;
}

/* ============================================================
   Home Page — re-assert home's own values for the few selectors
   the shared page sections above would otherwise override.
   Scoped to body.home so the 8 standalone pages are unaffected.
   ============================================================ */
body.home .finale {
    z-index: 4;
    padding: 140px 0 160px;
}

body.home .finale__inner {
    max-width: 940px;
}

body.home .finale__lead {
    margin: 28px auto 36px;
    line-height: 1.6;
    max-width: 52ch;
}

body.home .section__title {
    line-height: var(--lh-body);
}
