/* GlitzBee Main Stylesheet - New Landing Page */
@import url('https://fonts.googleapis.com/css2?family=Mukta:wght@400;500;600;700;800&display=swap');

/* ========== CSS VARIABLES ========== */
:root {
    --brand-background: #FFF9F5;
    --brand-background-gradient: #FFF1E8;
    --brand-accent: #E8A54B;
    --brand-accent-dark: #D4872D;
    --brand-accent-light: #F5C97A;
    --brand-pink: #E91E8C;
    --brand-pink-dark: #C4177A;
    --brand-pink-light: #FF6BB3;
    --brand-purple: #8B5CF6;
    --brand-purple-dark: #7C3AED;
    --brand-gradient: linear-gradient(135deg, #E91E8C 0%, #8B5CF6 100%);
    --brand-gradient-subtle: linear-gradient(135deg, rgba(233,30,140,0.1) 0%, rgba(139,92,246,0.1) 100%);
    --brand-text: #2D2A26;
    --brand-text-muted: #5C5752;
    --brand-text-light: #8C877F;
    --brand-white: #FFFFFF;
    --brand-black: #1A1A1A;
}

/* ========== RESET & BASE ========== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: clamp(16px, 1.5vw, 18px);
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    background: var(--brand-text);
    overflow-x: hidden;
}

html, body {
    height: 100%;
    max-width: 100%;
}

body {
    font-family: 'Mukta', sans-serif;
    background: var(--brand-text);
    min-height: 100%;
    position: relative;
    overflow-x: hidden;
    color: var(--brand-text);
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100vw;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.fade-up {
    opacity: 0;
    animation: fadeUp 0.6s ease-out forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* ========== CONTAINER ========== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    overflow-x: hidden;
}

/* ========== DECORATIVE BACKGROUNDS ========== */
.bg-decoration {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

@media (max-width: 768px) {
    .bg-decoration {
        display: none;
    }
}

.bg-decoration-1 {
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(233,30,140,0.12) 0%, rgba(139,92,246,0.08) 50%, transparent 70%);
}

.bg-decoration-2 {
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139,92,246,0.1) 0%, rgba(233,30,140,0.05) 50%, transparent 70%);
}

.bg-decoration-3 {
    top: 40%;
    left: -200px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(232,165,75,0.08) 0%, transparent 70%);
}

/* ========== HEADER ========== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--brand-text);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 0.75rem 1.25rem;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.nav-logo {
    width: 32px;
    height: 32px;
    border-radius: 0.5rem;
    filter: drop-shadow(0 2px 8px rgba(232, 165, 75, 0.4));
    transition: filter 0.3s ease;
}

.nav-logo:hover {
    filter: drop-shadow(0 4px 16px rgba(233, 30, 140, 0.6));
}

.logo {
    font-family: 'Mukta', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--brand-pink) 0%, var(--brand-purple) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--brand-pink), var(--brand-purple));
    transition: width 0.3s ease;
}

.nav-link:hover::before {
    width: 100%;
}

.nav-link:hover {
    color: var(--brand-pink);
    transform: translateY(-2px);
}

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--brand-gradient);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.625rem 1.25rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
}

.header-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(233, 30, 140, 0.3);
}

/* Nav Social Icons */
.nav-socials {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: transparent;
    color: #ffffff;
    transition: all 0.3s ease;
}

.nav-social-icon:hover {
    background: rgba(255,255,255,0.1);
    color: var(--brand-pink);
    transform: translateY(-2px);
}

.nav-social-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.mobile-socials {
    display: none;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: #ffffff;
    z-index: 1001;
}

.mobile-menu-btn svg {
    display: block;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(45, 42, 38, 0.98);
    backdrop-filter: blur(10px);
    padding: 1rem 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu .nav-link {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: block;
}

/* ========== BUTTONS ========== */
.cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #E91E8C 0%, #C4177A 100%);
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(233, 30, 140, 0.35);
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(233, 30, 140, 0.45);
    background: linear-gradient(135deg, #FF6BB3 0%, #E91E8C 100%);
}

.cta-primary:active {
    transform: translateY(0);
}

/* App Store Buttons */
.solution-card-group {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.solution-card-group .app-download-buttons,
.solution-card-group .trust-badges {
    justify-content: center;
}

.app-download-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: nowrap;
    margin-top: 1rem;
    align-items: center;
    justify-content: flex-start;
}

.app-store-button {
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.app-store-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.app-store-button:hover::before {
    left: 100%;
}

.app-store-button:hover {
    transform: translateY(-5px) scale(1.05);
    filter: drop-shadow(0 10px 25px rgba(233, 30, 140, 0.4));
}

.app-store-button:active {
    transform: translateY(-2px) scale(1.02);
}

.store-icon {
    height: 55px;
    width: auto;
    display: block;
    transition: all 0.3s ease;
}

/* ========== MONK SKIN TONE SWATCHES ========== */
.monk-scale-container {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1.5rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.tone-swatch {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    pointer-events: none;
    flex-shrink: 0;
}

.monk-attribution {
    font-size: 0.75rem;
    color: var(--brand-text-light);
    margin-top: 0.75rem;
}

.attribution-link {
    color: var(--brand-text-light);
    text-decoration: none;
    transition: color 0.2s ease;
}

.attribution-link:hover {
    color: var(--brand-pink);
    text-decoration: underline;
}

/* ========== TRUST BADGES ========== */
.trust-badges {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1.25rem;
    justify-content: flex-start;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: clamp(0.9375rem, 1.8vw, 1.0625rem);
    font-weight: 600;
    color: var(--brand-text-muted);
}

.trust-badge-dot {
    font-weight: 900;
    font-size: 1.35em;
    opacity: 0.9;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    line-height: 0;
    transform: translateY(0.03em);
}

/* ========== HERO SECTION ========== */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 10rem 1.25rem 2rem;
    position: relative;
    background: linear-gradient(165deg, var(--brand-background) 0%, var(--brand-background-gradient) 100%);
    overflow-x: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 1rem;
    align-items: start;
    max-width: 960px;
    width: 100%;
    overflow: hidden;
}

.hero-text-column {
    text-align: center;
}

.hero-phone-column {
    display: flex;
    justify-content: center;
}

.hero-headline {
    font-family: 'Mukta', sans-serif;
    font-size: clamp(1.75rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--brand-text);
    line-height: 1.2;
}

.hero-subhead {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    color: var(--brand-text-muted);
    line-height: 1.6;
    margin-top: 1rem;
}

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

.hero-subhead-bold {
    font-weight: 700;
}

.hero-subhead-light {
    font-weight: 300;
}

.solution-card {
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    background: rgba(255,255,255,0.8);
    border-radius: 16px;
    border: 1px solid rgba(233,30,140,0.1);
    max-width: 480px;
    text-align: center;
}

.solution-label {
    font-family: 'Mukta', sans-serif;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--brand-pink) 0%, var(--brand-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 0.5rem 0;
}

.solution-heading {
    font-family: 'Mukta', sans-serif;
    font-size: clamp(0.95rem, 3vw, 1.5rem);
    font-weight: 700;
    color: #212121;
    line-height: 1.35;
    margin: 0 0 0.5rem 0;
    white-space: nowrap;
}

@media (max-width: 1024px) {
    .solution-heading {
        font-size: clamp(0.875rem, 4.5vw, 1.1rem);
    }
}

@media (max-width: 640px) {
    .solution-heading {
        font-size: clamp(0.8rem, 4vw, 0.95rem);
    }
}

.solution-card .solution-tagline {
    font-family: 'Mukta', sans-serif;
    font-size: clamp(0.9375rem, 1.8vw, 1.0625rem);
    font-weight: 400;
    color: #616161;
    line-height: 1.5;
    margin: 0;
    background: none;
    -webkit-text-fill-color: #616161;
    background-clip: unset;
}

@media (max-width: 1024px) {
    .solution-card .solution-tagline {
        font-size: clamp(0.8125rem, 2.2vw, 0.9375rem);
    }
    
    .solution-card .solution-line {
        white-space: nowrap;
    }
}

@media (max-width: 640px) {
    .solution-card .solution-tagline {
        font-size: clamp(0.75rem, 2vw, 0.875rem);
    }
    
    .solution-card .solution-line {
        white-space: nowrap;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.6;
    text-align: center;
    font-size: 0.75rem;
    color: var(--brand-text-light);
}

/* ========== PHONE CAROUSEL ========== */
.phone-container-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
    padding-top: 1.5rem;
    padding-bottom: 4rem;
}

.mobile-phone-container {
    position: relative;
    width: 280px;
    height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    overflow: visible;
}

.phone-frame {
    position: relative;
    width: 100%;
    height: 100%;
    background: transparent;
    border-radius: 40px;
    padding: 0;
    box-shadow: none;
    border: none;
}

.phone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    border-radius: 40px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    border-radius: 30px;
}

.carousel-image.active {
    opacity: 1;
    z-index: 2;
}

.phone-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(233, 30, 140, 0.25) 0%, rgba(139, 92, 246, 0.15) 40%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }
}

/* Carousel Navigation Dots */
.carousel-dots {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 1000;
    padding: 1rem 0;
    pointer-events: auto;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(233, 30, 140, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    outline: none;
    pointer-events: auto;
}

.carousel-dot:hover {
    background: rgba(233, 30, 140, 0.3);
    border-color: var(--brand-pink);
    transform: scale(1.2);
}

.carousel-dot.active {
    background: var(--brand-pink);
    border-color: var(--brand-pink);
    box-shadow: 0 0 10px rgba(233, 30, 140, 0.6);
    transform: scale(1.3);
}

/* ========== DUAL VALUE SECTION ========== */
.dual-value-section {
    padding: 3rem 0;
    background: white;
    scroll-margin-top: 80px;
}

.why-built-section {
    padding: 3rem 0;
    background: linear-gradient(165deg, var(--brand-background) 0%, var(--brand-background-gradient) 100%);
}

.section-label {
    font-family: 'Mukta', sans-serif;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--brand-pink) 0%, var(--brand-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    text-align: center;
}

.why-built-content {
    max-width: 640px;
    margin: 0 auto;
    padding-top: 0.5rem;
}

.why-built-title {
    font-family: 'Mukta', sans-serif;
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 700;
    color: var(--brand-text);
    text-align: center;
    margin-bottom: 1.5rem;
}

.why-built-paragraph {
    font-family: 'Mukta', sans-serif;
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--brand-text);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    text-align: left;
}

.why-built-cta {
    font-family: 'Mukta', sans-serif;
    font-size: clamp(1.375rem, 3vw, 1.75rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--brand-pink) 0%, var(--brand-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin: 2rem 0 0.5rem 0;
}

.why-built-author {
    font-family: 'Mukta', sans-serif;
    font-size: clamp(0.9375rem, 1.8vw, 1rem);
    font-weight: 400;
    font-style: italic;
    color: var(--brand-text-muted);
    text-align: center;
    margin: 0 0 0.75rem 0;
}

.why-built-line {
    height: 4px;
    background: #E93E7C;
    max-width: 280px;
    margin: 0 auto;
    border-radius: 2px;
}

.why-built-story-link {
    display: block;
    text-align: center;
    margin-top: 1.25rem;
    font-family: 'Mukta', sans-serif;
    font-size: clamp(0.9375rem, 1.8vw, 1rem);
    font-weight: 600;
    background: linear-gradient(135deg, var(--brand-pink) 0%, var(--brand-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.why-built-story-link:hover {
    opacity: 0.85;
}

.why-built-story-link .why-built-story-arrow {
    display: inline-block;
    margin-left: 0.35em;
    vertical-align: middle;
    line-height: 1;
}

.why-built-story-link .why-built-story-arrow svg {
    display: block;
    width: 1em;
    height: 1em;
}

.dual-value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--brand-background);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid rgba(233,30,140,0.25);
}

.value-card-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--brand-gradient-subtle);
    border-radius: 20px;
    margin-bottom: 1rem;
}

.value-card-badge span {
    font-size: 0.875rem;
    font-weight: 600;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.value-card-badge.purple span {
    background: linear-gradient(135deg, #8B5CF6 0%, #E91E8C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.value-card h3 {
    font-family: 'Mukta', sans-serif;
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 700;
    color: var(--brand-text);
    margin-bottom: 1rem;
}

.value-card p {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--brand-text-muted);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.value-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.value-card ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: clamp(0.9375rem, 1.8vw, 1.0625rem);
    color: var(--brand-text);
    margin-bottom: 0.5rem;
}

.value-card ul li .checkmark {
    font-weight: 700;
}

.value-card ul li .checkmark.pink {
    color: var(--brand-pink);
}

.value-card ul li .checkmark.purple {
    color: var(--brand-purple);
}

.value-card .value-card-learn-more {
    margin-top: 1rem;
}

/* ========== SOCIAL PROOF SECTION ========== */
.social-proof-section {
    padding: 3rem 0;
    background: radial-gradient(ellipse at center, rgba(45, 42, 50, 0.95) 0%, rgba(28, 26, 32, 1) 70%, rgba(20, 18, 24, 1) 100%);
}

.mobile-break {
    display: none;
}

.no-wrap {
    white-space: nowrap;
}

@media (max-width: 640px) {
    .mobile-break {
        display: block;
    }
}

.social-proof-section .section-headline {
    font-family: 'Mukta', sans-serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #FFFFFF;
    -webkit-text-fill-color: #FFFFFF;
    background: none;
    background-clip: unset;
    text-align: center;
    margin-bottom: 0.75rem;
}

.social-proof-subhead {
    font-family: 'Mukta', sans-serif;
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 400;
    color: #B0B0B0;
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-headline {
    font-family: 'Mukta', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--brand-pink) 0%, var(--brand-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-headline-mixed {
    background: none;
    -webkit-text-fill-color: unset;
    background-clip: unset;
}

.section-headline-regular {
    color: var(--brand-text);
}

.section-headline-gradient {
    background: linear-gradient(135deg, var(--brand-pink) 0%, var(--brand-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.final-cta-section .section-headline {
    font-size: clamp(2rem, 4vw, 3rem);
}

.headline-break {
    display: none;
}

.testimonials-grid {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-proof-section .testimonial-card {
    background: #282828;
    border-radius: 20px;
    padding: 1.5rem 1.75rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.3), 0 0 0 1px rgba(233, 30, 140, 0.15);
    max-width: 340px;
    text-align: left;
}

.social-proof-section .testimonial-card:last-child {
    box-shadow: 0 4px 24px rgba(0,0,0,0.3), 0 0 0 1px rgba(138, 107, 170, 0.2);
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    max-width: 340px;
    text-align: left;
}

.social-proof-section .testimonial-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: #DD6B8D;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.social-proof-section .testimonial-badge span {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #FFFFFF;
    -webkit-text-fill-color: #FFFFFF;
    background: none;
    background-clip: unset;
}

.social-proof-section .testimonial-badge.purple {
    background: #8A6BAA;
}

.social-proof-section .testimonial-badge.purple span {
    color: #FFFFFF;
    -webkit-text-fill-color: #FFFFFF;
    background: none;
}

.testimonial-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--brand-gradient-subtle);
    border-radius: 12px;
    margin-bottom: 0.75rem;
}

.testimonial-badge span {
    font-size: 0.75rem;
    font-weight: 600;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonial-badge.purple {
    background: linear-gradient(135deg, rgba(139,92,246,0.1) 0%, rgba(233,30,140,0.1) 100%);
}

.testimonial-badge.purple span {
    background: linear-gradient(135deg, #8B5CF6 0%, #E91E8C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-proof-section .testimonial-card .quote {
    font-size: clamp(1.0625rem, 2vw, 1.25rem);
    color: #FFFFFF;
    margin-bottom: 0;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-card .quote {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--brand-text);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-tone {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.author-name {
    font-size: 0.8125rem;
    color: var(--brand-text-light);
}

/* ========== FINAL CTA SECTION ========== */
.final-cta-section {
    padding: 2.5rem 0 3rem;
    background: white;
    text-align: center;
}

.final-cta-section .cta-subtitle {
    font-size: clamp(1.0625rem, 2vw, 1.25rem);
    color: var(--brand-text-muted);
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ========== FOOTER ========== */
.site-footer {
    background: var(--brand-text);
    color: white;
    padding: 3rem 1.25rem 2rem;
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.footer-logo-img {
    width: 36px;
    height: 36px;
    border-radius: 0.5rem;
    filter: drop-shadow(0 2px 8px rgba(232, 165, 75, 0.4));
    transition: filter 0.3s ease;
}

.footer-logo-img:hover {
    filter: drop-shadow(0 4px 16px rgba(233, 30, 140, 0.6));
}

.footer-brand p {
    color: #ffffff;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-top: 1rem;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-icon:hover {
    background: var(--brand-gradient);
    transform: translateY(-2px);
}

.social-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-column h4 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--brand-pink);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255,255,255,0.8);
    font-size: 0.75rem;
    margin: 0;
}

.footer-bottom a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--brand-pink);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.75rem;
}

.footer-legal a:hover {
    color: var(--brand-pink);
}

/* ========== STORY PAGE ========== */
.story-section {
    min-height: calc(100vh - 80px);
    padding: 8rem 1.25rem 5rem;
    background: linear-gradient(165deg, var(--brand-background) 0%, var(--brand-background-gradient) 100%);
}

.story-grid {
    max-width: 700px;
    margin: 0 auto;
}

.story-title {
    font-family: 'Mukta', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--brand-pink) 0%, var(--brand-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.story-content {
    max-width: 600px;
}

.story-paragraph {
    font-size: clamp(1.0625rem, 2vw, 1.1875rem);
    color: var(--brand-text-muted);
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.story-paragraph:last-child {
    margin-bottom: 0;
}

.story-section-title {
    font-family: 'Mukta', sans-serif;
    font-size: clamp(1.375rem, 3vw, 1.75rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--brand-pink) 0%, var(--brand-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 1.25rem 0 0.75rem;
}

.story-emphasis {
    font-weight: 600;
    background: linear-gradient(135deg, var(--brand-pink) 0%, var(--brand-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-cta {
    font-weight: 700;
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    background: linear-gradient(135deg, var(--brand-pink) 0%, var(--brand-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-contact {
    margin-top: 1.5rem;
    font-size: clamp(0.9375rem, 1.8vw, 1rem);
    color: var(--brand-text-muted);
}

.story-contact a {
    color: var(--brand-pink);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.story-contact a:hover {
    color: var(--brand-purple);
}

.founder-image-inline {
    margin: 1.5rem 0;
    text-align: center;
}

.founder-image-inline .founder-image {
    max-width: 280px;
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.15), 0 8px 20px rgba(233, 30, 140, 0.1);
}

/* Active nav link */
.nav-link.active {
    color: var(--brand-pink);
}

.nav-link.active::before {
    width: 100%;
}

@media (max-width: 640px) {
    .story-section {
        padding: 6rem 1.25rem 3rem;
    }
    
    .founder-image-inline .founder-image {
        max-width: 220px;
    }
    
    .story-content .app-download-buttons {
        justify-content: center;
    }
}


/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero-section {
        padding-top: 10rem;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-text-column {
        text-align: center;
        order: 1;
    }
    
    .hero-phone-column {
        order: 2;
        margin-top: 1rem;
    }
    
    .phone-container-wrapper {
        padding-top: 1rem;
        overflow: visible;
    }
    
    .solution-card-group {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-text-column .app-download-buttons,
    .hero-text-column .trust-badges {
        justify-content: center;
    }
    
    .hero-text-column .monk-scale-container {
        justify-content: center;
    }
    
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 8.5rem;
    }
    
    .header-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block !important;
    }
    
    .mobile-socials {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-logo {
        width: 28px;
        height: 28px;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .hero-section {
        padding-top: 9rem;
        padding-bottom: 2rem;
    }
    
    .phone-container-wrapper {
        padding-top: 0.75rem;
    }
    
    .dual-value-section {
        padding: 2rem 0;
    }
    
    .social-proof-section {
        padding: 2rem 0;
    }
    
    .final-cta-section {
        padding: 0.75rem 0 2rem;
    }
    
    .section-headline {
        margin-bottom: 1.5rem;
    }
    
    .hero-headline {
        font-size: clamp(2.5rem, 5vw, 4rem);
    }
    
    .final-cta-section .section-headline {
        font-size: clamp(2.5rem, 7vw, 3.25rem);
    }
    
    .headline-break {
        display: block;
    }
    
    .testimonials-grid {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
    
    .value-card {
        padding: 1.25rem;
    }
    
    .value-card h3 {
        margin-bottom: 0.75rem;
    }
    
    .value-card p {
        margin-bottom: 1rem;
    }
    
    .testimonial-card {
        padding: 1rem 1.25rem;
        max-width: 100%;
        width: 100%;
    }
    
    .testimonial-badge {
        padding: 0.2rem 0.6rem;
        margin-bottom: 0.5rem;
    }
    
    .testimonial-card .quote {
        margin-bottom: 0;
        line-height: 1.5;
    }
    
    .hero-subhead {
        font-size: 1rem;
    }
    
    .mobile-phone-container {
        width: 240px;
        height: 480px;
    }
    
    .phone-frame {
        border-radius: 36px;
    }
    
    .phone-screen {
        border-radius: 36px;
    }
    
    .carousel-image {
        border-radius: 28px;
    }
    
    .phone-glow {
        width: 300px;
        height: 300px;
    }
    
    .carousel-dots {
        bottom: -40px;
        gap: 0.4rem;
    }
    
    .carousel-dot {
        width: 8px;
        height: 8px;
    }
    
    .tone-swatch {
        width: 28px;
        height: 28px;
    }
    
    .app-download-buttons {
        justify-content: center;
        gap: 0.75rem;
    }
    
    .store-icon {
        height: 50px;
    }
    
    .dual-value-grid {
        grid-template-columns: 1fr;
    }
    
    .value-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-brand {
        align-items: center;
    }
    
    .footer-brand-logo {
        justify-content: center;
    }
    
    .footer-brand p {
        max-width: 100%;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-column h4 {
        text-align: center;
    }
    
    .footer-column ul {
        text-align: center;
    }
    
    .footer-bottom {
        text-align: center;
    }
}

@media (max-width: 375px) {
    .hero-section {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .container {
        padding: 0 0.75rem;
    }
    
    .hero-headline {
        font-size: clamp(2.5rem, 5vw, 4rem);
    }
    
    .hero-subhead {
        font-size: 0.95rem;
    }
    
    .no-wrap {
        white-space: normal;
    }
    
    .cta-primary {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .tone-swatch {
        width: 24px;
        height: 24px;
        border-width: 2px;
    }
    
    .testimonial-card {
        padding: 1rem 1.25rem;
    }
    
    .mobile-phone-container {
        width: 200px;
        height: 400px;
    }
    
    .nav-logo {
        width: 24px;
        height: 24px;
    }
    
    .logo {
        font-size: 1.25rem;
    }
    
    .phone-glow {
        width: 250px;
        height: 250px;
    }
    
    .carousel-dots {
        bottom: -35px;
        gap: 0.35rem;
    }
    
    .carousel-dot {
        width: 7px;
        height: 7px;
    }
    
    .nav-logo {
        width: 24px;
        height: 24px;
    }
    
    .logo {
        font-size: 1.4rem;
    }
    
    .store-icon {
        height: 45px;
    }
    
    .app-download-buttons {
        gap: 0.5rem;
    }
}
