/* ==========================================
   GRAVITY PIPELINE — LANDING PAGE STYLES
   Brand: Goat Getter | Navy #1B2547 | Gold #F5A623
   Background: Light/White
   ========================================== */

:root {
    /* Brand Colors */
    --navy:          #1B2547;
    --navy-light:    #2d3d6b;
    --gold:          #F5A623;
    --gold-dark:     #d98e0e;
    --gold-light:    #fdf0d5;
    --purple:        #7c3aed;
    --purple-light:  #a78bfa;
    --purple-glow:   rgba(124, 58, 237, 0.15);

    /* Backgrounds */
    --bg-white:      #ffffff;
    --bg-light:      #f7f8fc;
    --bg-subtle:     #f0f2f8;

    /* Text */
    --text-main:     #1B2547;
    --text-body:     #374151;
    --text-muted:    #64748b;
    --text-dim:      #94a3b8;

    /* Borders / Cards */
    --border:        #e5e7eb;
    --border-strong: #d1d5db;
    --card-bg:       #ffffff;
    --card-shadow:   0 2px 16px rgba(27, 37, 71, 0.08);
    --card-shadow-hover: 0 8px 32px rgba(27, 37, 71, 0.14);

    /* Accents */
    --success:       #059669;
    --radius-sm:     8px;
    --radius-md:     14px;
    --radius-lg:     20px;
    --font:          'Inter', system-ui, -apple-system, sans-serif;
    --transition:    0.22s ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    background-color: var(--bg-white);
    color: var(--text-body);
    font-family: var(--font);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Remove old dark bg blobs — light theme doesn't use them */
.bg-blobs, .blob { display: none; }

/* ─── Utilities ────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-pad { padding: 100px 0; }
.glass {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--card-shadow);
}
.w-full { width: 100%; display: block; text-align: center; }
.gradient-text {
    background: linear-gradient(135deg, var(--navy) 0%, var(--purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hidden { display: none !important; }

/* ─── Buttons ──────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    font-family: var(--font);
    white-space: nowrap;
}
.btn-primary {
    background: var(--gold);
    color: var(--navy);
    box-shadow: 0 4px 18px rgba(245, 166, 35, 0.4);
}
.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(245, 166, 35, 0.5);
}
.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}
.btn-outline:hover {
    background: var(--navy);
    color: #fff;
    transform: translateY(-2px);
}
.btn-purple {
    background: var(--purple);
    color: #fff;
    box-shadow: 0 4px 18px rgba(124,58,237,0.3);
}
.btn-purple:hover {
    background: #6d28d9;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(124,58,237,0.4);
}
.btn-lg { padding: 1.1rem 2.4rem; font-size: 1.05rem; }
.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.88rem; }

/* ─── Section Labels ────────────────────── */
.section-title { text-align: center; margin-bottom: 64px; }
.section-title h2 { font-size: 2.6rem; font-weight: 800; margin-bottom: 14px; line-height: 1.2; color: var(--navy); }
.section-title p { color: var(--text-muted); font-size: 1.05rem; max-width: 540px; margin: 0 auto; }
.section-tag {
    display: inline-block;
    background: var(--gold-light);
    color: var(--gold-dark);
    border: 1px solid rgba(245,166,35,0.35);
    border-radius: 50px;
    padding: 4px 14px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

/* ==========================================
   NAVIGATION
   ========================================== */
#navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition), box-shadow var(--transition);
    padding: 8px 0;
}
#navbar.scrolled {
    border-color: var(--border);
    box-shadow: 0 2px 12px rgba(27,37,71,0.06);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    max-width: 100%;
    padding: 0 2rem;
    margin: 0;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--navy);
    text-decoration: none;
    flex-shrink: 0;
}
.logo-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}
.logo-icon { width: 28px; height: 28px; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 7px 14px;
    border-radius: 8px;
    transition: color var(--transition), background var(--transition);
}
.nav-link:hover { color: var(--navy); background: var(--bg-subtle); }
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

/* ==========================================
   HERO
   ========================================== */
.hero {
    padding-top: 90px;
    padding-bottom: 80px;
    background: linear-gradient(170deg, #fff 60%, var(--bg-light) 100%);
}
.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}
.hero-content { text-align: center; max-width: 780px; }
.eyebrow-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold-light);
    border: 1px solid rgba(245,166,35,0.3);
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 0.82rem;
    color: var(--gold-dark);
    font-weight: 600;
    margin-bottom: 28px;
}
.eyebrow-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 6px rgba(5,150,105,0.5);
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot { 0%,100% { opacity:1; } 50% { opacity:0.4; } }

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 22px;
    letter-spacing: -0.02em;
    color: var(--navy);
}
.hero-sub {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 34px;
    line-height: 1.7;
}
.cta-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-footnote { margin-top: 18px; font-size: 0.8rem; color: var(--text-dim); }

/* Hero Mockup */
.hero-mockup {
    width: 100%;
    max-width: 1040px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(27,37,71,0.15), 0 4px 16px rgba(27,37,71,0.08);
    border: 1px solid var(--border);
}
.mockup-bar {
    background: var(--bg-light);
    border-bottom: 1px solid var(--border);
    padding: 11px 18px;
    display: flex;
    align-items: center;
    gap: 7px;
}
.mockup-bar .dot { width: 11px; height: 11px; border-radius: 50%; }
.mockup-bar .dot.red    { background: #ff5f57; }
.mockup-bar .dot.yellow { background: #febc2e; }
.mockup-bar .dot.green  { background: #28c840; }
.mockup-url { margin-left: 10px; font-size: 0.76rem; color: var(--text-dim); font-family: monospace; }
.hero-img { width: 100%; display: block; height: auto; }

/* ─── Trust Bar ─────────────────────────── */
.trust-bar {
    padding: 22px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-light);
}
.trust-bar .container { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; justify-content: center; }
.trust-label { color: var(--text-dim); font-size: 0.8rem; }
.trust-logos { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; justify-content: center; }
.trust-item { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }
.trust-sep { color: var(--text-dim); }

/* ==========================================
   FEATURES
   ========================================== */
#features { background: var(--bg-white); }

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 80px;
}
.comparison-card { padding: 2.5rem; position: relative; }
.pro-card { border-color: var(--purple); border-width: 2px; }
.pro-glow {
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(124,58,237,0.04), transparent 60%);
    pointer-events: none;
}
.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--navy);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 4px 16px;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(245,166,35,0.4);
}
.comparison-header { margin-bottom: 24px; }
.comparison-header h3 { font-size: 1.5rem; font-weight: 800; margin: 10px 0 8px; color: var(--navy); }
.comparison-header p { color: var(--text-muted); font-size: 0.9rem; }
.plan-chip {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}
.free-chip { background: var(--bg-subtle); color: var(--text-muted); border: 1px solid var(--border); }
.pro-chip  { background: rgba(124,58,237,0.1); color: var(--purple); border: 1px solid rgba(124,58,237,0.25); }
.feature-list { list-style: none; margin-bottom: 28px; }
.feature-list li {
    display: flex; align-items: center; gap: 10px;
    padding: 7px 0; font-size: 0.9rem;
    border-bottom: 1px solid var(--bg-subtle);
    color: var(--text-body);
}
.feature-list li.dim { color: var(--text-dim); }
.check { color: var(--success); flex-shrink: 0; }
.dash  { color: var(--text-dim); flex-shrink: 0; }

.features-deep {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.feature-card {
    padding: 2rem;
    transition: transform var(--transition), box-shadow var(--transition);
    background: var(--bg-white);
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
}
.feature-icon {
    width: 48px; height: 48px;
    background: var(--gold-light);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
}
.feature-icon svg { width: 22px; height: 22px; color: var(--gold-dark); stroke: var(--gold-dark); }
.feature-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
.feature-card p { color: var(--text-muted); font-size: 0.86rem; line-height: 1.6; }
.pro-tag {
    background: rgba(124,58,237,0.1);
    color: var(--purple);
    font-size: 0.62rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 50px;
    vertical-align: middle;
    margin-left: 4px;
    letter-spacing: 0.06em;
}

/* ==========================================
   PRICING
   ========================================== */
.pricing-section { background: var(--bg-light); }

.billing-toggle {
    display: flex; align-items: center; justify-content: center;
    gap: 14px; margin-bottom: 48px;
}
.toggle-label { font-size: 0.92rem; font-weight: 600; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
.toggle-switch {
    position: relative; width: 50px; height: 26px;
    background: var(--border-strong);
    border: none; border-radius: 50px;
    cursor: pointer; transition: background var(--transition);
}
.toggle-switch[aria-checked="true"] { background: var(--gold); }
.toggle-thumb {
    position: absolute; top: 3px; left: 3px;
    width: 20px; height: 20px;
    background: #fff; border-radius: 50%;
    transition: transform var(--transition);
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.toggle-switch[aria-checked="true"] .toggle-thumb { transform: translateX(24px); }
.save-badge {
    background: rgba(5,150,105,0.1);
    color: var(--success);
    border: 1px solid rgba(5,150,105,0.2);
    font-size: 0.7rem; font-weight: 700;
    padding: 2px 10px; border-radius: 50px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    align-items: start;
}
.pricing-card {
    padding: 2rem 1.75rem;
    position: relative;
    display: flex; flex-direction: column; gap: 14px;
    background: var(--bg-white);
    transition: transform var(--transition), box-shadow var(--transition);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--card-shadow-hover); }
.popular-card {
    border-color: var(--gold);
    border-width: 2px;
    background: #fffdf5;
}
.popular-card .popular-badge { top: -14px; }
.plan-name {
    font-size: 0.8rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.09em;
    color: var(--text-muted);
}
.price-amount { font-size: 2.75rem; font-weight: 900; line-height: 1; color: var(--navy); }
.price-period { font-size: 0.88rem; color: var(--text-muted); margin-left: 2px; }
.annual-equiv { font-size: 0.76rem; color: var(--success); margin-top: 4px; }
.plan-desc { font-size: 0.84rem; color: var(--text-muted); line-height: 1.5; }
.plan-limit {
    font-size: 0.76rem; font-weight: 700;
    color: var(--purple); background: rgba(124,58,237,0.08);
    border-radius: 6px; padding: 4px 10px;
    display: inline-block; border: 1px solid rgba(124,58,237,0.15);
}
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 9px; flex-grow: 1; }
.plan-features li {
    font-size: 0.83rem; color: var(--text-body);
    padding-left: 18px; position: relative;
}
.plan-features li::before { content: '✓'; position: absolute; left: 0; color: var(--success); font-weight: 700; }
.pricing-note { text-align: center; margin-top: 32px; font-size: 0.8rem; color: var(--text-dim); }
.pricing-note a { color: var(--navy); text-decoration: underline; }
.pricing-note a:hover { color: var(--gold-dark); }

/* ==========================================
   HOW-TO DOCS
   ========================================== */
#docs { background: var(--bg-white); }

.docs-tabs {
    display: flex; gap: 6px; justify-content: center; margin-bottom: 36px;
    background: var(--bg-subtle); border: 1px solid var(--border);
    border-radius: 50px; padding: 5px;
    width: fit-content; margin-left: auto; margin-right: auto;
}
.doc-tab {
    background: transparent; border: none;
    color: var(--text-muted); font-size: 0.88rem; font-weight: 600;
    padding: 9px 26px; border-radius: 50px;
    cursor: pointer; font-family: var(--font);
    transition: background var(--transition), color var(--transition);
}
.doc-tab.active { background: var(--navy); color: #fff; }
.doc-tab:hover:not(.active) { background: var(--border); color: var(--navy); }

.doc-panel { display: none; }
.doc-panel.active { display: block; }
.doc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.doc-card {
    padding: 2rem;
    background: var(--bg-white);
    transition: transform var(--transition), box-shadow var(--transition);
}
.doc-card:hover { transform: translateY(-3px); box-shadow: var(--card-shadow-hover); }
.doc-number { font-size: 0.72rem; font-weight: 800; color: var(--gold-dark); letter-spacing: 0.1em; margin-bottom: 8px; }
.doc-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
.doc-card > p { color: var(--text-muted); font-size: 0.86rem; margin-bottom: 16px; }
.doc-steps { display: flex; flex-direction: column; gap: 7px; }
.step {
    font-size: 0.82rem; color: var(--text-body);
    padding: 8px 12px; background: var(--bg-subtle);
    border-radius: 7px; border-left: 3px solid var(--gold);
}
.step code { background: rgba(124,58,237,0.1); color: var(--purple); padding: 1px 5px; border-radius: 3px; font-size: 0.78rem; }
.step a { color: var(--purple); }

/* ==========================================
   ECOSYSTEM / COMING SOON
   ========================================== */
.ecosystem-section { background: var(--bg-light); }
.ecosystem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 36px; }
.ecosystem-card {
    padding: 2.5rem 2rem; text-align: center; position: relative;
    background: var(--bg-white);
    transition: transform var(--transition), box-shadow var(--transition);
}
.ecosystem-card:hover { transform: translateY(-5px); box-shadow: var(--card-shadow-hover); }
.ecosystem-icon {
    width: 64px; height: 64px; border-radius: var(--radius-md);
    margin: 0 auto 14px;
    display: flex; align-items: center; justify-content: center;
}
.ecosystem-icon svg { width: 26px; height: 26px; }
.reports-icon { background: var(--gold-light); }
.reports-icon svg { color: var(--gold-dark); }
.comm-icon    { background: rgba(99,102,241,0.1); }
.comm-icon svg { color: #6366f1; }
.auto-icon    { background: rgba(124,58,237,0.1); }
.auto-icon svg { color: var(--purple); }
.coming-soon-pill {
    display: inline-block; background: var(--bg-subtle); border: 1px solid var(--border);
    color: var(--text-dim); font-size: 0.68rem; font-weight: 700;
    letter-spacing: 0.09em; text-transform: uppercase;
    padding: 3px 12px; border-radius: 50px; margin-bottom: 12px;
}
.ecosystem-card h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
.ecosystem-card p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.6; }
.ecosystem-cta { text-align: center; color: var(--text-muted); font-size: 0.9rem; }
.ecosystem-cta a { color: var(--gold-dark); text-decoration: none; font-weight: 600; }
.ecosystem-cta a:hover { text-decoration: underline; }

/* ==========================================
   FAQ
   ========================================== */
#faq { background: var(--bg-white); }
.faq-list { max-width: 740px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; background: var(--bg-white); }
.faq-question {
    width: 100%; background: none; border: none;
    color: var(--navy); font-family: var(--font); font-size: 0.95rem; font-weight: 600;
    text-align: left; padding: 18px 22px;
    cursor: pointer; display: flex; align-items: center;
    justify-content: space-between; gap: 16px;
    transition: background var(--transition);
}
.faq-question:hover { background: var(--bg-subtle); }
.faq-icon {
    flex-shrink: 0; width: 20px; height: 20px;
    display: flex; align-items: center; justify-content: center;
    position: relative; color: var(--text-dim);
}
.faq-icon::before, .faq-icon::after {
    content: ''; position: absolute; background: currentColor;
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}
.faq-icon::before { width: 12px; height: 2px; }
.faq-icon::after  { width: 2px; height: 12px; }
.faq-question[aria-expanded="true"] .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-question[aria-expanded="true"] .faq-icon { color: var(--gold-dark); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer.open { max-height: 400px; }
.faq-answer p { padding: 0 22px 18px; color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; }
.faq-answer p a { color: var(--purple); }

/* ==========================================
   FOOTER
   ========================================== */
.site-footer { padding: 72px 0 0; border-top: 1px solid var(--border); background: var(--navy); color: rgba(255,255,255,0.8); }
.footer-top { display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; padding-bottom: 56px; }
.footer-brand .logo { margin-bottom: 14px; color: #fff; }
.footer-tagline { color: rgba(255,255,255,0.55); font-size: 0.86rem; line-height: 1.7; }
.footer-tagline a { color: var(--gold); text-decoration: none; }
.footer-tagline a:hover { text-decoration: underline; }
.footer-links-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h5 { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.footer-col a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.86rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 22px 0; text-align: center; color: rgba(255,255,255,0.35); font-size: 0.76rem; }

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .comparison-grid { grid-template-columns: 1fr; }
    .features-deep { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.8rem; }
    .section-title h2 { font-size: 2rem; }
    .section-pad { padding: 72px 0; }

    .nav-toggle { display: flex; }
    .nav-links {
        display: none;
        position: absolute; top: 76px; left: 0; right: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column; align-items: stretch;
        padding: 12px; border-bottom: 1px solid var(--border);
        gap: 4px;
    }
    .nav-links.open { display: flex; }
    .nav-link { text-align: center; padding: 12px; }

    .features-deep, .ecosystem-grid, .doc-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 2rem; }
    .footer-links-grid { grid-template-columns: 1fr 1fr; }
    .cta-group { flex-direction: column; align-items: center; }
    .btn-lg { width: 100%; max-width: 320px; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 2.2rem; }
    .footer-links-grid { grid-template-columns: 1fr; }
    .container { padding: 0 1.25rem; }
}