/* Hide My Metadata - Modern Design System */
:root {
    --color-cream: #f5f0e3;
    --color-cream-light: #faf8f2;
    --color-cream-dark: #e8e0cc;
    --color-surface: #ffffff;
    --color-surface-dark: #f0ead8;
    --color-gold: #d4a853;
    --color-gold-light: #e8c983;
    --color-gold-dark: #b08a3e;
    --color-navy: #1a2234;
    --color-navy-light: #2d3a4f;
    --color-text: #1a2234;
    --color-text-muted: #5a6a7a;
    --color-emerald: #10b981;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

.bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
    background: 
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(212, 168, 83, 0.12), transparent),
        radial-gradient(ellipse 60% 40% at 100% 50%, rgba(26, 34, 52, 0.05), transparent),
        radial-gradient(ellipse 60% 40% at 0% 80%, rgba(212, 168, 83, 0.08), transparent);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
    background: transparent;
}

nav.scrolled {
    background: rgba(245, 240, 227, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 168, 83, 0.2);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-navy);
    text-decoration: none;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo img { height: 40px; width: auto; }
.logo span { color: var(--color-gold); }

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
    letter-spacing: 0.02em;
}

.nav-links a:hover, .nav-links a.active { color: var(--color-gold-dark); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    color: var(--color-navy);
    box-shadow: 0 4px 20px rgba(212, 168, 83, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 168, 83, 0.4);
}

.btn-secondary {
    background: var(--color-surface);
    color: var(--color-navy);
    border: 1px solid rgba(26, 34, 52, 0.15);
}

.btn-secondary:hover {
    border-color: var(--color-gold);
    color: var(--color-gold-dark);
}

/* Content wrapper */
.content-wrapper {
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-content {
    text-align: center;
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 168, 83, 0.15);
    border: 1px solid rgba(212, 168, 83, 0.4);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--color-gold-dark);
    margin-bottom: 1.5rem;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--color-emerald);
    border-radius: 50%;
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-navy);
    margin-bottom: 1.5rem;
}

.hero h1 em {
    font-style: italic;
    color: var(--color-gold);
}

.hero-description {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-logo-large {
    max-width: 280px;
    height: auto;
    margin: 0 auto 2rem;
    display: block;
    animation: fadeInUp 0.8s ease forwards;
}

/* Tool Section */
.tool-section {
    background: var(--color-surface);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(26, 34, 52, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
}

#drop-zone {
    border: 2px dashed rgba(212, 168, 83, 0.4);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    cursor: pointer;
    background: var(--color-cream-light);
    transition: all 0.3s ease;
}

#drop-zone:hover, #drop-zone.drag-over {
    border-color: var(--color-gold);
    background: rgba(212, 168, 83, 0.08);
    transform: scale(1.01);
}

#drop-zone i { color: var(--color-gold); margin-bottom: 1rem; }
#drop-zone p { color: var(--color-text-muted); margin-bottom: 0.5rem; }
#drop-zone .text-lg { color: var(--color-navy); font-weight: 600; }

#status { margin-top: 1.5rem; text-align: center; font-weight: 500; min-height: 1.5rem; }
#download-area { margin-top: 1.5rem; text-align: center; display: flex; flex-direction: column; gap: 1rem; align-items: center; }

/* Sections */
section {
    position: relative;
    z-index: 1;
    padding: 5rem 2rem;
}

.section-container { max-width: 1200px; margin: 0 auto; }

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-navy);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: var(--color-surface);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(26, 34, 52, 0.06);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.2), rgba(212, 168, 83, 0.08));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 0.75rem;
}

.feature-description {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* How It Works */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step-card { text-align: center; }

.step-number {
    width: 70px;
    height: 70px;
    background: var(--color-surface);
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-gold-dark);
    margin: 0 auto 1.25rem;
    box-shadow: 0 4px 20px rgba(212, 168, 83, 0.2);
}

.step-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 0.75rem;
}

.step-description {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Privacy Links Section */
.privacy-links-section { background: var(--color-cream-dark); }

.privacy-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.privacy-link-card {
    background: var(--color-surface);
    border-radius: 16px;
    padding: 1.75rem;
    border: 1px solid rgba(26, 34, 52, 0.06);
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    border-top: 3px solid var(--color-gold);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.privacy-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.privacy-link-card h3 {
    color: var(--color-navy);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.privacy-link-card p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* Ad Sections */
.ad-container {
    background: var(--color-surface);
    border-radius: 12px;
    padding: 1rem;
    margin: 2rem auto;
    max-width: 728px;
    text-align: center;
    border: 1px solid rgba(26, 34, 52, 0.06);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.ad-label {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

/* FAQ Section */
.faq-section { background: var(--color-cream-dark); }

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: var(--color-surface);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(26, 34, 52, 0.06);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 0.75rem;
}

.faq-answer {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Footer */
footer {
    background: var(--color-navy);
    padding: 3rem 2rem 1.5rem;
    margin-top: auto;
}

.footer-container { max-width: 1200px; margin: 0 auto; }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand .logo { 
    margin-bottom: 1rem; 
    color: var(--color-cream);
}
.footer-brand .logo span { color: var(--color-gold); }
.footer-brand p { color: rgba(245, 240, 227, 0.7); font-size: 0.9rem; max-width: 280px; }

.footer-column h4 {
    color: var(--color-cream);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-column ul { list-style: none; }
.footer-column li { margin-bottom: 0.5rem; }

.footer-column a {
    color: rgba(245, 240, 227, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-column a:hover { color: var(--color-gold); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(245, 240, 227, 0.1);
}

.footer-copyright { color: rgba(245, 240, 227, 0.5); font-size: 0.85rem; }

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    nav { padding: 1rem; }
    .nav-links { display: none; }
    .hero { padding: 6rem 1.5rem 3rem; }
    .hero h1 { font-size: 2rem; }
    .tool-section { padding: 1.5rem; }
    #drop-zone { padding: 2rem 1rem; }
    section { padding: 3rem 1.5rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

/* Article Pages */
.article-hero {
    padding: 8rem 2rem 3rem;
    text-align: center;
}

.article-hero .hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-navy) !important;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.article-hero .hero-content h1 em {
    font-style: italic;
    color: var(--color-gold) !important;
}

.article-content {
    background: var(--color-surface);
    border-radius: 24px;
    padding: 3rem;
    margin: 0 auto;
    max-width: 900px;
    border: 1px solid rgba(26, 34, 52, 0.06);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.article-content h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-navy);
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-gold);
}

.article-content h2:first-of-type { margin-top: 0; }

.article-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-gold-dark);
    margin: 1.5rem 0 0.75rem;
}

.article-content p {
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.article-content ul, .article-content ol {
    color: var(--color-text-muted);
    margin: 1rem 0 1rem 1.5rem;
    line-height: 1.7;
}

.article-content li { margin-bottom: 0.5rem; }
.article-content strong { color: var(--color-navy); }

.article-content a {
    color: var(--color-gold-dark);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.article-content a:hover { color: var(--color-gold); }

/* Provider Cards */
.provider-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.provider-card {
    background: var(--color-cream-light);
    border-radius: 12px;
    padding: 1.5rem;
    border-left: 3px solid var(--color-gold);
    transition: all 0.3s ease;
}

.provider-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); }
.provider-card img { max-height: 40px; margin-bottom: 0.75rem; }
.provider-card h4 { color: var(--color-navy); font-size: 1.1rem; margin-bottom: 0.5rem; }
.provider-card p { color: var(--color-text-muted); font-size: 0.9rem; margin-bottom: 0.75rem; }

.featured-provider {
    background: var(--color-cream-light);
    border: 2px solid var(--color-gold);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
}

.featured-provider h3 {
    color: var(--color-navy);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: none;
}

.featured-provider img.banner {
    width: 100%;
    border-radius: 8px;
    margin: 1rem 0;
}

/* Back link */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-gold-dark);
    text-decoration: none;
    font-weight: 500;
    margin-top: 1.5rem;
    transition: color 0.2s ease;
}

.back-link:hover { color: var(--color-gold); }

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--color-navy);
    cursor: pointer;
    padding: 0.5rem;
}

@media (max-width: 768px) {
    .mobile-menu-btn { display: block; }
}

/* Text Colors */
.text-green { color: var(--color-emerald); }
.text-red { color: #ef4444; }
.text-gold { color: var(--color-gold-dark); }

/* Utility Classes */
.hidden { display: none !important; }
.opacity-0 { opacity: 0; }
.w-0 { width: 0; }
.h-0 { height: 0; }
.absolute { position: absolute; }
.pointer-events-none { pointer-events: none; }
