* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #FFFFFF;
    --surface: #F7F7F8;
    --border: rgba(0, 0, 0, 0.08);
    --text: #18181C;
    --text-muted: #6B6B72;
    --text-dim: #9A9AA0;
    --link: #2563C8;
    --link-hover: #1A4A9E;
}

html, body {
    background: var(--bg);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 17px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--link);
    text-decoration: none;
}

a:hover {
    color: var(--link-hover);
    text-decoration: underline;
}

main {
    max-width: 680px;
    margin: 0 auto;
    padding: 80px 24px 48px;
}

/* =============================================
   MASTHEAD
   ============================================= */
.masthead {
    margin-bottom: 64px;
}

.masthead-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cove-mark {
    flex-shrink: 0;
    color: var(--text);
    opacity: 0.85;
}

.page-nav a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.page-nav img {
    color: var(--text-muted);
    opacity: 0.7;
    vertical-align: middle;
}

.masthead h1 {
    font-size: 36px;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--text);
}

.masthead .tagline {
    margin-top: 10px;
    font-size: 18px;
    color: var(--text-muted);
    font-weight: 400;
}

/* =============================================
   PRODUCTS
   ============================================= */
.products-heading {
    font-size: 17px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.products {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.product {
    display: flex;
    align-items: center;
    gap: 18px;
}

.product-logo {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 14px;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-text {
    min-width: 0;
}

.product-text h2 {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--text);
    margin-bottom: 2px;
}

.product-text p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.45;
}

/* =============================================
   FOOTER
   ============================================= */
footer {
    margin-top: 88px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
    font-size: 14px;
    color: var(--text-dim);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

footer .footer-links {
    display: flex;
    gap: 22px;
    list-style: none;
}

footer .footer-links a {
    color: var(--text-muted);
}

footer .footer-links a:hover {
    color: var(--text);
    text-decoration: none;
}

footer .copyright {
    color: var(--text-dim);
}

/* =============================================
   LEGAL / TEXT PAGES
   ============================================= */
.page main {
    max-width: 720px;
}

.page-header {
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.page-header h1 {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 8px;
}

.page-header .meta {
    font-size: 14px;
    color: var(--text-dim);
}

.page-nav {
    margin-bottom: 32px;
    font-size: 14px;
}

.page-nav a {
    color: var(--text-muted);
}

.legal-content h2 {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--text);
    margin-top: 36px;
    margin-bottom: 12px;
}

.legal-content h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--text);
    margin-top: 24px;
    margin-bottom: 8px;
}

.legal-content p,
.legal-content ul,
.legal-content ol {
    color: #2C2C30;
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 14px;
}

.legal-content ul,
.legal-content ol {
    padding-left: 24px;
}

.legal-content li {
    margin-bottom: 6px;
}

.legal-content strong {
    color: var(--text);
    font-weight: 600;
}

.legal-content hr {
    border: 0;
    border-top: 1px solid var(--border);
    margin: 36px 0;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 520px) {
    main { padding: 56px 20px 40px; }
    .masthead { margin-bottom: 48px; }
    .masthead h1 { font-size: 30px; }
    .products { gap: 28px; }
    .product-logo { width: 56px; height: 56px; border-radius: 12px; }
    footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-top: 64px;
    }
    .page-header h1 { font-size: 26px; }
    .legal-content h2 { font-size: 19px; }
}
