/* -----------------------------------------------------
   SpaceOfThings — clean, photo-led, modern
----------------------------------------------------- */

:root {
    --ink: #0b1220;
    --muted: #5b6475;
    --line: rgba(15, 23, 42, 0.10);
    --paper: #ffffff;
    --brand: #1f6feb; /* modern blue */
    --brand-dark: #1a56c6;
    --hero-overlay: rgba(4, 8, 16, 0.55);
}

html, body {
    height: 100%;
}

body {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
}

main {
    min-height: 60vh;
}

/* Links */
a {
    color: inherit;
    text-decoration: none;
}

    a:hover {
        text-decoration: none;
    }

/* -----------------------------------------------------
   Nav / Brand
----------------------------------------------------- */
.sot-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
    flex-wrap: wrap;
}

.sot-brandmark {
    height: 34px;
    width: auto;
    display: block;
}

.sot-wordmark {
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 650;
    font-size: 0.95rem;
}

.sot-links .sot-link {
    color: rgba(11,18,32,.75);
    font-weight: 520;
    letter-spacing: .02em;
    margin-left: auto;
}

    .sot-links .sot-link:hover {
        color: rgba(11,18,32,1);
    }



/* Buttons */
.btn-sot-primary {
    background: var(--brand);
    border: 1px solid var(--brand);
    color: #fff;
    border-radius: 999px;
    padding: .60rem 1.05rem;
    font-weight: 650;
}

    .btn-sot-primary:hover {
        background: var(--brand-dark);
        border-color: var(--brand-dark);
        color: #fff;
    }

.btn-sot-ghost {
    background: transparent;
    border: 1px solid var(--line);
    color: rgba(11,18,32,.8);
    border-radius: 999px;
    padding: .60rem 1.0rem;
    font-weight: 600;
    opacity: 0.85; /* FIX: was "50" (invalid) */
}

    .btn-sot-ghost:hover {
        border-color: rgba(11,18,32,.22);
        color: rgba(11,18,32,1);
        opacity: 1;
    }

/* -----------------------------------------------------
   Hero (home + banners)
----------------------------------------------------- */
.hero {
    min-height: 78vh;
    background: url("/img/waveform_radio_background.png") center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--hero-overlay);
}

.hero-cta {
    position: absolute;
    left: 50%;
    bottom: 9vh;
    transform: translateX(-50%);
    width: 92%;
    max-width: 980px;
    z-index: 2;
    padding: 1.25rem 1.5rem;
    border-radius: 1rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 14px 40px rgba(0,0,0,.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-eyebrow {
    color: rgba(255,255,255,.78);
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: .75rem;
    font-weight: 700;
    margin-bottom: .5rem;
}

.hero-title {
    color: #fff;
    font-size: clamp(1.75rem, 3vw, 2.6rem);
    line-height: 1.12;
    font-weight: 720;
    margin-bottom: .75rem;
}

.hero-sub {
    color: rgba(255,255,255,.82);
    max-width: 56ch;
    margin: 0 auto 1.1rem auto;
}

.hero-list {
    color: rgba(255,255,255,.82);
    max-width: 56ch;
    margin: 0 auto 0 auto;
}

/* -----------------------------------------------------
   Section styling
----------------------------------------------------- */
.section {
    padding: 4rem 0;
}

.section-title {
    font-weight: 750;
    letter-spacing: -0.02em;
}

.section-kicker {
    color: var(--muted);
    max-width: 72ch;
}

.band-dark {
    background: #070b14;
    color: #fff;
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

/* Cards */
.card {
    border: 1px solid var(--line);
    border-radius: 1rem;
}

.card-body {
    padding: 1.5rem;
}

/* Product images consistent */
.card-img-top {
    object-fit: cover;
    height: 220px;
}

/* Products: thin list rows */
.sot-product-row {
    background: #fff;
    transition: transform .08s ease, box-shadow .08s ease;
}

    .sot-product-row:hover {
        transform: translateY(-1px);
        box-shadow: 0 14px 40px rgba(0,0,0,.10);
    }

.sot-product-name {
    letter-spacing: -0.01em;
}

.sot-product-summary {
    max-width: 80ch;
}

.sot-product-meta {
    min-width: 120px;
}

/* Make the notice look intentional */
.sot-note {
    background: #f5f6f8;
}

/* Footer */
.sot-footer {
    border-top: 1px solid var(--line);
    background: #fbfbfd;
}

.sot-footer-mark {
    height: 26px;
    width: auto;
}

.sot-footer-title {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-weight: 700;
    color: rgba(11,18,32,.7);
    margin-bottom: .75rem;
}

.sot-footer-link {
    display: block;
    color: rgba(11,18,32,.75);
    margin: .35rem 0;
}

    .sot-footer-link:hover {
        color: rgba(11,18,32,1);
    }

/* -----------------------------------------------------
   About page: shared background container + definition panel
   (Use this with the single <section class="about-bg"> approach)
----------------------------------------------------- */
.about-bg {
    position: relative;
    min-height: 25vh;
    max-height: 75vh;
    display: flex;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    /* spacing around the two panels */
    padding: 4rem 0 6rem;
}

.capabilities-section {
    max-width: 1100px;
    margin: 4rem auto; /* top/bottom + center horizontally */
    padding: 0 1.5rem; /* left/right breathing room */
}

.capability-content {
    padding: 1rem 1.25rem;
}

.capability-title {
    font-size: 1rem; /* bump up title */
    font-weight: 500;
    margin: .5rem;
}

.capability summary {
    font-size: 1.15rem; /* bump up title */
    font-weight: 500;
}

/* Wide definition banner variant */
.sot-definition-panel--wide {
    max-width: none; /* remove card constraint */
    width: 100%;
    border-radius: 0; /* banner, not card */
    margin: 0 0 3rem 0; /* space before next panel */
    padding: 1.75rem 2.5rem;
}

/* Definition panel (top) */
.sot-definition-panel {
    position: relative;
    z-index: 2;
    max-width: none;
    width: 100%;
    margin: 0 auto 3rem;
    padding: 1.5rem 2rem;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,.18);
}

.sot-definition-title {
    color: #fff;
    font-weight: 760;
    letter-spacing: -0.01em;
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    margin-bottom: .35rem;
}

.sot-definition-subtitle {
    color: #fff;
    font-weight: 650;
    letter-spacing: -0.01em;
    font-size: clamp(1rem, 2vw, 1rem);
    margin-bottom: .35rem;
}

.sot-definition-text {
    color: rgba(255,255,255,.82);
    max-width: none;
    margin: 0 auto;
}

/* About page mobile fix (legacy support if you still use hero--about classes anywhere) */
.hero-cta--about {
    max-width: 980px;
}

/* -----------------------------------------------------
   Mobile sizing + About mobile behavior
----------------------------------------------------- */



@media (max-width: 576px) {
    .sot-wordmark {
        font-size: .82rem;
        letter-spacing: .05em;
    }

    .sot-brandmark {
        height: 28px;
    }

    .sot-links {
        gap: .75rem !important;
    }

        .sot-links .sot-link {
            font-size: .92rem;
        }

    /* Keep text readable on large screens */
    .sot-definition-panel--wide .sot-definition-text {
        max-width: 80ch;
    }

    /* Header buttons smaller */
    .btn-sot-primary,
    .btn-sot-ghost {
        padding: .45rem .75rem;
        font-size: .90rem;
        line-height: 1.1;
    }

    /* About shared background section */
    .about-bg {
        min-height: auto;
        padding: 4rem 0 3rem;
    }

    .sot-definition-panel,
    .hero-cta--about,
    .hero-cta.hero-cta--about {
        width: 92%;
        margin-left: auto;
        margin-right: auto;
    }

    /* If you still use hero--about anywhere, stop clipping and let content grow */
    .hero.hero--about {
        min-height: auto;
        overflow: visible;
        padding: 5.5rem 0 2.5rem;
    }

    .hero-cta.hero-cta--about {
        position: relative;
        left: auto;
        bottom: auto;
        transform: none;
        width: 92%;
        margin: 0 auto;
    }

        .hero-cta.hero-cta--about .hero-sub {
            max-width: 70ch;
            margin: 0 0 1rem 0;
            font-size: 1rem;
        }

        .hero-cta.hero-cta--about .hero-list {
            max-width: 70ch;
            margin: 0 0 0 1.1rem;
        }
}
