/* =========================================
   VARIABLES & BASE RESET
   ========================================= */
:root {
    --bg-color: #ecedf1;
    --neu-white: #FFFFFF;
    --neu-shadow-dark: rgba(0, 0, 0, 0.1);
    --magenta-primary: #EC4899;
    --magenta-light: #F9A8D4;
    --magenta-dark: #BE185D;
    --text-dark: #1E293B;
    --text-light: #64748B;

    --neu-shadow-outer: 9px 9px 16px var(--neu-shadow-dark), -9px -9px 16px var(--neu-white);
    --neu-shadow-inner: inset 6px 6px 12px var(--neu-shadow-dark), inset -6px -6px 12px var(--neu-white);
    --neu-shadow-outer-sm: 4px 4px 8px var(--neu-shadow-dark), -4px -4px 8px var(--neu-white);
    --neu-shadow-inner-sm: inset 3px 3px 6px var(--neu-shadow-dark), inset -3px -3px 6px var(--neu-white);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* =========================================
   NAVIGATION & LOGO
   ========================================= */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 5%;
    background: var(--bg-color);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
}

.logo {
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    box-shadow: var(--neu-shadow-outer-sm);
    text-decoration: none;
}

.logo span {
    color: var(--magenta-primary);
}

/* =========================================
   GLOBAL COMPONENTS
   ========================================= */
.pill {
    background: var(--bg-color);
    color: var(--magenta-primary);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: var(--neu-shadow-outer-sm);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.pill::before {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--magenta-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--magenta-primary);
}

.magenta-text {
    color: var(--magenta-primary);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
}

footer {
    text-align: center;
    padding: 2rem 2rem 6rem 2rem;
    background-color: var(--bg-color);
    margin-top: auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 20px;
    box-shadow: var(--neu-shadow-outer-sm);
    background: var(--bg-color);
}

.footer-links a:hover {
    color: var(--magenta-primary);
    box-shadow: var(--neu-shadow-inner-sm);
    transform: scale(0.98);
}

.toast {
    position: fixed;
    bottom: 3rem;
    right: 3rem;
    background: var(--bg-color);
    color: var(--magenta-primary);
    padding: 1.25rem 2.5rem;
    border-radius: 20px;
    transform: translateY(200%);
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 200;
    box-shadow: var(--neu-shadow-outer);
    font-weight: 700;
    font-size: 1.1rem;
}

.toast.show {
    transform: translateY(0);
}

/* =========================================
   ANIMATIONS & REVEAL UTILITIES
   ========================================= */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    opacity: 0;
    animation: fadeIn 0.8s 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;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    will-change: opacity, transform;
}

.reveal-active {
    opacity: 1 !important;
    transform: translate(0, 0) scale(1) !important;
}

.cursor-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: opacity 0.3s;
}

/* =========================================
   PAGE SPECIFIC: INDEX / HERO
   ========================================= */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: var(--bg-color);
    padding: 36px 0 60px 0;
    position: relative;
    overflow: hidden;
}

.hero-top-grid {
    max-width: none;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
    gap: 0;
    margin-bottom: 2.5rem;
    padding-left: 5%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    z-index: 0;
}

.hero-image {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    z-index: 0;
}

.hero-image img {
    width: 150%;
    height: auto;
    max-width: 900px;
    display: block;
    filter: drop-shadow(-10px 10px 30px rgba(0, 0, 0, 0.08));
    margin-right: 0;
    margin-top: 0;
}

h1 {
    font-size: clamp(4rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    width: 100%;
    color: var(--text-dark);
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--text-light);
    max-width: 600px;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.hero-bottom-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 4rem auto 3rem;
    width: 100%;
    max-width: 850px;
}

.stat {
    padding: 1.8rem 2rem;
    border-radius: 25px;
    box-shadow: var(--neu-shadow-outer);
    background: var(--bg-color);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.3s;
}

.stat:hover {
    box-shadow: var(--neu-shadow-inner);
    transform: translateY(2px);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--magenta-primary);
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.waitlist-container {
    background: var(--bg-color);
    padding: 10px;
    border-radius: 50px;
    box-shadow: var(--neu-shadow-outer);
    display: flex;
    width: 100%;
    max-width: 550px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.waitlist-container:focus-within {
    box-shadow: var(--neu-shadow-inner);
}

.waitlist-container input {
    flex: 1;
    border: none;
    padding: 1rem 1.75rem;
    font-size: 1.1rem;
    outline: none;
    border-radius: 40px;
    background: transparent;
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
}

.waitlist-container button {
    background: var(--bg-color);
    color: var(--magenta-primary);
    border: none;
    padding: 0 2.5rem;
    border-radius: 40px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    box-shadow: var(--neu-shadow-outer-sm);
}

.waitlist-container button:hover {
    box-shadow: var(--neu-shadow-inner-sm);
    transform: scale(0.98);
}

.trust-badges {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 600;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    box-shadow: var(--neu-shadow-outer-sm);
}

.problem-section,
.solution-section,
.formats-section {
    padding: 8rem 5%;
    background: var(--bg-color);
}

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

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-header h2 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 750px;
    margin: 0 auto;
}

.solution-section .sticky-track .section-header {
    position: sticky;
    top: 80px;
    /* Aligns with navbar */
    z-index: 90;
    background: var(--bg-color);
    padding: 2rem 0 3rem;
    /* Standard balanced padding */

    /* REFINED BREAKOUT: Full width background masking */
    width: 100vw;
    margin-left: calc(50% - 50vw);

    /* Subtle top edge transition */
    box-shadow: 0 -1px 0 0 var(--bg-color);
}

.problem-grid,
.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.problem-card,
.solution-card {
    background: var(--bg-color);
    padding: 3rem 2.5rem;
    border-radius: 30px;
    box-shadow: var(--neu-shadow-outer);
    transition: all 0.4s;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.problem-card:hover,
.solution-card:hover {
    box-shadow: var(--neu-shadow-inner);
    transform: translateY(5px);
}

.problem-icon,
.icon-box {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.icon-box {
    width: 70px;
    height: 70px;
    background: var(--bg-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--neu-shadow-outer-sm);
    color: var(--magenta-primary);
}

.format-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
}

.format-tag {
    background: var(--bg-color);
    color: var(--magenta-primary);
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: var(--neu-shadow-outer-sm);
    transition: all 0.3s;
}

.format-tag:hover {
    box-shadow: var(--neu-shadow-inner-sm);
    transform: scale(0.96);
}

.cta-section {
    padding: 10rem 5% 4rem;
    background: var(--bg-color);
    display: flex;
    justify-content: center;
}

.cta-content {
    background: var(--bg-color);
    padding: 6rem 4rem;
    border-radius: 40px;
    box-shadow: var(--neu-shadow-outer);
    text-align: center;
    max-width: 1000px;
    width: 100%;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.cta-content p {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 3.5rem;
    line-height: 1.8;
}

.cta-btn {
    display: inline-block;
    background: var(--bg-color);
    color: var(--magenta-primary);
    padding: 1.25rem 3.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    box-shadow: var(--neu-shadow-outer-sm);
    transition: all 0.3s;
}

.cta-btn:hover {
    box-shadow: var(--neu-shadow-inner-sm);
    transform: scale(0.98);
}

/* =========================================
   PAGE SPECIFIC: CONTENT PAGES (ABOUT, PRIVACY, TERMS)
   ========================================= */
.content-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 10rem 2rem 6rem 2rem;
}

.content-section {
    padding: 6rem 5%;
    background: var(--bg-color);
}

.hero-about {
    padding: 10rem 5% 6rem 5%;
    text-align: center;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.last-updated {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

.highlight-box,
.highlight {
    background: var(--bg-color);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: var(--neu-shadow-inner);
    margin: 4rem 0;
}

.highlight-box h3,
.highlight strong {
    color: var(--magenta-primary);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3.5rem;
}

.step-card {
    background: var(--bg-color);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: var(--neu-shadow-outer);
    transition: all 0.4s;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--bg-color);
    color: var(--magenta-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.75rem;
    box-shadow: var(--neu-shadow-outer-sm);
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    background: var(--bg-color);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--neu-shadow-outer-sm);
}

.contact-box {
    background: var(--bg-color);
    padding: 4rem;
    border-radius: 40px;
    text-align: center;
    margin: 4rem 0;
    box-shadow: var(--neu-shadow-outer);
}

.contact-box a {
    color: var(--magenta-primary);
    font-weight: 700;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    box-shadow: var(--neu-shadow-outer-sm);
    transition: all 0.3s;
}

.content-container h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.content-container h2 {
    font-size: 2rem;
    margin-top: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.content-container h3 {
    font-size: 1.4rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.content-container p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.content-container ul,
.content-container ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.content-container li {
    margin-bottom: 0.75rem;
}

.content-container a {
    color: var(--magenta-primary);
    font-weight: 600;
    text-decoration: none;
}

.content-container a:hover {
    text-decoration: underline;
}

/* =========================================
   MEDIA QUERIES
   ========================================= */
@media (max-width: 768px) {
    .hero-top-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-content {
        order: 2;
        align-items: center;
        text-align: center;
    }

    .hero-image {
        order: 1;
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        margin-inline: auto;
    }

    .cta-section {
        padding: 5rem 1.5rem;
    }

    .content-container h1 {
        font-size: 2.5rem;
    }
}