/* ============================================================
   EASY AI COMMUNITY — WAITLIST LANDING PAGE
   Brand: Don't Get Mad...Get Skills! / GetSkills.AI
   Colors: Purple gradient (#612783 → #8a46b6), Dark BG, White
   ============================================================ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', sans-serif;
    background: #0d0d14;
    color: #e8e8f0;
    line-height: 1.6;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── CSS VARIABLES ── */
:root {
    --purple-deep:    #3d1060;
    --purple-primary: #612783;
    --purple-mid:     #7e35a8;
    --purple-light:   #9b4dca;
    --purple-pale:    #c084fc;
    --purple-glow:    rgba(97, 39, 131, 0.35);
    --accent:         #e0b0ff;
    --white:          #ffffff;
    --off-white:      #f0eaf8;
    --bg-dark:        #0d0d14;
    --bg-card:        #16162a;
    --bg-card-hover:  #1e1e38;
    --bg-section:     #11111f;
    --border:         rgba(155, 77, 202, 0.2);
    --text-primary:   #f0eaf8;
    --text-secondary: #b8a8d0;
    --text-muted:     #7a6a90;
    --gradient:       linear-gradient(135deg, #612783, #9b4dca);
    --gradient-text:  linear-gradient(90deg, #9b4dca, #c084fc, #e0b0ff);
    --radius-sm:      8px;
    --radius-md:      16px;
    --radius-lg:      24px;
    --radius-xl:      32px;
    --shadow-card:    0 8px 32px rgba(0,0,0,0.4), 0 0 0 1px rgba(155,77,202,0.12);
    --shadow-glow:    0 0 40px rgba(97,39,131,0.4);
    --transition:     0.25s ease;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 {
    font-family: 'Nunito', sans-serif;
    line-height: 1.2;
    color: var(--text-primary);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 800; }
h3 { font-size: 1.35rem; font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 700; }
p { color: var(--text-secondary); line-height: 1.75; }
strong { color: var(--text-primary); }

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--purple-pale);
    margin-bottom: 0.75rem;
}

.section-title { margin-bottom: 1rem; }
.section-subtext { font-size: 1.1rem; color: var(--text-secondary); max-width: 680px; margin: 0 auto 2.5rem; text-align: center; }

/* ── LAYOUT ── */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section { padding: 6rem 0; }

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(97,39,131,0.5);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(97,39,131,0.7);
    filter: brightness(1.1);
}

.btn-nav {
    background: var(--gradient);
    color: var(--white);
    font-size: 0.9rem;
    padding: 0.6rem 1.4rem;
}

.btn-large {
    font-size: 1.15rem;
    padding: 1rem 2.25rem;
}

.btn-full { width: 100%; justify-content: center; }

.pulse-cta {
    animation: pulse 2.5s infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(97,39,131,0.5); }
    50%       { box-shadow: 0 4px 40px rgba(155,77,202,0.9); }
}

/* ── LAUNCH BADGE ── */
.launch-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(97,39,131,0.3);
    border: 1px solid var(--border);
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
}
.badge-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 8px #22c55e;
    animation: blink 1.5s infinite;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.3; }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: background var(--transition), box-shadow var(--transition);
}
.site-nav.scrolled {
    background: rgba(13,13,20,0.95);
    backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo-img {
    height: 44px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 0 0;
    overflow: hidden;
    background: radial-gradient(ellipse at 70% 50%, rgba(97,39,131,0.2) 0%, transparent 60%),
                radial-gradient(ellipse at 20% 80%, rgba(61,16,96,0.3) 0%, transparent 50%),
                var(--bg-dark);
}

/* Background Orbs */
.hero-bg-orbs { position: absolute; inset: 0; pointer-events: none; }
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}
.orb-1 { width: 500px; height: 500px; background: radial-gradient(circle, #612783, transparent); top: -100px; right: -100px; animation: float1 12s ease-in-out infinite; }
.orb-2 { width: 350px; height: 350px; background: radial-gradient(circle, #3d1060, transparent); bottom: 100px; left: -80px; animation: float2 15s ease-in-out infinite; }
.orb-3 { width: 250px; height: 250px; background: radial-gradient(circle, #9b4dca, transparent); top: 50%; left: 40%; animation: float3 10s ease-in-out infinite; }

@keyframes float1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-30px, 40px); } }
@keyframes float2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(40px, -30px); } }
@keyframes float3 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-20px, 20px); } }

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    padding-top: 2rem;
    padding-bottom: 4rem;
}

.hero-headline {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    color: var(--white);
}

.hero-subhead {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 540px;
}
.hero-subhead strong { color: var(--accent); }

.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: 'Nunito', sans-serif; font-size: 1.8rem; font-weight: 900; color: var(--white); line-height: 1; }
.stat-label { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.15rem; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

.hero-fine-print {
    margin-top: 0.75rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* Billy Card */
.billy-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card), var(--shadow-glow);
    text-align: center;
}
.billy-wrapper {
    position: relative;
    background: linear-gradient(180deg, #1e1038 0%, #12122a 100%);
    padding: 1.5rem 1.5rem 0;
}
.billy-photo {
    width: 100%;
    max-height: 320px;
    object-fit: cover;
    object-position: top center;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    display: block;
}
.billy-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(13,13,20,0.85);
    border-radius: var(--radius-sm);
    padding: 0.4rem;
    border: 1px solid var(--border);
}
.billy-badge-logo { height: 28px; width: auto; filter: brightness(0) invert(1); }
.billy-quote {
    padding: 1rem 1.5rem 0.25rem;
    font-size: 1rem;
    font-style: italic;
    color: var(--accent);
    font-weight: 700;
}
.billy-name {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--white);
    padding: 0 1.5rem;
}
.billy-title {
    font-size: 0.75rem;
    color: var(--text-muted);
    padding: 0.25rem 1.5rem 1.5rem;
}

/* Countdown Bar */
.countdown-bar {
    background: rgba(97,39,131,0.15);
    border-top: 1px solid var(--border);
    padding: 1.25rem 0;
    position: relative;
    z-index: 1;
}
.countdown-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.countdown-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.countdown-timer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.time-block { display: flex; flex-direction: column; align-items: center; }
.time-num {
    font-family: 'Nunito', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    min-width: 2.2rem;
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.25rem 0.5rem;
}
.time-unit { font-size: 0.65rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.2rem; }
.time-sep { font-size: 1.5rem; font-weight: 900; color: var(--purple-light); margin-bottom: 1rem; }

/* ============================================================
   PAIN POINTS
   ============================================================ */
.pain-section {
    background: var(--bg-section);
    text-align: center;
}
.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin: 2.5rem 0;
}
.pain-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    text-align: left;
    transition: transform var(--transition), border-color var(--transition);
}
.pain-card:hover {
    transform: translateY(-4px);
    border-color: var(--purple-light);
}
.pain-icon {
    font-size: 1.5rem;
    color: var(--purple-pale);
    margin-bottom: 0.75rem;
}
.pain-card p {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.6;
}
.pain-bridge {
    background: linear-gradient(135deg, rgba(97,39,131,0.2), rgba(61,16,96,0.3));
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2rem;
    font-size: 1.2rem;
    color: var(--text-primary);
    line-height: 1.7;
}
.pain-bridge strong { color: var(--accent); }

/* ============================================================
   WHAT IS IT — FEATURES
   ============================================================ */
.what-section {
    background: var(--bg-dark);
    text-align: center;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    text-align: left;
}
.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--purple-light);
    box-shadow: var(--shadow-card);
}
.feature-card--highlight {
    border-color: var(--purple-mid);
    background: linear-gradient(160deg, #1a1030, #12122a);
    position: relative;
    overflow: hidden;
}
.feature-card--highlight::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient);
}
.feature-icon {
    font-size: 1.75rem;
    color: var(--purple-pale);
    margin-bottom: 1rem;
    width: 52px; height: 52px;
    background: rgba(97,39,131,0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}
.feature-card p {
    font-size: 0.92rem;
    margin-bottom: 1rem;
}
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.feature-list li {
    font-size: 0.88rem;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}
.feature-list li i {
    color: var(--purple-pale);
    margin-top: 0.2rem;
    flex-shrink: 0;
    font-size: 0.7rem;
}

/* ============================================================
   FOUNDING MEMBER SECTION
   ============================================================ */
.founding-section {
    background: linear-gradient(135deg, #1a0630 0%, #2a0f50 50%, #1a0630 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.founding-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239b4dca' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.founding-badge {
    display: inline-block;
    background: rgba(255,200,60,0.15);
    border: 1px solid rgba(255,200,60,0.3);
    color: #ffd700;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}
.perks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
}
.perk-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform var(--transition), border-color var(--transition);
}
.perk-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.25);
}
.perk-icon {
    font-size: 1.75rem;
    color: #ffd700;
    margin-bottom: 1rem;
}
.perk-card h4 { color: #fff; margin-bottom: 0.75rem; }
.perk-card p { font-size: 0.88rem; color: rgba(255,255,255,0.65); }

/* ============================================================
   BIO SECTION
   ============================================================ */
.bio-section {
    background: var(--bg-section);
}
.bio-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 4rem;
    align-items: start;
}
.bio-img-wrap { position: relative; }
.bio-photo {
    width: 100%;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border);
    box-shadow: var(--shadow-card);
    object-fit: cover;
    max-height: 400px;
}
.bio-creds {
    margin-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.cred {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: var(--accent);
    background: rgba(97,39,131,0.15);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 0.45rem 1rem;
}
.cred i { color: var(--purple-pale); }
.bio-copy p {
    margin-bottom: 1rem;
    font-size: 0.98rem;
}
.motto-logo {
    height: 56px;
    width: auto;
    margin-top: 1.5rem;
    filter: brightness(0) invert(1);
    opacity: 0.85;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.proof-section {
    background: var(--bg-dark);
    text-align: center;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    text-align: left;
}
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: transform var(--transition), border-color var(--transition);
}
.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: var(--purple-light);
}
.stars {
    color: #ffd700;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 0.2rem;
}
blockquote {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    border: none;
    padding: 0;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.author-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 1.1rem;
    color: #fff;
    flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.95rem; color: var(--text-primary); }
.testimonial-author span { font-size: 0.78rem; color: var(--text-muted); }

/* ============================================================
   WAITLIST FORM
   ============================================================ */
.form-section {
    background: linear-gradient(160deg, #0d0d14 0%, #1a0630 50%, #0d0d14 100%);
    padding: 6rem 0;
}
.form-wrapper {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}
.form-header { margin-bottom: 2.5rem; }
.form-counter {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(34,197,94,0.1);
    border: 1px solid rgba(34,197,94,0.25);
    color: #86efac;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    margin-top: 1rem;
}

.waitlist-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    text-align: left;
    box-shadow: var(--shadow-card);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
}
.form-group:last-of-type { margin-bottom: 0; }
label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 0.03em;
}
input[type="text"],
input[type="email"],
select {
    background: #0d0d1a;
    border: 1px solid rgba(155,77,202,0.3);
    border-radius: var(--radius-sm);
    padding: 0.8rem 1rem;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
    -webkit-appearance: none;
    appearance: none;
}
input[type="text"]:focus,
input[type="email"]:focus,
select:focus {
    border-color: var(--purple-light);
    box-shadow: 0 0 0 3px rgba(155,77,202,0.2);
}
input::placeholder { color: var(--text-muted); }
select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%237a6a90'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.75rem center; background-size: 1rem; padding-right: 2.5rem; }
select option { background: #16162a; color: var(--text-primary); }

.field-error {
    font-size: 0.78rem;
    color: #f87171;
    min-height: 1rem;
}

input.error, select.error {
    border-color: #f87171;
}

.form-fine-print {
    margin-top: 1rem;
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    flex-wrap: wrap;
}

/* Success State */
.form-success {
    background: var(--bg-card);
    border: 1px solid rgba(34,197,94,0.3);
    border-radius: var(--radius-xl);
    padding: 3rem 2.5rem;
    text-align: center;
}
.success-icon {
    font-size: 3.5rem;
    color: #22c55e;
    margin-bottom: 1rem;
}
.form-success h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--white);
}
.form-success p { color: var(--text-secondary); margin-bottom: 0.75rem; }
.success-motto { font-size: 1rem; color: var(--accent); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
    background: var(--bg-section);
    text-align: center;
}
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    text-align: left;
    margin-top: 2.5rem;
}
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition);
}
.faq-item:hover { border-color: var(--purple-light); }
.faq-item[open] {
    border-color: var(--purple-mid);
}
.faq-item summary {
    padding: 1.25rem 1.5rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.98rem;
    color: var(--text-primary);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--purple-pale);
    flex-shrink: 0;
    transition: transform var(--transition);
}
.faq-item[open] summary::after {
    transform: rotate(45deg);
}
.faq-item p {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.92rem;
    color: var(--text-secondary);
    border-top: 1px solid var(--border);
    padding-top: 1rem;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta-section {
    background: var(--bg-dark);
    padding: 7rem 0;
    text-align: center;
}
.final-cta-inner {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}
.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}
.cta-orb-1 { width: 300px; height: 300px; background: rgba(97,39,131,0.3); top: -100px; left: -100px; }
.cta-orb-2 { width: 200px; height: 200px; background: rgba(155,77,202,0.25); bottom: -50px; right: -50px; }
.cta-logo {
    height: 64px;
    width: auto;
    margin: 0 auto 2rem;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    position: relative;
    z-index: 1;
}
.cta-headline {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}
.cta-subtext {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}
.cta-launch-note {
    margin-top: 1.25rem;
    font-size: 0.82rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: #08080f;
    border-top: 1px solid var(--border);
    padding: 2.5rem 0;
}
.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}
.footer-logo-img {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.6;
}
.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}
.footer-links a {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--purple-pale); }
.footer-copy p {
    font-size: 0.78rem;
    color: var(--text-muted);
}
.footer-tagline {
    color: var(--purple-pale) !important;
    font-weight: 600;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero-copy { order: 1; }
    .hero-visual { order: 2; max-width: 420px; margin: 0 auto; }
    .bio-grid { grid-template-columns: 1fr; }
    .bio-img-wrap { max-width: 380px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .perks-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    section { padding: 4rem 0; }
    .pain-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .perks-grid { grid-template-columns: 1fr; }
    .hero-stats { gap: 1rem; }
    .form-row { grid-template-columns: 1fr; }
    .waitlist-form { padding: 1.75rem; }
    .countdown-bar .container { flex-direction: column; gap: 0.75rem; text-align: center; }
    .hero-section { padding-top: 5rem; }
    .nav-logo-img { height: 32px; }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
}

@media (max-width: 480px) {
    .btn-large { font-size: 1rem; padding: 0.875rem 1.5rem; }
    .hero-headline { font-size: 1.8rem; }
    .billy-card { margin: 0 -0.5rem; border-radius: var(--radius-md); }
    .footer-links { gap: 1rem; }
}

/* ── Smooth Animations on Scroll ── */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
