/*
Theme Name: ezyhive eBuddy One Page
Theme URI: https://ezyhive.com/
Author: ezyhive
Description: Simple one-page landing theme for eBuddy / Seller Buddy.
Version: 1.0.8
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: ebuddy
*/

/* =========================================================
   ROOT
========================================================= */

:root {
    --primary: #635bff;
    --primary-dark: #5148e5;
    --primary-light: #efeeff;

    --dark: #111827;
    --dark-2: #1f2937;

    --text: #374151;
    --muted: #6b7280;

    --bg: #ffffff;
    --bg-soft: #f7f8fc;

    --border: #e5e7eb;

    --success: #16a34a;

    --radius: 18px;

    --shadow-sm:
        0 5px 20px rgba(17, 24, 39, 0.05);

    --shadow-lg:
        0 30px 80px rgba(17, 24, 39, 0.10);
}


/* =========================================================
   RESET
========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}


/* =========================================================
   GLOBAL
========================================================= */

.container {
    width: min(1160px, calc(100% - 40px));
    margin: auto;
}

.section {
    padding: 100px 0;
}

.section-soft {
    background: var(--bg-soft);
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 60px;
    text-align: center;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 14px;

    color: var(--primary);

    font-size: 13px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.section-heading h2 {
    color: var(--dark);

    font-size: clamp(34px, 4vw, 50px);

    line-height: 1.1;

    letter-spacing: -1.8px;

    margin-bottom: 18px;
}

.section-heading p {
    color: var(--muted);

    font-size: 17px;
}


/* =========================================================
   HEADER
========================================================= */

.header {
    position: sticky;
    top: 0;

    z-index: 1000;

    background:
        rgba(255,255,255,.88);

    backdrop-filter: blur(18px);

    border-bottom:
        1px solid rgba(229,231,235,.7);
}

.nav {
    height: 76px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* LOGO */

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

.logo-mark {
    width: 38px;
    height: 38px;

    border-radius: 11px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;

    font-size: 18px;
    font-weight: 900;

    background:
        linear-gradient(
            135deg,
            #635bff,
            #8b5cf6
        );

    box-shadow:
        0 8px 20px rgba(99,91,255,.25);
}

.logo-text {
    font-size: 21px;
    font-weight: 800;

    letter-spacing: -.5px;

    color: var(--dark);
}

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


/* NAV LINKS */

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: var(--muted);

    font-size: 14px;
    font-weight: 600;

    transition: .2s;
}

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


/* LAUNCH BUTTON */

.launch-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    min-height: 44px;

    padding:
        0 18px;

    border-radius: 11px;

    color: white !important;

    background: var(--primary);

    box-shadow:
        0 8px 20px rgba(99,91,255,.23);

    transition: .2s;
}

.launch-btn:hover {
    background: var(--primary-dark);

    transform:
        translateY(-2px);
}


/* MOBILE MENU */

.mobile-menu {
    display: none;

    border: 0;

    background: transparent;

    font-size: 25px;

    cursor: pointer;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    overflow: hidden;

    padding:
        110px 0
        100px;

    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(99,91,255,.13),
            transparent 30%
        ),

        radial-gradient(
            circle at 90% 20%,
            rgba(139,92,246,.12),
            transparent 30%
        ),

        linear-gradient(
            135deg,
            #fafaff,
            #ffffff
        );
}

.hero-grid {
    display: grid;

    grid-template-columns:
        1.05fr
        .95fr;

    gap: 70px;

    align-items: center;
}

.hero-badge {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding:
        8px 14px;

    border-radius: 999px;

    background:
        rgba(99,91,255,.09);

    color:
        var(--primary);

    font-size: 13px;

    font-weight: 800;

    margin-bottom: 24px;
}

.status-dot {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #22c55e;

    box-shadow:
        0 0 0 5px
        rgba(34,197,94,.12);
}

.hero h1 {
    color: var(--dark);

    font-size:
        clamp(46px, 6vw, 72px);

    line-height:
        1.02;

    letter-spacing:
        -3px;

    margin-bottom:
        25px;

    font-weight:
        850;
}

.gradient-text {
    background:
        linear-gradient(
            90deg,
            #635bff,
            #8b5cf6
        );

    -webkit-background-clip:
        text;

    background-clip:
        text;

    color:
        transparent;
}

.hero-description {
    max-width: 650px;

    color: var(--muted);

    font-size: 19px;

    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;

    gap: 13px;

    flex-wrap: wrap;
}

.btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    min-height: 52px;

    padding:
        0 23px;

    border-radius: 12px;

    font-size: 15px;

    font-weight: 750;

    transition: .2s;
}

.btn-primary {
    color: white;

    background:
        var(--primary);

    box-shadow:
        0 12px 30px
        rgba(99,91,255,.24);
}

.btn-primary:hover {
    background:
        var(--primary-dark);

    transform:
        translateY(-2px);
}

.btn-secondary {
    color: var(--dark);

    background: white;

    border:
        1px solid var(--border);
}

.btn-secondary:hover {
    color: var(--primary);

    border-color:
        rgba(99,91,255,.35);

    transform:
        translateY(-2px);
}

.hero-note {
    display: flex;

    align-items: center;

    gap: 9px;

    margin-top: 22px;

    color: var(--muted);

    font-size: 13px;
}

.hero-note span {
    color: var(--success);

    font-weight: 800;
}


/* =========================================================
   DASHBOARD MOCKUP
========================================================= */

.dashboard-wrap {
    position: relative;

    padding: 17px;

    border-radius: 26px;

    background:
        rgba(255,255,255,.8);

    border:
        1px solid
        rgba(255,255,255,.9);

    box-shadow:
        0 35px 80px
        rgba(17,24,39,.13);

    backdrop-filter:
        blur(15px);
}

.dashboard {
    overflow: hidden;

    border-radius: 18px;

    background: white;

    border:
        1px solid var(--border);
}

.dashboard-top {
    height: 54px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding:
        0 17px;

    border-bottom:
        1px solid var(--border);
}

.window-dots {
    display: flex;

    gap: 6px;
}

.window-dots span {
    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: #d1d5db;
}

.dashboard-brand {
    font-size: 13px;

    font-weight: 800;

    color: var(--dark);
}

.dashboard-body {
    padding: 24px;
}

.dashboard-welcome {
    margin-bottom: 20px;
}

.dashboard-welcome small {
    color: var(--muted);

    font-size: 12px;
}

.dashboard-welcome h3 {
    color: var(--dark);

    font-size: 23px;
}

.stats-grid {
    display: grid;

    grid-template-columns:
        repeat(2,1fr);

    gap: 13px;
}

.stat-card {
    padding: 17px;

    border-radius: 14px;

    background:
        #f8f9ff;

    border:
        1px solid #eef0ff;
}

.stat-card small {
    display: block;

    color: var(--muted);

    font-size: 11px;

    margin-bottom: 7px;
}

.stat-card strong {
    display: block;

    color: var(--dark);

    font-size: 20px;
}

.fake-chart {
    height: 85px;

    display: flex;

    align-items: flex-end;

    gap: 7px;

    margin-top: 15px;
}

.fake-bar {
    flex: 1;

    border-radius:
        5px 5px 2px 2px;

    background:
        linear-gradient(
            180deg,
            #8b5cf6,
            #635bff
        );

    opacity: .8;
}

.bar-1 { height: 30%; }
.bar-2 { height: 48%; }
.bar-3 { height: 40%; }
.bar-4 { height: 65%; }
.bar-5 { height: 55%; }
.bar-6 { height: 78%; }
.bar-7 { height: 70%; }


/* FLOATING CARDS */

.floating-card {
    position: absolute;

    padding:
        14px 17px;

    border-radius: 14px;

    background: white;

    box-shadow:
        0 15px 40px
        rgba(17,24,39,.12);

    border:
        1px solid var(--border);

    font-size: 12px;

    font-weight: 700;
}

.floating-ai {
    right: -25px;
    bottom: 50px;
}

.floating-ai span {
    color: var(--primary);
}


/* =========================================================
   LOGOS / TRUST
========================================================= */

.trust-strip {
    padding:
        28px 0;

    border-bottom:
        1px solid var(--border);

    border-top:
        1px solid var(--border);

    background: white;
}

.trust-inner {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 45px;

    flex-wrap: wrap;

    color: #9ca3af;

    font-size: 13px;

    font-weight: 700;
}


/* =========================================================
   FEATURES
========================================================= */

.feature-grid {
    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 22px;
}

.feature-card {
    padding: 31px;

    border-radius:
        var(--radius);

    border:
        1px solid var(--border);

    background: white;

    transition: .25s;
}

.feature-card:hover {
    transform:
        translateY(-5px);

    box-shadow:
        var(--shadow-lg);

    border-color:
        rgba(99,91,255,.2);
}

.feature-icon {
    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 15px;

    background:
        var(--primary-light);

    color:
        var(--primary);

    font-size: 23px;

    margin-bottom: 20px;
}

.feature-card h3 {
    color: var(--dark);

    font-size: 20px;

    margin-bottom: 9px;
}

.feature-card p {
    color: var(--muted);

    font-size: 14px;
}


/* =========================================================
   ETSY SECTION
========================================================= */

.integration-grid {
    display: grid;

    grid-template-columns:
        .85fr
        1.15fr;

    gap: 70px;

    align-items: center;
}

.integration-card {
    padding: 40px;

    border-radius: 25px;

    background:
        linear-gradient(
            145deg,
            #fff8f3,
            #ffffff
        );

    border:
        1px solid #f1ded3;
}

.etsy-logo {
    width: 68px;
    height: 68px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background:
        #f1641e;

    color: white;

    font-size: 27px;

    font-weight: 900;

    margin-bottom: 22px;
}

.integration-card h3 {
    color: var(--dark);

    font-size: 28px;

    margin-bottom: 12px;
}

.integration-card p {
    color: var(--muted);

    font-size: 15px;
}

.check-list {
    list-style: none;

    margin-top: 25px;
}

.check-list li {
    display: flex;

    gap: 11px;

    margin-bottom: 14px;

    font-size: 14px;
}

.check {
    flex: 0 0 auto;

    width: 21px;
    height: 21px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color:
        var(--success);

    background:
        #dcfce7;

    font-size: 12px;

    font-weight: 900;
}

.integration-content h2 {
    color: var(--dark);

    font-size:
        clamp(34px,4vw,48px);

    line-height: 1.1;

    letter-spacing: -1.5px;

    margin-bottom: 20px;
}

.integration-content p {
    color: var(--muted);

    font-size: 17px;

    margin-bottom: 18px;
}


/* =========================================================
   AI SECTION
========================================================= */

.ai-grid {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 70px;

    align-items: center;
}

.ai-content h2 {
    color: var(--dark);

    font-size:
        clamp(34px,4vw,48px);

    line-height: 1.1;

    letter-spacing: -1.5px;

    margin-bottom: 20px;
}

.ai-content p {
    color: var(--muted);

    font-size: 17px;

    margin-bottom: 15px;
}

.ai-panel {
    padding: 30px;

    border-radius: 25px;

    background:
        linear-gradient(
            145deg,
            #f6f4ff,
            #ffffff
        );

    border:
        1px solid #e7e3ff;
}

.ai-item {
    display: flex;

    align-items: center;

    gap: 15px;

    padding: 17px 0;

    border-bottom:
        1px solid #e8e5f4;
}

.ai-item:last-child {
    border-bottom: 0;
}

.ai-icon {
    width: 43px;
    height: 43px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    color: var(--primary);

    background: white;

    box-shadow:
        0 6px 16px
        rgba(17,24,39,.06);
}

.ai-item strong {
    display: block;

    color: var(--dark);

    font-size: 15px;
}

.ai-item span {
    color: var(--muted);

    font-size: 12px;
}


/* =========================================================
   HOW IT WORKS
========================================================= */

.steps {
    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 18px;
}

.step {
    padding: 28px 24px;

    border-radius: 18px;

    background: white;

    border:
        1px solid var(--border);
}

.step-number {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: white;

    background:
        var(--primary);

    font-weight: 800;

    margin-bottom: 17px;
}

.step h3 {
    color: var(--dark);

    font-size: 18px;

    margin-bottom: 8px;
}

.step p {
    color: var(--muted);

    font-size: 14px;
}


/* =========================================================
   TRUST / SECURITY
========================================================= */

.security-grid {
    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 17px;
}

.security-card {
    padding: 25px;

    text-align: center;

    border:
        1px solid var(--border);

    border-radius: 17px;

    background: white;
}

.security-icon {
    font-size: 25px;

    margin-bottom: 9px;
}

.security-card strong {
    display: block;

    color: var(--dark);

    font-size: 15px;
}

.security-card span {
    display: block;

    color: var(--muted);

    font-size: 12px;

    margin-top: 4px;
}


/* =========================================================
   CTA
========================================================= */

.cta {
    padding: 90px 30px;

    border-radius: 30px;

    text-align: center;

    color: white;

    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(255,255,255,.16),
            transparent 25%
        ),

        linear-gradient(
            135deg,
            #5148e5,
            #7c3aed
        );

    box-shadow:
        0 30px 70px
        rgba(81,72,229,.2);
}

.cta h2 {
    font-size:
        clamp(34px,4vw,50px);

    line-height: 1.1;

    letter-spacing: -1.5px;

    margin-bottom: 16px;
}

.cta p {
    max-width: 650px;

    margin:
        0 auto 28px;

    color:
        rgba(255,255,255,.84);

    font-size: 17px;
}

.cta .btn {
    background: white;

    color: var(--primary);
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    padding: 70px 0 30px;

    background:
        #111827;

    color: #9ca3af;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.5fr
        1fr
        1fr
        1fr;

    gap: 50px;

    padding-bottom: 50px;

    border-bottom:
        1px solid rgba(255,255,255,.1);
}

.footer-brand p {
    max-width: 340px;

    margin-top: 15px;

    color: #9ca3af;

    font-size: 14px;
}

.footer-title {
    color: white;

    font-size: 14px;

    font-weight: 800;

    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #9ca3af;

    font-size: 13px;

    transition: .2s;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    padding-top: 25px;

    font-size: 12px;
}

.footer-disclaimer {
    max-width: 700px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 950px) {

    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .hero-grid,
    .integration-grid,
    .ai-grid {
        grid-template-columns: 1fr;
    }

    .feature-grid {
        grid-template-columns:
            repeat(2,1fr);
    }

    .steps {
        grid-template-columns:
            repeat(2,1fr);
    }

    .security-grid {
        grid-template-columns:
            repeat(2,1fr);
    }

    .footer-grid {
        grid-template-columns:
            repeat(2,1fr);
    }

    .hero {
        padding-top: 75px;
    }

    .dashboard-wrap {
        max-width: 650px;

        margin: auto;
    }
}


@media (max-width: 640px) {

    .container {
        width:
            min(
                calc(100% - 28px),
                1160px
            );
    }

    .section {
        padding: 70px 0;
    }

    .hero {
        padding:
            65px 0
            70px;
    }

    .hero h1 {
        font-size: 45px;

        letter-spacing:
            -2px;
    }

    .hero-description {
        font-size: 17px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .feature-grid,
    .steps,
    .security-grid {
        grid-template-columns: 1fr;
    }

    .integration-card {
        padding: 28px;
    }

    .floating-card {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .trust-inner {
        gap: 20px;
    }
}