:root {
    --bg:#f5f7fb;
    --surface:#ffffff;
    --surface2:#eef3f8;
    --text:#102033;
    --muted:#66758a;
    --border:#dce4ed;
    --primary:#0ea5e9;
    --primary2:#6366f1;
    --success:#10b981;
    --shadow:0 10px 35px rgba(15,23,42,.07);
}

html[data-theme="dark"] {
    --bg:#080c16;
    --surface:#101725;
    --surface2:#151e2e;
    --text:#eef6ff;
    --muted:#9eacc1;
    --border:#233047;
    --shadow:0 10px 35px rgba(0,0,0,.25);
}

* {
    box-sizing:border-box;
}

html {
    scroll-behavior:smooth;
}

body {
    margin:0;
    background:var(--bg);
    color:var(--text);
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    line-height:1.6;
}

a {
    color:inherit;
}

.site-header {
    width:min(1180px,calc(100% - 28px));
    margin:14px auto 0;
    padding:14px 18px;
    background:rgba(255,255,255,.86);
    border:1px solid var(--border);
    border-radius:18px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:18px;
    position:sticky;
    top:10px;
    z-index:100;
    backdrop-filter:blur(16px);
    box-shadow:var(--shadow);
}

html[data-theme="dark"] .site-header {
    background:rgba(16,23,37,.88);
}

.brand {
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    font-weight:900;
    letter-spacing:-.02em;
}

.brand-icon {
    width:38px;
    height:38px;
    border-radius:11px;
    display:grid;
    place-items:center;
    color:#fff;
    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary2)
        );
}

nav {
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:8px;
}

nav a,
.theme-button {
    border:0;
    background:transparent;
    color:var(--muted);
    padding:9px 11px;
    border-radius:10px;
    text-decoration:none;
    font:inherit;
    font-size:14px;
    cursor:pointer;
}

nav a:hover,
.theme-button:hover {
    color:var(--text);
    background:var(--surface2);
}

.page {
    width:min(1180px,calc(100% - 28px));
    margin:0 auto;
}

.hero {
    text-align:center;
    padding:92px 20px 62px;
}

.eyebrow,
.category-label {
    font-size:12px;
    letter-spacing:.14em;
    font-weight:900;
    color:var(--primary);
}

.hero h1 {
    max-width:870px;
    margin:14px auto 18px;
    font-size:clamp(38px,7vw,72px);
    line-height:1.02;
    letter-spacing:-.055em;
}

.hero h1 span {
    background:
        linear-gradient(
            90deg,
            var(--primary),
            var(--primary2)
        );
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
}

.hero p {
    max-width:720px;
    margin:0 auto;
    color:var(--muted);
    font-size:18px;
}

.hero-actions {
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:10px;
    margin-top:28px;
}

.primary-button,
.secondary-button {
    display:inline-flex;
    justify-content:center;
    align-items:center;
    min-height:46px;
    padding:0 20px;
    border-radius:12px;
    text-decoration:none;
    font-weight:800;
}

.primary-button {
    color:#fff;
    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary2)
        );
}

.secondary-button {
    background:var(--surface);
    border:1px solid var(--border);
}

.quick-card {
    display:grid;
    grid-template-columns:auto 1fr auto;
    align-items:center;
    gap:22px;
    padding:26px;
    margin-bottom:54px;
    border:1px solid var(--border);
    border-radius:20px;
    background:
        linear-gradient(
            135deg,
            var(--surface),
            var(--surface2)
        );
    box-shadow:var(--shadow);
}

.quick-icon,
.tool-big-icon {
    display:grid;
    place-items:center;
    width:64px;
    height:64px;
    border-radius:18px;
    background:
        linear-gradient(
            135deg,
            rgba(14,165,233,.18),
            rgba(99,102,241,.18)
        );
    font-size:28px;
}

.quick-card h2 {
    margin:3px 0;
}

.quick-card p {
    margin:0;
    color:var(--muted);
}

.tools-section {
    padding-bottom:60px;
}

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

.section-heading h2 {
    margin:4px 0 0;
    font-size:34px;
    letter-spacing:-.035em;
}

.category-block {
    margin-bottom:34px;
}

.category-heading {
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:12px;
}

.category-heading h3 {
    margin:0;
}

.category-heading span {
    color:var(--muted);
    font-size:13px;
}

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

.tool-card {
    display:flex;
    flex-direction:column;
    min-height:180px;
    padding:22px;
    text-decoration:none;
    border:1px solid var(--border);
    border-radius:18px;
    background:var(--surface);
    box-shadow:var(--shadow);
    transition:
        transform .2s ease,
        border-color .2s ease;
}

.tool-card:hover {
    transform:translateY(-3px);
    border-color:var(--primary);
}

.card-icon {
    font-size:27px;
    margin-bottom:14px;
}

.tool-card strong {
    margin-bottom:5px;
    font-size:16px;
}

.tool-card span:not(.card-icon) {
    color:var(--muted);
    font-size:14px;
}

.tool-card small {
    color:var(--primary);
    margin-top:auto;
    padding-top:14px;
    font-weight:800;
}

.tool-page {
    padding:44px 0 60px;
}

.back-link {
    color:var(--muted);
    text-decoration:none;
    font-size:14px;
}

.tool-heading {
    display:flex;
    align-items:center;
    gap:20px;
    margin:28px 0 26px;
}

.tool-heading h1 {
    margin:4px 0;
    font-size:clamp(30px,5vw,48px);
    letter-spacing:-.04em;
}

.tool-heading p {
    margin:0;
    color:var(--muted);
}

.tool-shell,
.content-section,
.related-section {
    background:var(--surface);
    border:1px solid var(--border);
    border-radius:20px;
    box-shadow:var(--shadow);
    padding:28px;
    margin-bottom:18px;
}

.build-message {
    display:flex;
    flex-direction:column;
    gap:5px;
    padding:22px;
    border-radius:14px;
    background:var(--surface2);
}

.build-message span,
.content-section p {
    color:var(--muted);
}

.content-section h2,
.related-section h2 {
    margin-top:0;
}

.footer {
    width:min(1180px,calc(100% - 28px));
    margin:0 auto 18px;
    border:1px solid var(--border);
    border-radius:18px;
    background:var(--surface);
    padding:24px;
    display:flex;
    gap:20px;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
}

.footer > div:first-child {
    display:flex;
    flex-direction:column;
}

.footer span,
.footer small {
    color:var(--muted);
}

.footer-links {
    display:flex;
    flex-wrap:wrap;
    gap:14px;
}

.footer-links a {
    color:var(--muted);
    text-decoration:none;
}

@media (max-width:850px) {

    .tool-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0,1fr)
            );
    }

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

    .quick-card .primary-button {
        grid-column:1 / -1;
    }

}

@media (max-width:620px) {

    .site-header {
        position:relative;
        top:auto;
    }

    .site-header {
        align-items:flex-start;
    }

    nav a:not(:last-of-type) {
        display:none;
    }

    .hero {
        padding:58px 8px 42px;
    }

    .hero p {
        font-size:16px;
    }

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

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

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

}

/* ==============================================
   QUICK API AUDIT
   ============================================== */

.audit-form label {
    display:block;
    font-weight:800;
    margin-bottom:9px;
}

.audit-input-row {
    display:grid;
    grid-template-columns:1fr auto;
    gap:10px;
}

.audit-input-row input {
    width:100%;
    min-height:52px;
    border:1px solid var(--border);
    border-radius:12px;
    padding:0 16px;
    background:var(--bg);
    color:var(--text);
    font:inherit;
    outline:none;
}

.audit-input-row input:focus {
    border-color:var(--primary);
    box-shadow:
        0 0 0 3px rgba(14,165,233,.13);
}

.audit-button {
    border:0;
    border-radius:12px;
    min-height:52px;
    padding:0 22px;
    color:#fff;
    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary2)
        );
    font:inherit;
    font-weight:800;
    cursor:pointer;
}

.form-note {
    color:var(--muted);
    font-size:13px;
    margin:10px 0 0;
}

.audit-error {
    margin-top:18px;
    padding:15px 17px;
    border-radius:12px;
    background:rgba(239,68,68,.10);
    border:1px solid rgba(239,68,68,.30);
    color:#ef4444;
    font-weight:700;
}

.audit-results {
    margin-top:28px;
}

.audit-score {
    text-align:center;
    padding:28px;
    background:var(--surface2);
    border-radius:16px;
}

.score-number {
    font-size:58px;
    line-height:1;
    font-weight:900;
    letter-spacing:-.06em;
}

.score-total {
    color:var(--muted);
    font-weight:700;
}

.audit-score strong {
    display:block;
    margin-top:6px;
}

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

.audit-summary div {
    padding:16px;
    background:var(--surface2);
    border-radius:12px;
}

.audit-summary span {
    display:block;
    color:var(--muted);
    font-size:12px;
    margin-bottom:4px;
}

.audit-checks {
    display:grid;
    gap:9px;
}

.audit-check {
    display:flex;
    gap:13px;
    align-items:flex-start;
    border:1px solid var(--border);
    border-radius:13px;
    padding:15px;
}

.audit-check p {
    margin:3px 0 0;
    color:var(--muted);
    font-size:14px;
}

.check-symbol {
    width:30px;
    height:30px;
    flex:0 0 30px;
    display:grid;
    place-items:center;
    border-radius:50%;
    font-weight:900;
}

.status-pass .check-symbol {
    color:#10b981;
    background:rgba(16,185,129,.13);
}

.status-warning .check-symbol {
    color:#f59e0b;
    background:rgba(245,158,11,.14);
}

.status-info .check-symbol {
    color:#0ea5e9;
    background:rgba(14,165,233,.13);
}

.technical-details {
    margin-top:14px;
    border:1px solid var(--border);
    border-radius:13px;
    padding:15px 17px;
}

.technical-details summary {
    cursor:pointer;
    font-weight:800;
}

.technical-details dl {
    display:grid;
    grid-template-columns:160px 1fr;
    gap:8px 15px;
    margin-bottom:0;
}

.technical-details dt {
    color:var(--muted);
}

.technical-details dd {
    margin:0;
    font-family:monospace;
}

@media (max-width:700px) {

    .audit-input-row {
        grid-template-columns:1fr;
    }

    .audit-summary {
        grid-template-columns:
            repeat(2,minmax(0,1fr));
    }

}

@media (max-width:420px) {

    .audit-summary {
        grid-template-columns:1fr;
    }

}

/* =============================================
   PHASE 4 API TOOL UI
   ============================================= */

.audit-form > input,
.audit-form > select,
.audit-form > textarea,
.endpoint-grid input,
.endpoint-grid select {

    width:100%;
    border:1px solid var(--border);
    border-radius:12px;
    background:var(--bg);
    color:var(--text);
    font:inherit;
    padding:13px 15px;
    outline:none;
    margin-bottom:16px;
}

.audit-form textarea {

    width:100%;
    border:1px solid var(--border);
    border-radius:12px;
    background:var(--bg);
    color:var(--text);
    padding:14px;
    font-family:
        ui-monospace,
        SFMono-Regular,
        Menlo,
        Monaco,
        Consolas,
        monospace;
    resize:vertical;
    outline:none;
    margin-bottom:16px;
}

.audit-form input:focus,
.audit-form textarea:focus,
.audit-form select:focus {

    border-color:var(--primary);
    box-shadow:
        0 0 0 3px
        rgba(14,165,233,.12);
}

.endpoint-grid {

    display:grid;
    grid-template-columns:
        minmax(150px,.35fr)
        minmax(0,1fr);
    gap:12px;
}

.full-button {

    width:100%;
    margin-top:4px;
}

.result-spacing {

    margin-top:18px;
}

.mini-score {

    margin-top:22px;
    padding:18px;
    background:var(--surface2);
    border-radius:13px;
    font-size:18px;
}

.result-table {

    margin-top:22px;
    border:1px solid var(--border);
    border-radius:14px;
    overflow:hidden;
}

.result-row {

    display:grid;
    grid-template-columns:
        minmax(150px,.35fr)
        minmax(0,1fr);

    gap:18px;

    padding:14px 16px;

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

.result-row:last-child {

    border-bottom:0;
}

.result-row span {

    color:var(--muted);
    word-break:break-word;
}

.response-details {

    margin-top:14px;
    border:1px solid var(--border);
    border-radius:14px;
    overflow:hidden;
}

.response-details summary {

    cursor:pointer;
    padding:14px 16px;
    font-weight:800;
    background:var(--surface2);
}

.response-details pre {

    margin:0;
    padding:18px;
    max-height:500px;
    overflow:auto;

    background:#07111f;
    color:#d7e7fa;

    font-size:13px;
    line-height:1.6;

    white-space:pre-wrap;
    word-break:break-word;
}

.signal-list {

    margin-top:15px;
    display:grid;
    gap:8px;
}

.signal-list div {

    padding:12px 14px;
    background:
        rgba(16,185,129,.10);
    border-radius:11px;
}

@media (max-width:650px) {

    .endpoint-grid {

        grid-template-columns:1fr;
    }

    .result-row {

        grid-template-columns:1fr;
        gap:4px;
    }
}

/* ================================================
   PHASE 5 TOOLS
   ================================================ */

.local-tool-banner,
.jwt-warning,
.assessment-box,
.clean-result {

    margin-bottom:18px;
    padding:15px 17px;
    border-radius:13px;
    background:var(--surface2);
    border:1px solid var(--border);
}

.local-tool-banner {

    color:var(--text);
    font-weight:700;
}

.jwt-warning {

    margin-top:18px;
    color:#f59e0b;
}

.assessment-box {

    margin-top:20px;
    font-weight:700;
}

.clean-result {

    margin-top:20px;
    color:#10b981;
    font-weight:800;
}

.sample-grid {

    display:grid;
    grid-template-columns:
        repeat(
            auto-fit,
            minmax(120px,1fr)
        );

    gap:10px;
    margin-top:14px;
}

.sample-card {

    display:flex;
    flex-direction:column;
    gap:4px;

    padding:15px;

    border:1px solid var(--border);
    border-radius:13px;
    background:var(--surface2);
}

.sample-card span,
.sample-card small {

    color:var(--muted);
}

.sample-card strong {

    font-size:17px;
}

.schema-grid {

    display:grid;
    grid-template-columns:
        repeat(
            2,
            minmax(0,1fr)
        );

    gap:14px;
}

.schema-grid textarea {

    min-height:320px;
}

.schema-result {

    display:flex;
    justify-content:space-between;
    gap:15px;
    flex-wrap:wrap;

    margin-top:20px;
    padding:18px;

    border-radius:13px;
    border:1px solid var(--border);
}

.schema-valid {

    background:
        rgba(16,185,129,.10);
}

.schema-valid strong {

    color:#10b981;
}

.schema-invalid {

    background:
        rgba(239,68,68,.08);
}

.schema-invalid strong {

    color:#ef4444;
}

.validation-errors {

    display:grid;
    gap:8px;
    margin-top:12px;
}

.validation-errors div {

    padding:12px 14px;

    border-radius:10px;
    border:1px solid rgba(239,68,68,.22);

    background:
        rgba(239,68,68,.07);
}

.finding-list {

    display:grid;
    gap:10px;
    margin-top:18px;
}

.finding-card {

    padding:16px;

    border-radius:13px;
    border:1px solid var(--border);

    background:var(--surface);
}

.finding-card > span {

    display:inline-block;
    margin-bottom:5px;

    font-size:11px;
    font-weight:900;
    letter-spacing:.09em;
}

.finding-card p {

    margin:4px 0 0;
    color:var(--muted);
}

.severity-high > span {

    color:#ef4444;
}

.severity-medium > span {

    color:#f59e0b;
}

.severity-low > span {

    color:#0ea5e9;
}

.severity-info > span {

    color:var(--muted);
}

@media (max-width:750px) {

    .schema-grid {

        grid-template-columns:1fr;
    }

    .schema-grid textarea {

        min-height:250px;
    }
}

/* ================================================
   PHASE 6 — OPENAPI + OWASP
   ================================================ */

.result-heading {
    margin:
        28px
        0
        12px;
}

.validation-list {
    display:grid;
    gap:8px;
}

.validation-line {
    padding:12px 14px;
    border-radius:10px;
}

.validation-error {
    background:
        rgba(239,68,68,.09);
    border:
        1px solid
        rgba(239,68,68,.24);
    color:#ef4444;
}

.validation-warning {
    background:
        rgba(245,158,11,.09);
    border:
        1px solid
        rgba(245,158,11,.24);
}

.operation-list {
    display:flex;
    flex-wrap:wrap;
    gap:8px;
}

.operation-details {
    padding:16px;
}

.operation-chip {
    padding:8px 11px;
    border-radius:9px;
    font-family:
        ui-monospace,
        SFMono-Regular,
        Menlo,
        Monaco,
        Consolas,
        monospace;
    font-size:12px;
}

.public-operation {
    background:
        rgba(245,158,11,.12);
    border:
        1px solid
        rgba(245,158,11,.20);
}

.protected-operation {
    background:
        rgba(16,185,129,.11);
    border:
        1px solid
        rgba(16,185,129,.20);
}

.assessment-form > input,
.assessment-form select {

    width:100%;
    border:
        1px solid
        var(--border);
    border-radius:12px;
    background:var(--bg);
    color:var(--text);
    padding:13px 15px;
    font:inherit;
}

.assessment-form > label {
    display:block;
    margin:
        20px
        0
        8px;
    font-weight:800;
}

.assessment-intro {
    padding:18px;
    border:
        1px solid
        var(--border);
    border-radius:14px;
    background:var(--surface2);
}

.assessment-intro p {
    margin:
        5px
        0
        0;
    color:var(--muted);
}

.owasp-question-list {
    display:grid;
    gap:12px;
    margin:
        22px
        0;
}

.owasp-question {
    display:grid;
    grid-template-columns:
        46px
        1fr;
    gap:14px;
    padding:18px;
    border:
        1px solid
        var(--border);
    border-radius:15px;
    background:var(--surface);
}

.owasp-number {
    width:42px;
    height:42px;
    display:grid;
    place-items:center;
    border-radius:12px;
    font-weight:900;
    color:#fff;
    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary2)
        );
}

.owasp-code {
    display:block;
    color:var(--primary);
    font-size:11px;
    font-weight:900;
    letter-spacing:.08em;
}

.owasp-question h3 {
    margin:
        3px
        0
        6px;
}

.owasp-question p {
    margin:
        0
        0
        12px;
    color:var(--muted);
}

.owasp-results {
    margin-top:26px;
}

.owasp-result-list {
    display:grid;
    gap:10px;
    margin-top:18px;
}

.owasp-result {
    display:grid;
    grid-template-columns:
        minmax(0,1fr)
        auto;
    gap:12px;
    padding:16px;
    border-radius:13px;
    border:
        1px solid
        var(--border);
}

.owasp-result p {
    grid-column:
        1
        /
        -1;
    margin:0;
    color:var(--muted);
}

.owasp-answer {
    height:max-content;
    padding:5px 8px;
    border-radius:7px;
    font-size:10px;
    font-weight:900;
}

.owasp-covered {
    background:
        rgba(16,185,129,.06);
}

.owasp-covered .owasp-answer {
    color:#10b981;
    background:
        rgba(16,185,129,.12);
}

.owasp-partial {
    background:
        rgba(245,158,11,.05);
}

.owasp-partial .owasp-answer {
    color:#f59e0b;
    background:
        rgba(245,158,11,.12);
}

.owasp-gap {
    background:
        rgba(239,68,68,.05);
}

.owasp-gap .owasp-answer {
    color:#ef4444;
    background:
        rgba(239,68,68,.12);
}

.passive-section {
    margin-top:28px;
}

@media (max-width:600px) {

    .owasp-question {
        grid-template-columns:1fr;
    }

    .owasp-number {
        width:38px;
        height:38px;
    }

    .owasp-result {
        grid-template-columns:1fr;
    }

    .owasp-result p {
        grid-column:auto;
    }
}

/* ================================================
   PHASE 7A — SEO / STATIC CONTENT
   ================================================ */

.seo-tool-content {
    margin-bottom:18px;
}

.seo-copy-block,
.seo-copy-card,
.faq-section,
.static-card {
    padding:28px;
    border:1px solid var(--border);
    border-radius:20px;
    background:var(--surface);
    box-shadow:var(--shadow);
}

.seo-copy-block {
    margin-bottom:14px;
}

.seo-copy-block h2,
.seo-copy-card h2,
.faq-section h2 {
    margin-top:0;
}

.seo-copy-block p,
.seo-copy-card li,
.seo-note,
.faq-item p,
.static-card p,
.static-card li {
    color:var(--muted);
}

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

.seo-copy-card ul,
.seo-copy-card ol {
    margin-bottom:0;
    padding-left:21px;
}

.seo-copy-card li {
    margin:8px 0;
}

.seo-note {
    margin:14px 0;
    padding:18px 20px;
    border:1px solid var(--border);
    border-radius:14px;
    background:var(--surface2);
}

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

.faq-item {
    border-top:1px solid var(--border);
    padding:14px 0;
}

.faq-item:first-of-type {
    border-top:0;
}

.faq-item summary {
    cursor:pointer;
    font-weight:800;
}

.faq-item p {
    margin-bottom:0;
}

.static-page {
    padding:
        44px
        0
        60px;
}

.static-card {
    max-width:900px;
    margin:0 auto;
}

.static-card h1 {
    margin:
        6px
        0
        24px;
    font-size:
        clamp(
            34px,
            6vw,
            54px
        );
    letter-spacing:-.045em;
    line-height:1.05;
}

.static-card h2 {
    margin-top:32px;
}

.static-card a {
    color:var(--primary);
}

.static-card .primary-button {
    color:#fff;
}

.lead-copy {
    font-size:19px;
}

.contact-box {
    margin:
        25px
        0;
    padding:22px;
    border:1px solid var(--border);
    border-radius:15px;
    background:var(--surface2);
}

.contact-box h2 {
    margin-top:0;
}

@media (max-width:700px) {

    .seo-content-grid {
        grid-template-columns:1fr;
    }

    .seo-copy-block,
    .seo-copy-card,
    .faq-section,
    .static-card {
        padding:21px;
    }
}

/* ================================================
   PHASE 7B — ADS / BRAND / LAUNCH POLISH
   ================================================ */

.ad-shell {
    width:100%;
    min-height:120px;
    margin:
        0
        auto
        28px;
    padding:12px;
    border:
        1px solid
        var(--border);
    border-radius:16px;
    background:var(--surface);
    overflow:hidden;
}

.ad-label {
    display:block;
    margin-bottom:6px;
    text-align:center;
    color:var(--muted);
    font-size:10px;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.adsbygoogle {
    min-height:90px;
}

@media (max-width:600px) {

    .ad-shell {
        min-height:105px;
        padding:8px;
    }
}

/* ================================================
   PHASE COFFEE BUTTON
   ================================================ */

.coffee-top-button {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:7px;

    padding:10px 16px;

    border:1px solid rgba(255,255,255,.16);
    border-radius:999px;

    background:
        linear-gradient(
            135deg,
            #ff5f5f,
            #ff8a3d
        );

    color:#fff !important;

    font-weight:900;
    text-decoration:none;
    white-space:nowrap;

    box-shadow:
        0 8px 24px rgba(255,95,95,.25);

    transition:
        transform .18s ease,
        box-shadow .18s ease,
        filter .18s ease;
}

.coffee-top-button:hover {
    transform:translateY(-2px);
    filter:brightness(1.06);

    box-shadow:
        0 12px 30px rgba(255,95,95,.34);
}

.coffee-top-button:focus-visible {
    outline:3px solid rgba(255,138,61,.35);
    outline-offset:3px;
}

@media (max-width:700px) {

    .coffee-top-button {
        padding:9px 12px;
        font-size:13px;
    }
}

@media (max-width:430px) {

    .coffee-top-button {
        width:100%;
        order:10;
    }

    .site-header nav {
        flex-wrap:wrap;
    }
}
