:root {
    --bg-color: #050505;
    --panel-color: rgba(255, 255, 255, 0.045);
    --line-color: rgba(255, 255, 255, 0.1);
    --text-main: #ffffff;
    --text-muted: #a7a7a7;
    --text-soft: #d6d6d6;
    --accent: #6aa5ff;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    background: var(--bg-color);
}

body {
    min-height: 100vh;
    margin: 0;
    font-family: "Outfit", Arial, sans-serif;
    color: var(--text-main);
    background:
        linear-gradient(145deg, rgba(31, 69, 118, 0.18), transparent 34rem),
        linear-gradient(315deg, rgba(78, 62, 122, 0.13), transparent 28rem),
        var(--bg-color);
    display: flex;
    flex-direction: column;
}

a {
    color: inherit;
}

.site-header {
    width: 100%;
    padding: 1.1rem clamp(1rem, 5vw, 4rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.brand {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1.1;
}

.brand strong {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.brand span {
    margin-top: 0.25rem;
    font-size: 0.62rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav {
    display: flex;
    align-items: center;
    gap: clamp(0.8rem, 2vw, 1.25rem);
    color: var(--text-muted);
    font-size: 0.82rem;
    white-space: nowrap;
}

.nav a {
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav a:hover,
.nav a[aria-current="page"] {
    color: var(--text-main);
}

.page {
    width: min(1120px, calc(100% - 3rem));
    margin: 0 auto;
    flex: 1;
    position: relative;
    z-index: 1;
}

.hero {
    min-height: min(640px, calc(100vh - 10rem));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: clamp(2.5rem, 6vw, 4.5rem) 0;
}

.product-hero {
    min-height: min(500px, calc(100vh - 14rem));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(3rem, 6vw, 5rem);
}

.product-hero h1 {
    margin: 0;
    color: var(--text-main);
    font-size: clamp(3rem, 6vw, 5.8rem);
    line-height: 1.05;
}

.product-hero .lead {
    width: min(680px, 100%);
    margin-left: 0;
    margin-right: 0;
}

.product-copy {
    width: min(680px, 100%);
    margin: 1.25rem 0 0;
    color: var(--text-soft);
    font-size: clamp(0.98rem, 1.25vw, 1.08rem);
    font-weight: 300;
    line-height: 1.7;
}

.product-note {
    margin: 1.6rem 0 0;
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.eyebrow {
    margin: 0 0 1rem;
    color: var(--text-muted);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.company-name {
    width: min(100%, 760px);
    margin: 0;
    font-size: clamp(3.8rem, 9vw, 8.4rem);
    font-weight: 700;
    line-height: 1.12;
    color: var(--text-main);
}

.lead {
    width: min(540px, 100%);
    margin: 1rem auto 0;
    color: var(--text-soft);
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 300;
    line-height: 1.45;
}

.company-line {
    width: min(620px, 100%);
    margin: 0.8rem auto 0;
    color: var(--text-muted);
    font-size: clamp(0.86rem, 1.1vw, 0.98rem);
    font-weight: 300;
    line-height: 1.55;
}

.actions {
    margin-top: 2rem;
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.button {
    min-height: 2.75rem;
    padding: 0.8rem 1rem;
    border: 1px solid var(--line-color);
    border-radius: 8px;
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.07);
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.button.secondary {
    background: transparent;
    color: var(--text-muted);
}

.button:hover {
    border-color: rgba(255, 255, 255, 0.26);
}

.section {
    padding: clamp(2.25rem, 6vw, 4rem) 0;
    border-top: 1px solid var(--line-color);
}

.back-home {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin: 1.6rem 0 0;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.2s ease, transform 0.2s ease;
}

.back-home::before {
    content: "\2190";
    color: var(--text-main);
    font-size: 0.95rem;
    line-height: 1;
    transform: translateY(-0.02rem);
}

.back-home:hover {
    color: var(--text-main);
    transform: translateX(-2px);
}

.section-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 3rem;
}

.section h1,
.section h2 {
    margin: 0;
    font-size: clamp(2rem, 5vw, 3.6rem);
    line-height: 1.05;
}

.section h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.section h3 {
    margin: 0 0 0.65rem;
    font-size: 1rem;
    color: var(--text-main);
}

.section p,
.section li {
    color: var(--text-soft);
    line-height: 1.75;
    font-weight: 300;
}

.section p {
    margin: 0 0 1rem;
}

.section ul {
    margin: 0;
    padding-left: 1.1rem;
}

.plain-list {
    margin: 1.25rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.65rem;
}

.plain-list li {
    color: var(--text-muted);
}

.meta-list {
    margin: 0;
    display: grid;
    gap: 1.15rem;
}

.meta-list div {
    padding-bottom: 1.15rem;
    border-bottom: 1px solid var(--line-color);
}

.meta-list dt {
    margin-bottom: 0.35rem;
    color: var(--text-muted);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.meta-list dd {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.6;
    font-weight: 300;
}

.legal {
    max-width: 820px;
    margin: 0 auto;
    padding: 4rem 0;
}

.legal h1 {
    margin: 0 0 1rem;
    font-size: clamp(2.2rem, 5vw, 4rem);
}

.legal h2 {
    margin: 2.2rem 0 0.75rem;
    font-size: 1.25rem;
}

.legal p,
.legal li {
    color: var(--text-soft);
    line-height: 1.75;
    font-weight: 300;
}

.legal ul {
    padding-left: 1.1rem;
}

.last-updated {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.meta-list a {
    color: var(--text-main);
    text-decoration: none;
}

.footer {
    width: 100%;
    margin-top: 2rem;
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: left;
    line-height: 1.4;
}

.footer-col strong {
    color: var(--text-main);
    font-weight: 400;
    margin-bottom: 5px;
}

.footer-right {
    text-align: right;
    align-items: flex-end;
}

.footer-links {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer a:hover {
    color: var(--text-main);
    text-decoration: underline;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 820px) {
    .site-header {
        padding: 1rem;
        align-items: flex-start;
        flex-direction: column;
        gap: 0.9rem;
    }

    .nav {
        width: 100%;
        gap: 0.8rem 1rem;
        flex-wrap: wrap;
        white-space: normal;
    }

    .page {
        width: min(100% - 2rem, 1120px);
    }

    .hero {
        min-height: auto;
        align-items: flex-start;
        text-align: left;
        padding: 2rem 0 1.9rem;
    }

    .product-hero {
        min-height: auto;
        align-items: flex-start;
        text-align: left;
        padding: 2rem 0 3rem;
    }

    .lead {
        margin-left: 0;
        margin-right: 0;
    }

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

    .section-grid,
    .plain-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .footer {
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem 1.5rem;
    }

    .footer-right {
        text-align: left;
        align-items: flex-start;
    }

    .footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 520px) {
    .site-header {
        padding: 0.9rem 1rem 0.65rem;
        gap: 0.75rem;
    }

    .brand strong {
        font-size: 0.68rem;
    }

    .brand span {
        font-size: 0.56rem;
    }

    .nav {
        font-size: 0.7rem;
        gap: 0.55rem 0.8rem;
    }

    .hero {
        padding-top: 1.35rem;
    }

    .eyebrow {
        margin-bottom: 0.75rem;
        font-size: 0.58rem;
        letter-spacing: 0.16em;
    }

    .company-name {
        font-size: clamp(3.15rem, 16vw, 4.7rem);
        line-height: 1.08;
    }

    .product-hero h1 {
        font-size: clamp(3rem, 15vw, 4.4rem);
        line-height: 1.08;
    }

    .lead {
        margin-top: 0.75rem;
        font-size: 0.95rem;
        line-height: 1.45;
    }

    .company-line {
        margin-top: 0.7rem;
        font-size: 0.82rem;
        line-height: 1.5;
    }

    .product-note {
        margin-top: 1.25rem;
        font-size: 0.62rem;
        letter-spacing: 0.12em;
    }

    .product-copy {
        margin-top: 1rem;
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .section {
        padding: 1.85rem 0;
    }

    .section h1,
    .section h2 {
        font-size: clamp(1.65rem, 8vw, 2.35rem);
        line-height: 1.08;
    }

    .section p,
    .section li,
    .legal p,
    .legal li {
        font-size: 0.9rem;
        line-height: 1.65;
    }

    .back-home {
        margin-top: 1.25rem;
        font-size: 0.68rem;
        letter-spacing: 0.1em;
    }
}
