@font-face {
    font-family: "Horizon";
    src: url("/fonts/Horizon.woff2") format("woff2");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

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

button,
a {
    touch-action: manipulation;
}

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

:root {
    --mint: #42ffd1;
    --violet: #8c6fff;
    --amber: #ff8040;
    --cyan: #00c2ff;
    --pank: #ff0099;
}

html,
body {
    width: 100%;
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

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

#section-i,
#section-ii,
#section-iii,
#section-iv,
#section-v {
    scroll-margin-top: 72px;
}

canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* ── Reading progress bar ── */
#progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: linear-gradient(
        90deg,
        var(--mint) 0%,
        var(--cyan) 66%,
        var(--pank) 100%
    );
    z-index: 200;
    will-change: width;
    transition: width 0.08s linear;
}

.nav-lbl-desk,
.btm-lbl-desk {
    display: inline;
}
.nav-lbl-mob,
.btm-lbl-mob {
    display: none;
}

@media screen and (max-width: 768px) {
    .nav-lbl-desk,
    .btm-btn-desk {
        display: none;
    }
    .nav-lbl-mob,
    .btm-lbl-mob {
        display: inline;
    }
}

#nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: calc(56px + 2vh);
    z-index: 100;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    margin-bottom: 2vh;
}

#nav.scrolled {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom-color: rgba(255, 255, 255, 0.07);
}

#nav a {
    text-decoration: none;
}

.nav-back {
    font-family: "Horizon", sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    background: linear-gradient(90deg, #42ffd1 0%, #00c2ff 66%, #ff0099 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    opacity: 0.5;
    transition: opacity 0.75s;
}

.nav-back:hover {
    opacity: 1;
}

.nav-meta {
    font-family: "Open Sans", sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

/* ── Wrapper ── */
.wrapper {
    position: relative;
    z-index: 2;
    padding-top: calc(56px + 2vh);
    padding-bottom: 4rem;
}

/* ── Hero ── */
.hero {
    text-align: center;
    padding: 4rem 2rem 9rem;
}

.hero-label {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 2.2rem;
    opacity: 0;
    animation: rise 1.2s ease 0.2s forwards;
}

.hero-title {
    font-family: "Oxanium", sans-serif;
    font-weight: 800;
    font-size: clamp(34px, 6vw, 66px);
    line-height: 1.08;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: linear-gradient(
        90deg,
        var(--mint) 0%,
        var(--cyan) 50%,
        #ff0099 65%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    max-width: 840px;
    margin: 0 auto;
    opacity: 0;
    animation: rise 1.5s ease 0.5s forwards;
}

.hero-subtitle {
    margin-top: 1.8rem;
    font-family: "Open Sans", sans-serif;
    font-weight: 300;
    font-size: clamp(21px, 2.8vw, 28px);
    color: var(--cyan);
    letter-spacing: 0.06em;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: rise 1.3s ease 0.9s forwards;
}

.hero-rule {
    width: 72px;
    height: 1px;
    background: linear-gradient(
        90deg,
        var(--mint) 0%,
        var(--cyan) 66%,
        var(--pank) 100%
    );
    margin: 3.8rem auto 0;
    opacity: 0;
    animation: fadeIn 1.2s ease 1.3s forwards;
}

/* ── Article ── */
.article {
    max-width: 680px;
    margin: 0 auto;
    padding: 5.5rem 2rem 10rem;
    background: rgba(0, 0, 0, 0.58);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

/* ── Section label ── */
.section-label {
    font-family: "Oxanium", sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 2rem;
    margin-top: 5.5rem;
}
.section-label:first-child {
    margin-top: 0;
}

/* ── Conceptual subheading ── */
.article h4 {
    font-family: "Oxanium", sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.92);
    margin-top: 2.8rem;
    margin-bottom: 0.7rem;
}

/* ── Sub-section heading ── */
.article h3 {
    font-family: "Oxanium", sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mint);
    margin-top: 3.5rem;
    margin-bottom: 1.1rem;
}

/* ── Body copy ── */
.body-copy {
    font-family: "Open Sans", sans-serif;
    font-weight: 300;
    font-size: 17.5px;
    line-height: 1.88;
    color: rgba(255, 255, 255, 0.85);
}
.body-copy + .body-copy {
    margin-top: 1.6em;
}
.body-copy a {
    color: var(--cyan);
    text-decoration: none;
}
.body-copy a:hover {
    text-decoration: underline;
}

/* Drop cap — editorial signature on the opening paragraph */
.body-copy.opening::first-letter {
    font-family: "Oxanium", sans-serif;
    font-weight: 800;
    font-size: 4em;
    line-height: 0.8;
    float: left;
    margin: 0.1em 0.14em 0 0;
    background: linear-gradient(145deg, var(--mint), var(--cyan), var(--pank));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ── Pull quote ── */
.pull-quote {
    margin: 4.5rem -80px;
    padding: 2.8rem 80px;
    text-align: center;
    position: relative;
}
.pull-quote::before,
.pull-quote::after {
    content: "";
    position: absolute;
    left: 80px;
    right: 80px;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.09),
        transparent
    );
}
.pull-quote::before {
    top: 0;
}
.pull-quote::after {
    bottom: 0;
}

.pull-quote p {
    font-family: "Oxanium", sans-serif;
    font-weight: 700;
    font-size: clamp(18px, 3vw, 26px);
    line-height: 1.44;
    letter-spacing: 0.02em;
    color: var(--mint);
}

/* ── Divider ── */
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    margin: 4.5rem 0;
}
.divider i {
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    font-style: normal;
}
.divider i:nth-child(1) {
    background: var(--mint);
    box-shadow: 0 0 10px var(--mint);
}
.divider i:nth-child(2) {
    background: var(--violet);
    box-shadow: 0 0 10px var(--violet);
}
.divider i:nth-child(3) {
    background: var(--amber);
    box-shadow: 0 0 10px var(--amber);
}

/* ── Numbered list (Section IV) ── */
.numbered-list {
    list-style: none;
    margin-top: 3rem;
    margin-bottom: 3.5rem;
    counter-reset: item;
    display: flex;
    flex-direction: column;
    gap: 2.8rem;
}

.numbered-list li {
    counter-increment: item;
    padding-left: 3.6rem;
    position: relative;
}

.numbered-list li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: -0.1em;
    font-family: "Oxanium", sans-serif;
    font-weight: 800;
    font-size: 24px;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--mint), var(--violet));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.item-heading {
    font-family: "Oxanium", sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.65rem;
}

.item-body {
    font-family: "Open Sans", sans-serif;
    font-weight: 300;
    font-size: 17px;
    line-height: 1.82;
    color: rgba(255, 255, 255, 0.85);
}

/* ── Comparison table ── */
.comparison-wrapper {
    margin-top: 4rem;
    margin-bottom: 3.5rem;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 2px;
}

.comparison-header {
    padding: 1.4rem 1.2rem 0;
}

.comparison-title {
    font-family: "Oxanium", sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 0.4rem;
}

.comparison-subtitle {
    font-family: "Open Sans", monospace;
    font-size: 11px;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 1.2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

/* col widths: Dimension 18%, SIGN 17%, ZTNA 12%, SD-WAN 12%, SASE 13%, Why 28% */
.comparison-table col:nth-child(1) {
    width: 18%;
}
.comparison-table col:nth-child(2) {
    width: 18%;
}
.comparison-table col:nth-child(3) {
    width: 15%;
}
.comparison-table col:nth-child(4) {
    width: 15%;
}
.comparison-table col:nth-child(5) {
    width: 15%;
}
.comparison-table col:nth-child(6) {
    width: 18%;
}

.comparison-table thead th {
    font-family: "Oxanium", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    padding: 0.6rem 0.8rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.comparison-table thead th:nth-child(2) {
    font-family: "Open Sans", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--cyan);
}

.comparison-table .mute {
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.75);
}

.comparison-table thead th:nth-child(6) {
    font-weight: 700;
    color: var(--mint);
}

.comparison-table tbody td {
    font-family: "Open Sans", sans-serif;
    font-size: 11px;
    font-weight: 300;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.9);
    padding: 0.65rem 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    vertical-align: top;
    word-break: normal;
}
.comparison-table tbody tr:last-child td {
    border-bottom: none;
}
.comparison-table tbody tr:hover td {
    background: rgba(255, 255, 255, 0.018);
}

.comparison-table tbody td:first-child {
    font-family: "Oxanium", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
}
.comparison-table tbody td:nth-child(2) {
    font-family: "Open Sans", sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: var(--cyan);
    letter-spacing: 0.01em;
}
.comparison-table tbody td:nth-child(3),
.comparison-table tbody td:nth-child(4),
.comparison-table tbody td:nth-child(5) {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.9);
}
.comparison-table tbody td:nth-child(6) {
    font-size: 11x;
    color: var(--mint);
    line-height: 1.5;
}

body.reader-mode .comparison-table tbody td:nth-child(6) {
    color: rgba(255, 255, 255, 0.75) !important;
}

/* ── Limitation list ── */
.limitation-list {
    list-style: none;
    margin-top: 1.8rem;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.limitation-list li {
    display: grid;
    grid-template-columns: 1.6rem 1fr;
    gap: 0 0.6rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    align-items: start;
}
.limitation-list li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.limitation-list li::before {
    content: "×";
    font-family: "Oxanium", sans-serif;
    font-weight: 800;
    font-size: 14px;
    color: var(--amber);
    opacity: 0.65;
    line-height: 1.7;
}

.limitation-list li .lim-text {
    font-family: "Open Sans", sans-serif;
    font-weight: 300;
    font-size: 15.5px;
    line-height: 1.68;
    color: rgba(255, 255, 255, 0.8);
}

.limitation-list li strong {
    font-family: "Oxanium", sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
    display: block;
    margin-bottom: 0.12rem;
}

/* ── Back link in footer ── */
.footer-back {
    display: inline-block;
    margin-top: 2rem;
    font-family: "Open Sans", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    background: linear-gradient(
        90deg,
        var(--mint) 0%,
        var(--cyan) 66%,
        var(--pank) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.22s;
}
.footer-back:hover {
    opacity: 1;
}

/* ── Footer ── */
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 2rem;
    padding-bottom: max(1.2rem, env(safe-area-inset-bottom));
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    animation: fadeIn 1s ease 0.5s forwards;
    overflow: hidden;
    max-width: 100%;
}
footer span {
    font-family: "Open Sans", sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
footer a {
    font-family: "Open Sans", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    padding: 4px 12px;
    border-radius: 1px;
    background: transparent;
    box-shadow: 0 0 9px rgba(140, 111, 255, 0.06);
    transition:
        box-shadow 0.5s ease,
        color 0.2s ease;
}
footer a:hover {
    box-shadow: 0 0 18px rgba(140, 111, 255, 0.34);
    color: rgba(255, 255, 255, 0.9);
}
.footer-legal {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.footer-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ── Byline ── */
.hero-byline {
    margin-top: 2rem;
    font-family: "Space Mono", monospace;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

.hero-byline a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    transition:
        color 0.2s,
        border-color 0.2s;
}
.hero-byline a:hover {
    color: var(--mint);
    border-bottom-color: rgba(66, 255, 209, 0.5);
}
.hero-byline a:visited {
    color: inherit;
}

/* ── Manifesto CTA ── */
.manifesto-cta {
    margin-top: 6rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    text-align: center;
}

.manifesto-cta .section-label {
    margin-top: 0;
    margin-bottom: 1.5rem;
    text-align: center;
}

.manifesto-cta .body-copy {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}

.cta-buttons {
    margin-top: 2.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cta-tier {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    margin-top: 2.8rem;
}
.cta-tier .cta-btn-primary,
.cta-tier .cta-btn-secondary {
    min-width: 300px;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 36px;
    height: 56px;
    background: rgba(66, 255, 209, 0.1);
    border: 1px solid rgba(66, 255, 209, 0.6);
    border-radius: 1px;
    color: var(--mint);
    font-family: "Open Sans", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 0 16px rgba(66, 255, 209, 0.12);
    transition:
        background-color 0.22s,
        border-color 0.22s,
        box-shadow 0.22s;
    white-space: nowrap;
    cursor: pointer;
    margin-bottom: 0.9rem;
}
.cta-btn-primary:hover {
    background: rgba(66, 255, 209, 0.2);
    border-color: var(--mint);
    box-shadow: 0 0 24px rgba(66, 255, 209, 0.24);
}

.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    height: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 1px;
    color: rgba(255, 255, 255, 0.55);
    font-family: "Open Sans", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    transition:
        border-color 0.22s,
        color 0.22s;
    white-space: nowrap;
}
.cta-btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.45);
    color: rgba(255, 255, 255, 0.85);
}

.cta-btn-tertiary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 32px;
    height: 48px;
    background: rgba(255, 128, 64, 0.1);
    border: 1px solid rgba(255, 128, 64, 0.55);
    border-radius: 1px;
    color: var(--amber);
    font-family: "Open Sans", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 0 16px rgba(255, 128, 64, 0.12);
    transition:
        background-color 0.22s,
        border-color 0.22s,
        box-shadow 0.22s;
    white-space: nowrap;
}
.cta-btn-tertiary:hover {
    background: rgba(255, 128, 64, 0.2);
    border-color: var(--amber);
    box-shadow: 0 0 24px rgba(255, 128, 64, 0.24);
}

.cta-idea-rule {
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.07),
        transparent
    );
    margin: 2.5rem 0;
}

/* ── Scroll reveal ── */
.fade-up {
    opacity: 0;
    transform: translateY(14px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Keyframes ── */
@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ── Mobile ── */
@media screen and (max-width: 768px) {
    #nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: calc(53px + 2vh);
        padding: 0 1rem;
    }

    .nav-book-btn {
        display: none;
    }

    .book-btn-mobile {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-family: "Open Sans", sans-serif;
        font-weight: 600;
        color: #00c2ff;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        padding: 13px 20px;
        min-height: 44px;
        border: 1px solid currentColor;
        border-radius: 1px;
        background: rgba(255, 255, 255, 0.04);
        text-align: center;
        line-height: 1.5;
        align-self: end;
        cursor: pointer;
        transition:
            border-right-color 0.6s ease,
            border-left-color 0.6s ease,
            border-top-color 0.6s ease 0.08s,
            background 0.9s ease;
    }
    .book-btn-mobile:hover {
        background: rgba(0, 194, 255, 0.1);
    }

    #reader-toggle {
        height: 32px;
        font-size: 9px;
        background: rgba(255, 255, 255, 0.07);
        border-color: rgba(255, 255, 255, 0.35);
    }

    .wrapper {
        padding-top: calc(53px + 2vh);
    }

    .hero {
        padding: 6rem 1.5rem 6rem;
    }

    .hero-label {
        font-size: 13px;
        letter-spacing: 0.38em;
        margin-bottom: 1.4rem;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 24px;
        margin-top: 1.2rem;
    }

    .hero-byline {
        font-size: 12px;
        letter-spacing: 0.08em;
        margin-top: 1.4rem;
    }

    .article {
        padding: 4rem 1.5rem 7rem;
    }

    .section-label {
        margin-top: 4rem;
    }

    .body-copy {
        font-size: 16.5px;
    }

    .pull-quote {
        margin: 3rem 0;
        padding: 2rem 0;
    }
    .pull-quote::before,
    .pull-quote::after {
        left: 0;
        right: 0;
    }

    footer {
        flex-direction: column;
        align-items: center;
        gap: 0.18rem;
        padding: 0.35rem 1rem;
        padding-bottom: max(0.6rem, env(safe-area-inset-bottom));
    }
    footer span {
        font-size: 9px;
        letter-spacing: 0.05em;
    }
    .footer-legal {
        display: none;
    }
    footer a {
        font-size: 9px;
        letter-spacing: 0.05em;
        padding: 3px 8px;
        box-shadow: 0 0 14px rgba(140, 111, 255, 0.28);
    }
    .footer-links {
        gap: 4px;
    }
}

/* ── Toast ── */
.toast {
    position: fixed;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(8, 8, 14, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 2px;
    padding: 0.55rem 1.1rem;
    font-family: "Open Sans", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
    z-index: 500;
    opacity: 0;
    pointer-events: none;
    transition:
        opacity 0.22s,
        transform 0.22s;
    white-space: nowrap;
}
.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ── Section anchor ── */
.section-anchor {
    display: inline-flex;
    align-items: center;
    margin-left: 0.55em;
    background: none;
    border: none;
    cursor: pointer;
    color: transparent;
    font-size: 1.1em;
    line-height: 1;
    padding: 0;
    transition: color 0.2s;
    vertical-align: middle;
}
.section-label:hover .section-anchor {
    color: var(--cyan);
}

/* ── Share block ── */
.share-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    flex-wrap: wrap;
    margin-top: 1.6rem;
}
.share-label {
    font-family: "Open Sans", sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.32);
    margin-right: 0.2rem;
}
.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.3em;
    padding: 0 11px;
    height: 28px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1px;
    color: rgba(255, 255, 255, 0.55);
    font-family: "Open Sans", sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition:
        border-color 0.2s,
        color 0.2s;
    white-space: nowrap;
}
.share-btn:hover {
    border-color: rgba(255, 255, 255, 0.28);
    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.07);
}
.share-btn.web-share {
    display: none;
}

/* ── TOC ── */
.toc {
    position: fixed;
    top: 88px;
    left: max(1.25rem, calc(50vw - 590px));
    width: clamp(5rem, 18vw, 20rem);
    z-index: 50;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 2px;
}
.toc-title {
    font-family: "Oxanium", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.48em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.38);
    margin-bottom: 1.25rem;
}
.toc-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.toc-link {
    display: block;
    font-family: "Open Sans", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.42);
    text-decoration: none;
    padding: 0.22rem 0 0.22rem 0.75rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    transition:
        color 0.22s,
        border-color 0.22s,
        font-weight 0.22s;
}
.toc-link:hover {
    color: rgba(255, 255, 255, 0.78);
    border-left-color: rgba(255, 255, 255, 0.3);
}
.toc-link.active {
    color: var(--cyan);
    border-left-color: var(--cyan);
    font-weight: 600;
}
@media (max-width: 1100px) {
    .toc {
        display: none;
    }
}

/* ── Pull quote share ── */
.pull-quote-share {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    margin-top: 1.8rem;
    padding-bottom: 0.6rem;
}

/* ── Design partner CTA (Section IV) ── */
.dp-cta {
    margin: 3.5rem 0;
}
.dp-cta-copy {
    font-family: "Open Sans", sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.72;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}
.dp-cta-action {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.55rem;
}
.dp-cta-sub {
    font-family: "Space Mono", monospace;
    font-size: 9.5px;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.35);
    text-align: right;
}

/* ── Aside note / idea box ── */
.idea-box {
    margin-top: 2rem;
    padding: 1rem 1.2rem 1rem 1.3rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 2px solid rgba(255, 255, 255, 0.22);
    display: flex;
    align-items: center;
    gap: 1.2rem;
}
.idea-text {
    flex: 1;
    font-family: "Space Mono", monospace;
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.65);
}
.idea-submit-btn {
    --glow: 255, 128, 64;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 1px;
    color: var(--amber);
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    white-space: nowrap;
}

/* ── Build trio (Section V) ── */
.build-trio {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.build-line {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    text-align: left;
    gap: 0.65em;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.build-line:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.build-tag {
    font-family: "Oxanium", sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.04em;
    flex-shrink: 0;
}
.build-tag.mint {
    color: var(--mint);
}
.build-tag.violet {
    color: var(--violet);
}
.build-tag.amber {
    color: var(--amber);
}
.build-rest {
    font-family: "Open Sans", sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.72;
    color: rgba(255, 255, 255, 0.75);
}

.your-turn {
    margin-top: 3rem;
    font-family: "Oxanium", sans-serif;
    font-weight: 500;
    font-size: 20px;
    text-transform: uppercase;
    text-align: center;
    color: #ff0099;
}

/* ── CTA pyramid ── */

.cta-flex {
    margin-top: 2.8rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    width: fit-content;
    margin-inline: auto;
}
.cta-label {
    font-family: "Oxanium", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.7;
    color: var(--cyan);
    text-align: left;
}
.cta-em {
    font-size: 24px;
}
.cta-pyramid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.1rem;
}
.cta-bottom-row {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-bottom-row .cta-btn-secondary {
    min-width: 220px;
}

.cta-btn-violet {
    --glow: 140, 111, 255;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 16px;
    height: 36px;
    border-radius: 1px;
    color: var(--violet);
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    white-space: nowrap;
}

.cta-btn-amber {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    height: 40px;
    background: rgba(255, 128, 64, 0.08);
    border: 1px solid rgba(255, 128, 64, 0.38);
    border-radius: 1px;
    color: var(--amber);
    font-family: "Open Sans", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    transition:
        background-color 0.22s,
        border-color 0.22s,
        box-shadow 0.22s;
    white-space: nowrap;
}
.cta-btn-amber:hover {
    background: rgba(255, 128, 64, 0.18);
    border-color: rgba(255, 128, 64, 0.65);
    box-shadow: 0 0 16px rgba(255, 128, 64, 0.18);
}

/* ── Color name gradient ── */
.brand-name {
    font-family: "Horizon", "Oxanium", sans-serif;
    background: linear-gradient(
        90deg,
        var(--mint) 0%,
        var(--cyan) 66%,
        var(--pank) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ── End share block ── */
.end-share {
    margin-top: 3.5rem;
    padding: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    text-align: center;
}
.end-share-label {
    font-family: "Oxanium", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 1rem;
}

/* ── Share rail ── */
.share-rail {
    position: fixed;
    top: 88px;
    right: max(1.5rem, calc(50vw - 590px));
    z-index: 50;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.9rem;
}
.share-rail-label {
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.32);
    margin-bottom: 0.2rem;
}
@media (max-width: 1100px) {
    .share-rail {
        display: none;
    }
}

/* ── Idea-box call link ── */
.idea-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
    flex-shrink: 0;
}
.idea-call-link {
    font-family: "Space Mono", monospace;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--cyan);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s;
}
.idea-call-link:hover {
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
    #section-i,
    #section-ii,
    #section-iii,
    #section-iv,
    #section-v {
        scroll-margin-top: 68px;
    }
}

/* ── Reader mode toggle button ── */
#reader-toggle {
    display: inline-flex;
    align-self: center;
    height: 44px;
    padding: 13px 20px;
    background: transparent;
    border: 1px solid transparent;
    border-bottom-color: rgba(255, 255, 255, 0.25);
    border-radius: 1px;
    cursor: pointer;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    white-space: nowrap;
    transition:
        border-right-color 0.15s ease,
        border-left-color 0.15s ease,
        border-top-color 0.15s ease 0.08s,
        background 0.2s ease;
}
#reader-toggle:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.35);
    color: rgba(255, 255, 255, 0.88);
}
#reader-toggle:active {
    border-color: transparent;
    border-bottom-color: rgba(255, 255, 255, 0.25);
    background: transparent;
    transition: none;
}
body.reader-mode #reader-toggle {
    color: rgba(255, 255, 255, 0.65);
}

/* ── Closing CTA box-building overrides ── */
.manifesto-cta .cta-btn-primary {
    background: transparent;
    border: 1px solid transparent;
    border-bottom-color: rgba(66, 255, 209, 0.6);
    box-shadow: none;
    transition:
        border-right-color 0.6s ease,
        border-left-color 0.6s ease,
        border-top-color 0.6s ease 0.08s,
        background 0.9s ease,
        box-shadow 0.9s ease;
}
.manifesto-cta .cta-btn-primary:hover {
    background: rgba(66, 255, 209, 0.1);
    border-color: rgba(66, 255, 209, 0.75);
    box-shadow: 0 0 22px rgba(66, 255, 209, 0.2);
}
.manifesto-cta .cta-btn-primary:active {
    border-color: transparent;
    border-bottom-color: rgba(66, 255, 209, 0.6);
    background: transparent;
    box-shadow: none;
    transition: none;
}
/* ── Reader mode overrides ── */
body.reader-mode {
    --mint: #c8c8c8;
    --violet: #b0b0b0;
    --amber: #999;
    --cyan: #bbb;
    --pank: #888;
}

body.reader-mode canvas,
body.reader-mode #progress-bar,
body.reader-mode .share-rail,
body.reader-mode .toc,
body.reader-mode .pull-quote-share,
body.reader-mode .share-block {
    display: none !important;
}

body.reader-mode .article {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

/* strip gradient text — swap to solid white/grey */
body.reader-mode .hero-title {
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    -webkit-text-fill-color: #e8e8e8;
}
body.reader-mode .nav-back {
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.65);
}
body.reader-mode .body-copy.opening::first-letter {
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    -webkit-text-fill-color: #fff;
}
body.reader-mode .numbered-list li::before {
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    -webkit-text-fill-color: #888;
}

body.reader-mode .hero-rule {
    background: rgba(255, 255, 255, 0.12);
}
body.reader-mode .divider i {
    background: #555 !important;
    box-shadow: none !important;
}

/* kill fade/rise animations */
body.reader-mode .hero-label,
body.reader-mode .hero-title,
body.reader-mode .hero-subtitle,
body.reader-mode .hero-rule,
body.reader-mode .fade-up {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
}

/* Open Sans for headers and pull quotes */
body.reader-mode .section-label,
body.reader-mode .pull-quote p,
body.reader-mode .item-heading,
body.reader-mode .hero-title {
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    letter-spacing: 0.04em;
}

/* Section CTA buttons → share-button grey (End CTAs in .manifesto-cta stay as-is) */
body.reader-mode .cta-btn-primary:not(.manifesto-cta *),
body.reader-mode .cta-btn-tertiary:not(.manifesto-cta *),
body.reader-mode .cta-btn-violet:not(.manifesto-cta *),
body.reader-mode .cta-btn-amber:not(.manifesto-cta *),
body.reader-mode .idea-submit-btn {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.55);
    box-shadow: none;
}
body.reader-mode .cta-btn-primary:not(.manifesto-cta *):hover,
body.reader-mode .cta-btn-tertiary:not(.manifesto-cta *):hover,
body.reader-mode .cta-btn-violet:not(.manifesto-cta *):hover,
body.reader-mode .cta-btn-amber:not(.manifesto-cta *):hover,
body.reader-mode .idea-submit-btn:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.28);
    color: rgba(255, 255, 255, 0.88);
    box-shadow: none;
}
/* ── sr-only ── */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ── glow buttons (shared) — pure outer glow, no border, no fill.
   Color per button via --glow (R, G, B). Mirrors index.css. */
.glow-btn {
    border: 1px solid transparent;
    background: transparent;
    color: rgb(var(--glow));
    text-decoration: none;
    cursor: pointer;
    transition:
        box-shadow 0.5s ease,
        color 0.3s ease;
}
@media (min-width: 769px) {
    .glow-btn {
        box-shadow: 0 0 9px rgba(var(--glow), 0.05);
    }
    .glow-btn:hover {
        box-shadow: 0 0 22px rgba(var(--glow), 0.38);
        color: #fff;
    }
}
@media screen and (max-width: 769px) {
    .glow-btn {
        box-shadow: 0 0 26px rgba(var(--glow), 0.42);
    }
}

/* ── Nav book button ── */
@media screen and (min-width: 769px) {
    .nav-book-btn {
        --glow: 0, 194, 255;
        display: inline-flex;
        align-items: center;
        justify-self: end;
        padding: 7px 16px;
        height: 36px;
        border-radius: 1px;
        color: #00c2ff;
        font-family: "Open Sans", sans-serif;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        white-space: nowrap;
    }

    .book-btn-mobile {
        display: none;
    }
}

@media screen and (min-width: 769px) {
    .btm-book-btn {
        --glow: 66, 255, 209;
        display: inline;
        align-self: center;
        padding: 7px 16px;
        height: 36px;
        border-radius: 1px;
        color: var(--mint);
        font-family: "Open Sans", sans-serif;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        white-space: nowrap;
    }

    .btm-btn-mobile {
        display: none;
    }
}

/* ── btn-primary (inside book modal) ── */
.btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 36px;
    height: 48px;
    background: transparent;
    border: 1px solid transparent;
    border-bottom-color: rgba(66, 255, 209, 0.8);
    border-radius: 1px;
    color: #42ffd1;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: none;
    white-space: nowrap;
    cursor: pointer;
    transition:
        border-right-color 0.6s ease,
        border-left-color 0.6s ease,
        border-top-color 0.6s ease 0.08s,
        background 0.9s ease,
        box-shadow 0.9s ease;
}
.btn-primary:hover {
    background: rgba(66, 255, 209, 0.16);
    border-color: #42ffd1;
    box-shadow: 0 0 22px rgba(66, 255, 209, 0.3);
}
.btn-primary:active {
    border-color: transparent;
    border-bottom-color: rgba(66, 255, 209, 0.8);
    background: transparent;
    box-shadow: none;
    transition: none;
}

/* ── book modal ── */
.book-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0, 0, 0, 0.65);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.3s ease,
        visibility 0s linear 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.book-overlay.open {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transition:
        opacity 0.3s ease,
        visibility 0s linear 0s;
}
.book-modal {
    position: relative;
    width: 88vw;
    max-width: 620px;
    height: 82vh;
    min-height: 520px;
    background: #050505;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transform: translateY(14px);
    transition:
        transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        max-width 0.4s ease;
}
.book-overlay.open .book-modal {
    transform: translateY(0);
}
.book-modal--calendly {
    max-width: 1100px;
}
.book-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1px;
    color: rgba(255, 255, 255, 0.55);
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    cursor: pointer;
    transition:
        border-color 0.2s,
        color 0.2s;
    flex-shrink: 0;
}
.book-close:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}
.book-panel {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.25s ease,
        visibility 0s linear 0.25s;
}
.book-overlay.open .book-modal--form .book-panel--form,
.book-overlay.open .book-modal--thankyou .book-panel--thankyou,
.book-overlay.open .book-modal--calendly .book-panel--calendly {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transition:
        opacity 0.25s ease,
        visibility 0s linear 0s;
}
.book-panel--form {
    display: flex;
    flex-direction: column;
    padding: 1.5rem 2.5rem 2.5rem;
    overflow-y: auto;
    overscroll-behavior: contain;
}
.book-panel--form > .book-close {
    margin-bottom: 1.5rem;
}
.book-title {
    font-family: "Oxanium", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: #00c2ff;
    margin-bottom: 0.5rem;
    flex-shrink: 0;
}
.book-hint {
    font-family: "Open Sans", sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.03em;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-shrink: 0;
}
.book-panel--thankyou {
    display: flex;
    flex-direction: column;
    padding: 1.5rem 2.5rem 2.5rem;
}
.book-panel--thankyou > .book-close {
    margin-bottom: 0;
}
.thankyou-inner {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 460px;
    padding-bottom: 1rem;
}
.thankyou-inner::before {
    content: "";
    display: block;
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, #42ffd1, #00c2ff);
    margin-bottom: 2rem;
    border-radius: 1px;
}
.thankyou-eyebrow {
    font-family: "Oxanium", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: #42ffd1;
    margin-bottom: 1.2rem;
}
.thankyou-text {
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.9rem;
}
.thankyou-text strong {
    color: #fff;
    font-weight: 600;
}
.thankyou-text a {
    color: #00c2ff;
    text-decoration: none;
}
.thankyou-text a:hover {
    text-decoration: underline;
}
.thankyou-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 1.8rem;
    flex-shrink: 0;
}
.thankyou-decline {
    background: none;
    border: none;
    font-family: "Open Sans", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    padding: 0;
    transition: color 0.2s;
}
.thankyou-decline:hover {
    color: rgba(255, 255, 255, 0.7);
}
.book-panel--calendly > .book-close {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 10;
}
.book-panel--calendly #calendly-container {
    width: 100%;
    height: 100%;
}
.book-panel--calendly .calendly-inline-widget {
    width: 100% !important;
    height: 100% !important;
    min-width: 320px;
}
@media screen and (max-width: 768px) {
    .book-overlay {
        align-items: flex-start;
        justify-content: flex-end;
    }
    .book-modal {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: auto;
        width: 88vw;
        max-width: 400px !important;
        height: 100%;
        min-height: unset;
        border: none;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .book-overlay.open .book-modal {
        transform: translateX(0);
    }
    .book-panel--form {
        padding: 1.5rem 1.25rem 1.5rem;
    }
    .book-panel--form > .book-close {
        margin-bottom: 1rem;
    }
    .book-panel--thankyou {
        padding: 1.5rem 1.25rem 1.5rem;
    }
    .thankyou-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .intake-field input,
    .intake-field textarea {
        font-size: 16px;
    }
}

/* ── intake fields ── */
.intake-field {
    margin-bottom: 0.75rem;
}
.intake-field input,
.intake-field textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 1px;
    color: rgba(255, 255, 255, 0.85);
    font-family: "Open Sans", sans-serif;
    font-size: 12px;
    padding: 0 12px;
    outline: none;
    transition: border-color 0.25s;
    caret-color: rgba(255, 255, 255, 0.6);
}
.intake-field input:focus-visible,
.intake-field textarea:focus-visible {
    border-color: rgba(140, 111, 255, 0.7);
}
.intake-field input {
    height: 36px;
}
.intake-field textarea {
    height: 80px;
    padding: 9px 12px;
    resize: none;
}
.intake-field input::placeholder,
.intake-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.32);
}
.intake-field input:focus,
.intake-field textarea:focus {
    border-color: rgba(255, 255, 255, 0.45);
}
.intake-field input.err,
.intake-field textarea.err {
    border-color: rgba(255, 80, 80, 0.5);
}
.intake-submit {
    width: 100%;
    margin-top: 0.8rem;
    font-family: "Open Sans", sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    height: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 1px;
    color: #00c2ff;
    box-shadow: 0 0 26px rgba(0, 194, 255, 0.42);
    transition: box-shadow 0.5s ease;
    white-space: nowrap;
}
.intake-submit:hover:not(:disabled) {
    box-shadow: 0 0 22px rgba(0, 194, 255, 0.38);
}
.intake-submit:disabled {
    opacity: 0.5;
    cursor: default;
}
@media (min-width: 769px) {
    .intake-submit {
        background: transparent;
        border-radius: 1px;
        box-shadow: 0 0 9px rgba(0, 194, 255, 0.05);
        font-size: 12px;
        height: 44px;
        transition: box-shadow 0.5s ease;
    }
    .intake-submit:hover:not(:disabled) {
        box-shadow: 0 0 22px rgba(0, 194, 255, 0.38);
    }
    .book-title {
        font-size: 14px;
    }
}
.intake-error {
    font-family: "Open Sans", sans-serif;
    font-size: 11px;
    letter-spacing: 0.08em;
    color: rgba(255, 80, 80, 0.8);
    margin-top: 0.5rem;
    min-height: 1em;
}

/* ── Apply / Design Partner drawer ── */
.apply-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.3s ease,
        visibility 0s linear 0.3s;
}
.apply-overlay.open {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transition:
        opacity 0.3s ease,
        visibility 0s linear 0s;
}
.apply-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 28vw;
    min-width: 320px;
    max-width: 480px;
    background: #050505;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 210;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: hidden;
    padding: 1.5rem 2rem 1.5rem;
    pointer-events: none;
}
.apply-overlay.open .apply-drawer {
    transform: translateX(0);
    pointer-events: auto;
}
.apply-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}
.apply-close {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1px;
    color: rgba(255, 255, 255, 0.55);
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    cursor: pointer;
    transition:
        border-color 0.2s,
        color 0.2s;
}
.apply-close:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}
.apply-title {
    flex: 1;
    text-align: right;
    font-family: "Oxanium", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: #00c2ff;
    margin-bottom: 0;
}
.apply-drawer .intake-field {
    margin-bottom: 0.45rem;
}
.apply-drawer .intake-field textarea {
    height: 58px;
}
.apply-drawer #a-agents-product,
.apply-drawer #a-agents-internal {
    height: 76px;
}
.apply-drawer .intake-submit {
    margin-top: 0.5rem;
}
@media screen and (max-width: 768px) {
    .apply-drawer {
        padding: 1.5rem 1.5rem 2rem;
    }
    .apply-drawer .intake-field {
        margin-bottom: 0.7rem;
    }
    .apply-drawer .intake-field textarea {
        height: 72px;
    }
    .apply-drawer #a-agents-product,
    .apply-drawer #a-agents-internal {
        height: 96px;
    }
    .apply-drawer .intake-submit {
        margin-top: 1rem;
        height: 44px;
    }
}

/* ── Skip link ── */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    z-index: 9999;
    padding: 0.5rem 1rem;
    background: #000;
    color: #42ffd1;
    font-family: "Open Sans", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-decoration: none;
    border: 1px solid #42ffd1;
    border-radius: 1px;
}
.skip-link:focus {
    top: 1rem;
}

#definitions {
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-content: center;
    margin-bottom: 16px;
    border-style: solid;
    border-width: 1px;
    border-color: #42ffd1;
    background: rgba(66, 255, 209, 0.16);
    padding: 16px;
    gap: 16px;
    font-family: serif;
    font-size: 14px;
    line-height: 1.2;
}

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