:root {
    --bg: #f7f7f2;
    --surface: #ffffff;
    --ink: #151719;
    --muted: #5f665f;
    --line: #dfe1d9;
    --brand: #44422b;
    --brand-strong: #292929;
    --gold: #c4ab6c;
    --gold-light: #efe3bd;
    --teal: #2f837b;
    --teal-soft: #d9efeb;
    --shadow: 0 24px 70px rgba(28, 31, 29, 0.14);
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: 1rem;
    z-index: 20;
    transform: translateY(-140%);
    background: var(--ink);
    color: #fff;
    padding: 0.7rem 1rem;
    border-radius: var(--radius);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(247, 247, 242, 0.88);
    border-bottom: 1px solid rgba(68, 66, 43, 0.14);
    backdrop-filter: blur(16px);
}

.nav,
.site-footer {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.nav {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--brand-strong);
    white-space: nowrap;
}

.brand img {
    width: 48px;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}

.nav-links,
.site-footer nav {
    display: flex;
    align-items: center;
    gap: 1.15rem;
}

.nav-links a,
.site-footer a,
.secondary-link,
.text-link {
    color: var(--muted);
    text-decoration: none;
    font-weight: 700;
}

.nav-links a:hover,
.site-footer a:hover,
.secondary-link:hover,
.text-link:hover {
    color: var(--brand-strong);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 1rem;
    border-radius: var(--radius);
    background: var(--brand-strong);
    color: #fff;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(41, 41, 41, 0.18);
}

main {
    overflow: hidden;
}

.hero {
    width: min(1180px, calc(100% - 32px));
    min-height: calc(100vh - 72px);
    margin: 0 auto;
    padding: clamp(3rem, 7vw, 6.5rem) 0 4rem;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.9fr);
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
}

.hero-copy {
    max-width: 690px;
}

.eyebrow {
    margin: 0 0 0.85rem;
    color: var(--teal);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 760px;
    margin-bottom: 1.25rem;
    color: var(--brand-strong);
    font-size: clamp(2.35rem, 5vw, 5.35rem);
    line-height: 0.98;
    letter-spacing: 0;
}

h2 {
    color: var(--brand-strong);
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.04;
    letter-spacing: 0;
}

h3 {
    margin-bottom: 0.45rem;
    color: var(--brand-strong);
    font-size: 1.08rem;
    line-height: 1.25;
}

.hero-text {
    max-width: 620px;
    color: #3d433d;
    font-size: clamp(1.05rem, 1.7vw, 1.3rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.25rem;
    margin-top: 2rem;
}

.store-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: min(280px, 100%);
    min-height: 64px;
    border-radius: var(--radius);
    background: #080808;
    box-shadow: 0 18px 40px rgba(8, 8, 8, 0.18);
}

.store-button img {
    display: block;
}

.proof-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin: 2.25rem 0 0;
}

.proof-points div {
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.7);
}

.proof-points dt {
    color: var(--brand-strong);
    font-size: 1.25rem;
    font-weight: 900;
}

.proof-points dd {
    margin: 0.15rem 0 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.product-panel {
    position: relative;
    min-height: 520px;
    display: grid;
    place-items: center;
}

.product-panel::before {
    content: "";
    position: absolute;
    inset: 9% 0 4% 13%;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(196, 171, 108, 0.3), transparent 68%);
}

.app-window {
    position: relative;
    width: min(100%, 480px);
    overflow: hidden;
    border: 1px solid rgba(68, 66, 43, 0.16);
    border-radius: var(--radius);
    background: #fcfcf8;
    box-shadow: var(--shadow);
}

.window-bar {
    height: 42px;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0 1rem;
    background: #f0efe7;
    border-bottom: 1px solid var(--line);
}

.window-bar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #c8c8bd;
}

.app-content {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 1rem;
    min-height: 420px;
    padding: 1.25rem;
}

.status-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 360px;
    padding: 1rem;
    border-radius: var(--radius);
    color: #fff;
    text-align: center;
    background: linear-gradient(145deg, #292929, #44422b);
}

.status-card img {
    width: min(128px, 60%);
    padding: 0.75rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
}

.status-label {
    margin: 1.5rem 0 0.2rem;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.status-location {
    margin: 0;
    color: #e6dec7;
    font-size: 0.95rem;
}

.server-list {
    display: grid;
    gap: 0.8rem;
    align-content: center;
}

.server-list span {
    height: 68px;
    border-radius: var(--radius);
    background:
        linear-gradient(90deg, var(--teal-soft) 0 18%, transparent 18%),
        linear-gradient(90deg, rgba(68, 66, 43, 0.08), rgba(68, 66, 43, 0.02));
    border: 1px solid rgba(68, 66, 43, 0.08);
}

.section,
.split-section,
.cta-band {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: clamp(3.5rem, 8vw, 6.5rem) 0;
}

.intro,
.split-section,
.cta-band {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(1.5rem, 5vw, 4rem);
    align-items: start;
}

.intro {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.intro p:last-child,
.split-section p,
.cta-band p {
    color: var(--muted);
    font-size: 1.08rem;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 2rem;
}

.feature-grid,
.requirement-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.feature,
.requirement-grid article {
    min-height: 220px;
    padding: 1.35rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
}

.feature p,
.requirement-grid p,
.faq p {
    color: var(--muted);
}

.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 1.25rem;
    border-radius: 50%;
    background: var(--gold-light);
    color: var(--brand);
    font-weight: 900;
    font-size: 0.8rem;
}

.split-section {
    align-items: center;
    border-top: 1px solid var(--line);
}

.check-list {
    display: grid;
    gap: 0.85rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding: 1rem 1rem 1rem 3rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    font-weight: 800;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 1.05rem;
    top: 1.15rem;
    width: 0.9rem;
    height: 0.5rem;
    border-left: 3px solid var(--teal);
    border-bottom: 3px solid var(--teal);
    transform: rotate(-45deg);
}

.text-link {
    display: inline-flex;
    margin-top: 0.75rem;
    color: var(--teal);
}

.requirements {
    border-top: 1px solid var(--line);
}

.requirement-grid article {
    min-height: 170px;
}

.cta-band {
    align-items: center;
    margin-block: clamp(1rem, 4vw, 3rem);
    padding-inline: clamp(1.25rem, 4vw, 2.5rem);
    border-radius: var(--radius);
    color: #fff;
    background: linear-gradient(135deg, #292929, #44422b 62%, #2f837b);
    box-shadow: var(--shadow);
}

.cta-band h2,
.cta-band .eyebrow {
    color: #fff;
}

.cta-band p {
    max-width: 670px;
    color: #eee7d5;
}

.cta-band .store-button {
    justify-self: end;
}

.faq {
    padding-top: 4rem;
}

.faq-list {
    display: grid;
    gap: 0.8rem;
}

details {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
}

summary {
    cursor: pointer;
    padding: 1.15rem 1.25rem;
    color: var(--brand-strong);
    font-weight: 900;
}

details p {
    margin: 0;
    padding: 0 1.25rem 1.25rem;
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    padding: 2.5rem 0;
    border-top: 1px solid var(--line);
}

.footer-brand {
    margin-bottom: 0.65rem;
}

.site-footer p {
    margin: 0;
    color: var(--muted);
}

.legal-page {
    background: var(--bg);
}

.legal-shell {
    width: min(900px, calc(100% - 32px));
    margin: 0 auto;
    padding: 3rem 0 5rem;
}

.legal-content {
    padding: clamp(1.25rem, 4vw, 2.5rem);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
}

.legal-content h1 {
    font-size: clamp(2rem, 4vw, 3.25rem);
}

.legal-content h2 {
    margin-top: 2rem;
    font-size: clamp(1.35rem, 2.6vw, 2rem);
}

.legal-content h3 {
    margin-top: 1.5rem;
}

.legal-content p,
.legal-content li {
    color: #3d433d;
}

.legal-content a {
    color: var(--teal);
    font-weight: 800;
}

@media (max-width: 920px) {
    .nav {
        flex-wrap: wrap;
        padding: 0.85rem 0;
    }

    .nav-links {
        order: 3;
        width: 100%;
        justify-content: space-between;
        overflow-x: auto;
        padding-bottom: 0.1rem;
    }

    .hero,
    .intro,
    .split-section,
    .cta-band {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        padding-top: 3rem;
    }

    .product-panel {
        min-height: 430px;
    }

    .feature-grid,
    .requirement-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cta-band .store-button {
        justify-self: start;
    }

    .site-footer {
        flex-direction: column;
    }
}

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

    .brand span {
        white-space: normal;
    }

    .hero-actions {
        align-items: stretch;
    }

    .store-button,
    .secondary-link {
        width: 100%;
    }

    .secondary-link {
        display: inline-flex;
        justify-content: center;
        min-height: 48px;
        align-items: center;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: rgba(255, 255, 255, 0.72);
    }

    .proof-points,
    .feature-grid,
    .requirement-grid {
        grid-template-columns: 1fr;
    }

    .app-content {
        grid-template-columns: 1fr;
    }

    .server-list {
        display: none;
    }

    .status-card {
        min-height: 300px;
    }

    .site-footer nav {
        align-items: flex-start;
        flex-direction: column;
    }
}
