* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    background:
        radial-gradient(circle at top right, rgba(37, 99, 235, 0.32), transparent 34%),
        radial-gradient(circle at bottom left, rgba(250, 204, 21, 0.12), transparent 30%),
        linear-gradient(135deg, #071C34 0%, #0F2F5F 48%, #173B8A 100%);
    color: #0F172A;
}

a {
    color: inherit;
}

.site-shell {
    width: 100%;
    min-height: 100vh;
}

.main-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 22px;
    background: rgba(7, 28, 52, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #ffffff;
}

.brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    background: linear-gradient(135deg, #FACC15, #ffffff);
    color: #071C34;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 950;
    letter-spacing: -1px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.22);
}

.brand strong {
    display: block;
    font-size: 18px;
    line-height: 1.1;
}

.brand span {
    display: block;
    font-size: 12px;
    color: #CBD5E1;
    margin-top: 2px;
}

.top-nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-nav a {
    color: #E2E8F0;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
}

.hero,
.info-section,
.apps-section,
.contact-section,
.main-footer {
    width: min(1100px, calc(100% - 32px));
    margin-left: auto;
    margin-right: auto;
}

.hero {
    padding: 76px 0 42px;
    color: #ffffff;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.20);
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
}

.badge.dark {
    background: #DBEAFE;
    color: #1D4ED8;
    border-color: #BFDBFE;
}

.hero h1 {
    margin: 18px 0 14px;
    max-width: 850px;
    font-size: clamp(38px, 7vw, 74px);
    line-height: 0.96;
    letter-spacing: -2.4px;
}

.hero p {
    max-width: 720px;
    margin: 0;
    color: #D8E4F4;
    font-size: 18px;
    line-height: 1.55;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.btn-primary,
.btn-secondary {
    min-height: 48px;
    padding: 0 18px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 900;
}

.btn-primary {
    background: #ffffff;
    color: #071C34;
}

.btn-secondary {
    background: rgba(255,255,255,0.10);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.22);
}

.info-section,
.apps-section,
.contact-section {
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(255,255,255,0.65);
    border-radius: 30px;
    padding: 26px;
    margin-top: 22px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.18);
}

.section-head h2,
.contact-section h2 {
    margin: 12px 0 8px;
    font-size: clamp(26px, 4vw, 42px);
    line-height: 1.05;
    letter-spacing: -1.2px;
    color: #0F172A;
}

.section-head p,
.contact-section p {
    max-width: 760px;
    margin: 0;
    color: #64748B;
    font-size: 15px;
    line-height: 1.55;
}

.features-grid,
.apps-grid {
    display: grid;
    gap: 16px;
    margin-top: 22px;
}

.features-grid {
    grid-template-columns: repeat(3, 1fr);
}

.apps-grid {
    grid-template-columns: repeat(3, 1fr);
}

.feature-card,
.app-card {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 24px;
    padding: 18px;
}

.feature-card span,
.app-icon {
    font-size: 32px;
}

.feature-card strong {
    display: block;
    margin-top: 10px;
    color: #0F172A;
    font-size: 17px;
}

.feature-card p,
.app-card p {
    color: #64748B;
    font-size: 14px;
    line-height: 1.5;
}

.app-card {
    min-height: 310px;
    display: flex;
    flex-direction: column;
}

.app-content {
    flex: 1;
}

.status {
    display: inline-flex;
    margin: 12px 0 8px;
    padding: 5px 9px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
}

.available {
    background: #DCFCE7;
    color: #166534;
}

.beta {
    background: #FEF3C7;
    color: #92400E;
}

.soon-label {
    background: #E2E8F0;
    color: #475569;
}

.app-card h3 {
    margin: 0 0 8px;
    color: #0F172A;
    font-size: 22px;
    letter-spacing: -0.4px;
}

.app-link {
    width: 100%;
    min-height: 46px;
    border-radius: 16px;
    background: #071C34;
    color: #ffffff;
    text-decoration: none;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 14px;
}

.app-link.disabled {
    background: #E2E8F0;
    color: #64748B;
}

.contact-box {
    margin-top: 18px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 16px;
}

.contact-box strong {
    display: block;
    color: #0F172A;
    margin-bottom: 4px;
}

.contact-box span {
    color: #1D4ED8;
    font-weight: 900;
}

.small-note {
    margin-top: 12px !important;
    font-size: 13px !important;
}

.main-footer {
    color: #CBD5E1;
    text-align: center;
    padding: 28px 0 34px;
    font-size: 13px;
    line-height: 1.5;
}

.main-footer p {
    margin: 4px 0;
}

@media (max-width: 820px) {
    .main-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .top-nav {
        width: 100%;
        justify-content: space-between;
    }

    .features-grid,
    .apps-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 48px;
    }

    .hero p {
        font-size: 16px;
    }

    .info-section,
    .apps-section,
    .contact-section {
        padding: 20px;
        border-radius: 26px;
    }
}
.brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo img {
    height: 58px;
    width: auto;
    display: block;
}

.hero-logo {
    margin-bottom: 18px;
}

.hero-logo img {
    width: min(560px, 100%);
    height: auto;
    display: block;
}

@media (max-width: 820px) {
    .brand-logo img {
        height: 46px;
    }

    .hero-logo img {
        width: 100%;
    }
}