/* ========================================
   MENOVIA™ — DESIGN SYSTEM v3 LAUNCH
   Aesthetic: "Luxury Feminine Wellness"
   ======================================== */

/* --- CSS Variables --- */
:root {
    --plum-deep: #3A1032;
    --plum: #6B2D5B;
    --plum-light: #8B4578;
    --plum-muted: #4A1942;
    --gold: #C9A86C;
    --gold-light: #E0CBA0;
    --gold-dark: #A68B4B;
    --blush: #F5E6E0;
    --blush-light: #FFF5F2;
    --cream: #FDF8F5;
    --rose: #D4A0A0;
    --charcoal: #1A1018;
    --charcoal-light: #2D1F2B;
    --text-dark: #2A1525;
    --text-muted: #7A6575;
    --white: #FFFFFF;
    --white-50: rgba(255, 255, 255, 0.5);
    --white-10: rgba(255, 255, 255, 0.1);
    --radius-sm: 0.75rem;
    --radius-md: 1.5rem;
    --radius-lg: 2rem;
    --radius-xl: 3rem;
    --radius-full: 100px;
    --font-sans: 'Plus Jakarta Sans', 'Outfit', sans-serif;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-display: 'Outfit', sans-serif;
    --transition-smooth: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-sans);
    background: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.45;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    cursor: pointer;
    font-family: inherit;
}

em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 500;
}

/* ========== PRELOADER ========== */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--plum-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    width: 80px;
    margin: 0 auto 1.5rem;
    animation: preloader-pulse 1.2s ease-in-out infinite alternate;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

@keyframes preloader-pulse {
    from {
        transform: scale(1);
        opacity: 0.7;
    }

    to {
        transform: scale(1.08);
        opacity: 1;
    }
}

.preloader-bar {
    width: 120px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.preloader-fill {
    width: 0;
    height: 100%;
    background: var(--gold);
    border-radius: 2px;
    animation: preloader-load 1.8s ease-out forwards;
}

@keyframes preloader-load {
    to {
        width: 100%;
    }
}

/* ========== SCROLL PROGRESS ========== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    z-index: 10001;
    background: linear-gradient(90deg, var(--gold), var(--plum));
    width: 0;
    transition: width 0.1s linear;
}

/* Custom cursor removed for performance */

/* --- Noise Overlay --- */
.noise-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.03;
    mix-blend-mode: overlay;
}

/* --- Particles --- */
.particles-container {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
}

/* --- Section Utilities --- */
.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-tag::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--gold);
}

.section-headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.section-headline em {
    color: var(--gold);
    font-size: 1.1em;
}

.reveal-line {
    display: block;
}

/* --- Magnetic Button --- */
.magnetic-btn {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s var(--transition-smooth);
}

.magnetic-btn:hover {
    transform: scale(1.04);
}

.magnetic-btn .btn-bg {
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: translateY(100%);
    transition: transform 0.4s var(--transition-ease);
    z-index: 0;
    border-radius: inherit;
}

.magnetic-btn:hover .btn-bg {
    transform: translateY(0);
}

.magnetic-btn .btn-text {
    position: relative;
    z-index: 1;
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 1rem 0;
    transition: all 0.5s var(--transition-ease);
}

.navbar.scrolled {
    padding: 0;
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 2rem;
    border-radius: var(--radius-full);
    background: rgba(58, 16, 50, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s var(--transition-ease);
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.navbar.scrolled .navbar-inner {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px);
    border-color: rgba(107, 45, 91, 0.08);
    box-shadow: 0 4px 30px rgba(58, 16, 50, 0.08);
    border-radius: 0;
    padding: 0.75rem 2.5rem;
    max-width: 100%;
}

.nav-logo-img {
    height: 48px;
    width: auto;
    transition: transform 0.3s;
}

.nav-logo:hover .nav-logo-img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 1.75rem;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--white);
    transition: color 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s var(--transition-ease);
}

.nav-link:hover::after {
    width: 100%;
}

.navbar.scrolled .nav-link {
    color: var(--plum);
}

.nav-cta {
    padding: 0.55rem 1.4rem;
    border-radius: var(--radius-full);
    background: var(--gold);
    color: var(--charcoal);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s;
}

.nav-cta:hover {
    background: var(--gold-dark);
    color: var(--white);
}

.nav-mobile-toggle {
    display: none;
    background: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    z-index: 1001;
}

.toggle-bar {
    width: 22px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: all 0.4s;
}

.navbar.scrolled .toggle-bar {
    background: var(--plum);
}

/* ========== MOBILE MENU — Slide-in ========== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 380px;
    height: 100%;
    z-index: 9998;
    background: var(--plum-deep);
    transition: right 0.5s var(--transition-ease);
    display: flex;
    flex-direction: column;
    padding: 5rem 2.5rem 2.5rem;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
    z-index: -1;
}

.mobile-menu.active::before {
    opacity: 1;
    pointer-events: all;
}

.mobile-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: none;
    color: var(--white);
    padding: 0.5rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s;
}

.mobile-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-top: 1rem;
}

.mobile-link {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: color 0.3s, padding-left 0.3s;
}

.mobile-link:hover {
    color: var(--white);
    padding-left: 0.5rem;
}

.mobile-link.cta {
    color: var(--gold);
    border: none;
    margin-top: 1rem;
    font-weight: 700;
}

.mobile-menu-footer {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu-footer p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 0.75rem;
}

.mobile-socials {
    display: flex;
    gap: 0.75rem;
}

.mobile-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s;
}

.mobile-socials a:hover {
    background: var(--gold);
    color: var(--charcoal);
}

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--plum-deep) 0%, var(--plum-muted) 30%, var(--plum) 60%, var(--plum-deep) 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('../images/background.jpg') no-repeat center center;
    background-size: cover;
    opacity: 0.6;
    pointer-events: none;
}

.hero-gradient-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(58, 16, 50, 0.4) 0%, transparent 70%),
        radial-gradient(ellipse at 80% 20%, rgba(201, 168, 108, 0.1) 0%, transparent 50%),
        linear-gradient(to bottom, transparent 60%, var(--plum-deep) 100%);
}

.hero-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(201, 168, 108, 0.08) 50%, transparent 70%);
    animation: shimmer 8s ease-in-out infinite;
}

@keyframes shimmer {

    0%,
    100% {
        transform: translateX(-100%);
    }

    50% {
        transform: translateX(100%);
    }
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
    min-height: 100dvh;
    padding: 7rem 0 3rem;
}

.hero-content {
    max-width: 580px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1.2rem;
    border-radius: var(--radius-full);
    background: rgba(201, 168, 108, 0.15);
    border: 1px solid rgba(201, 168, 108, 0.3);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.badge-text {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-headline {
    margin-bottom: 1rem;
}

.hero-line {
    display: block;
    font-family: var(--font-display);
    color: var(--white);
    opacity: 0;
    transform: translateY(40px);
    line-height: 1.05;
}

.hero-line-1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 300;
}

.hero-line-2 {
    font-size: clamp(2.8rem, 6.5vw, 4.5rem);
    font-weight: 800;
}

.hero-line-3 {
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    font-weight: 400;
}

.hero-line-3 em {
    color: var(--gold);
    font-size: 1.15em;
}

.hero-sub {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    opacity: 0;
    transform: translateY(20px);
}

.hero-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 520px;
    opacity: 0;
    transform: translateY(20px);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2.2rem;
    border-radius: var(--radius-full);
    background: var(--gold);
    color: var(--charcoal);
    font-size: 0.9rem;
    font-weight: 700;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.8rem;
    border-radius: var(--radius-full);
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-arrow {
    transition: transform 0.3s;
}

.btn-secondary:hover .btn-arrow {
    transform: translate(3px, -3px);
}

.hero-phone-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(60px);
    position: relative;
}

.phone-frame {
    width: 300px;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
    border: 3px solid rgba(255, 255, 255, 0.15);
}

.phone-screen {
    width: 100%;
    height: auto;
}

.phone-glow {
    position: absolute;
    inset: -40px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 108, 0.2) 0%, transparent 70%);
    z-index: -1;
    animation: phone-glow 4s ease-in-out infinite alternate;
}

@keyframes phone-glow {
    0% {
        opacity: 0.4;
        transform: scale(0.9);
    }

    100% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
}

.scroll-line {
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scroll-pulse 2s infinite;
}

@keyframes scroll-pulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.8;
    }
}

.scroll-text {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold-light);
}

/* ========== PROBLEM SECTION ========== */
.problem-section {
    padding: 6rem 0;
    background: var(--cream);
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.problem-headline {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.08;
    color: var(--charcoal);
}

.problem-headline em {
    color: var(--plum);
}

.symptom-carousel {
    margin-bottom: 1.5rem;
}

.symptom-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.symptom-card {
    position: relative;
    padding: 1.25rem 0.75rem;
    border-radius: var(--radius-md);
    background: var(--white);
    border: 1px solid rgba(107, 45, 91, 0.08);
    text-align: center;
    transition: all 0.4s var(--transition-smooth);
    overflow: hidden;
}

.symptom-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(107, 45, 91, 0.1);
}

/* Ripple on symptom cards */
.symptom-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at var(--ripple-x, 50%) var(--ripple-y, 50%), rgba(107, 45, 91, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.symptom-card:hover::after {
    opacity: 1;
}

.symptom-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 0.5rem;
    color: var(--plum);
}

.symptom-name {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--plum);
}

.symptom-pulse {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 2px solid var(--plum);
    opacity: 0;
    animation: card-pulse 3s infinite;
}

@keyframes card-pulse {
    0% {
        opacity: 0;
        transform: scale(1);
    }

    50% {
        opacity: 0.3;
    }

    100% {
        opacity: 0;
        transform: scale(1.05);
    }
}

.symptom-card:nth-child(1) .symptom-pulse {
    animation-delay: 0s;
}

.symptom-card:nth-child(2) .symptom-pulse {
    animation-delay: 0.5s;
}

.symptom-card:nth-child(3) .symptom-pulse {
    animation-delay: 1s;
}

.symptom-card:nth-child(4) .symptom-pulse {
    animation-delay: 1.5s;
}

.symptom-card:nth-child(5) .symptom-pulse {
    animation-delay: 2s;
}

.symptom-card:nth-child(6) .symptom-pulse {
    animation-delay: 2.5s;
}

.dismissal-feed {
    padding: 1.5rem;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--plum-deep), var(--plum));
    border: 1px solid rgba(201, 168, 108, 0.3);
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(58, 16, 50, 0.2);
}

.feed-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.feed-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse-dot 1.5s infinite;
}

.feed-label {
    font-size: 0.65rem;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.feed-text {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    transition: opacity 0.5s;
    line-height: 1.3;
}

.problem-statement {
    padding-top: 0.5rem;
}

.problem-statement p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.accent-text {
    color: var(--plum) !important;
    font-weight: 700;
    font-size: 1.05rem !important;
}

/* ========== MANIFESTO ========== */
.manifesto-section {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
    background: var(--charcoal);
}

.manifesto-bg {
    position: absolute;
    inset: 0;
}

.manifesto-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.manifesto-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26, 16, 24, 0.9) 0%, rgba(26, 16, 24, 0.7) 50%, rgba(26, 16, 24, 0.95) 100%);
}

.manifesto-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.manifesto-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.manifesto-left,
.manifesto-right {
    flex: 1;
    min-width: 260px;
}

.manifesto-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0.75rem;
    padding: 0.35rem 0.9rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.manifesto-tag.gold {
    color: var(--gold);
    border-color: rgba(201, 168, 108, 0.3);
}

.manifesto-text-old {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
    line-height: 1.15;
    text-decoration: line-through;
    text-decoration-color: rgba(255, 255, 255, 0.2);
}

.manifesto-text-new {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--white);
    font-weight: 700;
    line-height: 1.15;
}

.manifesto-text-new em {
    color: var(--gold);
}

.manifesto-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.divider-line {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
}

.divider-vs {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--gold);
    padding: 0.4rem;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 108, 0.3);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.manifesto-body {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.6);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.55;
}

/* ========== FEATURES ========== */
.features-section {
    padding: 6rem 0;
    background: var(--blush-light);
}

.features-header {
    text-align: center;
    margin-bottom: 3rem;
}

.features-dashboard {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-artifact {
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid rgba(107, 45, 91, 0.06);
    overflow: hidden;
    transition: all 0.4s var(--transition-smooth);
}

.feature-artifact:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(107, 45, 91, 0.12);
}

.artifact-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid rgba(107, 45, 91, 0.06);
    background: rgba(107, 45, 91, 0.02);
}

.artifact-dots {
    display: flex;
    gap: 5px;
}

.dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
}

.dot.red {
    background: #FF6058;
}

.dot.yellow {
    background: #FFBD2E;
}

.dot.green {
    background: #28CA42;
}

.artifact-title {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
}

.artifact-body {
    padding: 1.25rem;
    min-height: 200px;
}

.artifact-desc {
    padding: 0.85rem 1.25rem;
    font-size: 0.82rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(107, 45, 91, 0.06);
    line-height: 1.4;
}

.tracker-shuffler {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.tracker-card {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(107, 45, 91, 0.05), rgba(201, 168, 108, 0.05));
    border: 1px solid rgba(107, 45, 91, 0.08);
    transition: all 0.5s var(--transition-smooth);
}

.tc-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tc-info {
    flex: 1;
}

.tc-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--plum);
    display: block;
    margin-bottom: 0.3rem;
}

.tc-bar {
    height: 4px;
    background: rgba(107, 45, 91, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.tc-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--plum), var(--gold));
    border-radius: 4px;
    transition: width 1s;
}

.tc-value {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--plum);
    font-variant-numeric: tabular-nums;
    flex-shrink: 0;
}

.insight-typewriter {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.typewriter-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.tw-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse-dot 1.5s infinite;
}

.tw-label {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.typewriter-text {
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    color: var(--plum);
    border-right: 2px solid var(--gold);
    padding-right: 4px;
    white-space: nowrap;
    overflow: hidden;
    min-height: 1.3rem;
    line-height: 1.3;
    animation: blink-cursor 0.8s step-end infinite;
}

@keyframes blink-cursor {
    50% {
        border-color: transparent;
    }
}

.wave-svg {
    width: 100%;
    margin-top: auto;
}

.scheduler-body {
    position: relative;
}

.weekly-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.day-cell {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-size: 0.72rem;
    font-weight: 600;
    background: rgba(107, 45, 91, 0.05);
    color: var(--plum);
    border: 1px solid transparent;
    transition: all 0.3s var(--transition-smooth);
}

.day-cell.active {
    background: var(--plum);
    color: var(--white);
    border-color: var(--plum);
    transform: scale(0.95);
}

.save-btn {
    width: 100%;
    padding: 0.65rem;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--plum), var(--plum-light));
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 600;
    transition: all 0.3s;
}

.save-btn.clicked {
    transform: scale(0.96);
}

.mock-cursor {
    position: absolute;
    top: 30px;
    left: 20px;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
}

.edu-cards {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.edu-card {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem;
    border-radius: var(--radius-sm);
    background: rgba(107, 45, 91, 0.03);
    transition: all 0.3s;
}

.edu-card.active {
    background: rgba(107, 45, 91, 0.08);
    border-left: 3px solid var(--plum);
}

.edu-phase {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--plum);
    min-width: 110px;
}

.edu-progress {
    flex: 1;
    height: 5px;
    background: rgba(107, 45, 91, 0.08);
    border-radius: 5px;
    overflow: hidden;
}

.edu-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--plum), var(--gold));
    border-radius: 5px;
}

.edu-age {
    font-size: 0.68rem;
    color: var(--text-muted);
}

/* ========== STACKING CARDS ========== */
.audience-section {
    padding: 6rem 0 0;
    background: var(--cream);
}

.audience-header {
    text-align: center;
    margin-bottom: 3rem;
}

.audience-section .section-headline em {
    color: var(--plum);
}

.stacking-cards {
    position: relative;
    padding-bottom: 4rem;
}

.stack-card {
    position: sticky;
    top: 90px;
    margin-bottom: 2rem;
    padding: 0 2rem;
}

.stack-card-inner {
    max-width: 1280px;
    margin: 0 auto;
    border-radius: var(--radius-xl);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--white);
    border: 1px solid rgba(107, 45, 91, 0.08);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.stack-card-1 {
    z-index: 3;
}

.stack-card-2 {
    z-index: 4;
}

.stack-card-3 {
    z-index: 5;
}

.stack-visual {
    position: relative;
    overflow: hidden;
    min-height: 380px;
}

.stack-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stack-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(107, 45, 91, 0.3), rgba(58, 16, 50, 0.1));
}

.stack-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stack-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(107, 45, 91, 0.08);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stack-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
    line-height: 1.15;
}

.stack-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.stack-animation {
    height: 60px;
    overflow: hidden;
}

.ekg-svg {
    width: 100%;
    height: 60px;
}

.ekg-path {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: ekg-draw 2s linear infinite;
}

@keyframes ekg-draw {
    to {
        stroke-dashoffset: 0;
    }
}

.rotating-rings {
    position: relative;
    width: 60px;
    height: 60px;
}

.ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid transparent;
}

.ring-1 {
    inset: 0;
    border-top-color: var(--plum);
    animation: spin 3s linear infinite;
}

.ring-2 {
    inset: 8px;
    border-right-color: var(--gold);
    animation: spin 2s linear infinite reverse;
}

.ring-3 {
    inset: 16px;
    border-bottom-color: var(--rose);
    animation: spin 4s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.scan-grid {
    position: relative;
    width: 100%;
    height: 60px;
    overflow: hidden;
}

.grid-dots {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    padding: 8px;
}

.grid-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(107, 45, 91, 0.15);
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: scan 2s linear infinite;
}

@keyframes scan {
    from {
        top: 0;
    }

    to {
        top: 100%;
    }
}

/* ========== FOUNDER ========== */
.founder-section {
    padding: 6rem 0;
    background: var(--cream);
}

.founder-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 3.5rem;
    align-items: center;
}

.founder-image-wrapper {
    position: relative;
}

.founder-image-frame {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(107, 45, 91, 0.2);
}

.founder-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.founder-img-border {
    position: absolute;
    inset: -4px;
    border: 2px solid var(--gold);
    border-radius: calc(var(--radius-xl) + 4px);
    opacity: 0.5;
}

.founder-glow {
    position: absolute;
    inset: -30px;
    border-radius: 50%;
    z-index: -1;
    background: radial-gradient(circle, rgba(201, 168, 108, 0.15) 0%, transparent 70%);
}

.founder-headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.08;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.founder-headline em {
    color: var(--plum);
}

.founder-story p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 0.75rem;
}

.founder-story strong {
    color: var(--plum);
}

.read-more-link {
    display: inline-block;
    color: var(--plum);
    font-weight: 700;
    margin-left: 0.5rem;
    position: relative;
    transition: all 0.3s;
}

.read-more-link:hover {
    color: var(--gold-dark);
    transform: translateX(4px);
}

.founder-quote {
    margin: 1.5rem 0;
    padding: 1.25rem 1.5rem;
    border-left: 3px solid var(--gold);
    background: linear-gradient(135deg, rgba(201, 168, 108, 0.05), rgba(107, 45, 91, 0.05));
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--plum);
    line-height: 1.45;
}

.founder-quote em {
    color: var(--gold);
    font-weight: 600;
}

.founder-signature {
    margin-top: 1.5rem;
}

.sig-name {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-style: italic;
    color: var(--plum);
}

.sig-title {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

/* ========== SHOWCASE ========== */
.showcase-section {
    padding: 6rem 0;
    overflow: hidden;
    background: linear-gradient(180deg, var(--plum-deep), var(--plum-muted));
}

.showcase-content {
    text-align: center;
    margin-bottom: 3rem;
}

.showcase-content .section-headline {
    color: var(--white);
}

.showcase-content .section-headline em {
    color: var(--gold);
}

.showcase-headline .reveal-line {
    display: inline;
}

.showcase-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.5;
}

.showcase-phones {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 2rem;
    perspective: 1000px;
}

.showcase-phone {
    width: 220px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.showcase-phone-left {
    transform: rotateY(15deg) translateY(20px);
    opacity: 0.7;
}

.showcase-phone-center {
    width: 260px;
    border-radius: 32px;
    z-index: 2;
    border-color: rgba(201, 168, 108, 0.3);
}

.showcase-phone-right {
    transform: rotateY(-15deg) translateY(20px);
    opacity: 0.7;
}

.showcase-screen {
    width: 100%;
}

/* ========== CTA ========== */
.cta-section {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
    background: linear-gradient(135deg, var(--plum-muted), var(--plum-deep));
}

.cta-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 108, 0.1) 0%, transparent 70%);
}

.cta-shape-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.cta-shape-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    animation: float 10s ease-in-out infinite reverse;
}

.cta-shape-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-headline {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-headline em {
    color: var(--gold);
}

.cta-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2.5rem;
    line-height: 1.4;
}

.waitlist-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.waitlist-input {
    flex: 1;
    padding: 0.85rem 1.25rem;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 0.9rem;
    font-family: var(--font-sans);
    outline: none;
    transition: all 0.3s;
}

.waitlist-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.waitlist-input:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.15);
}

.waitlist-btn {
    padding: 0.85rem 1.8rem;
    border-radius: var(--radius-full);
    background: var(--gold);
    color: var(--charcoal);
    font-weight: 700;
    font-size: 0.85rem;
    white-space: nowrap;
    transition: all 0.3s;
}

.waitlist-btn.loading {
    opacity: 0.7;
    pointer-events: none;
}

.form-note {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.35);
    text-align: center;
}

.waitlist-success {
    display: none;
    text-align: center;
    color: var(--white);
}

.waitlist-success.active {
    display: block;
}

.waitlist-success .success-icon {
    margin: 0 auto 1rem;
    display: flex;
    justify-content: center;
}

.waitlist-success h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    margin-bottom: 0.4rem;
}

.waitlist-success p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--charcoal);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    padding: 3.5rem 0 1.5rem;
    margin-top: -2rem;
    position: relative;
    z-index: 5;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-logo {
    height: 64px;
    margin-bottom: 0.75rem;
    filter: brightness(0) invert(1);
    opacity: 0.85;
}

.footer-tagline {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 1rem;
}

.footer-socials {
    display: flex;
    gap: 0.65rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--gold);
    color: var(--charcoal);
    border-color: var(--gold);
}

.footer-links-grid {
    display: flex;
    gap: 3.5rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-col-title {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
}

.footer-link {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s;
    line-height: 1.3;
}

.footer-link:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-copyright {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer-email {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ========== INNER PAGES ========== */
.page-header {
    background: linear-gradient(135deg, var(--plum-deep), var(--plum-muted));
    padding: 8rem 2rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.page-header p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 500px;
    margin: 0 auto;
}

.page-body {
    padding: 4rem 0 6rem;
}

.page-body .section-container {
    max-width: 800px;
}

.page-body h2 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--charcoal);
    margin: 2rem 0 0.75rem;
    line-height: 1.15;
}

.page-body h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--plum);
    margin: 1.5rem 0 0.5rem;
}

.page-body p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 0.75rem;
}

.page-body ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.page-body li {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 0.35rem;
}

.page-body a {
    color: var(--plum);
    font-weight: 500;
    border-bottom: 1px solid rgba(107, 45, 91, 0.2);
    transition: border-color 0.3s;
}

.page-body a:hover {
    border-color: var(--plum);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.form-field label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--plum);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-field input,
.form-field textarea {
    padding: 0.8rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(107, 45, 91, 0.12);
    background: var(--white);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.3s;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: var(--plum);
}

.form-field textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    padding: 0.85rem 2rem;
    border-radius: var(--radius-full);
    background: var(--plum);
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s;
    align-self: flex-start;
}

.form-submit:hover {
    background: var(--plum-light);
}

.form-submit.loading {
    opacity: 0.7;
    pointer-events: none;
}

.contact-info {
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: var(--blush-light);
}

.contact-info h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.contact-detail svg {
    color: var(--plum);
    flex-shrink: 0;
}

.contact-detail span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.contact-socials {
    display: flex;
    gap: 0.65rem;
    margin-top: 1.5rem;
}

.contact-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid rgba(107, 45, 91, 0.1);
    color: var(--plum);
    transition: all 0.3s;
}

.contact-social:hover {
    background: var(--plum);
    color: var(--white);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 7rem 0 5rem;
    }

    .hero-content {
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-phone-mockup {
        order: 2;
    }

    .phone-frame {
        width: 240px;
        margin: 0 auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .problem-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .features-dashboard {
        grid-template-columns: 1fr;
    }

    .stack-card-inner {
        grid-template-columns: 1fr;
    }

    .stack-visual {
        min-height: 240px;
    }

    .founder-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .founder-image-frame {
        max-width: 380px;
        margin: 0 auto;
    }

    .manifesto-comparison {
        flex-direction: column;
        gap: 1.5rem;
    }

    .manifesto-divider {
        flex-direction: row;
    }

    .divider-line {
        width: 36px;
        height: 1px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .nav-mobile-toggle {
        display: flex;
    }

    .hero-grid {
        padding: 6rem 0 3rem;
    }

    .hero-line-1 {
        font-size: 1.6rem;
    }

    .hero-line-2 {
        font-size: 2.5rem;
    }

    .hero-line-3 {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 0.88rem;
        margin: 0 auto 1.5rem;
    }

    .symptom-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-group {
        flex-direction: column;
    }

    .showcase-phone-left,
    .showcase-phone-right {
        display: none;
    }

    .showcase-phone-center {
        width: 260px;
    }

    .footer-links-grid {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-top {
        gap: 2rem;
    }

    .stack-card {
        min-height: auto;
    }

    .stack-content {
        padding: 1.5rem;
    }

    .section-container {
        padding: 0 1.25rem;
    }

    .page-header {
        padding: 7rem 1.25rem 2.5rem;
    }

    .footer-inner {
        padding: 0 1.25rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto 0.75rem;
    }

    .footer-tagline {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .section-headline {
        font-size: 1.8rem;
    }

    .problem-headline {
        font-size: 1.8rem;
    }

    .symptom-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .footer-logo {
        height: 48px;
    }

    .hero-badge {
        margin-bottom: 1rem;
    }

    .hero-sub {
        font-size: 0.75rem;
        letter-spacing: 0.2em;
    }

    .stack-card {
        padding: 0 1rem;
    }

    .stack-number {
        font-size: 2.5rem;
    }

    .stack-title {
        font-size: 1.3rem;
    }

    .showcase-phone-center {
        width: 220px;
    }

    .cta-headline {
        font-size: 1.8rem;
    }

    .manifesto-left,
    .manifesto-right {
        min-width: 100%;
    }

    .edu-phase {
        min-width: 90px;
        font-size: 0.72rem;
    }
}