/* Intent - Focus | Support Website Styles */

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --color-bg: #ffffff;
    --color-text: #1a1a1a;
    --color-text-muted: #666666;
    --color-accent: #333333;
    --color-border: #e5e5e5;
    --color-surface: #f9f9f9;
    --font-stack: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --max-width: 800px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-stack);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: 2.25rem;
}

h2 {
    font-size: 1.5rem;
    margin-top: var(--spacing-lg);
}

h3 {
    font-size: 1.25rem;
    margin-top: var(--spacing-md);
}

p {
    margin-bottom: var(--spacing-sm);
}

a {
    color: var(--color-accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

a:hover {
    text-decoration: none;
}

ul, ol {
    margin-bottom: var(--spacing-sm);
    padding-left: var(--spacing-md);
}

li {
    margin-bottom: var(--spacing-xs);
}

/* Header */
.header {
    border-bottom: 1px solid var(--color-border);
    padding: var(--spacing-sm) var(--spacing-md);
}

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.logo {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
    text-decoration: none;
}

.logo:hover {
    text-decoration: none;
}

.nav {
    display: flex;
    gap: var(--spacing-md);
}

.nav a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.9375rem;
}

.nav a:hover,
.nav a.active {
    color: var(--color-text);
}

/* Main Content */
.main {
    flex: 1;
    padding: var(--spacing-xl) var(--spacing-md);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: var(--spacing-xl) 0;
}

.hero h1 {
    margin-bottom: var(--spacing-sm);
}

.hero .tagline {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-lg);
}

/* Button */
.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    background-color: var(--color-accent);
    color: var(--color-bg);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.btn:hover {
    opacity: 0.85;
    text-decoration: none;
}

/* Features */
.features {
    display: grid;
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.feature {
    padding: var(--spacing-md);
    background-color: var(--color-surface);
    border-radius: 8px;
}

.feature h3 {
    margin-top: 0;
    margin-bottom: var(--spacing-xs);
}

.feature p {
    margin-bottom: 0;
    color: var(--color-text-muted);
}

/* Section */
.section {
    margin-bottom: var(--spacing-xl);
}

.section:last-child {
    margin-bottom: 0;
}

/* FAQ */
.faq-item {
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid var(--color-border);
}

.faq-item:first-child {
    padding-top: 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    margin-top: 0;
    margin-bottom: var(--spacing-xs);
}

.faq-item p {
    margin-bottom: 0;
    color: var(--color-text-muted);
}

/* Contact Box */
.contact-box {
    background-color: var(--color-surface);
    padding: var(--spacing-lg);
    border-radius: 8px;
    text-align: center;
    margin-top: var(--spacing-xl);
}

.contact-box h2 {
    margin-top: 0;
}

.contact-box p {
    color: var(--color-text-muted);
}

/* Legal Content */
.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    color: var(--color-text-muted);
}

.effective-date {
    font-style: italic;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-lg);
}

/* Footer */
.footer {
    border-top: 1px solid var(--color-border);
    padding: var(--spacing-md);
    text-align: center;
}

.footer p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* Responsive */
@media (min-width: 600px) {
    .features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    html {
        font-size: 15px;
    }

    h1 {
        font-size: 1.875rem;
    }

    .header-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav {
        width: 100%;
        justify-content: flex-start;
    }
}
