/* /assets/css/glr.css
   One-file CSS. Change the :root variables to re-skin quickly.
*/

:root {
    /* Brand */
    --brand-name: "Get Local Ready";
    --accent-1: #7CFF6B;
    --accent-2: #7BD3FF;
    --accent-3: #FFD36B;

    /* Surface */
    --bg:
        radial-gradient(1400px 900px at 15% 10%, rgba(123, 211, 255, .16), transparent 60%),
        radial-gradient(1200px 800px at 85% 15%, rgba(124, 255, 107, .13), transparent 58%),
        radial-gradient(900px 700px at 70% 90%, rgba(255, 211, 107, .10), transparent 55%),
        linear-gradient(180deg, #060912 0%, #040610 100%);

    --panel: rgba(255, 255, 255, .06);
    --panel-soft: rgba(255, 255, 255, .045);
    --border: rgba(255, 255, 255, .12);
    --border-strong: rgba(255, 255, 255, .22);

    --text: rgba(255, 255, 255, .92);
    --muted: rgba(255, 255, 255, .72);
    --muted2: rgba(255, 255, 255, .58);

    --max: 1120px;
    --r-sm: 10px;
    --r-md: 14px;
    --r-lg: 18px;
    --r-xl: 28px;

    --shadow-soft: 0 10px 25px rgba(0, 0, 0, .35);
    --shadow-main: 0 18px 45px rgba(0, 0, 0, .55);

    --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";

    /* Optional hero image. Set to none if you want pure gradients. */
    --hero-image: linear-gradient(180deg, rgba(0, 0, 0, .20), rgba(0, 0, 0, .65));
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

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

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

h1 {
    font-size: clamp(32px, 4.2vw, 52px);
    margin: 14px 0 12px;
    line-height: 1.04;
    letter-spacing: -.8px;
}

h2 {
    font-size: clamp(22px, 2.3vw, 30px);
    margin: 0 0 10px;
    letter-spacing: -.4px;
    line-height: 1.12;
}

.h3 {
    font-size: 18px;
    margin: 6px 0 8px;
    letter-spacing: -.2px;
}

.lead {
    font-size: clamp(15px, 1.5vw, 18px);
    color: var(--muted);
    line-height: 1.55;
    margin: 0 0 18px;
    max-width: 62ch;
}

.muted {
    color: var(--muted);
    line-height: 1.55;
    margin: 0;
}

.micro {
    color: var(--muted2);
    font-size: 13px;
    margin: 10px 0 0;
}

.fine {
    color: var(--muted2);
    font-size: 12px;
    margin: 10px 0 0;
    line-height: 1.4;
}

/* Topbar */
.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(5, 7, 16, .55);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.topbar__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 850;
    letter-spacing: .3px;
}

.brand__mark {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(124, 255, 107, .85), rgba(123, 211, 255, .85));
    box-shadow: 0 10px 25px rgba(0, 0, 0, .35);
    position: relative;
    overflow: hidden;
}

.brand__mark:before {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .75), transparent 55%);
    transform: rotate(18deg);
    opacity: .6;
}

.nav {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, .72);
    font-weight: 650;
    font-size: 14px;
}

.nav a:hover {
    color: #fff;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 16px;
    border-radius: var(--r-md);
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .06);
    color: #fff;
    font-weight: 850;
    letter-spacing: .2px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .45);
    transition: transform .12s ease, background .12s ease, border-color .12s ease, filter .12s ease;
    cursor: pointer;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, .085);
    border-color: rgba(255, 255, 255, .22);
}

.btn--primary {
    border: 1px solid rgba(124, 255, 107, .34);
    background: linear-gradient(135deg, var(--accent-1), color-mix(in srgb, var(--accent-2) 85%, rgba(255, 255, 255, .1)));
    color: #071116;
    box-shadow: var(--shadow-main), inset 0 0 0 1px rgba(255, 255, 255, .12);
}

.btn--primary:hover {
    filter: saturate(1.05);
    transform: translateY(-1px) scale(1.01);
}

.btn--ghost {
    background: rgba(255, 255, 255, .04);
    border-color: rgba(255, 255, 255, .12);
    box-shadow: none;
    color: rgba(255, 255, 255, .92);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, .07);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .45);
}

.btn--full {
    width: 100%;
}

/* Hero */
.hero {
    position: relative;
    padding: 64px 0 32px;
    overflow: hidden;
}

.hero:before {
    content: "";
    position: absolute;
    inset: -2px;
    background:
        radial-gradient(1200px 650px at 15% 20%, color-mix(in srgb, var(--accent-1) 16%, transparent), transparent 60%),
        radial-gradient(900px 600px at 80% 25%, color-mix(in srgb, var(--accent-2) 16%, transparent), transparent 60%),
        var(--hero-image);
    z-index: -1;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 26px;
    align-items: stretch;
}

.panel {
    border-radius: var(--r-xl);
    background: var(--panel);
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: var(--shadow-main);
    backdrop-filter: blur(10px);
    padding: 26px;
    position: relative;
    overflow: hidden;
}

.panel:before {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at 25% 25%, rgba(255, 255, 255, .16), transparent 58%);
    transform: rotate(12deg);
    opacity: .9;
    pointer-events: none;
}

.panel--form {
    box-shadow: var(--shadow-soft);
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(124, 255, 107, .12), rgba(123, 211, 255, .10));
    border: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(10px);
    font-weight: 700;
    letter-spacing: .2px;
    color: rgba(255, 255, 255, .88);
}

.pill__dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 30%, #fff, var(--accent-1));
    box-shadow: 0 0 18px rgba(124, 255, 107, .55);
}

.hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 18px 0 6px;
}

.hero__proof {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    color: var(--muted2);
    font-size: 13px;
}

.proof {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.proof__icon {
    width: 18px;
    height: 18px;
    border-radius: 6px;
    display: inline-grid;
    place-items: center;
    background: rgba(124, 255, 107, .18);
    border: 1px solid rgba(124, 255, 107, .28);
    color: #b9ffb0;
    font-weight: 900;
}

/* Forms */
.form {
    display: grid;
    gap: 12px;
    margin-top: 12px;
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.field {
    display: grid;
    gap: 6px;
}

label {
    font-size: 12px;
    color: var(--muted2);
    font-weight: 700;
}

input,
select {
    width: 100%;
    padding: 12px 12px;
    border-radius: var(--r-md);
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(0, 0, 0, .25);
    color: rgba(255, 255, 255, .92);
    outline: none;
    transition: border-color .12s ease, background .12s ease;
}

input:focus,
select:focus {
    border-color: rgba(123, 211, 255, .38);
    background: rgba(0, 0, 0, .32);
}

/* Sections */
.section {
    padding: 72px 0;
}

.section--alt {
    background: var(--panel-soft);
    border-top: 1px solid rgba(255, 255, 255, .06);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.section__head {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
    max-width: 78ch;
}

.grid {
    display: grid;
    gap: 16px;
}

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

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

.card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .45);
    position: relative;
    overflow: hidden;
}

.card--glow:before {
    content: "";
    position: absolute;
    inset: -50%;
    background: radial-gradient(circle at 30% 25%, rgba(123, 211, 255, .16), transparent 60%);
    transform: rotate(10deg);
    opacity: .9;
    pointer-events: none;
}

.kicker {
    margin: 0 0 8px;
    color: #fff;
    font-weight: 900;
    letter-spacing: .2px;
    font-size: 18px;
}

.list {
    margin: 12px 0 0;
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.75;
}

.list li {
    margin: 4px 0;
}

.note {
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: var(--r-lg);
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .86);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .35);
}

.note--thin {
    margin-top: 12px;
    box-shadow: none;
}

.miniGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 14px;
}

.miniCard {
    padding: 12px;
    border-radius: var(--r-md);
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .045);
}

.miniCard strong {
    display: block;
    margin-bottom: 4px;
}

.miniCard span {
    color: var(--muted2);
    font-size: 13px;
    line-height: 1.35;
}

/* CTA Band */
.ctaBand {
    margin-top: 18px;
    border-radius: var(--r-xl);
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, .14);
    background:
        radial-gradient(1000px 600px at 25% 30%, color-mix(in srgb, var(--accent-3) 16%, transparent), transparent 60%),
        radial-gradient(900px 520px at 80% 20%, color-mix(in srgb, var(--accent-1) 16%, transparent), transparent 60%),
        rgba(255, 255, 255, .045);
    box-shadow: var(--shadow-main);
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 18px;
    align-items: center;
}

.ctaBand__title {
    margin: 0 0 8px;
}

.ctaBand__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

/* Footer */
.footer {
    padding: 32px 0 44px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer__row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    align-items: center;
    justify-content: space-between;
}

.footer__brand {
    font-weight: 900;
    letter-spacing: .2px;
    color: #fff;
}

.footer__muted {
    color: var(--muted2);
    font-size: 13px;
}

.footer__links {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, .72);
    font-weight: 650;
    font-size: 13px;
}

.footer__links a:hover {
    color: #fff;
}

/* Responsive */
@media (max-width: 980px) {
    .hero__grid {
        grid-template-columns: 1fr;
    }

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

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

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

    .ctaBand__actions {
        justify-content: flex-start;
    }
}

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

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

    .panel {
        padding: 20px;
    }

    .ctaBand {
        padding: 20px;
    }
}