@import url('https://fonts.googleapis.com/css2?family=Geist:wght@100..900&display=swap');

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

body {
    font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #f7f9f8;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
}

.coming-soon {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 40px;
}

.coming-soon-logo {
    width: 200px;
}

.coming-soon-text {
    font-size: 16px;
    font-weight: 300;
    color: #0b1722;
    letter-spacing: 0.01em;
    line-height: 1.7;
    max-width: 360px;
    text-align: center;
    padding: 28px 32px;
    border: 1px solid rgba(11, 23, 34, 0.12);
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.6);
    box-shadow:
        0 2px 4px rgba(11, 23, 34, 0.04),
        0 8px 24px rgba(11, 23, 34, 0.07);
}

.coming-soon-text strong {
    font-weight: 900;
}

.coming-soon-brand-link {
    font-size: 12px;
    font-weight: 400;
    color: #9AA89E;
    text-decoration: none;
    letter-spacing: 0.04em;
    position: fixed;
    bottom: 32px;
    transition: color 0.2s;
}

.coming-soon-brand-link:hover {
    color: #0b1722;
}

/* ── Brand page ────────────────────────────────── */

.brand-wrap {
    min-height: 100vh;
    background: linear-gradient(180deg, #F5F2EC, #E8E4DB);
    color: #0b1722;
    padding-bottom: 80px;
}

.brand-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 40px;
    border-bottom: 1px solid rgba(42,51,64,0.1);
}

.brand-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #2A3340;
    text-decoration: none;
    transition: color 0.2s;
}

.brand-back:hover { color: #0b1722; }

.brand-logo {
    height: 24px;
    width: auto;
}

.brand-hero {
    padding: 64px 40px 48px;
}

.brand-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 12px;
    color: #0b1722;
}

.brand-hero p {
    font-size: 16px;
    font-weight: 300;
    color: #2A3340;
}

.brand-section {
    padding: 0 40px;
    margin-bottom: 64px;
}

.brand-section-title {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #9AA89E;
    margin-bottom: 24px;
}

/* Palette grid */

.palette-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.palette-card {
    background: rgba(255,255,255,0.65);
    border: 1px solid rgba(42,51,64,0.1);
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    backdrop-filter: blur(6px);
    box-shadow: 0 8px 24px rgba(11,23,34,0.06);
}

.palette-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(11,23,34,0.12);
}

.palette-card:active {
    transform: translateY(-1px);
}

.palette-swatch {
    height: 120px;
}

.palette-info {
    padding: 14px 16px;
}

.palette-name {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #0b1722;
}

.palette-hex {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
    font-size: 12px;
    background: rgba(42,51,64,0.08);
    color: #2A3340;
}

.palette-toast {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(11,23,34,0.88);
    color: #fff;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 500;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 0.18s ease, transform 0.18s ease;
    pointer-events: none;
}

.palette-card.copied .palette-toast {
    opacity: 1;
    transform: translateY(0);
}

/* Logo showcase */

.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 16px;
}

.logo-card {
    border-radius: 18px;
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    border: 1px solid rgba(42,51,64,0.1);
}

.logo-card img { width: 240px; }

.logo-card p {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.logo-card--light {
    background: #F5F2EC;
    color: #9AA89E;
}

.logo-card--dark {
    background: #0b1722;
    color: #2A3340;
}

@media (max-width: 600px) {
    .brand-header { padding: 20px 20px; }
    .brand-hero { padding: 40px 20px 32px; }
    .brand-section { padding: 0 20px; }
    .brand-hero h1 { font-size: 2rem; }
}
