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

:root {
    --bg-deep:        #0a0f1e;
    --bg-mid:         #0f1629;
    --bg-card:        rgba(255,255,255,0.04);
    --bg-card-hover:  rgba(255,255,255,0.07);
    --border-subtle:  rgba(255,255,255,0.08);
    --border-gold:    rgba(245,184,66,0.3);

    --text-primary:   #f0eee8;
    --text-secondary: #a8a3b8;
    --text-muted:     #6b6480;

    --gold:           #F5B842;
    --gold-soft:      rgba(245,184,66,0.15);
    --gold-glow:      rgba(245,184,66,0.08);
    --lavender:       #c4b5fd;
    --lavender-soft:  rgba(196,181,253,0.12);

    --font-body:    'Inter', -apple-system, sans-serif;
    --font-heading: 'Sora', 'Inter', sans-serif;

    --section-py:   100px;
    --radius-card:  12px;
    --radius-sm:    8px;

    --shadow-gold: 0 0 40px rgba(245,184,66,0.12);
    --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* All sections sit above the fixed constellation canvas */
.s-hero, .s-recog, .s-bring, .s-story, .s-testi, .s-offer, .s-faq, .s-footer {
    position: relative;
    z-index: 1;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

p { color: var(--text-secondary); }

a { color: var(--gold); text-decoration: none; transition: opacity 0.2s; }
a:hover { opacity: 0.8; }

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

section { padding: var(--section-py) 0; }

/* ── UTILITY ── */
.gold { color: var(--gold); }

.label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 16px;
}

.heading {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    margin-bottom: 20px;
}

/* ── FLOATING NAV (dark theme) ── */
.fl-nav {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 200;
}
.fl-nav__toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(10,15,30,0.9);
    border: 1px solid rgba(245,184,66,0.25);
    padding: 8px 14px 8px 10px;
    border-radius: 100px;
    cursor: pointer;
    box-shadow: 0 2px 16px rgba(0,0,0,0.4);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-primary);
    backdrop-filter: blur(8px);
    transition: box-shadow 0.2s, border-color 0.2s;
}
.fl-nav__toggle:hover {
    box-shadow: 0 4px 24px rgba(245,184,66,0.2);
    border-color: rgba(245,184,66,0.5);
}
.fl-nav__compass { flex-shrink: 0; width: 22px; height: 22px; }
.fl-nav__menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: rgba(10,15,30,0.97);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    overflow: hidden;
    min-width: 180px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    opacity: 0;
    transform: scale(0.95) translateY(-8px);
    transform-origin: top right;
    pointer-events: none;
    transition: opacity 0.2s, transform 0.2s;
}
.fl-nav.open .fl-nav__menu {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: all;
}
.fl-nav__link {
    display: block;
    padding: 11px 20px;
    font-size: 0.87rem;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    transition: background 0.15s;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.fl-nav__link:last-child { border-bottom: none; }
.fl-nav__link:hover { background: rgba(255,255,255,0.05); color: var(--gold); }

/* ── HERO ── */
.s-hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 40px;
    /* No opaque base — body provides --bg-deep, canvas shows through */
    background:
        radial-gradient(ellipse 120% 80% at 50% -10%, rgba(196,181,253,0.10) 0%, transparent 60%),
        radial-gradient(ellipse 80% 60% at 80% 60%, rgba(245,184,66,0.04) 0%, transparent 50%);
}

.s-hero__glow {
    position: absolute;
    top: 10%; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(196,181,253,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.s-hero__stars {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.star {
    position: absolute;
    width: 2px; height: 2px;
    background: white;
    border-radius: 50%;
    opacity: 0.3;
}

.s-hero__content {
    position: relative;
    z-index: 1;
    max-width: 780px;
    margin: 0 auto;
    padding: 60px 24px;
}

.s-hero__eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--lavender);
    opacity: 0.8;
    margin-bottom: 28px;
}

.s-hero__h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin-bottom: 32px;
}

.s-hero__sub {
    font-size: clamp(1.05rem, 2.5vw, 1.25rem);
    color: var(--text-secondary);
    line-height: 1.75;
    margin: 0 auto 20px;
    max-width: 640px;
}

.s-hero__beat {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-primary);
    font-style: italic;
    margin-bottom: 48px;
    opacity: 0.85;
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: #0a0f1e;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    padding: 16px 32px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(245,184,66,0.25);
}
.btn-gold:hover {
    background: #f7c957;
    color: #0a0f1e;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(245,184,66,0.35);
    opacity: 1;
}
.btn-gold svg { flex-shrink: 0; }

/* ── RECOGNITION ── */
.s-recog {
    background: rgba(15,22,41,0.68);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: var(--section-py) 0;
}

.recog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
    margin-top: 48px;
}

.recog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-card);
    padding: 28px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: border-color 0.3s, background 0.3s;
}
.recog-card:hover {
    border-color: var(--border-gold);
    background: var(--bg-card-hover);
}
.recog-card p { font-size: 0.98rem; line-height: 1.65; margin: 0; }

.recog-dot {
    width: 8px; height: 8px; min-width: 8px;
    border-radius: 50%;
    background: var(--gold);
    margin-top: 8px;
    opacity: 0.7;
}

/* ── WHAT I BRING ── */
.s-bring {
    background: transparent;
    padding: var(--section-py) 0;
}

.bring-text {
    max-width: 680px;
}

.bring-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 24px;
}
.bring-text p:last-child { margin-bottom: 0; }

/* ── STORY ── */
.s-story {
    background: rgba(15,22,41,0.68);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: var(--section-py) 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.story-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}
.story-text p:last-child { margin-bottom: 0; }

.story-quote {
    border-left: 2px solid var(--gold);
    padding: 20px 24px;
    margin: 32px 0;
    background: var(--gold-glow);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.story-quote p {
    color: var(--text-primary) !important;
    font-style: italic;
    font-size: 1.1rem !important;
    margin: 0 !important;
    opacity: 0.9;
}

.story-image {
    position: relative;
}
.story-image__frame {
    border-radius: var(--radius-card);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, rgba(196,181,253,0.05), rgba(245,184,66,0.05));
}
.story-image__frame img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}

/* ── TESTIMONIALS ── */
.s-testi {
    background: rgba(15,22,41,0.68);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: var(--section-py) 0;
}

.s-testi .container {
    padding-left: 72px;
    padding-right: 72px;
}
.testi-nav-wrap {
    position: relative;
}
.testi-swiper {
    margin-top: 48px;
    padding-bottom: 40px;
}
.testi-swiper .swiper-slide { height: auto; }
.testi-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-card);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
}

.testi-play-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 2;
}
.testi-play-btn:hover {
    background: var(--gold);
    color: var(--bg-deep);
}
.testi-play-btn svg { width: 14px; height: 14px; }
.testi-play-btn.playing {
    background: var(--gold);
    color: var(--bg-deep);
    animation: pulse 2s infinite;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--border-subtle);
}

.testi-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testi-name { font-weight: 700; color: var(--text-primary); font-size: 0.95rem; }
.testi-origin { font-size: 0.8rem; color: var(--text-secondary); }
.testi-nav-wrap .swiper-button-prev,
.testi-nav-wrap .swiper-button-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border-subtle);
    transition: border-color 0.2s, background 0.2s;
    top: 50%;
    transform: translateY(-50%);
    margin-top: -20px;
}
.testi-nav-wrap .swiper-button-prev { left: -60px; }
.testi-nav-wrap .swiper-button-next { right: -60px; }
.testi-nav-wrap .swiper-button-prev:hover,
.testi-nav-wrap .swiper-button-next:hover {
    border-color: var(--border-gold);
    background: rgba(255,255,255,0.1);
}
.testi-nav-wrap .swiper-button-prev::after,
.testi-nav-wrap .swiper-button-next::after {
    font-size: 13px;
    font-weight: 800;
    color: var(--text-primary);
}
.testi-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--border-subtle);
    opacity: 1;
}
.testi-swiper .swiper-pagination-bullet-active { background: var(--gold); opacity: 1; }

.testi-stars { display: flex; gap: 4px; }

.testi-text {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-secondary);
    font-style: italic;
    flex: 1;
    margin: 0;
}

.testi-author { display: flex; flex-direction: column; gap: 2px; }

.testi-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.testi-origin {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ── CONSTELLATION INTERLUDE ── */
.s-constellation {
    background: #030712;
    padding: 72px 0 60px;
    overflow: hidden;
    position: relative;
}
.constellation-stage {
    width: 100%;
    line-height: 0;
}
#c-svg {
    width: 100%;
    height: auto;
    display: block;
}
.c-line {
    stroke: rgba(232,124,50,0.45);
    stroke-width: 0.9;
    stroke-linecap: round;
    fill: none;
}
.constellation-caption {
    text-align: center;
    color: rgba(255,255,255,0.42);
    font-size: 0.92rem;
    font-style: italic;
    margin: 32px auto 0;
    max-width: 480px;
    padding: 0 24px;
    line-height: 1.75;
}
@media (max-width: 640px) {
    .s-constellation { padding: 48px 0 40px; }
}

/* ── OFFER ── */
.s-offer {
    background: transparent;
    position: relative;
    overflow: hidden;
    padding: var(--section-py) 0;
}
.s-offer::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 800px; height: 400px;
    background: radial-gradient(ellipse, rgba(245,184,66,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.offer-sub {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.72;
    max-width: 560px;
    margin: 12px auto 0;
}

.offer-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    padding: 56px;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    box-shadow: var(--shadow-gold);
}

.offer-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.offer-type {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    display: block;
}

.offer-price {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    margin: 8px 0;
}

.offer-currency {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gold);
}

.offer-amount {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.offer-note {
    display: block;
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.offer-scale {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 28px;
    text-align: center;
}
.offer-scale a {
    color: var(--lavender);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.offer-scale a:hover { opacity: 0.75; }

.offer-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 24px;
    margin: 0 0 32px;
}

.offer-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}
.offer-item svg { flex-shrink: 0; }

.offer-secondary {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 16px;
}
.offer-secondary a { color: var(--text-secondary); text-decoration: underline; text-underline-offset: 3px; }

.offer-privacy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-top: 12px;
}
.offer-privacy svg { flex-shrink: 0; }

.offer-footnote {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border-subtle);
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
    text-align: left;
}
.offer-footnote a { color: var(--gold); }
.offer-footnote strong { color: var(--text-secondary); font-weight: 600; }

/* ── FAQ ── */
.s-faq {
    background: rgba(15,22,41,0.68);
    border-top: 1px solid var(--border-subtle);
    padding: var(--section-py) 0;
}
.s-faq + .s-faq {
    padding-top: 0;
    border-top: none;
}

.faq-list {
    max-width: 680px;
    margin-top: 48px;
}

.faq-item {
    border-bottom: 1px solid var(--border-subtle);
    padding: 28px 0;
}
.faq-item:first-child { border-top: 1px solid var(--border-subtle); }

.faq-q {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    user-select: none;
}
.faq-q::after {
    content: '+';
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--gold);
    flex-shrink: 0;
    transition: transform 0.25s ease;
    line-height: 1;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
    font-size: 0.98rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-a {
    max-height: 800px;
    opacity: 1;
    padding-top: 14px;
}
.faq-a a { color: var(--gold); }

/* ── FOOTER ── */
.s-footer {
    background: rgba(5,8,15,0.95);
    border-top: 1px solid var(--border-subtle);
    padding: 32px 0;
    text-align: center;
}
.s-footer p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }
.s-footer a { color: var(--text-muted); }
.s-footer a:hover { color: var(--gold); opacity: 1; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    :root { --section-py: 64px; }

    .story-grid { grid-template-columns: 1fr; gap: 40px; }
    .story-image { display: none; }

    .offer-card { padding: 36px 24px; }

    .s-hero__h1 { font-size: clamp(2.4rem, 10vw, 3.5rem); }

    .s-nav { position: sticky; }
}

@media (max-width: 480px) {
    .recog-grid { grid-template-columns: 1fr; }
    .testi-swiper { padding-bottom: 36px; }
    .s-testi .container { padding-left: 16px; padding-right: 16px; }
    .testi-nav-wrap .swiper-button-prev,
    .testi-nav-wrap .swiper-button-next { display: none; }
}
