/* Variables */
:root {
    --bg-main: #1a1a1a; /* Global Charcoal */
    --bg-section: #1a1a1a; /* Matching Charcoal */
    --text-main: #FFFFFF; 
    --text-muted: #B0B0B0; 
    --text-light: #FFFFFF;
    --accent-gold: #fff3c1; 
    --accent-beige: #EADDCA;
    --font-primary: 'Assistant', sans-serif; 
    --font-header: 'Assistant', sans-serif; 
    --border-radius: 20px;
    --transition: 0.3s ease-in-out;
}

/* Reset & Basics */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-primary); 
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography Overrides */
/* 1. Header Elements (Assistant 700) */
h1, h2, h3, 
.section-title, .hero-title, .hero-subtitle, .founder-name, .closing-title, .quote-title, .stagger-slide-in {
    font-family: var(--font-header);
    font-weight: 700;
}

/* 2. All Other Elements (Assistant 400) */
p, li, span, button, h4, h5, h6, 
a, label, input, textarea, 
.feature-title, .price-number, .currency, .cta-button, .payment-button, .sticky-cta,
.stagger-item, .comfort-text, .sparkle-item, .who-card {
    font-family: var(--font-primary);
    font-weight: 400;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--bg-light);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s;
}
.preloader-overlay {
    /* Completely transparent overlay */
    background: transparent; 
}
.preloader-logo {
    width: 220px;
    height: auto;
    mix-blend-mode: lighten; /* Ensures black background of image is transparent */
}

/* Typography Helpers */
.text-small { font-size: 0.9rem; }
.text-large { font-size: 1.2rem; }
.text-xl { font-size: 1.5rem; }
.text-xxl { font-size: 2rem; }
.text-gold { color: var(--accent-gold); }
.opacity-70 { opacity: 0.7; }

/* Spacing Helpers */
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.pt-1 { padding-top: 0.5rem; }
.pb-4 { padding-bottom: 2rem; }
.text-center { text-align: center; }

/* Sections */
.section {
    padding: 30px 20px; /* Reduced from 60px */
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}
.hero.section {
    padding-top: 10px;
    padding-bottom: 0px;
}
.bg-light { 
    background-color: var(--bg-section); 
    max-width: 100%; 
    border-radius: var(--border-radius); 
    margin: 0px 10px 20px 10px;
    padding: 40px 20px;
}
.bg-dark { 
    background-color: var(--bg-section); 
    color: var(--text-light); 
    max-width: 100%; 
    margin: 0; 
    padding: 60px 20px;
}
#payment-section {
    padding-top: 10px !important;
}

.section-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
}
.border-radius {
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.hero-image {
    width: 100%; /* Increased Size */
    margin: 0 auto;
    margin-top: 60px;
    margin-bottom: 0px;
    border-radius: var(--border-radius);
    display: block;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
    mask-image: radial-gradient(circle, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: radial-gradient(circle, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
}
.section-image {
    width: 90%; /* Reduced Size */
    max-width: 500px;
    margin: 30px auto;
    display: block;
    mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
}
.feature-image.inline-image {
    width: 100%;
    max-width: 400px;
    margin: 20px auto;
    display: block;
    border-radius: 12px;
    mask-image: radial-gradient(circle, black 60%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle, black 60%, transparent 100%);
}

/* Hero elements */
.hero-logo-container {
    background: transparent; 
    padding: 0px; 
    display: inline-flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 1.5rem; /* Standard positive margin for breathing room */
}
.hero-logo {
    width: 500px; 
    display: block;
    mix-blend-mode: lighten; 
    filter: drop-shadow(0 0 25px rgba(212,175,55,0.3));
}
.hero-title {
    font-size: 2.2rem;
    font-weight: 700;
}
.hero-subtitle {
    font-size: 1.5rem;
    color: var(--accent-gold);
    font-weight: 700;
}
.hero-text {
    color: var(--text-muted);
}
.hero-text.lead {
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--text-main);
}

/* Buttons */
.cta-button {
    background-color: var(--accent-gold);
    color: #111111;
    border: none;
    padding: 18px 30px;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: var(--font-primary);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transition: var(--transition);
    max-width: 90%;
    width: 100%;
}
.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.payment-button {
    background-color: var(--bg-dark);
    color: var(--accent-beige);
    border: 2px solid var(--accent-gold);
    padding: 20px;
    border-radius: 12px;
    font-size: 1.4rem;
    font-weight: 700;
    width: 100%;
    font-family: inherit;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}
.payment-button:hover {
    background-color: var(--accent-gold);
    color: var(--text-main);
    transform: scale(1.02);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    right: 20px;
    bottom: 30px;
    background-color: var(--accent-gold);
    color: black;
    border: none;
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    z-index: 100;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
    font-family: var(--font-primary);
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: opacity 0.4s, transform 0.4s;
}
.sticky-cta.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* Lists and Groups */
.stagger-group {
    background: var(--bg-section);
    padding: 5px 20px 30px 20px; /* Further reduced top padding */
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    text-align: center;
    max-width: 90%;
    margin: 20px auto;
    border: 1px solid var(--accent-gold);
}
.stagger-group.center-list {
    background: transparent;
    box-shadow: none;
    text-align: center;
}
.feature-note {
    margin-top: 10px;
    color: var(--text-muted);
    font-style: italic;
}
.stagger-item {
    margin: 10px 0;
    padding: 0 20px;
    position: relative;
    font-weight: 400;
    text-align: center;
}
.stagger-item::before {
    content: "•";
    display: block;
    margin-bottom: 5px;
    color: var(--accent-gold);
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}
.card {
    background: var(--bg-section);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    font-weight: 400;
    font-size: 1.1rem;
    text-align: center;
    width: 100%;
    border: 1px solid var(--accent-gold);
}
.feature-card {
    background: var(--bg-section);
    padding: 30px 20px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    border: 1px solid var(--accent-gold);
    text-align: center;
    margin-bottom: 20px;
}
.feature-card.vibrant {
    background: var(--bg-dark);
    color: var(--text-light);
    border-top: 4px solid var(--accent-gold);
}
.bullet-list {
    list-style-type: none;
}

/* Who is this for cards */
.who-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.who-card {
    background: rgba(255,255,255,0.05);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid var(--accent-gold);
    text-align: center;
    font-size: 1.1rem;
    width: 100%;
}

/* Special Text Elements */
.highlight-text {
    font-weight: 700;
}
.comfort-text {
    font-size: 1.2rem;
    color: var(--text-muted);
}
.sparkle-list {
    list-style-type: none;
    text-align: center;
}
.sparkle-item {
    padding: 10px 0;
    font-weight: 400;
}
.line-height-large {
    line-height: 1.8;
}

/* Animations & Transitions */
.pulse-animation {
    animation: pulse 2s infinite;
}
.pulse-subtle {
    animation: pulseSubtle 3s infinite;
}
.pulse-button {
    animation: pulseButton 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
@keyframes pulseSubtle {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}
@keyframes pulseButton {
    0% { transform: scale(1); box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2); }
    50% { transform: scale(1.02); box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5); }
    100% { transform: scale(1); box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2); }
}

/* Scroll Animations Base Classes */
.scroll-animate .slide-up,
.scroll-animate .fade-in,
.scroll-animate .scale-up,
.scroll-animate .stagger-item,
.scroll-animate .flip-in {
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.scroll-animate .stagger-item {
    transform: translateY(10px) scale(0.8);
}

.scroll-animate .slide-up {
    transform: translateY(30px);
}
.scroll-animate .scale-up {
    transform: scale(0.9);
}
.scroll-animate .flip-in {
    transform: perspective(400px) rotateX(20deg);
}

/* Scroll Animations Visible State */
.scroll-animate .slide-up.visible,
.scroll-animate .fade-in.visible,
.scroll-animate .scale-up.visible,
.scroll-animate .stagger-item.visible,
.scroll-animate .flip-in.visible {
    opacity: 1;
    transform: none;
}

/* Initial Load Animations (Before JS fires, Hero section) */
.fade-in-on-load { opacity: 0; animation: loadFadeIn 0.8s ease-out 0.2s forwards; }
.scale-up-on-load { opacity: 0; animation: loadScaleUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.4s forwards; }
.slide-up-on-load { opacity: 0; animation: loadSlideUp 0.8s ease-out 0.6s forwards; }

@keyframes loadFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes loadScaleUp { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
@keyframes loadSlideUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }

/* Delays for staggered animations */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Pricing */
.price-reveal {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}
.currency {
    font-size: 1.5rem;
    color: var(--text-main);
}

/* Social */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    transition: var(--transition);
}
.social-icon img {
    width: 35px;
    height: 35px;
}
.whatsapp {
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}
.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.instagram svg {
    stroke: white;
}
.social-icon:hover {
    transform: translateY(-5px);
}
.whatsapp:hover {
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
}

.optional-offer-card {
    background: rgba(255,255,255,0.05);
    border: 1px dashed var(--accent-gold);
    padding: 20px;
    border-radius: 12px;
}


.portrait-circle {
    width: 220px;
    height: 220px;
    object-fit: cover;
    object-position: center 30%; /* Balanced vertical focus */
    border-radius: 50%;
    margin: 30px auto;
    display: block;
    border: 3px solid var(--accent-gold);
    box-shadow: 0 15px 45px rgba(0,0,0,0.8), 0 0 30px rgba(212,175,55,0.3);
    transition: var(--transition);
}

.portrait-circle:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 20px 55px rgba(0,0,0,0.9), 0 0 40px rgba(212,175,55,0.5);
}

.old-price-row {
    font-size: 3.5rem;
    text-decoration: line-through 4px var(--text-muted);
    color: var(--text-muted);
    opacity: 0.5;
    margin-bottom: -15px;
}
.pricing-box {
    background: var(--bg-section);
    padding: 30px 20px;
    border-radius: var(--border-radius);
    border: 1px solid var(--accent-gold);
    display: inline-block;
    width: 100%;
}
.launch-price-tag {
    font-size: 1.1rem;
    font-weight: 700;
}

/* Tablet & Up */
@media (min-width: 768px) {
    .section { max-width: 800px; padding: 80px 40px; }
    .cards-grid { grid-template-columns: 1fr 1fr; }
    .method-columns { display: flex; justify-content: space-around; gap: 20px;}
    .method-col.block-display { flex: 1; text-align: center; }
    .stagger-group { max-width: 80%; margin: 0 auto; }
}
