:root {
    --bg: #f5f7fb;
    --surface: #ffffff;
    --surface-alt: #edf4ff;
    --text: #162033;
    --muted: #5a657a;
    --border: #d8e0ef;
    --brand: #2266ee;
    --live: #0f9d58;
    --live-soft: #dff5e9;
    --testing: #d97706;
    --testing-soft: #fff0d6;
    --shadow: 0 18px 40px rgba(20, 35, 70, 0.08);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    background: linear-gradient(180deg, #f7fbff 0%, var(--bg) 100%);
    color: var(--text);
}

.hero {
    padding: 72px 20px 40px;
    background:
        radial-gradient(circle at top right, rgba(34, 102, 238, 0.16), transparent 26%),
        linear-gradient(135deg, #ffffff 0%, #eef5ff 100%);
    border-bottom: 1px solid var(--border);
}

.hero__content,
.main-content,
.footer {
    width: min(1100px, calc(100% - 32px));
    margin: 0 auto;
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--brand);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin: 0;
    line-height: 1.12;
}

h1 {
    max-width: 760px;
    font-size: clamp(2.2rem, 4vw, 4.3rem);
}

.hero__text,
.section__text,
.app-card p,
.app-note,
.app-card__meta,
.footer p,
.app-link {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.hero__text {
    max-width: 720px;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

.main-content {
    padding: 34px 0 72px;
}

.section {
    margin-top: 26px;
}

.section--alt {
    margin-top: 46px;
    padding: 26px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: var(--surface-alt);
}

.section__heading {
    margin-bottom: 20px;
}

.section__heading h2 {
    font-size: clamp(1.7rem, 2vw, 2.4rem);
}

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

.app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}

.app-card {
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: var(--surface);
    box-shadow: var(--shadow);
}

.app-card h3 {
    margin-top: 18px;
    font-size: 1.7rem;
}

.app-card p {
    margin: 14px 0 0;
    color: var(--muted);
    line-height: 1.7;
}

.app-card__meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 16px;
    color: var(--text);
    font-size: 0.95rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
}

.status-badge--live {
    background: var(--live-soft);
    color: var(--live);
}

.status-badge--testing {
    background: var(--testing-soft);
    color: var(--testing);
}

.app-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    padding: 12px 18px;
    border-radius: 14px;
    background: var(--brand);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
}

.app-note {
    margin-top: 16px;
    font-size: 0.95rem;
}

.footer {
    padding: 0 0 28px;
}

.footer p {
    margin: 0;
    color: var(--muted);
    text-align: center;
}

@media (max-width: 640px) {
    .hero {
        padding-top: 56px;
    }

    .app-card {
        padding: 20px;
    }
}
