/* Design System Tokens (Futuristic Dark Mode) */
:root {
    --bg-primary: #09090b; /* Deep Charcoal */
    --bg-secondary: rgba(255, 255, 255, 0.02); /* Glass card */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.55);
    --text-muted: rgba(255, 255, 255, 0.35);
    
    --brand-primary: #6366f1; /* Electric Indigo */
    --brand-secondary: #00c6ff; /* Cyan */
    --brand-accent: #d946ef; /* Purple/Hot Pink */
    --brand-danger: #ef4444; /* Alert Red */
    
    --border-color: rgba(255, 255, 255, 0.08);
    --border-highlight: rgba(99, 102, 241, 0.35);
    
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.8);
    --shadow-glow: 0 0 30px rgba(99, 102, 241, 0.08);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 22px;
    --radius-full: 9999px;
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header & Glassmorphic Navigation */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(9, 9, 11, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 22px;
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.8px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav {
    display: flex;
    gap: 24px;
}

.nav a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition-fast);
}

.nav a:hover {
    color: #ffffff;
}

/* Hero Section */
.hero {
    padding: 90px 0 54px;
    text-align: center;
    background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.08), transparent 500px),
                radial-gradient(circle at top left, rgba(217, 70, 239, 0.05), transparent 500px);
}

.hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 52px;
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin: 20px 0 8px;
    background: linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-desc {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 24px auto 0;
    font-weight: 400;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 6px 18px;
    background-color: rgba(99, 102, 241, 0.08);
    color: #ffffff;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.status-badge {
    padding: 4px 12px;
    font-size: 10px;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.alert {
    background-color: rgba(239, 68, 68, 0.08);
    color: var(--brand-danger);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Content Layout & Glass Cards */
.content-section {
    padding: 24px 0;
}

.card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 44px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-md);
}

.card.border-highlight {
    border-color: var(--border-highlight);
    box-shadow: var(--shadow-glow);
}

.card h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
    color: #ffffff;
}

.card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 14px;
    color: #ffffff;
    letter-spacing: -0.2px;
}

.card p {
    color: var(--text-secondary);
    margin-bottom: 18px;
    font-size: 15px;
}

.card p.section-intro {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 28px;
}

.card p:last-child {
    margin-bottom: 0;
}

/* Custom Lists */
.feature-list {
    list-style: none;
    margin: 20px 0;
}

.feature-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 16px;
    color: var(--text-secondary);
    font-size: 14.5px;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 4px;
    color: var(--brand-secondary);
    font-weight: 800;
}

.feature-list li strong {
    color: #ffffff;
}

/* Provider Badge */
.provider-badge-group {
    margin: 28px 0;
}

.provider-badge {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px;
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
}

.provider-icon {
    font-size: 28px;
}

.provider-desc {
    display: block;
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 6px;
}

/* Data Deletion Layout */
.data-deletion-card {
    border-left: 4px solid var(--brand-danger);
}

.deletion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.deletion-header h2 {
    margin-bottom: 0;
}

.instructions-box {
    margin: 28px 0;
    padding: 24px;
    background-color: rgba(255, 255, 255, 0.01);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.instructions-box h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #ffffff;
}

.instructions-box ol {
    padding-left: 20px;
}

.instructions-box li {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.instructions-box a {
    color: var(--brand-secondary);
    font-weight: 600;
    text-decoration: none;
}

.instructions-box a:hover {
    text-decoration: underline;
}

/* Action Button */
.action-box {
    margin-top: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.btn-danger {
    background-color: var(--brand-danger);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.btn-danger:hover {
    background-color: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
}

/* Contact Specific */
.contact-card {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.03), rgba(217, 70, 239, 0.03)), var(--bg-secondary);
}

.contact-details {
    margin-top: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-icon {
    font-size: 24px;
}

.contact-item a {
    color: var(--brand-primary);
    font-weight: 600;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    padding: 48px 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
    margin-top: 80px;
    font-size: 13px;
    color: var(--text-muted);
}

/* Grid Layout */
.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.grid .card {
    padding: 32px;
}

/* Responsive Breakpoints */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 38px;
    }
    
    .grid {
        grid-template-columns: 1fr;
    }
    
    .card {
        padding: 28px;
    }
    
    .header-container {
        flex-direction: column;
        gap: 16px;
    }
}
