/* ============================================================
   LetsGetNow — styles.css
   Single stylesheet, organized top-down by component.
   ============================================================ */

/* ============ 1. DESIGN TOKENS ============ */
:root {
    --bg-color: #f8fafc;
    --text-color: #0f172a;
    --primary-accent: #2563eb;
    --tools-color: #059669;
    --money-color: #d97706;
    --buy-color: #dc2626;
    --card-bg: #ffffff;
}

/* ============ 2. BASE & RESET ============ */
html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* ============ 3. ACCESSIBILITY ============ */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--primary-accent);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 0 0 8px 0;
    z-index: 2000;
    font-weight: 600;
    text-decoration: none;
}

.skip-link:focus {
    left: 0;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--primary-accent);
    outline-offset: 3px;
    border-radius: 6px;
}

/* ============ 4. NAVBAR ============ */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem clamp(1rem, 4vw, 2.5rem);
    background-color: rgba(248, 250, 252, 0.82);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #e2e8f0;
}

.nav-logo {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    text-decoration: none;
    color: var(--text-color);
}

.nav-logo span {
    color: var(--primary-accent);
}

.nav-links a {
    margin-left: 1.75rem;
    text-decoration: none;
    color: #475569;
    font-weight: 600;
    font-size: 0.98rem;
    transition: color 0.2s ease;
}

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

/* ============ 5. HERO ============ */
header#home {
    text-align: center;
    padding: 3.5rem 1rem 2rem 1rem;
    max-width: 800px;
    margin: 0 auto;
    scroll-margin-top: 80px;
}

header#home h1 {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    margin-bottom: 0.5rem;
}

header#home h1 span {
    color: var(--primary-accent);
}

header#home p {
    font-size: 1.2rem;
    color: #475569;
    margin-top: 0;
}

.hero-badge {
    display: inline-block;
    background-color: #eff6ff;
    color: var(--primary-accent);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.4rem 1.1rem;
    border-radius: 999px;
    margin: 0 0 1.25rem 0;
}

/* ============ 6. LAYOUT & SECTION HEADINGS ============ */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

main > section {
    scroll-margin-top: 80px;
}

#portals,
#about {
    margin-bottom: 5rem;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 0.4rem;
}

.section-sub {
    text-align: center;
    color: #475569;
    margin-top: 0;
    margin-bottom: 2.75rem;
}

/* ============ 7. PORTAL CARDS & BUTTONS ============ */
.hub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.hub-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid #e2e8f0;
}

.hub-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.hub-card h2 {
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 1rem;
}

.hub-card p {
    color: #475569;
    font-size: 1.05rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.big-btn {
    display: block;
    text-align: center;
    padding: 1.2rem 2rem;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    border-radius: 8px;
    transition: opacity 0.2s ease;
}

.big-btn:hover {
    opacity: 0.9;
}

.btn-stack {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-stack .big-btn {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

.big-btn-outline {
    display: block;
    text-align: center;
    padding: 0.95rem 2rem;
    background-color: transparent;
    color: var(--money-color);
    border: 2px solid var(--money-color);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.big-btn-outline:hover {
    background-color: var(--money-color);
    color: #ffffff;
}

/* Specific Subdomain Theming for Contextual Relevancy */
.tools-card h2 { color: var(--tools-color); }
.tools-btn { background-color: var(--tools-color); }

.money-card h2 { color: var(--money-color); }
.money-btn { background-color: var(--money-color); }

.buy-card h2 { color: var(--buy-color); }
.buy-btn { background-color: var(--buy-color); }

/* ============ 8. ABOUT ============ */
.about-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.about-text p {
    color: #475569;
    font-size: 1.05rem;
    margin-top: 0;
    margin-bottom: 1.25rem;
}

.value-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1rem;
}

.value-list li {
    background: var(--card-bg);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.1rem 1.25rem;
}

.value-list li strong {
    display: block;
    margin-bottom: 0.15rem;
}

.value-list li span {
    color: #475569;
    font-size: 0.95rem;
}

/* ============ 9. CONTACT ============ */
.contact-card {
    max-width: 640px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2.75rem 2.5rem;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
}

.contact-email {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary-accent);
    overflow-wrap: anywhere;
    margin: 0 0 0.75rem 0;
}

.contact-note {
    color: #94a3b8;
    font-size: 0.9rem;
    margin: 0;
}

/* ============ 10. FOOTER ============ */
footer {
    text-align: center;
    padding: 3.5rem 1rem 2rem 1rem;
    font-size: 0.9rem;
    color: #94a3b8;
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.75rem;
    margin-bottom: 1.25rem;
}

.footer-nav a {
    color: #475569;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

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

/* ============ 11. MEDIA QUERIES ============ */
@media (max-width: 768px) {
    header#home h1 { font-size: 2.2rem; }
    .hub-card { padding: 1.5rem; }
    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .contact-card { padding: 2rem 1.25rem; }
    .nav-links a { margin-left: 1rem; font-size: 0.92rem; }
}
