@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,500;12..96,700;12..96,800&family=Instrument+Sans:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;700&display=swap');

:root {
    --bg: #050A16;
    --navy: #0A1428;
    --navy-2: #0E1C3A;
    --navy-3: #14264E;
    --white: #F7F5F0;
    --dim: rgba(247, 245, 240, 0.62);
    --dimmer: rgba(247, 245, 240, 0.38);
    --gold: #FFD700;
    --amber: #FFA928;
    --gold-deep: #B8860B;
    --green: #7CE38B;
    --red: #FF6B6B;
    --orange: #FFB454;
    --glass: rgba(150, 180, 255, 0.05);
    --glass-2: rgba(150, 180, 255, 0.09);
    --stroke: rgba(170, 200, 255, 0.15);
    --stroke-soft: rgba(170, 200, 255, 0.08);
    --gold-stroke: rgba(255, 215, 0, 0.28);
    --g-blue: #4285F4;
    --g-red: #EA4335;
    --g-yellow: #FBBC05;
    --g-green: #34A853;
    --g-link: #1a0dab;
    --g-text: #202124;
    --g-sub: #4d5156;
    --g-grey: #70757a;
    --g-line: #ebecf0;
    --g-purple: #9B72CB;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Instrument Sans', sans-serif;
    background:
        radial-gradient(ellipse 120% 60% at 50% -10%, var(--navy-2), transparent 60%),
        radial-gradient(ellipse 80% 50% at 100% 110%, rgba(20, 38, 78, 0.6), transparent 65%),
        var(--bg);
    background-attachment: fixed;
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 17px;
}

::selection {
    background: var(--gold);
    color: #000;
}

@property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@keyframes spin {
    to {
        --angle: 360deg;
    }
}

@keyframes gradShift {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

.hl {
    background: linear-gradient(100deg, var(--gold), var(--amber));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.bg-fx {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.bg-fx::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(170, 200, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(170, 200, 255, 0.04) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 90% 55% at 50% 0%, black, transparent 82%);
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(110px);
}

.orb-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.14), transparent 70%);
    top: -260px;
    left: 50%;
    transform: translateX(-50%);
}

.orb-2 {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(41, 98, 255, 0.14), transparent 70%);
    top: 110vh;
    left: -200px;
}

.orb-3 {
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(155, 114, 203, 0.1), transparent 70%);
    top: 200vh;
    right: -200px;
}

main,
.nav-wrap,
footer {
    position: relative;
    z-index: 1;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    position: relative;
    font-family: 'Bricolage Grotesque';
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: 0.01em;
    text-decoration: none;
    padding: 0.72rem 1.55rem;
    border-radius: 16px;
    border: 2px solid transparent;
    cursor: pointer;
    color: #1a1400;
    background:
        linear-gradient(115deg, #FFE968, var(--gold), var(--amber), var(--gold), #FFE968) padding-box,
        conic-gradient(from var(--angle), #fff, var(--gold), var(--gold-deep), var(--amber), #fff) border-box;
    background-size: 300% 100%, 100% 100%;
    animation: gradShift 3.5s linear infinite alternate, spin 3s linear infinite;
    box-shadow: 0 0 20px -2px rgba(255, 215, 0, 0.45), 0 4px 14px rgba(2, 6, 18, 0.55);
    transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.2s ease;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
}

.pill i {
    font-size: 0.85em;
    transition: transform 0.2s ease;
}

.pill:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
    box-shadow: 0 0 34px 0 rgba(255, 215, 0, 0.65), 0 6px 18px rgba(2, 6, 18, 0.55);
}

.pill:hover i {
    transform: translateX(4px);
}

.pill:active {
    transform: translateY(1px) scale(0.98);
}

.pill-ghost {
    background:
        linear-gradient(rgba(10, 18, 38, 0.92), rgba(10, 18, 38, 0.92)) padding-box,
        conic-gradient(from var(--angle), var(--gold), rgba(170, 200, 255, 0.55), var(--amber), var(--gold)) border-box;
    border: 1.5px solid transparent;
    animation: spin 4s linear infinite;
    color: var(--white);
    box-shadow: 0 4px 14px rgba(2, 6, 18, 0.5);
    text-shadow: none;
}

.pill-ghost:hover {
    color: var(--gold);
    filter: none;
    box-shadow: 0 0 24px -4px rgba(255, 215, 0, 0.4), 0 4px 14px rgba(2, 6, 18, 0.5);
}

.pill-big {
    font-size: 1rem;
    padding: 1.05rem 2.4rem;
}

/* Nav */
.nav-wrap {
    position: fixed;
    top: 14px;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: center;
    padding: 0 4%;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.4rem;
    background: rgba(8, 14, 30, 0.6);
    backdrop-filter: blur(24px) saturate(1.5);
    -webkit-backdrop-filter: blur(24px) saturate(1.5);
    border: 1px solid var(--stroke-soft);
    border-radius: 100px;
    padding: 0.65rem 0.7rem 0.65rem 1.4rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.55);
    max-width: 980px;
    width: 100%;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}

.brand-logo {
    height: 34px;
    width: auto;
    display: block;
}

.brand-fallback {
    display: none;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Bricolage Grotesque';
    font-weight: 700;
    color: var(--white);
}

.brand-icon {
    width: 28px;
    height: 28px;
    border-radius: 30%;
    background: linear-gradient(135deg, var(--gold), var(--amber));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.5rem;
    font-weight: 800;
    color: #1a1400;
    font-family: 'Bricolage Grotesque';
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.nav-links a {
    color: var(--dim);
    text-decoration: none;
    font-size: 0.96rem;
    font-weight: 500;
    padding: 0.6rem 1.05rem;
    border-radius: 100px;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
    background: var(--glass);
}

.menu-btn {
    display: none;
    background: var(--glass-2);
    border: 1px solid var(--stroke);
    border-radius: 100px;
    color: var(--white);
    font-size: 0.84rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-family: 'Instrument Sans';
}

.mobile-sheet {
    display: none;
    position: fixed;
    top: 78px;
    left: 4%;
    right: 4%;
    z-index: 99;
    background: rgba(10, 18, 38, 0.94);
    backdrop-filter: blur(28px);
    border: 1px solid var(--stroke);
    border-radius: 24px;
    padding: 0.75rem;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
}

.mobile-sheet.open {
    display: block;
}

.mobile-sheet a {
    display: block;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    padding: 0.9rem 1rem;
    border-radius: 14px;
}

.mobile-sheet a:hover {
    background: var(--glass);
}

.mobile-sheet a:last-child {
    color: var(--gold);
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.7s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.reveal.in {
    opacity: 1;
    transform: none;
}

/* ---------- Hero ---------- */
.au-hero {
    max-width: 1150px;
    margin: 0 auto;
    padding: 10.5rem 5% 0;
}

.au-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'JetBrains Mono';
    font-size: 0.74rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.3rem;
}

.kicker i {
    font-size: 0.8rem;
}

.au-hero h1 {
    font-family: 'Bricolage Grotesque';
    font-weight: 800;
    font-size: clamp(2.2rem, 5vw, 3.7rem);
    letter-spacing: -0.02em;
    line-height: 1.07;
}

.au-hero .lede {
    color: var(--dim);
    font-size: 1.12rem;
    margin-top: 1.2rem;
    max-width: 48ch;
}

.hero-cta {
    display: flex;
    gap: 0.9rem;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-micro {
    font-family: 'JetBrains Mono';
    font-size: 0.74rem;
    color: var(--dimmer);
    margin-top: 1.1rem;
}

/* Audit scan card */
.scan-card {
    position: relative;
    background: #fff;
    color: var(--g-text);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 50px 100px -35px rgba(0, 0, 0, 0.9), 0 0 60px -20px rgba(255, 215, 0, 0.35);
}

.scan-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.3rem;
    border-bottom: 1px solid var(--g-line);
}

.scan-url {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-family: 'JetBrains Mono';
    font-size: 0.8rem;
    color: var(--g-sub);
}

.scan-url i {
    color: var(--g-green);
}

.scan-live {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'JetBrains Mono';
    font-size: 0.68rem;
    color: var(--g-green);
}

.scan-live .d {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--g-green);
    box-shadow: 0 0 8px rgba(52, 168, 83, 0.7);
}

.scan-score {
    display: flex;
    align-items: center;
    gap: 1.3rem;
    padding: 1.4rem 1.3rem;
    border-bottom: 1px solid var(--g-line);
}

.score-ring {
    position: relative;
    width: 92px;
    height: 92px;
    flex-shrink: 0;
}

.score-ring svg {
    transform: rotate(-90deg);
}

.score-ring .num {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bricolage Grotesque';
    font-weight: 800;
    font-size: 1.7rem;
    color: var(--g-text);
}

.score-meta h4 {
    font-family: 'Bricolage Grotesque';
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--g-text);
}

.score-meta p {
    font-size: 0.85rem;
    color: var(--g-grey);
}

.score-pills {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.6rem;
    flex-wrap: wrap;
}

.score-pills span {
    font-family: 'JetBrains Mono';
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.22rem 0.6rem;
    border-radius: 100px;
}

.sp-crit {
    background: rgba(234, 67, 53, 0.12);
    color: #c5221f;
}

.sp-warn {
    background: rgba(251, 188, 5, 0.16);
    color: #a56a00;
}

.sp-ok {
    background: rgba(52, 168, 83, 0.12);
    color: #137333;
}

.scan-issues {
    padding: 0.5rem 0.5rem 0.9rem;
}

.issue {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.7rem 0.8rem;
    border-radius: 12px;
    transition: background 0.15s ease;
}

.issue:hover {
    background: #f8f9fa;
}

.issue .ico {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.ico.crit {
    background: rgba(234, 67, 53, 0.12);
    color: #c5221f;
}

.ico.warn {
    background: rgba(251, 188, 5, 0.16);
    color: #a56a00;
}

.ico.ok {
    background: rgba(52, 168, 83, 0.12);
    color: #137333;
}

.issue .txt {
    flex: 1;
    min-width: 0;
}

.issue .txt b {
    display: block;
    font-size: 0.86rem;
    color: var(--g-text);
    font-weight: 600;
}

.issue .txt span {
    font-size: 0.74rem;
    color: var(--g-grey);
}

.issue .cnt {
    font-family: 'JetBrains Mono';
    font-size: 0.78rem;
    color: var(--g-grey);
    font-weight: 700;
}

.scan-tag {
    position: absolute;
    top: -1.3rem;
    left: 1.5rem;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: linear-gradient(135deg, var(--gold), var(--amber));
    color: #1a1400;
    font-family: 'Bricolage Grotesque';
    font-weight: 800;
    font-size: 0.72rem;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    box-shadow: 0 8px 24px -6px rgba(255, 169, 40, 0.7);
    transform: rotate(-3deg);
    white-space: nowrap;
}

.scan-wrap {
    position: relative;
    transform: rotate(-1.4deg);
    transition: transform 0.3s ease;
}

.scan-wrap:hover {
    transform: rotate(0deg) translateY(-4px);
}

@media (max-width: 900px) {
    .au-hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .scan-wrap {
        transform: none;
        max-width: 460px;
        margin: 0 auto;
    }
}

/* ---------- Section scaffolding ---------- */
.section {
    max-width: 1150px;
    margin: 6rem auto 0;
    padding: 0 5%;
}

.sec-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
}

.sec-head .eyebrow {
    font-family: 'JetBrains Mono';
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--dimmer);
    margin-bottom: 0.8rem;
}

.sec-head h2 {
    font-family: 'Bricolage Grotesque';
    font-weight: 800;
    font-size: clamp(1.8rem, 4vw, 2.7rem);
    letter-spacing: -0.02em;
}

.sec-head p {
    color: var(--dim);
    font-size: 1.08rem;
    margin-top: 0.8rem;
}

/* Stats strip */
.stats-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem;
}

@media (max-width: 700px) {
    .stats-strip {
        grid-template-columns: 1fr;
    }
}

.stat {
    background: var(--glass);
    border: 1px solid var(--stroke-soft);
    border-radius: 22px;
    padding: 1.9rem 1.6rem;
    text-align: center;
}

.stat .num {
    font-family: 'Bricolage Grotesque';
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1;
    background: linear-gradient(120deg, var(--gold), var(--amber));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 22px rgba(255, 215, 0, 0.3));
}

.stat .lbl {
    color: var(--dim);
    font-size: 0.94rem;
    margin-top: 0.6rem;
}

/* Feature cards */
.feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

@media (max-width: 900px) {
    .feat-grid {
        grid-template-columns: 1fr;
    }
}

.feat {
    background: var(--glass);
    backdrop-filter: blur(18px);
    border: 1px solid var(--stroke-soft);
    border-radius: 22px;
    padding: 1.9rem 1.7rem;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.feat:hover {
    transform: translateY(-5px);
    border-color: var(--gold-stroke);
    box-shadow: 0 24px 50px -22px rgba(0, 0, 0, 0.85), 0 0 30px -14px rgba(255, 215, 0, 0.3);
}

.feat-ico {
    width: 52px;
    height: 52px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.16), rgba(255, 169, 40, 0.08));
    border: 1px solid var(--gold-stroke);
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
}

.feat h3 {
    font-family: 'Bricolage Grotesque';
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
}

.feat p {
    color: var(--dim);
    font-size: 0.98rem;
}

/* Checklist of what we crawl */
.checks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.9rem 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 700px) {
    .checks {
        grid-template-columns: 1fr;
    }
}

.check {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--stroke-soft);
}

.check i {
    color: var(--green);
    font-size: 0.85rem;
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.check b {
    color: var(--white);
    font-weight: 700;
    display: block;
    font-family: 'Bricolage Grotesque';
}

.check span {
    color: var(--dim);
    font-size: 0.9rem;
}

/* Steps */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    counter-reset: step;
}

@media (max-width: 760px) {
    .steps {
        grid-template-columns: 1fr;
    }
}

.step {
    position: relative;
    background: var(--glass);
    border: 1px solid var(--stroke-soft);
    border-radius: 22px;
    padding: 2.2rem 1.6rem 1.6rem;
}

.step::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    top: -1rem;
    left: 1.6rem;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--gold), var(--amber));
    color: #1a1400;
    font-family: 'Bricolage Grotesque';
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.step h4 {
    font-family: 'Bricolage Grotesque';
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.step p {
    color: var(--dim);
    font-size: 0.94rem;
}

/* FAQ */
.faq-sec {
    max-width: 780px;
    margin: 6rem auto 0;
    padding: 0 5%;
}

.faq details {
    background: var(--glass);
    backdrop-filter: blur(18px);
    border: 1px solid var(--stroke-soft);
    border-radius: 18px;
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.faq details:hover,
.faq details[open] {
    border-color: var(--gold-stroke);
}

.faq summary {
    list-style: none;
    cursor: pointer;
    padding: 1.2rem 1.5rem;
    font-family: 'Bricolage Grotesque';
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq summary::-webkit-details-marker {
    display: none;
}

.faq summary i {
    color: var(--gold);
    font-size: 0.85rem;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.faq details[open] summary {
    color: var(--gold);
}

.faq details[open] summary i {
    transform: rotate(180deg);
}

.faq .ans {
    padding: 0 1.5rem 1.35rem;
    color: var(--dim);
    font-size: 0.98rem;
}

.faq .ans b {
    color: var(--white);
}

/* CTA */
.cta-banner {
    max-width: 1100px;
    margin: 6rem auto 0;
    padding: 0 5%;
}

.cta-inner {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    padding: 4rem 5% 4.2rem;
    text-align: center;
    border: 1px solid var(--gold-stroke);
    background: linear-gradient(150deg, rgba(255, 215, 0, 0.14), rgba(14, 28, 58, 0.6) 55%, rgba(155, 114, 203, 0.12));
    backdrop-filter: blur(22px);
}

.cta-inner::before {
    content: '';
    position: absolute;
    inset: -60px;
    background: conic-gradient(from var(--angle), rgba(255, 215, 0, 0.18), transparent 40%, rgba(66, 133, 244, 0.14), transparent 70%, rgba(255, 215, 0, 0.18));
    animation: spin 12s linear infinite;
    z-index: -1;
}

.cta-inner h2 {
    font-family: 'Bricolage Grotesque';
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 3.2rem);
    letter-spacing: -0.02em;
    margin-bottom: 0.8rem;
}

.cta-inner p {
    color: var(--dim);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-inner .micro {
    display: block;
    font-family: 'JetBrains Mono';
    font-size: 0.74rem;
    color: var(--dimmer);
    margin-top: 1rem;
}

/* Footer */
footer {
    border-top: 1px solid var(--stroke-soft);
    padding: 3.75rem 5% 2.5rem;
    margin-top: 6rem;
    background: linear-gradient(180deg, transparent, rgba(10, 20, 40, 0.7));
}

.foot-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 0.9fr 0.9fr 1fr;
    gap: 2.25rem;
    padding-bottom: 2.5rem;
}

.foot-col h5 {
    font-family: 'JetBrains Mono';
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.foot-col a {
    display: block;
    color: var(--dim);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.25rem 0;
}

.foot-col a:hover {
    color: var(--gold);
}

.foot-brand p {
    font-size: 0.9rem;
    color: var(--dim);
    max-width: 270px;
    margin-top: 0.85rem;
}

.foot-brand .brand-logo {
    height: 34px;
}

.foot-social {
    display: flex;
    gap: 0.6rem;
    margin-top: 1.1rem;
}

.foot-col .foot-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    padding: 0;
    color: #fff;
    border: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.foot-col .foot-social a svg {
    display: block;
    margin: 0 auto;
}

.foot-col .foot-social a.s-fb {
    background: #1877F2;
}

.foot-col .foot-social a.s-x {
    background: #16181c;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.foot-col .foot-social a:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.35);
    color: #fff;
}

.foot-base {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid var(--stroke-soft);
    padding-top: 1.8rem;
    font-size: 0.78rem;
    color: var(--dimmer);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.foot-legal a {
    color: var(--dimmer);
    text-decoration: none;
}

.foot-legal a:hover {
    color: var(--gold);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    border-radius: 6px;
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before {
        animation: none !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 940px) {
    .foot-inner {
        grid-template-columns: 1fr 1fr;
    }

    .foot-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .brand-logo {
        height: 28px;
    }
}