/**
 * Syncland Homepage v2 — conversion-tuned rebuild.
 * Scoped under .syncland-home-v2 so it can't bleed into other pages.
 */

.syncland-home-v2 {
    --sh-bg: #0e0e1a;
    --sh-bg-soft: #161628;
    --sh-bg-card: #1f1f33;
    --sh-border: rgba(255,255,255,0.08);
    --sh-text: #e7ebf3;
    --sh-text-soft: rgba(231,235,243,0.72);
    --sh-text-muted: rgba(231,235,243,0.48);
    --sh-pink: #e7565a;
    --sh-pink-2: #ff7b80;
    --sh-blue: #4ea8ff;

    background: var(--sh-bg);
    color: var(--sh-text);
    font-family: inherit;
    line-height: 1.5;
}

/* The three.js full-viewport bg used to mask the body. Now that the halo is
   scoped, give the homepage body a matching dark backdrop so the gutters
   above/below the v2 wrapper don't flash white. */
body.home,
body.home #content,
body.home .elementor-location-header + * {
    background-color: #0e0e1a;
}

.syncland-home-v2 section {
    padding: 64px 24px;
    max-width: 1180px;
    margin: 0 auto;
}

.syncland-home-v2 .sh-section-title {
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 700;
    text-align: center;
    margin: 0 0 8px;
    letter-spacing: -0.01em;
}
.syncland-home-v2 .sh-section-sub {
    text-align: center;
    color: var(--sh-text-soft);
    margin: 0 0 36px;
    font-size: clamp(15px, 1.6vw, 17px);
}

/* ===== 1. HERO ===== */
.syncland-home-v2 .sh-hero {
    padding-top: 80px;
    padding-bottom: 56px;
    text-align: center;
}
.syncland-home-v2 .sh-hero-inner {
    max-width: 880px;
    margin: 0 auto;
}
.sh-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 12px;
    color: var(--sh-text-muted);
    font-weight: 600;
    margin: 0 0 14px;
}
.sh-headline {
    font-size: clamp(34px, 5.5vw, 58px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin: 0 0 18px;
}
.sh-headline-accent {
    background: linear-gradient(90deg, var(--sh-pink) 0%, var(--sh-pink-2) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.sh-subhead {
    font-size: clamp(16px, 1.8vw, 19px);
    color: var(--sh-text-soft);
    margin: 0 auto 32px;
    max-width: 640px;
}

/* ===== CTA — shared ===== */
.sh-cta-row {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.sh-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 18px 28px;
    border-radius: 14px;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
    min-width: 240px;
    text-align: center;
    border: 1px solid transparent;
}
.sh-cta:hover {
    transform: translateY(-2px);
}
.sh-cta-icon {
    width: 26px;
    height: 26px;
    margin-bottom: 2px;
}
.sh-cta-main {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.2px;
}
.sh-cta-tags {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.7;
    font-weight: 500;
}
.sh-cta-primary {
    background: linear-gradient(135deg, var(--sh-pink) 0%, #cc4448 100%);
    color: #fff;
    border-color: var(--sh-pink);
    box-shadow: 0 10px 30px rgba(231, 86, 90, 0.28);
}
.sh-cta-primary:hover {
    box-shadow: 0 14px 36px rgba(231, 86, 90, 0.4);
    color: #fff;
}
.sh-cta-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--sh-text);
    border-color: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
}
.sh-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--sh-text);
}
.sh-cta-secondary .sh-cta-icon {
    color: var(--sh-blue);
}

/* ===== 2. TRUST STRIP ===== */
.sh-trust {
    text-align: center;
    padding-top: 32px !important;
    padding-bottom: 32px !important;
    border-top: 1px solid var(--sh-border);
    border-bottom: 1px solid var(--sh-border);
    max-width: 100% !important;
    background: var(--sh-bg-soft);
}
.sh-trust-label {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 11px;
    color: var(--sh-text-muted);
    margin: 0 0 16px;
}
.sh-trust-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 28px 40px;
}
.sh-trust-list li {
    font-size: 17px;
    font-weight: 600;
    color: var(--sh-text);
    opacity: 0.78;
    letter-spacing: -0.01em;
}

/* ===== 3. STATS ===== */
.sh-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.sh-stat {
    text-align: center;
    padding: 24px 12px;
    background: var(--sh-bg-card);
    border: 1px solid var(--sh-border);
    border-radius: 14px;
}
.sh-stat-n {
    display: block;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--sh-pink);
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}
.sh-stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--sh-text-muted);
    font-weight: 600;
}

/* ===== 4. HOW IT WORKS ===== */
.sh-how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.sh-how-step {
    background: var(--sh-bg-card);
    border: 1px solid var(--sh-border);
    border-radius: 14px;
    padding: 28px 24px;
    position: relative;
}
.sh-how-num {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sh-pink), var(--sh-pink-2));
    color: #fff;
    font-weight: 800;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 8px 20px rgba(231, 86, 90, 0.25);
}
.sh-how-step h3 {
    font-size: 19px;
    font-weight: 700;
    margin: 0 0 10px;
    letter-spacing: -0.01em;
}
.sh-how-step p {
    color: var(--sh-text-soft);
    font-size: 14.5px;
    margin: 0;
}

/* ===== 5. FEATURED ARTISTS ===== */
.sh-featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.sh-featured-card {
    display: flex;
    flex-direction: column;
    background: var(--sh-bg-card);
    border: 1px solid var(--sh-border);
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: var(--sh-text);
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.sh-featured-card:hover {
    transform: translateY(-3px);
    border-color: rgba(231, 86, 90, 0.4);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
    color: var(--sh-text);
}
.sh-featured-img {
    aspect-ratio: 16 / 10;
    background-size: cover;
    background-position: center;
    background-color: #2b2b42;
}
.sh-featured-img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 46px;
    color: rgba(255,255,255,0.25);
}
.sh-featured-meta {
    padding: 16px 18px 18px;
}
.sh-featured-meta h3 {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 4px;
}
.sh-featured-meta p {
    margin: 0;
    color: var(--sh-text-muted);
    font-size: 13px;
}
.sh-featured-foot {
    text-align: center;
    margin: 28px 0 0;
}
.sh-link-arrow {
    color: var(--sh-pink);
    font-weight: 600;
    text-decoration: none;
}
.sh-link-arrow:hover {
    color: var(--sh-pink-2);
    text-decoration: underline;
}

/* ===== 6. PLANET ===== */
.sh-planet {
    background: radial-gradient(ellipse at center, rgba(231,86,90,0.06) 0%, transparent 70%);
}
.sh-planet-wrap {
    display: flex;
    justify-content: center;
}

/* ===== 7. TIERS ===== */
.sh-tiers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    max-width: 880px;
    margin: 0 auto;
}
.sh-tier {
    background: var(--sh-bg-card);
    border: 1px solid var(--sh-border);
    border-radius: 14px;
    padding: 32px 28px;
    position: relative;
    display: flex;
    flex-direction: column;
}
.sh-tier-paid {
    border-color: rgba(231, 86, 90, 0.4);
    box-shadow: 0 10px 30px rgba(231, 86, 90, 0.12);
}
.sh-tier-badge {
    position: absolute;
    top: -12px;
    right: 18px;
    background: var(--sh-pink);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.sh-tier h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 6px;
}
.sh-tier-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--sh-pink);
    margin: 0 0 18px;
    letter-spacing: -0.02em;
}
.sh-tier ul {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    flex: 1;
}
.sh-tier li {
    padding: 8px 0;
    color: var(--sh-text-soft);
    font-size: 14.5px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.sh-tier li:last-child { border-bottom: none; }
.sh-tier li::before {
    content: "✓";
    color: var(--sh-pink);
    font-weight: 700;
    margin-right: 10px;
}
.sh-tier-cta {
    display: inline-block;
    text-align: center;
    background: rgba(255,255,255,0.05);
    color: var(--sh-text);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 12px 18px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.18s ease;
}
.sh-tier-paid .sh-tier-cta {
    background: var(--sh-pink);
    border-color: var(--sh-pink);
    color: #fff;
}
.sh-tier-cta:hover {
    background: rgba(255,255,255,0.1);
    color: var(--sh-text);
}
.sh-tier-paid .sh-tier-cta:hover {
    background: var(--sh-pink-2);
    border-color: var(--sh-pink-2);
    color: #fff;
}

/* ===== 8. FAQ ===== */
.sh-faq-list {
    max-width: 780px;
    margin: 0 auto;
}
.sh-faq-list details {
    border-bottom: 1px solid var(--sh-border);
    padding: 18px 0;
}
.sh-faq-list summary {
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    list-style: none;
    padding-right: 30px;
    position: relative;
    color: var(--sh-text);
}
.sh-faq-list summary::-webkit-details-marker {
    display: none;
}
.sh-faq-list summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 300;
    font-size: 22px;
    color: var(--sh-pink);
    transition: transform 0.18s ease;
}
.sh-faq-list details[open] summary::after {
    content: "−";
}
.sh-faq-list details p {
    margin: 14px 0 0;
    color: var(--sh-text-soft);
    font-size: 14.5px;
    line-height: 1.65;
}

/* ===== END CTA ===== */
.sh-end-cta {
    text-align: center;
    background: linear-gradient(135deg, rgba(231,86,90,0.08) 0%, rgba(78,168,255,0.05) 100%);
    border-radius: 24px;
    margin-top: 32px !important;
    margin-bottom: 64px !important;
    padding: 60px 24px !important;
}
.sh-end-cta h2 {
    font-size: clamp(26px, 3.5vw, 36px);
    font-weight: 800;
    margin: 0 0 24px;
    letter-spacing: -0.01em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .sh-stats-grid    { grid-template-columns: repeat(2, 1fr); }
    .sh-how-grid      { grid-template-columns: 1fr; }
    .sh-featured-grid { grid-template-columns: repeat(2, 1fr); }
    .sh-tiers-grid    { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
    .syncland-home-v2 section { padding: 48px 16px; }
    .sh-cta-row { flex-direction: column; align-items: stretch; }
    .sh-cta { min-width: 0; }
    .sh-stats-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .sh-stat { padding: 18px 8px; }
    .sh-trust-list { gap: 18px 24px; }
    .sh-trust-list li { font-size: 14px; }
}

/* Hero centerpiece logo — Sync.Land horizontal wordmark */
.syncland-home-v2 .sh-hero-logo {
    display: block;
    margin: 0 auto 24px;
    width: min(420px, 70vw);
    height: auto;
    max-height: 110px;
    object-fit: contain;
    filter: drop-shadow(0 8px 28px rgba(231, 86, 90, 0.25));
}
@media (max-width: 640px) {
    .syncland-home-v2 .sh-hero-logo {
        width: min(280px, 80vw);
        max-height: 72px;
        margin-bottom: 16px;
    }
}
