/* Hermes Design System - Exact Colors */
:root {
    --bg-primary: #000000;
    --bg-card: #171717;
    --bg-elevated: #262626;
    --bg-muted: #404040;
    
    --text-primary: #FAFAFA;
    --text-secondary: #A3A3A3;
    --text-tertiary: #737373;
    --text-muted: #525252;
    
    --accent: #0EA5E9;
    --accent-light: #22D3EE;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 680px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo-wrapper {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    width: 200px;
    height: 167px;
    filter: drop-shadow(0 0 20px rgba(14, 165, 233, 0.3));
}

h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -1px;
    margin-bottom: 8px;
    line-height: 1.1;
}

.tagline {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 64px;
    letter-spacing: 0.2px;
}

.content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.description {
    font-size: 17px;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 560px;
    margin: 0 auto;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 8px;
}

.feature {
    display: flex;
    gap: 20px;
    text-align: left;
    background-color: rgba(23, 23, 23, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(64, 64, 64, 0.5);
}

.icon-wrapper {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
}

.apple-logo {
    color: var(--text-primary);
    width: 32px;
    height: 32px;
}

.rings-icon {
    width: 80px;
    height: 32px;
}

.feature h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: -0.2px;
}

.feature p {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.6;
}

.coming-soon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 32px;
    background-color: var(--bg-elevated);
    border-radius: 16px;
    border: 1px solid var(--bg-muted);
}

.badge {
    display: inline-block;
    background-color: var(--accent);
    color: var(--bg-primary);
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.coming-soon p {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-secondary);
}

footer {
    margin-top: 64px;
    padding-top: 32px;
    border-top: 1px solid var(--bg-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

footer a {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

footer a:hover {
    color: var(--accent);
}

.separator {
    color: var(--text-muted);
    font-size: 13px;
}

.legal-content {
    text-align: left;
    max-width: 800px;
}

.legal-content section {
    margin-bottom: 32px;
}

.legal-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    margin-top: 0;
    text-align: left;
}

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

.legal-content p {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
    text-align: left;
}

.legal-content ul {
    list-style: none;
    padding-left: 0;
    margin: 12px 0;
}

.legal-content ul li {
    font-size: 15px;
    color: var(--text-secondary);
    padding: 6px 0;
    padding-left: 24px;
    position: relative;
    line-height: 1.6;
}

.legal-content ul li::before {
    content: "•";
    color: var(--accent);
    font-size: 20px;
    position: absolute;
    left: 8px;
}

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

/* Responsive */
@media (max-width: 768px) {
    body {
        padding: 32px 16px;
    }
    
    .logo {
        width: 160px;
        height: 133px;
    }
    
    h1 {
        font-size: 40px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    .tagline {
        font-size: 16px;
        margin-bottom: 48px;
    }
    
    .content {
        gap: 40px;
    }
    
    .feature {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .feature .icon {
        margin: 0 auto;
    }
    
    .legal-content {
        text-align: left;
    }
    
    .legal-content h2 {
        font-size: 20px;
    }
    
    .legal-content h3 {
        font-size: 16px;
    }
}
