/* Brand Font */
@font-face {
    font-family: 'JTMillburn';
    src: url('assets/fonts/JTMillburn-Bold.otf') format('opentype');
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'JTMillburn';
    src: url('assets/fonts/JTMillburn-ExtraBold.otf') format('opentype');
    font-weight: 800;
    font-display: swap;
}

@font-face {
    font-family: 'JTMillburn';
    src: url('assets/fonts/JTMillburn-Black.otf') format('opentype');
    font-weight: 900;
    font-display: swap;
}

@font-face {
    font-family: 'JTMillburn';
    src: url('assets/fonts/JTMillburn-BlackSlanted.otf') format('opentype');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

/* Variables */
:root {
    --primary-teal: #58BBBB;
    --primary-teal-light: #6BC5C5;
    --primary-purple: #9D5CFF;
    --bg-dark: #0D1117;
    --surface-dark: #1C1C1E;
    --text-white: #FFFFFF;
    --text-gray: rgba(255, 255, 255, 0.6);
    --star-orange: #F5A623;
}

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

html, body {
    height: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #000000;
    background-image: radial-gradient(ellipse at 50% 0%, #1a3a4a 0%, #0D1117 50%, #000000 100%);
    background-repeat: no-repeat;
    background-size: 100% 100vh;
    color: var(--text-white);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header */
.header {
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    height: 48px;
    width: auto;
    display: block;
}

.header-delete-link {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    transition: color 0.15s, border-color 0.15s;
}

.header-delete-link:hover {
    color: var(--text-white);
    border-color: var(--primary-teal);
}

/* Hero Section */
.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px 24px;
    gap: 40px;
}

/* Tagline */
.tagline {
    font-family: 'JTMillburn', 'Inter', sans-serif;
    font-size: 48px;
    color: var(--primary-teal);
    font-weight: 900;
    font-style: italic;
    max-width: 560px;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Store Badges - Stacked */
.store-badges {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

/* Badges are wrapped in real <a> tags so crawlers can follow them to the
   store listings. The anchor is layout-neutral: the SVGs keep their intrinsic
   40px height, which is how the hero has always rendered. */
.store-badge-link {
    display: block;
    line-height: 0;
    cursor: pointer;
}

.store-badge-link img {
    width: auto;
    transition: opacity 0.2s ease;
}

.store-badge-link:hover img {
    opacity: 0.8;
}

/* Social Proof */
.social-proof {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
}

.rating-score {
    font-family: 'JTMillburn', 'Inter', sans-serif;
    font-size: 72px;
    font-weight: 900;
    line-height: 1;
}

/* Users Stat */
.users-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.users-count {
    font-family: 'JTMillburn', 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
    color: var(--text-white);
}

.users-label {
    font-size: 16px;
    color: var(--text-gray);
}

.proof-divider {
    width: 1px;
    height: 56px;
    background: rgba(255, 255, 255, 0.15);
    margin: 0 12px;
}

.rating-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.stars {
    display: flex;
    gap: 4px;
}

.rating-count {
    font-size: 18px;
    color: var(--text-gray);
}

/* CTA Text */
.cta-text {
    font-family: 'JTMillburn', 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--text-white);
    margin-top: 40px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Footer */
.footer {
    background-color: var(--surface-dark);
    padding: 60px 24px 30px;
}

.footer-links {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column h4 {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.footer-column a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

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

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons a {
    color: var(--text-white);
    transition: color 0.2s ease;
}

.social-icons a:hover {
    color: var(--primary-teal);
}

/* Copyright */
.copyright {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
    font-size: 13px;
    color: var(--text-gray);
}

/* Page Content (for subpages) */
.page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 24px 80px;
}

.page-content h1 {
    font-family: 'JTMillburn', 'Inter', sans-serif;
    font-size: 38px;
    font-weight: 900;
    color: var(--primary-teal);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.page-content .last-updated {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 40px;
}

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

.page-content h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-white);
}

.page-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 16px 0 8px;
    color: var(--text-white);
}

.page-content p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 12px;
}

.page-content ul {
    color: var(--text-gray);
    line-height: 1.7;
    margin-left: 24px;
    margin-bottom: 12px;
}

.page-content li {
    margin-bottom: 8px;
}

.page-content a {
    color: var(--primary-teal);
    text-decoration: none;
}

.page-content a:hover {
    text-decoration: underline;
}

/* Pricing Page */
.pricing-page {
    max-width: 1000px;
}

.pricing-intro {
    font-size: 18px;
    margin-bottom: 40px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
    align-items: stretch;
}

.pricing-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
}

.pricing-card.featured {
    background: rgba(88, 187, 187, 0.08);
    border: 2px solid var(--primary-teal);
}

.plan-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-teal);
    color: #06251f;
    font-family: 'JTMillburn', 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 14px;
    border-radius: 100px;
    white-space: nowrap;
}

.plan-name {
    font-family: 'JTMillburn', 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-white);
}

.plan-price {
    font-family: 'JTMillburn', 'Inter', sans-serif;
    font-size: 52px;
    font-weight: 900;
    line-height: 1;
    color: var(--text-white);
    margin-top: 8px;
}

.pricing-card.featured .plan-price {
    color: var(--primary-teal);
}

.plan-period {
    font-size: 15px;
    color: var(--text-gray);
}

.plan-note {
    font-size: 14px;
    color: var(--text-gray);
    margin-top: 12px;
}

.pricing-features {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 48px;
}

.pricing-features h2 {
    font-family: 'JTMillburn', 'Inter', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    margin-bottom: 20px;
}

.pricing-features ul {
    list-style: none;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px 32px;
    max-width: 640px;
    margin: 0 auto;
}

.pricing-features li {
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
}

.pricing-features li svg {
    flex-shrink: 0;
}

.pricing-cta {
    text-align: center;
}

.pricing-cta .cta-text {
    margin: 0 0 24px;
}

.pricing-disclaimer {
    font-size: 13px;
    color: var(--text-gray);
    text-align: center;
    margin-top: 32px;
}

/* FAQ Page */
.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 16px;
}

.faq-item h2 {
    font-size: 18px;
    margin-bottom: 8px;
}

.faq-item p {
    margin-bottom: 0;
}

/* Contact Page */
.contact-page .contact-intro {
    font-size: 18px;
    margin-bottom: 40px;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 24px;
}

.contact-card h2 {
    font-size: 18px;
    margin-bottom: 8px;
}

.contact-card p {
    font-size: 14px;
    margin-bottom: 12px;
}

.contact-link {
    color: var(--primary-teal);
    font-weight: 500;
}

.social-contact {
    text-align: center;
    padding: 40px 0;
}

.social-contact h2 {
    margin-bottom: 8px;
}

.social-contact p {
    margin-bottom: 20px;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-teal);
    font-size: 18px;
    font-weight: 500;
}

.instagram-link:hover {
    text-decoration: none;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .tagline {
        font-size: 36px;
    }

    .rating-score {
        font-size: 56px;
    }

    .users-count {
        font-size: 38px;
    }

    .cta-text {
        font-size: 22px;
    }

    .footer-links {
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 16px 20px;
    }

    .logo {
        height: 40px;
    }

    .tagline {
        font-size: 30px;
    }

    .store-badge img {
        height: 48px;
    }

    .rating-score {
        font-size: 44px;
    }

    .users-count {
        font-size: 30px;
    }

    .social-proof {
        gap: 10px;
    }

    .proof-divider {
        margin: 0 6px;
        height: 44px;
    }

    .plan-price {
        font-size: 44px;
    }

    .stars svg {
        width: 20px;
        height: 20px;
    }
}
