/* Weather Guardian – site2.css (pared down, no duplicates) */

:root{
    --wg-bg: #0f1213;

    /* Text */
    --wg-text: rgba(255,255,255,.92);
    --wg-muted: rgba(255,255,255,.72);

    /* Lines / shadows */
    --wg-border-soft: rgba(255,255,255,.07);
    --wg-shadow: 0 20px 60px rgba(0,0,0,.35);

    --wg-radius: 18px;

    /* Section spacing */
    --wg-section-gap: clamp(1.25rem, 3.2vw, 2.75rem);
}

html, body{
    height: 100%;
    background: var(--wg-bg);
}

body.main{
    font-family: "Outfit", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--wg-text);

    /* We pin the “scene” to the viewport via ::before */
    background: none !important;
    position: relative;
    overflow-x: hidden;
}

/* Fixed background layer (prevents scrolling banding) */
body.main::before{
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
            radial-gradient(1200px 600px at 20% -10%, rgba(255,255,255,.055), transparent 60%),
            radial-gradient(900px 500px at 90% 10%, rgba(255,255,255,.035), transparent 55%),
            linear-gradient(180deg, rgba(255,255,255,.015), transparent 18%),
            var(--wg-bg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}

/* Accessibility */
.skip-link{
    position: absolute;
    top: 10px;
    left: 10px;
    padding: .6rem .9rem;
    border-radius: 10px;
    background: #fff;
    color: #000;
    z-index: 9999;
    transform: translateY(-200%);
    transition: transform .2s ease;
}
.skip-link:focus{
    transform: translateY(0);
    outline: 2px solid #000;
    outline-offset: 2px;
}

/* Header / nav */
.site-header{
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(15,18,19,.62);
    border-bottom: 1px solid var(--wg-border-soft);
}
.navbar .nav-link{ color: rgba(255,255,255,.86); }
.navbar .nav-link:hover,
.navbar .nav-link:focus{ color: #fff; }

/* Section layout + blending */
main{
    isolation: isolate;
}
main > section{
    position: relative;
    padding-top: var(--wg-section-gap);
    padding-bottom: var(--wg-section-gap);
}

/* Base surface for all non-hero sections */
main > section:not(.hero):not(.footer-cta){
    background: rgba(15,18,19,.42);
    --edge-fade: .22;
}

/* Dark sections: only slightly different */
main > section.section-dark{
    background:
            linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.018)),
            rgba(15,18,19,.48);
    --edge-fade: .30;
}

/* Strips shouldn't look like “bands” */
main > section.trust-strip{
    background: rgba(15,18,19,.44);
    --edge-fade: .18;
}

/* Blend each section into the previous/next */
main > section:not(.hero):not(.footer-cta)::before,
main > section:not(.hero):not(.footer-cta)::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 56px;
    pointer-events: none;
    z-index: 0;
    opacity: var(--edge-fade);
}
main > section:not(.hero):not(.footer-cta)::before{
    top: 0;
    background: linear-gradient(to bottom, rgba(15,18,19,1), rgba(15,18,19,0));
}
main > section:not(.hero):not(.footer-cta)::after{
    bottom: 0;
    background: linear-gradient(to top, rgba(15,18,19,1), rgba(15,18,19,0));
}
main > section > .container{
    position: relative;
    z-index: 1;
}

/* Hero */
.hero{
    padding-top: clamp(2rem, 5vw, 4rem) !important;
    padding-bottom: clamp(2rem, 5vw, 4rem) !important;
}
.hero-kicker{
    display: inline-block;
    font-size: .95rem;
    color: rgba(255,255,255,.72);
    letter-spacing: .04em;
    border: 1px solid var(--wg-border-soft);
    border-radius: 999px;
    padding: .35rem .7rem;
    background: rgba(255,255,255,.025);
}
.hero-title{
    font-size: clamp(2rem, 4.2vw, 3.2rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
}
.hero-subtitle{
    font-size: 1.1rem;
    color: var(--wg-muted);
    line-height: 1.6;
}
.hero-bullets{
    margin: 0;
    padding-left: 1.1rem;
    color: rgba(255,255,255,.84);
}
.hero-bullets li{ margin-bottom: .35rem; }

/* Buttons */
.btn-cta, .btn-cta-alt{
    border-radius: 999px;
    padding-left: 1.15rem;
    padding-right: 1.15rem;
    box-shadow: 0 10px 30px rgba(0,0,0,.22);
}
.btn-outline-light{ border-radius: 999px; }

/* Screenshots */
.device-shot{
    border-radius: 24px;
    box-shadow: var(--wg-shadow);
    border: 1px solid rgba(255,255,255,.09);
    background: rgba(255,255,255,.02);
}

/* Footer CTA */
.footer-cta{
    background:
            radial-gradient(900px 500px at 50% 10%, rgba(255,255,255,.055), transparent 60%),
            rgba(255,255,255,.016);
}

/* Typography helpers */
.section-title{
    font-size: clamp(1.6rem, 2.7vw, 2.2rem);
    letter-spacing: -0.01em;
}
.outfit-medium{ font-weight: 600; }
.text-secondary-emphasis{ color: rgba(255,255,255,.70) !important; }

/* Cards */
.infobox,
.content-card,
.platform-card{
    border-radius: var(--wg-radius);
    background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.035));
    border: 1px solid rgba(255,255,255,.10);
    box-shadow:
            0 1px 0 rgba(255,255,255,.06) inset,
            0 12px 34px rgba(0,0,0,.22);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.infobox-title{
    font-size: 1.15rem;
    margin-bottom: .6rem;
}
.infobox p,
.content-card p,
.platform-card{
    color: var(--wg-muted);
    line-height: 1.6;
}
.content-card ul,
.platform-card ul{
    margin-bottom: 0;
    color: rgba(255,255,255,.82);
}

/* Nested “inner cards” */
.platform-card .content-card,
.content-card[style*="background:"]{
    background: rgba(255,255,255,.03) !important;
    border-color: rgba(255,255,255,.08) !important;
}

/* FAQ */
.faq-accordion .accordion-item{
    background: rgba(255,255,255,.02);
    border: 1px solid var(--wg-border-soft);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: .8rem;
}
.faq-accordion .accordion-button{
    background: transparent;
    color: rgba(255,255,255,.92);
}
.faq-accordion .accordion-button:focus{
    box-shadow: none;
    outline: 2px solid rgba(255,255,255,.14);
    outline-offset: -2px;
}
.faq-accordion .accordion-body{
    color: var(--wg-muted);
    line-height: 1.6;
}

/* Links + hr */
a{
    color: rgba(255,255,255,.92);
    text-underline-offset: 3px;
}
a:hover{ color: #fff; }
hr.border-secondary{
    border-color: rgba(255,255,255,.10) !important;
}
