:root {
    --bg: #07110e;
    --bg-deep: #030806;
    --panel: rgba(18, 37, 30, .72);
    --panel-solid: #10251e;
    --line: rgba(222, 255, 231, .12);
    --line-strong: rgba(198, 255, 72, .3);
    --text: #f4fff7;
    --muted: #a7b9ae;
    --brand: #c6ff48;
    --brand-2: #53efb0;
    --warning: #ffd166;
    --radius: 22px;
    --shadow: 0 24px 80px rgba(0, 0, 0, .34);
    --max: 1180px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    background:
        radial-gradient(circle at 82% 7%, rgba(83, 239, 176, .13), transparent 28rem),
        radial-gradient(circle at 8% 32%, rgba(198, 255, 72, .08), transparent 30rem),
        var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

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

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

:focus-visible {
    outline: 3px solid var(--brand);
    outline-offset: 4px;
    border-radius: 8px;
}

::selection {
    background: var(--brand);
    color: #091109;
}

.skip-link {
    position: fixed;
    left: 16px;
    top: -80px;
    z-index: 100;
    padding: 10px 16px;
    background: var(--brand);
    color: #07110e;
    font-weight: 800;
    border-radius: 10px;
    transition: top .2s ease;
}

.skip-link:focus {
    top: 16px;
}

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

.section {
    padding: 90px 0;
}

.section--compact {
    padding: 34px 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 18px;
    color: var(--brand);
    font-size: .78rem;
    font-weight: 850;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 28px;
    height: 1px;
    background: currentColor;
}

h1,
h2,
h3 {
    margin: 0;
    line-height: 1.08;
    letter-spacing: -.035em;
    text-wrap: balance;
}

h1 {
    font-size: clamp(2.75rem, 7vw, 5.7rem);
    max-width: 12ch;
}

h2 {
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    max-width: 15ch;
}

h3 {
    font-size: 1.2rem;
}

p {
    margin: 0;
}

.lead {
    max-width: 61ch;
    color: #c9d7ce;
    font-size: clamp(1.02rem, 2vw, 1.18rem);
}

.accent {
    color: var(--brand);
}

.muted {
    color: var(--muted);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--line);
    background: rgba(3, 8, 6, .8);
    backdrop-filter: blur(18px);
}

.nav {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-weight: 900;
    letter-spacing: -.03em;
}

.brand img {
    width: 34px;
    height: 34px;
}

.brand small {
    color: var(--muted);
    font-size: .68rem;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.brand-copy {
    display: grid;
    line-height: 1.15;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
    color: #c5d2c9;
    font-size: .9rem;
    font-weight: 650;
}

.nav-links a:hover {
    color: var(--brand);
}

.nav-cta {
    padding: 10px 17px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    color: var(--brand) !important;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 82px 0 58px;
}

.hero::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: min(92%, var(--max));
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    align-items: center;
    gap: clamp(35px, 7vw, 90px);
}

.hero h1 span {
    display: block;
    color: transparent;
    -webkit-text-stroke: 1px rgba(244, 255, 247, .45);
}

.hero .lead {
    margin-top: 25px;
}

.freshness {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    padding: 8px 12px;
    border: 1px solid rgba(83, 239, 176, .2);
    border-radius: 999px;
    background: rgba(83, 239, 176, .06);
    color: #c6dacd;
    font-size: .77rem;
    font-weight: 700;
}

.freshness::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--brand-2);
    box-shadow: 0 0 15px var(--brand-2);
}

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

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: 14px;
    font-weight: 850;
    line-height: 1;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button--primary {
    background: var(--brand);
    color: #07110e;
    box-shadow: 0 14px 42px rgba(198, 255, 72, .14);
}

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

.button svg {
    width: 18px;
    height: 18px;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 25px;
    margin-top: 28px;
    color: var(--muted);
    font-size: .82rem;
}

.trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.trust-row>span::before {
    content: "";
    width: 7px;
    height: 7px;
    background: var(--brand-2);
    border-radius: 50%;
    box-shadow: 0 0 14px var(--brand-2);
}

.hero-visual {
    position: relative;
    isolation: isolate;
}

.hero-visual::before {
    content: "";
    position: absolute;
    inset: 13% 8%;
    z-index: -1;
    border-radius: 50%;
    background: rgba(83, 239, 176, .2);
    filter: blur(70px);
}

.hero-visual img {
    width: 100%;
    filter: drop-shadow(0 28px 60px rgba(0, 0, 0, .35));
}

.visual-note {
    position: absolute;
    right: 2%;
    bottom: 8%;
    max-width: 200px;
    padding: 13px 15px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: rgba(7, 17, 14, .86);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
    font-size: .78rem;
    color: #c9d7ce;
}

.visual-note strong {
    display: block;
    color: var(--brand);
    font-size: .92rem;
}

.intent-strip {
    border-bottom: 1px solid var(--line);
}

.intent-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.intent-list span {
    padding: 8px 13px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: #bdcbc2;
    font-size: .78rem;
    background: rgba(255, 255, 255, .025);
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
}

.section-heading .lead {
    max-width: 48ch;
}

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

.card {
    position: relative;
    overflow: hidden;
    min-height: 360px;
    padding: 18px 18px 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .03);
    transition: transform .25s ease, border-color .25s ease;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--line-strong);
}

.card-art {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, .04);
    border-radius: 16px;
    background: #091712;
}

.card-number {
    color: var(--brand);
    font: 800 .76rem/1 ui-monospace, SFMono-Regular, Menlo, monospace;
    letter-spacing: .12em;
}

.card-number {
    display: block;
    margin: 22px 10px 0;
}

.card h3 {
    margin: 13px 10px 0;
}

.card p {
    margin: 13px 10px 0;
    color: var(--muted);
    font-size: .93rem;
}

.card::after {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    right: -70px;
    top: -70px;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
}

.guide {
    background: linear-gradient(180deg, rgba(255, 255, 255, .018), transparent);
}

.guide-grid {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: clamp(35px, 8vw, 100px);
}

.guide-copy {
    position: sticky;
    top: 120px;
    align-self: start;
}

.guide-copy .lead {
    margin-top: 22px;
}

.steps {
    display: grid;
    gap: 14px;
    counter-reset: steps;
}

.step {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 18px;
    padding: 23px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, .025);
    counter-increment: steps;
}

.step::before {
    content: counter(steps, decimal-leading-zero);
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: var(--brand);
    color: #07110e;
    font: 900 .9rem/1 ui-monospace, monospace;
}

.step h3 {
    margin: 3px 0 9px;
}

.step p {
    color: var(--muted);
    font-size: .92rem;
}

.access-center {
    border-block: 1px solid var(--line);
    background: linear-gradient(135deg, rgba(83, 239, 176, .045), transparent 48%);
}

.access-grid {
    display: grid;
    grid-template-columns: 1.03fr .97fr;
    align-items: center;
    gap: clamp(36px, 8vw, 96px);
}

.access-visual {
    position: relative;
}

.access-visual::before {
    content: "";
    position: absolute;
    inset: 16%;
    z-index: -1;
    border-radius: 50%;
    background: rgba(198, 255, 72, .1);
    filter: blur(65px);
}

.access-visual img {
    width: 100%;
    filter: drop-shadow(0 28px 55px rgba(0, 0, 0, .28));
}

.access-copy .lead {
    margin-top: 20px;
}

.signal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11px;
    margin-top: 28px;
}

.signal {
    padding: 17px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: rgba(255, 255, 255, .025);
}

.signal strong {
    display: block;
    margin-bottom: 5px;
    color: var(--brand);
    font-size: .88rem;
}

.signal span {
    color: var(--muted);
    font-size: .8rem;
    line-height: 1.5;
}

.editorial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.article-card {
    padding: clamp(25px, 4vw, 42px);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
}

.article-card--wide {
    grid-column: 1 / -1;
}

.article-card h2,
.article-card h3 {
    max-width: 21ch;
}

.article-card p {
    margin-top: 16px;
    color: #b8c7bd;
}

.article-card ul {
    margin: 19px 0 0;
    padding: 0;
    list-style: none;
    color: #b8c7bd;
}

.article-card li {
    position: relative;
    padding: 8px 0 8px 25px;
}

.article-card li::before {
    content: "";
    position: absolute;
    left: 1px;
    top: 18px;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: var(--brand-2);
}

.callout {
    margin-top: 24px;
    padding: 17px 19px;
    border-left: 3px solid var(--warning);
    background: rgba(255, 209, 102, .06);
    color: #d9d0b8;
    font-size: .88rem;
}

.diagnostic {
    background: rgba(255, 255, 255, .014);
}

.diagnostic-wrap {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
}

.diagnostic-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.diagnostic-table th,
.diagnostic-table td {
    padding: 20px 22px;
    vertical-align: top;
    border-bottom: 1px solid var(--line);
}

.diagnostic-table tr:last-child td {
    border-bottom: 0;
}

.diagnostic-table th {
    background: rgba(198, 255, 72, .07);
    color: var(--brand);
    font-size: .76rem;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.diagnostic-table td {
    color: var(--muted);
    font-size: .88rem;
}

.diagnostic-table td:first-child {
    color: var(--text);
    font-weight: 800;
}

.diagnostic-table code {
    padding: 3px 7px;
    border-radius: 6px;
    background: #07110e;
    color: var(--brand-2);
    font: 700 .76rem/1.4 ui-monospace, monospace;
}

.security-box {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 35px;
    align-items: center;
    padding: clamp(28px, 6vw, 64px);
    border: 1px solid var(--line-strong);
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(198, 255, 72, .1), rgba(83, 239, 176, .03));
    box-shadow: var(--shadow);
}

.security-box .lead {
    margin-top: 20px;
}

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

.check-list li {
    display: flex;
    gap: 12px;
    color: #d3ded7;
}

.check-list li::before {
    content: "✓";
    flex: 0 0 27px;
    display: grid;
    place-items: center;
    width: 27px;
    height: 27px;
    border-radius: 50%;
    background: var(--brand);
    color: #07110e;
    font-weight: 950;
}

.faq {
    max-width: 860px;
    margin: 0 auto;
}

.faq .section-heading {
    display: block;
    text-align: center;
}

.faq h2 {
    margin-inline: auto;
}

.faq .lead {
    margin: 18px auto 0;
}

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

summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 2px;
    cursor: pointer;
    font-weight: 800;
    list-style: none;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: "+";
    color: var(--brand);
    font-size: 1.6rem;
    font-weight: 400;
    transition: transform .2s ease;
}

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

details p {
    padding: 0 36px 24px 2px;
    color: var(--muted);
}

.final-cta {
    text-align: center;
    padding-bottom: 100px;
}

.final-cta-inner {
    position: relative;
    overflow: hidden;
    padding: clamp(44px, 8vw, 86px) 24px;
    border: 1px solid var(--line);
    border-radius: 30px;
    background: var(--panel-solid);
}

.final-cta-inner::before {
    content: "";
    position: absolute;
    width: 340px;
    height: 340px;
    left: 50%;
    top: -265px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: var(--brand);
    filter: blur(50px);
    opacity: .16;
}

.final-cta h2 {
    max-width: 17ch;
    margin-inline: auto;
}

.final-cta .lead {
    margin: 20px auto 30px;
}

footer {
    border-top: 1px solid var(--line);
    background: var(--bg-deep);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .65fr .65fr .75fr;
    gap: 45px;
    padding: 54px 0 38px;
}

.footer-brand p {
    max-width: 44ch;
    margin-top: 17px;
    color: var(--muted);
    font-size: .86rem;
}

.footer-col strong {
    display: block;
    margin-bottom: 14px;
    font-size: .82rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.footer-col a {
    display: block;
    padding: 5px 0;
    color: var(--muted);
    font-size: .86rem;
}

.footer-col a:hover {
    color: var(--brand);
}

.legal {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    padding: 22px 0;
    border-top: 1px solid var(--line);
    color: #7f9186;
    font-size: .76rem;
}

.age {
    color: var(--warning);
    font-weight: 850;
}

.mobile-cta {
    display: none;
}

@media (max-width: 900px) {
    .nav-links a:not(.nav-cta) {
        display: none;
    }

    .hero-grid,
    .guide-grid,
    .access-grid,
    .security-box {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 62px;
    }

    .hero h1 {
        max-width: 11ch;
    }

    .hero-visual {
        max-width: 600px;
        margin-inline: auto;
    }

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

    .cards .card:last-child {
        grid-column: 1 / -1;
    }

    .guide-copy {
        position: static;
    }

    .access-visual {
        max-width: 680px;
        margin-inline: auto;
    }

    .section-heading {
        display: block;
    }

    .section-heading .lead {
        margin-top: 18px;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 620px) {
    body {
        padding-bottom: 68px;
    }

    .container {
        width: min(calc(100% - 24px), var(--max));
    }

    .section {
        padding: 68px 0;
    }

    .nav {
        min-height: 64px;
    }

    .brand small,
    .nav-cta {
        display: none;
    }

    .hero {
        padding-top: 48px;
    }

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

    .visual-note {
        right: 0;
        bottom: 2%;
    }

    .cards,
    .editorial-grid,
    .signal-grid {
        grid-template-columns: 1fr;
    }

    .cards .card:last-child,
    .article-card--wide {
        grid-column: auto;
    }

    .card {
        min-height: 225px;
    }

    .step {
        grid-template-columns: 48px 1fr;
        padding: 18px;
        gap: 13px;
    }

    .step::before {
        width: 44px;
        height: 44px;
    }

    .security-box {
        border-radius: 22px;
    }

    .diagnostic-wrap {
        overflow-x: auto;
    }

    .diagnostic-table {
        min-width: 720px;
    }

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

    .footer-brand {
        grid-column: auto;
    }

    .legal {
        display: grid;
    }

    .mobile-cta {
        position: fixed;
        z-index: 60;
        left: 10px;
        right: 10px;
        bottom: 9px;
        display: flex;
        min-height: 50px;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255, 255, 255, .2);
        border-radius: 15px;
        background: var(--brand);
        color: #07110e;
        font-weight: 900;
        box-shadow: 0 12px 38px rgba(0, 0, 0, .42);
    }
}

/* Shared inner pages */
.subpage-main {
    padding: 84px 0 110px;
}

.breadcrumb-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 34px;
    color: var(--muted);
    font-size: .82rem;
}

.breadcrumb-nav a:hover,
.prose a:hover {
    color: var(--brand);
}

.breadcrumb-nav span[aria-hidden="true"] {
    color: #5e7065;
}

.page-hero {
    position: relative;
    overflow: hidden;
    margin-bottom: 34px;
    padding: clamp(38px, 6vw, 72px);
    border: 1px solid rgba(214, 255, 75, .16);
    border-radius: 38px;
    background:
        radial-gradient(circle at 90% 0, rgba(83, 239, 176, .13), transparent 26rem),
        linear-gradient(145deg, rgba(214, 255, 75, .055), rgba(255, 255, 255, .015));
    box-shadow: var(--shadow);
}

.page-hero::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -95px;
    width: 250px;
    height: 250px;
    border: 1px solid rgba(214, 255, 75, .15);
    border-radius: 50%;
    box-shadow: 0 0 0 38px rgba(214, 255, 75, .025), 0 0 0 76px rgba(214, 255, 75, .018);
    pointer-events: none;
}

.page-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--brand);
    font-size: .76rem;
    font-weight: 850;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.page-kicker::before {
    content: "";
    width: 24px;
    height: 1px;
    background: currentColor;
}

.page-hero h1 {
    position: relative;
    z-index: 1;
    max-width: 14ch;
    font-size: clamp(2.7rem, 6.5vw, 5.2rem);
}

.page-hero .lead {
    position: relative;
    z-index: 1;
    margin-top: 23px;
    max-width: 68ch;
}

.page-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 26px;
}

.page-meta span {
    padding: 7px 11px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, .025);
    color: #c3d2c9;
    font-size: .76rem;
    font-weight: 700;
}

.content-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 28px;
    align-items: start;
}

.prose-card,
.aside-card,
.value-card,
.contact-card,
.author-card {
    border: 1px solid var(--line);
    background: rgba(12, 27, 22, .72);
    box-shadow: 0 18px 55px rgba(0, 0, 0, .18);
}

.prose-card {
    padding: clamp(28px, 5vw, 58px);
    border-radius: 30px;
}

.prose > :first-child {
    margin-top: 0;
}

.prose h2 {
    max-width: none;
    margin: 52px 0 17px;
    font-size: clamp(1.65rem, 3.5vw, 2.35rem);
}

.prose h3 {
    margin: 32px 0 12px;
    color: #edf9f0;
    font-size: 1.18rem;
}

.prose p,
.prose li {
    color: #bdcdc3;
}

.prose p + p {
    margin-top: 17px;
}

.prose ul,
.prose ol {
    margin: 18px 0 0;
    padding-left: 1.25rem;
}

.prose li + li {
    margin-top: 10px;
}

.prose strong {
    color: var(--text);
}

.prose a {
    color: var(--brand-2);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.policy-callout {
    margin: 28px 0 4px;
    padding: 20px 22px;
    border-left: 3px solid var(--brand);
    border-radius: 0 16px 16px 0;
    background: rgba(214, 255, 75, .055);
    color: #d9e7dd;
}

.trust-aside {
    position: sticky;
    top: 96px;
    display: grid;
    gap: 16px;
}

.aside-card {
    padding: 23px;
    border-radius: 22px;
}

.aside-card strong {
    display: block;
    margin-bottom: 12px;
    font-size: .78rem;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.aside-card p {
    color: var(--muted);
    font-size: .87rem;
}

.toc-list {
    display: grid;
    gap: 9px;
}

.toc-list a {
    color: #b7c8be;
    font-size: .86rem;
}

.toc-list a:hover {
    color: var(--brand);
}

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

.value-card,
.contact-card {
    padding: 23px;
    border-radius: 20px;
}

.value-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-bottom: 16px;
    border-radius: 10px;
    background: rgba(214, 255, 75, .11);
    color: var(--brand);
    font-size: .8rem;
    font-weight: 900;
}

.value-card h3,
.contact-card h3 {
    margin: 0 0 9px;
}

.value-card p,
.contact-card p {
    color: var(--muted);
    font-size: .9rem;
}

.author-card {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    margin: 6px 0 32px;
    padding: 26px;
    border-radius: 24px;
}

.author-avatar {
    width: 96px;
    height: 96px;
    padding: 14px;
    border: 1px solid rgba(214, 255, 75, .2);
    border-radius: 23px;
    background: rgba(214, 255, 75, .065);
}

.author-card h2 {
    margin: 0 0 8px;
    font-size: 1.55rem;
}

.author-role {
    color: var(--brand);
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.author-card p:last-child {
    margin-top: 8px;
    color: var(--muted);
    font-size: .9rem;
}

.contact-email {
    display: inline-flex;
    margin-top: 16px;
    color: var(--brand);
    font-weight: 800;
    overflow-wrap: anywhere;
}

.contact-email.button--primary {
    color: #07110e;
    text-decoration: none;
}

.error-main {
    min-height: calc(100vh - 260px);
    display: grid;
    place-items: center;
    padding: 90px 0 120px;
    text-align: center;
}

.error-panel {
    width: min(760px, 100%);
    padding: clamp(42px, 8vw, 85px) clamp(24px, 6vw, 65px);
    border: 1px solid rgba(214, 255, 75, .17);
    border-radius: 38px;
    background: radial-gradient(circle at 50% 0, rgba(214, 255, 75, .1), transparent 24rem), rgba(12, 27, 22, .72);
    box-shadow: var(--shadow);
}

.error-code {
    color: var(--brand);
    font-size: clamp(5rem, 17vw, 9.5rem);
    font-weight: 950;
    line-height: .85;
    letter-spacing: -.08em;
}

.error-panel h1 {
    max-width: none;
    margin-top: 24px;
    font-size: clamp(2rem, 5vw, 3.5rem);
}

.error-panel .lead {
    margin: 19px auto 28px;
}

.error-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 11px;
}

@media (max-width: 900px) {
    .content-shell {
        grid-template-columns: 1fr;
    }

    .trust-aside {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    body.subpage {
        padding-bottom: 0;
    }

    .subpage-main {
        padding: 50px 0 88px;
    }

    .page-hero {
        padding: 30px 23px 34px;
        border-radius: 27px;
    }

    .page-hero h1 {
        font-size: clamp(2.35rem, 13vw, 3.5rem);
    }

    .prose-card {
        padding: 28px 21px;
        border-radius: 24px;
    }

    .values-grid,
    .contact-grid,
    .trust-aside {
        grid-template-columns: 1fr;
    }

    .author-card {
        grid-template-columns: 1fr;
    }
}

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

    *,
    *::before,
    *::after {
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* Premium editorial skin — static, dependency-free */
:root {
    --bg: #070908;
    --bg-deep: #030504;
    --panel: rgba(18, 23, 20, .82);
    --panel-solid: #111713;
    --line: rgba(232, 255, 238, .105);
    --line-strong: rgba(211, 255, 75, .38);
    --text: #f7fff7;
    --muted: #9eaea3;
    --brand: #d6ff4b;
    --brand-2: #5df0b4;
    --warning: #ffbd66;
    --blue: #79dcff;
    --radius: 26px;
    --shadow: 0 30px 100px rgba(0, 0, 0, .38);
}

body {
    background:
        radial-gradient(circle at 78% 8%, rgba(66, 205, 146, .12), transparent 25rem),
        radial-gradient(circle at 6% 25%, rgba(214, 255, 75, .07), transparent 27rem),
        linear-gradient(180deg, #080b09 0%, #060806 46%, #080a08 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: .23;
    background-image: linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 76px 76px;
    mask-image: linear-gradient(to bottom, #000, transparent 75%);
}

.container {
    width: min(calc(100% - 44px), 1240px);
}

.section {
    padding: 118px 0;
}

.section-index {
    display: block;
    margin-bottom: 18px;
    color: rgba(214, 255, 75, .62);
    font: 800 .67rem/1 ui-monospace, SFMono-Regular, Menlo, monospace;
    letter-spacing: .18em;
}

.eyebrow {
    margin-bottom: 20px;
    color: #d6ff4b;
}

h1,
h2,
h3 {
    letter-spacing: -.045em;
}

h2 {
    max-width: 16ch;
}

.lead {
    color: #bdcac1;
}

.site-header {
    top: 12px;
    border: 0;
    background: transparent;
    backdrop-filter: none;
}

.nav {
    min-height: 66px;
    padding: 0 12px 0 18px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 19px;
    background: rgba(8, 12, 9, .82);
    box-shadow: 0 15px 45px rgba(0, 0, 0, .24);
    backdrop-filter: blur(22px);
}

.brand img {
    width: 37px;
    height: 37px;
    border-radius: 10px;
    background: #fff;
    filter: drop-shadow(0 6px 18px rgba(46, 169, 217, .22));
}

.brand-copy {
    font-size: .98rem;
}

.nav-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    color: #9fb0a4;
    font-size: .7rem;
    font-weight: 750;
}

.nav-status::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--brand-2);
    box-shadow: 0 0 14px var(--brand-2);
}

.nav-links {
    gap: 7px;
    margin-left: 12px;
}

.nav-links>a {
    padding: 9px 12px;
    border-radius: 10px;
}

.nav-links>a:hover {
    background: rgba(255, 255, 255, .045);
}

.nav-cta {
    padding: 11px 17px !important;
    border: 0;
    background: var(--brand);
    color: #071008 !important;
}

.hero {
    min-height: 850px;
    display: grid;
    align-items: center;
    padding: 115px 0 90px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 13% auto auto 52%;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    background: conic-gradient(from 210deg, rgba(214, 255, 75, .12), rgba(93, 240, 180, .02), rgba(121, 220, 255, .09), rgba(214, 255, 75, .12));
    filter: blur(6px);
    opacity: .72;
}

.hero-grid {
    position: relative;
    grid-template-columns: 1.03fr .97fr;
    gap: clamp(42px, 7vw, 90px);
}

.freshness {
    margin-bottom: 24px;
    border-color: rgba(255, 189, 102, .18);
    background: rgba(255, 189, 102, .055);
    color: #d9c7ae;
}

.freshness::before {
    background: var(--warning);
    box-shadow: 0 0 15px var(--warning);
}

.hero h1 {
    max-width: 10ch;
    font-size: clamp(3.5rem, 7.1vw, 6.6rem);
    line-height: .9;
}

.hero h1 span {
    display: block;
    padding-bottom: .08em;
    color: transparent;
    -webkit-text-stroke: 0;
    background: linear-gradient(110deg, var(--brand), #81f5b8 58%, #b8eaff);
    background-clip: text;
    -webkit-background-clip: text;
}

.hero .lead {
    max-width: 57ch;
    margin-top: 30px;
    font-size: 1.11rem;
}

.hero .lead strong {
    color: #fff;
}

.hero-actions {
    margin-top: 38px;
}

.button {
    min-height: 56px;
    padding: 15px 24px;
    border-radius: 16px;
}

.button--primary {
    background: linear-gradient(100deg, #d6ff4b, #78f2a9);
    box-shadow: 0 18px 50px rgba(131, 242, 132, .15);
}

.button--secondary {
    border-color: rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .04);
    backdrop-filter: blur(12px);
}

.trust-row {
    margin-top: 25px;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
    max-width: 610px;
    margin-top: 35px;
}

.hero-metrics div {
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, .085);
    border-radius: 15px;
    background: rgba(255, 255, 255, .025);
}

.hero-metrics strong {
    display: block;
    color: #fff;
    font-size: 1.15rem;
    letter-spacing: -.02em;
}

.hero-metrics span {
    display: block;
    margin-top: 3px;
    color: #819087;
    font-size: .66rem;
    line-height: 1.35;
}

.hero-visual {
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 38px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .012));
    box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, .06);
    backdrop-filter: blur(15px);
}

.hero-visual::before {
    inset: 15%;
    background: rgba(93, 240, 180, .22);
}

.hero-visual::after {
    content: "";
    position: absolute;
    inset: 11px;
    border: 1px solid rgba(214, 255, 75, .09);
    border-radius: 29px;
    pointer-events: none;
}

.visual-note {
    right: -16px;
    bottom: 9%;
    border-color: rgba(255, 255, 255, .13);
    border-radius: 17px;
}

.visual-note--top {
    left: -22px;
    right: auto;
    top: 8%;
    bottom: auto;
}

.visual-note--top strong {
    color: var(--blue);
}

.intent-strip {
    border-block: 1px solid rgba(255, 255, 255, .07);
    background: rgba(255, 255, 255, .015);
}

.intent-list {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow: hidden;
    min-height: 70px;
}

.intent-title {
    flex: 0 0 auto;
    padding-right: 16px;
    color: #fff;
    font-size: .7rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.intent-list span {
    flex: 0 0 auto;
    padding: 9px 15px;
    border-color: rgba(255, 255, 255, .08);
    background: rgba(255, 255, 255, .026);
}

.section-heading {
    align-items: flex-end;
    margin-bottom: 52px;
}

.section-heading>div {
    flex: 1;
}

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

.card {
    min-height: 405px;
    padding: 15px 15px 28px;
    border-radius: 27px;
    background: linear-gradient(155deg, rgba(25, 33, 28, .92), rgba(11, 15, 12, .82));
}

.card--link {
    grid-column: span 5;
}

.card--https {
    grid-column: span 3;
}

.card--account {
    grid-column: span 4;
}

.card-art {
    min-height: 180px;
    object-fit: cover;
    border-radius: 20px;
}

.card--https .card-art {
    object-position: center;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .24);
}

.card::after {
    display: none;
}

.card-number {
    margin-top: 25px;
}

.card h3 {
    font-size: 1.35rem;
}

.access-center {
    border: 0;
    background: transparent;
}

.access-grid {
    padding: clamp(32px, 6vw, 75px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 38px;
    background: radial-gradient(circle at 12% 78%, rgba(93, 240, 180, .095), transparent 24rem), #0d120f;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.access-visual {
    order: 2;
}

.access-copy {
    order: 1;
}

.signal {
    min-height: 112px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .03);
}

.signal:nth-child(2) strong {
    color: var(--blue);
}

.signal:nth-child(3) strong {
    color: var(--warning);
}

.guide {
    background: linear-gradient(180deg, rgba(255, 255, 255, .015), transparent);
}

.guide-grid {
    grid-template-columns: .72fr 1.28fr;
}

.guide-copy {
    padding-top: 25px;
}

.steps {
    gap: 11px;
}

.step {
    min-height: 135px;
    align-items: center;
    padding: 25px 28px;
    border-radius: 22px;
    background: linear-gradient(110deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .015));
}

.step::before {
    border-radius: 16px;
    background: rgba(214, 255, 75, .1);
    color: var(--brand);
    border: 1px solid rgba(214, 255, 75, .21);
}

.step:hover {
    border-color: rgba(214, 255, 75, .25);
    transform: translateX(5px);
}

.editorial-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 15px;
}

.article-card {
    grid-column: span 6;
    border-radius: 27px;
    background: linear-gradient(145deg, rgba(23, 30, 25, .88), rgba(12, 16, 13, .8));
}

.article-card--wide {
    grid-column: 1 / -1;
    padding: clamp(34px, 5vw, 60px);
    background: linear-gradient(120deg, rgba(214, 255, 75, .08), rgba(93, 240, 180, .035));
}

.article-card:nth-child(3) {
    background: linear-gradient(145deg, rgba(121, 220, 255, .065), rgba(12, 16, 13, .82));
}

.article-card:nth-child(4) {
    background: linear-gradient(145deg, rgba(255, 189, 102, .06), rgba(12, 16, 13, .82));
}

.article-card h3 {
    font-size: 1.45rem;
}

.diagnostic {
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .017), transparent);
}

.diagnostic-wrap {
    border-radius: 28px;
    box-shadow: 0 22px 70px rgba(0, 0, 0, .22);
}

.diagnostic-table th {
    padding-block: 17px;
    background: rgba(214, 255, 75, .055);
}

.diagnostic-table td {
    padding-block: 23px;
}

.diagnostic-table tbody tr {
    transition: background .2s ease;
}

.diagnostic-table tbody tr:hover {
    background: rgba(255, 255, 255, .025);
}

.security-box {
    padding: clamp(40px, 6vw, 72px);
    border-color: rgba(255, 189, 102, .2);
    border-radius: 38px;
    background: radial-gradient(circle at 95% 0, rgba(255, 189, 102, .1), transparent 24rem), linear-gradient(135deg, rgba(214, 255, 75, .07), rgba(93, 240, 180, .02));
}

.check-list li {
    padding: 11px 13px;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 14px;
    background: rgba(255, 255, 255, .024);
}

.check-list li::before {
    background: rgba(255, 189, 102, .13);
    color: var(--warning);
}

.faq {
    max-width: 910px;
}

.faq .section-heading {
    margin-bottom: 42px;
}

details {
    margin-bottom: 10px;
    padding-inline: 22px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    background: rgba(255, 255, 255, .021);
}

details[open] {
    border-color: rgba(214, 255, 75, .23);
    background: rgba(214, 255, 75, .035);
}

details p {
    padding-bottom: 24px;
}

.final-cta {
    padding: 20px 0 110px;
}

.final-cta-inner {
    padding-block: clamp(60px, 9vw, 105px);
    border-radius: 40px;
    background: radial-gradient(circle at 50% 0, rgba(214, 255, 75, .14), transparent 26rem), #0d120f;
}

.final-cta h2 {
    font-size: clamp(2.4rem, 5vw, 4.25rem);
}

footer {
    background: #030504;
}

@media (max-width: 1020px) {
    .nav-status {
        display: none;
    }

    .nav-links>a:not(.nav-cta) {
        display: none;
    }

    .card--link {
        grid-column: span 7;
    }

    .card--https {
        grid-column: span 5;
    }

    .card--account {
        grid-column: 1 / -1;
    }

    .card--account .card-art {
        max-height: 210px;
    }
}

@media (max-width: 900px) {
    .hero {
        min-height: auto;
        padding-top: 105px;
    }

    .hero::before {
        left: 18%;
        top: 48%;
    }

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

    .hero h1 {
        max-width: 9ch;
    }

    .hero-visual {
        max-width: 650px;
        margin-top: 15px;
    }

    .access-visual {
        order: 1;
    }

    .access-copy {
        order: 2;
    }

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

    .article-card {
        grid-column: 1 / -1;
    }
}

@media (max-width: 620px) {
    .container {
        width: min(calc(100% - 24px), 1240px);
    }

    .site-header {
        top: 7px;
    }

    .nav {
        min-height: 58px;
        border-radius: 16px;
    }

    .hero {
        padding: 90px 0 65px;
    }

    .hero h1 {
        font-size: clamp(3.1rem, 17vw, 4.8rem);
    }

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

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

    .hero-metrics div {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .hero-metrics span {
        margin-top: 0;
    }

    .hero-visual {
        padding: 12px;
        border-radius: 27px;
    }

    .visual-note {
        right: -3px;
    }

    .visual-note--top {
        left: -3px;
    }

    .intent-list {
        overflow-x: auto;
        scrollbar-width: none;
    }

    .intent-list::-webkit-scrollbar {
        display: none;
    }

    .section {
        padding: 82px 0;
    }

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

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

    .card--link,
    .card--https,
    .card--account {
        grid-column: auto;
    }

    .card {
        min-height: 0;
    }

    .card-art {
        min-height: 150px;
    }

    .access-grid {
        padding: 28px 20px;
        border-radius: 27px;
    }

    .step:hover {
        transform: none;
    }

    .article-card {
        grid-column: auto;
    }

    .security-box,
    .final-cta-inner {
        border-radius: 27px;
    }

    details {
        padding-inline: 16px;
    }
}
