/* ============================================
   Astropix — Design System
   ============================================ */

:root {
    --bg: #0a0a1e;
    --bg-2: #12122e;
    --bg-3: #1a1a3e;
    --bg-4: #2d1b4e;
    --purple: #9B7FD4;
    --purple-light: #b9a3e2;
    --purple-dark: #6b4fa7;
    --gold: #D4AF37;
    --gold-light: #f0d078;
    --text: #E8DFF5;
    --text-dim: #a8a0c2;
    --text-muted: #706b8c;
    --border: rgba(155, 127, 212, 0.18);
    --glass: rgba(255, 255, 255, 0.03);
    --glass-strong: rgba(255, 255, 255, 0.06);
    --shadow-glow: 0 0 60px rgba(155, 127, 212, 0.22);

    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
    min-height: 100vh;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; transition: color 0.2s, opacity 0.2s; }
a:hover { color: var(--purple-light); }

button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.gradient-text {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--purple-light) 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ============================================
   Cosmic animated background
   ============================================ */
.cosmic-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    background: radial-gradient(ellipse at top, var(--bg-3) 0%, var(--bg) 50%, #050515 100%);
}

.stars, .stars2 {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(2px 2px at 20px 30px, white, transparent),
        radial-gradient(1px 1px at 60px 70px, white, transparent),
        radial-gradient(1px 1px at 130px 40px, #f0d078, transparent),
        radial-gradient(2px 2px at 200px 80px, white, transparent),
        radial-gradient(1px 1px at 280px 20px, white, transparent),
        radial-gradient(2px 2px at 330px 100px, #b9a3e2, transparent),
        radial-gradient(1px 1px at 50px 160px, white, transparent),
        radial-gradient(1px 1px at 150px 180px, white, transparent),
        radial-gradient(2px 2px at 240px 140px, #f0d078, transparent),
        radial-gradient(1px 1px at 350px 200px, white, transparent);
    background-repeat: repeat;
    background-size: 400px 250px;
    animation: twinkle 6s ease-in-out infinite alternate;
    opacity: 0.6;
}

.stars2 {
    background-size: 600px 350px;
    animation-duration: 10s;
    opacity: 0.35;
}

@keyframes twinkle {
    from { opacity: 0.25; }
    to { opacity: 0.75; }
}

.nebula {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.35;
}
.nebula-1 {
    width: 700px; height: 700px;
    top: -200px; right: -150px;
    background: radial-gradient(circle, #6b4fa7 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}
.nebula-2 {
    width: 600px; height: 600px;
    bottom: -100px; left: -100px;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
    animation: float 18s ease-in-out infinite reverse;
    opacity: 0.15;
}
@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(40px, -30px); }
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    white-space: nowrap;
    line-height: 1.2;
}

.btn-primary {
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(155, 127, 212, 0.35), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(155, 127, 212, 0.5), inset 0 1px 0 rgba(255,255,255,0.3);
    color: white;
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
}
.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--purple);
    color: var(--text);
}

.btn-outline {
    background: transparent;
    color: var(--purple-light);
    border: 1.5px solid var(--purple);
}
.btn-outline:hover {
    background: var(--purple);
    color: white;
}

.btn-large {
    padding: 18px 34px;
    font-size: 16px;
}
.btn-large img { width: 20px; height: 20px; }

/* ============================================
   Navigation
   ============================================ */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(16px);
    background: rgba(10, 10, 30, 0.7);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--text);
}
.nav-logo img { width: 32px; height: 32px; }

.nav-links {
    display: flex;
    gap: 30px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dim);
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
    padding: 10px 20px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
    color: white;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(155, 127, 212, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover {
    transform: translateY(-1px);
    color: white;
    box-shadow: 0 6px 18px rgba(155, 127, 212, 0.45);
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 4px;
    width: 28px;
    padding: 4px;
}
.nav-burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
}

/* ============================================
   Hero
   ============================================ */
.hero {
    position: relative;
    padding: 80px 0 100px;
    overflow: hidden;
    min-height: 80vh;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.25;
    filter: blur(2px) saturate(1.1);
    animation: slow-spin 120s linear infinite;
}
@keyframes slow-spin {
    from { transform: scale(1.1) rotate(0); }
    to { transform: scale(1.1) rotate(360deg); }
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 60px;
    align-items: center;
    z-index: 2;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 0.2em;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    line-height: 1.1;
    font-weight: 500;
    letter-spacing: -0.01em;
    margin-bottom: 24px;
}

.hero-lead {
    font-size: 18px;
    color: var(--text-dim);
    max-width: 560px;
    margin-bottom: 36px;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}
.trust-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.trust-item strong {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 600;
    color: var(--gold);
}
.trust-item span {
    font-size: 13px;
    color: var(--text-muted);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-wheel {
    width: 100%;
    max-width: 520px;
    filter: drop-shadow(0 0 40px rgba(155, 127, 212, 0.4));
    animation: slow-rotate 90s linear infinite;
}
@keyframes slow-rotate {
    from { transform: rotate(0); }
    to { transform: rotate(360deg); }
}

.scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    text-transform: uppercase;
}
.scroll-arrow {
    width: 1px; height: 32px;
    background: linear-gradient(to bottom, transparent, var(--purple));
    position: relative;
    animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); opacity: 0.4; }
    50% { transform: translateY(8px); opacity: 1; }
}

/* ============================================
   Zodiac strip (infinite marquee)
   ============================================ */
.zodiac-strip {
    padding: 50px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.zodiac-track {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.zodiac-row {
    display: flex;
    gap: 48px;
    animation: marquee 40s linear infinite;
    width: max-content;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.zodiac-sign {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    border-radius: 100px;
    background: var(--glass);
    border: 1px solid var(--border);
    color: var(--text-dim);
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s;
    flex-shrink: 0;
}
.zodiac-sign:hover {
    border-color: var(--gold);
    color: var(--gold-light);
    transform: translateY(-2px);
}
.zodiac-sign img {
    width: 26px; height: 26px;
    filter: invert(82%) sepia(33%) saturate(439%) hue-rotate(349deg) brightness(94%) contrast(89%);
}

/* ============================================
   Sections (shared)
   ============================================ */
section {
    position: relative;
    z-index: 2;
    padding: 100px 0;
}

.section-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}
.section-eyebrow {
    font-size: 12px;
    letter-spacing: 0.24em;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 16px;
    text-transform: uppercase;
}
.section-head h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}
.section-head p {
    font-size: 17px;
    color: var(--text-dim);
}

/* ============================================
   Features
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    background: linear-gradient(160deg, var(--glass-strong) 0%, var(--glass) 100%);
    border: 1px solid var(--border);
    padding: 36px 28px;
    border-radius: 20px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--purple), transparent);
    opacity: 0.6;
}
.feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--purple);
    box-shadow: var(--shadow-glow);
}
.feature-icon {
    width: 64px; height: 64px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(155, 127, 212, 0.15), rgba(212, 175, 55, 0.1));
    border-radius: 16px;
    border: 1px solid var(--border);
}
.feature-icon img { width: 36px; height: 36px; }
.feature-card h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text);
}
.feature-card p {
    font-size: 14.5px;
    color: var(--text-dim);
    line-height: 1.6;
}

/* ============================================
   How it works
   ============================================ */
.how {
    background: linear-gradient(180deg, transparent, rgba(45, 27, 78, 0.25), transparent);
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 100px;
}

.how-item {
    position: relative;
    padding: 40px 30px;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 20px;
    text-align: center;
}
.how-num {
    font-family: var(--font-serif);
    font-size: 80px;
    font-weight: 400;
    line-height: 1;
    background: linear-gradient(135deg, var(--gold), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}
.how-item h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}
.how-item p {
    color: var(--text-dim);
    font-size: 15px;
}

/* Phone mockups */
.mockups {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.mockup-item {
    text-align: center;
    padding: 40px 28px;
    background: linear-gradient(180deg, rgba(155, 127, 212, 0.08), transparent);
    border: 1px solid var(--border);
    border-radius: 24px;
}
.mockup-item img {
    width: 100%;
    max-width: 440px;
    margin: 0 auto 24px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 60px rgba(155, 127, 212, 0.2);
}
.mockup-item h4 {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--gold-light);
}
.mockup-item p {
    color: var(--text-dim);
    font-size: 15px;
    max-width: 360px;
    margin: 0 auto;
}

/* ============================================
   Elements
   ============================================ */
.elements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.element-card {
    padding: 36px 24px;
    border-radius: 20px;
    text-align: center;
    background: var(--glass);
    border: 1px solid var(--border);
    transition: all 0.35s;
}
.element-card:hover {
    transform: translateY(-4px);
    background: var(--glass-strong);
}
.element-card img {
    width: 56px; height: 56px;
    margin: 0 auto 16px;
}
.element-card.fire { border-top: 2px solid #ff6b6b; }
.element-card.earth { border-top: 2px solid #7bc47f; }
.element-card.air { border-top: 2px solid #81d0f0; }
.element-card.water { border-top: 2px solid #6ba8e3; }

.element-card h4 {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}
.element-card p {
    color: var(--text);
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 500;
}
.element-card span {
    color: var(--text-muted);
    font-size: 13px;
    letter-spacing: 0.06em;
}

/* ============================================
   Pricing
   ============================================ */
.pricing {
    background: linear-gradient(180deg, transparent, rgba(45, 27, 78, 0.3), transparent);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.pricing-grid.pricing-grid-two {
    grid-template-columns: repeat(2, minmax(0, 360px));
    justify-content: center;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-grid.pricing-grid-single {
    grid-template-columns: minmax(0, 520px);
    justify-content: center;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-grid.pricing-grid-single .price-card.featured {
    transform: none;
}
.pricing-grid.pricing-grid-single .price-card.featured:hover {
    transform: translateY(-4px);
}

.price-card {
    position: relative;
    padding: 40px 32px;
    background: linear-gradient(180deg, var(--glass-strong), var(--glass));
    border: 1px solid var(--border);
    border-radius: 24px;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    transition: all 0.35s;
}
.price-card:hover {
    transform: translateY(-4px);
    border-color: var(--purple);
}

.price-card.featured {
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.12), rgba(155, 127, 212, 0.08));
    border: 1.5px solid var(--gold);
    transform: scale(1.03);
    box-shadow: var(--shadow-glow);
}
.price-card.featured:hover {
    transform: scale(1.03) translateY(-4px);
}

.price-badge {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 100px;
    background: var(--glass-strong);
    border: 1px solid var(--border);
    font-size: 11px;
    letter-spacing: 0.14em;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-dim);
    align-self: flex-start;
    margin-bottom: 20px;
}
.price-badge.featured-badge {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #1a1a3e;
    border-color: var(--gold);
}

.price-card h3 {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
}
.price-desc {
    font-size: 14.5px;
    color: var(--text-dim);
    margin-bottom: 28px;
    min-height: 48px;
}
.price-value {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 6px;
}
.price-value .currency {
    font-size: 20px;
    color: var(--text-dim);
}
.price-value .amount {
    font-family: var(--font-serif);
    font-size: 56px;
    font-weight: 600;
    line-height: 1;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.price-value .period {
    font-size: 16px;
    color: var(--text-dim);
    margin-left: 2px;
}
.price-note {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 28px;
}
.price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    flex: 1;
}
.price-features li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 14.5px;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}
.price-features li:last-child { border-bottom: none; }
.price-features li::before {
    content: '✦';
    position: absolute;
    left: 0;
    top: 10px;
    color: var(--gold);
    font-size: 14px;
}

.price-card .btn { justify-content: center; }

/* Terms-acceptance checkbox before the price button */
.terms-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s;
    user-select: none;
}
.terms-check:hover {
    border-color: var(--purple);
    background: rgba(155, 127, 212, 0.06);
}
.terms-checkbox {
    position: absolute;
    opacity: 0;
    width: 0; height: 0;
    pointer-events: none;
}
.terms-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px; height: 22px;
    flex-shrink: 0;
    margin-top: 1px;
    background: rgba(255, 255, 255, 0.04);
    border: 1.5px solid var(--text-muted);
    border-radius: 6px;
    transition: all 0.2s;
    position: relative;
}
.terms-box::after {
    content: '';
    width: 12px; height: 6px;
    border-left: 2px solid #1a1a3e;
    border-bottom: 2px solid #1a1a3e;
    transform: rotate(-45deg) translate(1px, -1px) scale(0);
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}
.terms-checkbox:checked + .terms-box {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-color: var(--gold);
}
.terms-checkbox:checked + .terms-box::after {
    transform: rotate(-45deg) translate(1px, -1px) scale(1);
}
.terms-checkbox:focus-visible + .terms-box {
    outline: 2px solid var(--purple-light);
    outline-offset: 2px;
}
.terms-text {
    font-size: 12.5px;
    line-height: 1.55;
    color: var(--text-dim);
}
.terms-text a {
    color: var(--purple-light);
    text-decoration: underline;
    text-decoration-color: rgba(155, 127, 212, 0.4);
    text-underline-offset: 2px;
}
.terms-text a:hover {
    color: var(--gold-light);
}

/* Locked button state (until terms are accepted) */
.btn.locked {
    opacity: 0.45;
    filter: grayscale(0.4);
    cursor: not-allowed;
    position: relative;
}
.btn.locked:hover {
    transform: none;
    box-shadow: 0 8px 24px rgba(155, 127, 212, 0.35), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn.locked::before {
    content: '🔒';
    margin-right: 6px;
    font-size: 13px;
    display: inline-block;
}

/* Invalid state: shown when user clicks button without checking the box */
.terms-check.invalid {
    background: rgba(255, 75, 75, 0.08);
    border-color: #ff6b6b;
    animation: terms-shake 0.4s;
}
.terms-check.invalid .terms-box {
    border-color: #ff6b6b;
    background: rgba(255, 75, 75, 0.12);
}
.terms-check.invalid .terms-text {
    color: #ff8a8a;
}
.terms-check.invalid .terms-text a {
    color: #ffb3b3;
    text-decoration-color: rgba(255, 139, 139, 0.5);
}

.pricing-note {
    display: flex;
    align-items: center;
    gap: 18px;
    max-width: 760px;
    margin: 0 auto;
    padding: 24px 28px;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 16px;
}
.pricing-note img {
    width: 44px; height: 44px;
    flex-shrink: 0;
}
.pricing-note strong {
    display: block;
    font-size: 16px;
    color: var(--gold-light);
    margin-bottom: 4px;
}
.pricing-note span {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.55;
}

/* Card-on-File (COF) disclosure on landing page */
.cof-disclosure {
    max-width: 900px;
    margin: 32px auto 0;
    padding: 28px 32px 24px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(155, 127, 212, 0.04));
    border: 1px solid var(--gold);
    border-radius: 18px;
    position: relative;
    overflow: hidden;
}
.cof-disclosure::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.cof-disclosure-head {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}
.cof-disclosure-badge {
    display: inline-block;
    padding: 5px 12px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #1a1a3e;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-radius: 100px;
}
.cof-disclosure-sub {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 500;
}
.cof-disclosure-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
    margin-bottom: 20px;
}
.cof-disclosure-grid > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.cof-disclosure-grid span {
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
}
.cof-disclosure-grid strong {
    font-size: 15px;
    color: var(--gold-light);
    font-weight: 600;
    line-height: 1.3;
}
.cof-disclosure-note {
    font-size: 13.5px;
    color: var(--text-dim);
    line-height: 1.7;
    margin: 0;
}
.cof-disclosure-note a {
    color: var(--purple-light);
    text-decoration: underline;
    text-decoration-color: rgba(155, 127, 212, 0.4);
    text-underline-offset: 2px;
}
.cof-disclosure-note a:hover { color: var(--gold-light); }

@media (max-width: 968px) {
    .cof-disclosure-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
    .cof-disclosure { padding: 22px 20px 20px; }
    .cof-disclosure-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}

/* ============================================
   Trust section
   ============================================ */
.trust-section {
    padding: 60px 0 90px;
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.trust-card {
    text-align: center;
    padding: 36px 28px;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 18px;
}
.trust-card img {
    width: 48px; height: 48px;
    margin: 0 auto 16px;
}
.trust-card h4 {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}
.trust-card p {
    font-size: 14px;
    color: var(--text-dim);
}
.trust-card a { color: var(--purple-light); }

/* ============================================
   Legal section
   ============================================ */
.legal-section {
    background: linear-gradient(180deg, transparent, rgba(10, 10, 30, 0.8));
}

.legal-nav {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.legal-tab {
    padding: 12px 22px;
    border-radius: 100px;
    background: var(--glass);
    border: 1px solid var(--border);
    color: var(--text-dim);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.25s;
}
.legal-tab:hover {
    color: var(--text);
    border-color: var(--purple);
}
.legal-tab.active {
    background: linear-gradient(135deg, var(--purple), var(--purple-dark));
    border-color: var(--purple);
    color: white;
    box-shadow: 0 6px 20px rgba(155, 127, 212, 0.35);
}

.legal-content {
    max-width: 860px;
    margin: 0 auto;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 48px;
    backdrop-filter: blur(10px);
}

.legal-panel { display: none; }
.legal-panel.active { display: block; animation: fadeIn 0.4s ease-out; }
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.legal-panel h3 {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text);
}
.legal-date {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 28px;
}
.legal-panel h4 {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    margin-top: 28px;
    margin-bottom: 12px;
    color: var(--gold-light);
}
.legal-panel p {
    color: var(--text-dim);
    margin-bottom: 14px;
    font-size: 15px;
    line-height: 1.75;
}
.legal-panel ul {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}
.legal-panel ul li {
    padding: 8px 0 8px 24px;
    position: relative;
    color: var(--text-dim);
    font-size: 14.5px;
}
.legal-panel ul li::before {
    content: '✦';
    position: absolute;
    left: 0; top: 8px;
    color: var(--purple);
    font-size: 12px;
}
.legal-panel a {
    color: var(--purple-light);
    text-decoration: underline;
    text-decoration-color: rgba(155, 127, 212, 0.4);
}

.legal-company {
    padding: 20px 24px;
    background: var(--glass-strong);
    border-left: 3px solid var(--gold);
    border-radius: 8px;
    margin: 16px 0 !important;
    color: var(--text) !important;
}

.highlight-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 26px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(155, 127, 212, 0.08));
    border: 1px solid var(--gold);
    border-radius: 16px;
    margin: 20px 0 32px;
}
.highlight-card img {
    width: 40px; height: 40px;
    flex-shrink: 0;
}
.highlight-card strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 20px;
    color: var(--gold-light);
    margin-bottom: 2px;
}
.highlight-card span {
    font-size: 14px;
    color: var(--text-dim);
}

.company-card {
    padding: 32px;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.08), transparent);
    border: 1px solid var(--border);
    border-radius: 20px;
    margin: 24px 0;
}
.company-card h4 {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 600;
    color: var(--gold-light);
    margin: 0 0 4px;
}
.company-card > div:first-child p {
    margin-bottom: 24px;
    color: var(--text-dim);
}
.company-details {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 12px 24px;
    margin: 0;
}
.company-details dt {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    align-self: center;
}
.company-details dd {
    font-size: 15px;
    color: var(--text);
    margin: 0;
}
.legal-small {
    font-size: 13px !important;
    color: var(--text-muted) !important;
    margin-top: 24px !important;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

/* ============================================
   Contact CTA
   ============================================ */
.contact-cta { padding: 80px 0; }

.contact-box {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 60px;
    background: linear-gradient(135deg, rgba(155, 127, 212, 0.12), rgba(212, 175, 55, 0.08));
    border: 1px solid var(--border);
    border-radius: 28px;
    position: relative;
    overflow: hidden;
}
.contact-box::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, var(--purple), transparent 50%);
    opacity: 0.15;
    z-index: 0;
}
.contact-box > * { position: relative; z-index: 1; }
.contact-box h2 { margin-bottom: 16px; }
.contact-box p { color: var(--text-dim); font-size: 16px; }

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.contact-actions .btn { justify-content: center; }

/* ============================================
   Footer
   ============================================ */
.footer {
    padding: 70px 0 30px;
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--text-dim);
    margin-bottom: 20px;
    max-width: 380px;
}
.footer-company {
    font-size: 12px !important;
    color: var(--text-muted) !important;
    line-height: 1.8;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 600;
}
.footer-logo img { width: 32px; height: 32px; }

.footer-links h5 {
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 16px;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-links a {
    font-size: 14px;
    color: var(--text-dim);
    padding: 4px 0;
}
.footer-links a:hover { color: var(--text); }

.footer-bottom {
    padding-top: 28px;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
}
.footer-bottom p { margin-bottom: 4px; }
.disclaimer { font-size: 12px; opacity: 0.7; }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 968px) {
    .nav-links { display: none; }
    .nav-burger { display: flex; }
    .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .hero-text { order: 2; }
    .hero-visual { order: 1; }
    .hero-wheel { max-width: 320px; }
    .hero-trust { justify-content: center; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .how-grid { grid-template-columns: 1fr; gap: 16px; }
    .mockups { grid-template-columns: 1fr; gap: 32px; }
    .elements-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; }
    .price-card.featured { transform: none; }
    .price-card.featured:hover { transform: translateY(-4px); }
    .trust-grid { grid-template-columns: 1fr; }
    .contact-box { grid-template-columns: 1fr; padding: 40px 28px; text-align: center; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-brand { grid-column: span 2; }
    .legal-content { padding: 32px 24px; }
    .company-details { grid-template-columns: 1fr; gap: 4px 0; }
    .company-details dt { margin-top: 12px; }
}

@media (max-width: 560px) {
    section { padding: 70px 0; }
    .hero { padding: 50px 0 80px; }
    .features-grid { grid-template-columns: 1fr; }
    .elements-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-brand { grid-column: span 1; }
    .contact-box { padding: 32px 20px; }
    .legal-content { padding: 24px 18px; }
    .legal-tab { padding: 10px 16px; font-size: 13px; }
    .hero-trust { gap: 20px; }
    .trust-item strong { font-size: 22px; }
    .nav-cta { padding: 8px 14px; font-size: 13px; }
}

/* ==================== Chat Add-on (disclosed on main site) ==================== */
.chat-addon {
    margin-top: 64px;
    padding: 40px 32px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(39, 186, 167, 0.05), rgba(139, 92, 246, 0.04));
    border: 1px solid rgba(242, 230, 196, 0.08);
}
.chat-addon-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 32px;
}
.chat-addon-head h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 3.2vw, 36px);
    font-weight: 700;
    color: #F2E6C4;
    margin: 12px 0 14px;
    letter-spacing: -0.01em;
}
.chat-addon-lede {
    color: rgba(242, 230, 196, 0.72);
    line-height: 1.65;
    font-size: 15.5px;
}
.chat-addon-lede a {
    color: #9B7FD4;
    text-decoration: underline;
    text-decoration-color: rgba(155, 127, 212, 0.4);
}
.chat-addon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 28px 0 20px;
}
.chat-addon-card {
    position: relative;
    padding: 22px 20px;
    border-radius: 16px;
    border: 1px solid rgba(242, 230, 196, 0.1);
    background: rgba(20, 41, 51, 0.55);
    text-align: center;
    transition: border-color .2s ease, transform .2s ease;
}
.chat-addon-card:hover {
    border-color: rgba(39, 186, 167, 0.45);
    transform: translateY(-2px);
}
.chat-addon-card.popular {
    border-color: rgba(39, 186, 167, 0.55);
    background: rgba(20, 41, 51, 0.75);
    box-shadow: 0 0 0 1px rgba(39, 186, 167, 0.18), 0 8px 28px rgba(39, 186, 167, 0.12);
}
.chat-addon-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #27BAA7, #8B5CF6);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 999px;
    white-space: nowrap;
}
.chat-addon-title {
    font-size: 16px;
    font-weight: 600;
    color: #F2E6C4;
    margin-bottom: 8px;
}
.chat-addon-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
}
.chat-addon-old {
    font-size: 15px;
    color: rgba(242, 230, 196, 0.35);
    text-decoration: line-through;
}
.chat-addon-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 700;
    color: #F2E6C4;
}
.chat-addon-desc {
    font-size: 13px;
    color: rgba(242, 230, 196, 0.55);
    line-height: 1.45;
}
.chat-addon-fineprint {
    text-align: center;
    font-size: 12.5px;
    color: rgba(242, 230, 196, 0.48);
    line-height: 1.6;
    max-width: 760px;
    margin: 8px auto 0;
}
.chat-addon-fineprint a {
    color: rgba(242, 230, 196, 0.8);
    text-decoration: underline;
    text-decoration-color: rgba(242, 230, 196, 0.25);
}
.chat-addon-fineprint a:hover { color: #F2E6C4; }
@media (max-width: 820px) {
    .chat-addon { padding: 32px 20px; }
    .chat-addon-grid { grid-template-columns: 1fr; gap: 12px; }
}

/* ==================== Pricing currency note ==================== */
.pricing-currency-note {
    max-width: 720px;
    margin: 16px auto 0;
    padding: 14px 18px;
    background: rgba(39, 186, 167, 0.06);
    border: 1px solid rgba(39, 186, 167, 0.15);
    border-radius: 12px;
    font-size: 13.5px;
    line-height: 1.55;
    color: rgba(242, 230, 196, 0.72);
}
.pricing-currency-note strong { color: #F2E6C4; }
.pricing-currency-note em { font-style: normal; color: rgba(242, 230, 196, 0.85); }
