/* ═══════════════════════════════════════════════
   About Page — StyleGenie (Floria-inspired)
   Editorial dark luxury, high-end scroll experience
   ═══════════════════════════════════════════════ */

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

body {
    font-family: var(--sg-font-body);
    background: #E0EDD9;
    color: #222222;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.feature-card, .team-card, .bento-box, .stat-card {
    background: #FFFFFF !important;
    border-radius: 20px !important;
    box-shadow: 0 8px 25px rgba(34,34,34,0.05) !important;
    border: 1px solid rgba(0,0,0,0.06) !important;
    color: #222222 !important;
}

::selection {
    background: rgba(192, 97, 74, 0.18);
    color: var(--sg-ink);
}

.section-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ── SCROLL ANIMATIONS ── */
.anim-target {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim-target.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.features-grid .anim-target:nth-child(2) { transition-delay: 0.12s; }
.features-grid .anim-target:nth-child(3) { transition-delay: 0.24s; }
.process-steps .anim-target:nth-child(2) { transition-delay: 0.15s; }
.process-steps .anim-target:nth-child(3) { transition-delay: 0.3s; }
.testimonials-grid .anim-target:nth-child(2) { transition-delay: 0.12s; }
.testimonials-grid .anim-target:nth-child(3) { transition-delay: 0.24s; }
.bento-grid .anim-target:nth-child(2) { transition-delay: 0.08s; }
.bento-grid .anim-target:nth-child(3) { transition-delay: 0.16s; }
.bento-grid .anim-target:nth-child(4) { transition-delay: 0.24s; }
.bento-grid .anim-target:nth-child(5) { transition-delay: 0.32s; }

/* ═══════════ NAVBAR ═══════════ */
.sg-navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.sg-navbar.scrolled {
    padding: 0.6rem 2rem;
}

.nav-inner {
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0.8rem;
    border-radius: 100px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.sg-navbar.scrolled .nav-inner {
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.08), rgba(15, 15, 15, 0.02)) !important;
    backdrop-filter: blur(32px) saturate(200%) !important;
    -webkit-backdrop-filter: blur(32px) saturate(200%) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 0.05) !important;
    padding: 0.5rem 1.5rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--sg-text);
}

.nav-leaf {
    color: var(--sg-accent);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-brand:hover .nav-leaf { transform: rotate(12deg); }

.nav-brand-text {
    font-family: var(--sg-font-display);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-link:hover { color: var(--sg-text); }

.nav-actions {
    display: none;
    align-items: center;
    gap: 12px;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.5rem;
    background: var(--sg-text);
    color: var(--sg-black);
    font-size: 0.88rem;
    font-weight: 600;
    font-family: var(--sg-font-display);
    letter-spacing: -0.01em;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.2s;
}

.nav-cta:hover { opacity: 0.9; }

.nav-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: var(--sg-text);
    font-size: 1.3rem;
    cursor: pointer;
    padding: 8px;
}

/* Mobile menu */
.mobile-menu {
    position: fixed;
    top: 70px; left: 0; right: 0;
    z-index: 49;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 1rem 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0;
    transform: translateY(-120%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-link {
    display: block;
    padding: 0.9rem 0;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: color 0.2s;
}

.mobile-link:hover { color: #fff; }

.mobile-cta {
    margin-top: 0.5rem;
    color: var(--sg-accent) !important;
    border: none;
    font-weight: 700;
}

@media (min-width: 768px) {
    .nav-links, .nav-actions { display: flex; }
    .nav-mobile-toggle { display: none; }
}

/* ═══════════ HERO ═══════════ */
.hero-section {
    position: relative;
    min-height: 100dvh;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 6rem 0 4rem;
    background: #000;
    z-index: 20;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-bg-img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-gradient-left {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #000 0%, rgba(0,0,0,0.8) 40%, transparent 100%);
}

.hero-gradient-bottom {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 12rem;
    background: linear-gradient(to top, var(--sg-black) 0%, transparent 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 20;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-text {
    max-width: 680px;
}

.hero-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-title {
    font-family: var(--sg-font-display);
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 0.92;
    color: #fff;
    margin-bottom: 2rem;
}

.hero-italic {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    color: rgba(255,255,255,0.7);
    letter-spacing: -0.03em;
}

.hero-desc {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    max-width: 40ch;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

/* ── BUTTONS ── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 2rem;
    height: 3.5rem;
    background: #fff;
    color: #000;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--sg-font-display);
    letter-spacing: -0.01em;
    border-radius: 100px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    overflow: hidden;
    position: relative;
}

.btn-primary:hover {
    background: rgba(255,255,255,0.9);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 2rem;
    height: 3.5rem;
    background: transparent;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    font-family: var(--sg-font-display);
    border-radius: 100px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-ghost:hover { background: rgba(255,255,255,0.1); }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-outline i {
    transition: transform 0.2s;
}

.btn-outline:hover i { transform: translateX(4px); }

/* ═══════════ FEATURES ═══════════ */
.features-section {
    padding: 6rem 0 8rem;
    background: var(--sg-black);
    position: relative;
    z-index: 10;
}

.section-header {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
}

.section-title {
    font-family: var(--sg-font-display);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
    color: var(--sg-text);
}

.title-accent {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    color: rgba(255,255,255,0.6);
}

.section-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.5);
    max-width: 40ch;
    line-height: 1.6;
}

.section-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--sg-text);
    text-decoration: none;
    transition: color 0.2s;
}

.link-arrow {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-link:hover .link-arrow {
    background: var(--sg-accent);
    transform: translate(4px, -4px);
}

@media (min-width: 768px) {
    .section-header {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
}

/* Feature cards grid (Floria staggered) */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
    .feature-card-wrapper {
        margin-top: var(--mt, 0);
    }
}

.feature-card {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.card-img-wrap {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 2rem;
    margin-bottom: 1.5rem;
}

.aspect-3-4 { aspect-ratio: 3 / 4; }
.aspect-square { aspect-ratio: 1 / 1; }
.aspect-4-5 { aspect-ratio: 4 / 5; }

.card-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover .card-img {
    transform: scale(1.1);
}

.card-img-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.05);
    transition: background 0.5s;
    pointer-events: none;
}

.feature-card:hover .card-img-overlay {
    background: transparent;
}

/* Quick action button (slides up on hover) */
.card-quick-action {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-quick-action span {
    display: inline-flex;
    padding: 0.7rem 1.5rem;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #111;
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: 100px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.feature-card:hover .card-quick-action {
    transform: translateY(0);
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.card-name {
    font-family: var(--sg-font-display);
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--sg-text);
    transition: color 0.2s;
}

.feature-card:hover .card-name {
    color: var(--sg-accent);
}

.card-price {
    font-size: 1rem;
    color: rgba(255,255,255,0.45);
}

/* ═══════════ PROCESS ═══════════ */
.process-section {
    padding: 6rem 0 10rem;
    background: #0a0a0a;
    color: #fafafa;
    position: relative;
    overflow: hidden;
    z-index: 20;
}

.process-bg-orb {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 40vw; height: 40vw;
    max-width: 600px; max-height: 600px;
    border-radius: 50%;
    background: rgba(232, 49, 106, 0.04);
    filter: blur(120px);
    pointer-events: none;
}

.process-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .process-layout {
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
    }
}

.process-sticky {
    position: relative;
}

@media (min-width: 1024px) {
    .process-sticky {
        position: sticky;
        top: 10rem;
        align-self: start;
    }
}

.process-title {
    font-family: var(--sg-font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.05em;
    margin-bottom: 1.5rem;
    line-height: 1.05;
}

.process-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.4);
    max-width: 40ch;
    line-height: 1.6;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.process-step {
    position: relative;
    padding-left: 2rem;
    border-left: 1px solid rgba(255,255,255,0.1);
}

@media (min-width: 768px) {
    .process-step { padding-left: 4rem; }
    .step-offset { margin-left: 6rem; }
}

.step-marker {
    position: absolute;
    top: 0;
    left: -18px;
}

@media (min-width: 768px) {
    .step-marker { left: -24px; }
}

.step-number {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: #171717;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--sg-font-mono);
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

@media (min-width: 768px) {
    .step-number { width: 48px; height: 48px; font-size: 0.88rem; }
}

.step-title {
    font-family: var(--sg-font-display);
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 500;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 1rem;
}

.step-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.65;
    max-width: 45ch;
}

/* ═══════════ SHOWCASE / BENTO ═══════════ */
.showcase-section {
    padding: 6rem 0;
    background: var(--sg-black);
    position: relative;
}

.showcase-header {
    margin-bottom: 4rem;
}

.bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    auto-rows: 300px;
}

@media (min-width: 768px) {
    .bento-grid {
        grid-template-columns: repeat(12, 1fr);
        gap: 1.5rem;
        auto-rows: 400px;
    }
    .bento-wide { grid-column: span 8; }
    .bento-item:not(.bento-wide) { grid-column: span 4; }
}

.bento-item {
    position: relative;
    overflow: hidden;
    border-radius: 2.5rem;
    cursor: pointer;
}

.bento-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-item:hover .bento-img { transform: scale(1.1); }

.bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.1) 40%, transparent 100%);
    opacity: 0.8;
    transition: opacity 0.5s;
    pointer-events: none;
}

.bento-item:hover .bento-overlay { opacity: 1; }

.bento-ring {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1);
    pointer-events: none;
}

.bento-content {
    position: absolute;
    bottom: 0; left: 0;
    padding: 2rem 2.5rem;
    width: 100%;
}

.bento-title {
    font-family: var(--sg-font-display);
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 500;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 0.5rem;
    transform: translateY(16px);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-item:hover .bento-title { transform: translateY(0); }

.bento-desc {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.65);
    opacity: 0;
    transform: translateY(16px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
    line-height: 1.5;
}

.bento-item:hover .bento-desc {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════ TESTIMONIALS ═══════════ */
.testimonials-section {
    padding: 8rem 0 12rem;
    background: linear-gradient(to bottom, #0a0a0a, #060606);
    position: relative;
    overflow: hidden;
}

.testimonials-orb {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; height: 800px;
    border-radius: 50%;
    background: rgba(232, 49, 106, 0.03);
    filter: blur(150px);
    pointer-events: none;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-serif {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-style: italic;
    font-weight: 400;
    color: #fff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(12, 1fr);
        gap: 1.5rem;
    }
    .tmc-1 { grid-column: span 4; margin-top: 3rem; }
    .tmc-2 { grid-column: span 5; margin-top: -2rem; }
    .tmc-3 { grid-column: span 5; grid-column-start: 2; }
}

.testimonial-card {
    position: relative;
    padding: 2rem 2.5rem;
    border-radius: 1.5rem;
    background: rgba(24, 24, 27, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s;
}

.testimonial-card:hover {
    border-color: rgba(255,255,255,0.1);
    background: rgba(24, 24, 27, 0.5);
}

.quote-icon {
    position: absolute;
    top: 1.5rem; left: 1.5rem;
    color: rgba(255,255,255,0.03);
    transition: color 0.3s;
}

.testimonial-card:hover .quote-icon { color: rgba(255,255,255,0.08); }

.stars {
    display: flex;
    gap: 3px;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.35);
    font-size: 0.85rem;
    position: relative;
    z-index: 2;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.65;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    position: relative;
    z-index: 2;
}

.author-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #333, #444);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
    flex-shrink: 0;
}

.author-name {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: #fff;
}

.author-role {
    display: block;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 2px;
}

/* ═══════════ MANIFESTO ═══════════ */
.manifesto-section {
    padding: 8rem 0 12rem;
    background: linear-gradient(to bottom, #060606, #000);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.manifesto-bg {
    position: absolute;
    inset: 8rem 0 0 0;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.manifesto-bg-img {
    width: 70%;
    max-width: 900px;
    object-fit: contain;
    opacity: 0.4;
    mix-blend-mode: screen;
}

.manifesto-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--sg-black) 20%, rgba(6,6,10,0.8) 60%, transparent 100%);
    pointer-events: none;
}

.manifesto-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.manifesto-icon {
    color: rgba(232, 49, 106, 0.25);
    margin-bottom: 2rem;
}

.manifesto-title {
    font-family: var(--sg-font-display);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 1.15;
    max-width: 20ch;
    margin-bottom: 2rem;
    color: #fff;
}

.manifesto-desc {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.5);
    max-width: 45ch;
    line-height: 1.7;
    text-wrap: balance;
}

/* ═══════════ CTA ═══════════ */
.cta-section {
    padding: 3rem 0 6rem;
    background: linear-gradient(to bottom, #000, var(--sg-black));
}

.cta-card {
    width: 100%;
    border-radius: 3rem;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    box-shadow: 0 16px 64px rgba(0,0,0,0.3);
}

@media (min-width: 768px) {
    .cta-card { padding: 6rem 4rem; }
}

.cta-bg-img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.cta-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 20%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0.2) 100%);
    z-index: 0;
    pointer-events: none;
}

.cta-title {
    font-family: var(--sg-font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #fff;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 10;
}

.cta-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    max-width: 35ch;
    margin-bottom: 3rem;
    text-wrap: balance;
    position: relative;
    z-index: 10;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
}

/* ═══════════ FOOTER ═══════════ */
.sg-footer {
    background: #0a0a0a;
    padding: 8rem 0 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
}

.footer-watermark {
    position: absolute;
    top: 0; left: 0; right: 0;
    display: flex;
    justify-content: center;
    padding-top: 2.5rem;
    font-family: var(--sg-font-display);
    font-size: 22vw;
    font-weight: 800;
    letter-spacing: -0.06em;
    color: #fff;
    opacity: 0.015;
    pointer-events: none;
    white-space: nowrap;
    line-height: 1;
    user-select: none;
}

.footer-inner {
    position: relative;
    z-index: 10;
}

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

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 2rem;
    }
}

.footer-brand-title {
    font-family: var(--sg-font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.05em;
    color: #fff;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.footer-brand-tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.3rem;
    color: var(--sg-accent);
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.footer-brand-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.6;
    max-width: 35ch;
}

.footer-col-title {
    font-size: 0.92rem;
    font-weight: 600;
    color: #fafafa;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-dot {
    display: inline-block;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--sg-accent);
}

.footer-link-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-link-list a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    font-size: 0.92rem;
    transition: color 0.2s;
}

.footer-link-list a:hover { color: #fff; }

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.35);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

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

.footer-social {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-social:hover { color: rgba(255,255,255,0.8); }

/* ═══════════ LIGHT MODE OVERRIDES ═══════════ */
[data-theme="light"] body { background: #FAFAF8; color: #111; }
[data-theme="light"] .hero-section { background: #FAFAF8; }
[data-theme="light"] .hero-title { color: #111; }
[data-theme="light"] .hero-italic { color: rgba(0,0,0,0.6); }
[data-theme="light"] .hero-desc { color: rgba(0,0,0,0.7); }
[data-theme="light"] .hero-badge {
    background: rgba(0,0,0,0.05);
    border-color: rgba(0,0,0,0.1);
    color: #111;
}
[data-theme="light"] .btn-primary { background: #111; color: #fff; }
[data-theme="light"] .btn-primary:hover { background: rgba(0,0,0,0.8); }
[data-theme="light"] .btn-ghost { color: #111; }
[data-theme="light"] .btn-ghost:hover { background: rgba(0,0,0,0.05); }
[data-theme="light"] .btn-outline { color: #111; }

[data-theme="light"] .features-section { background: #FAFAF8; }
[data-theme="light"] .section-title { color: #111; }
[data-theme="light"] .section-desc { color: rgba(0,0,0,0.5); }
[data-theme="light"] .title-accent { color: rgba(0,0,0,0.4); }
[data-theme="light"] .card-name { color: #111; }
[data-theme="light"] .card-price { color: rgba(0,0,0,0.4); }
[data-theme="light"] .showcase-section { background: #FAFAF8; }
[data-theme="light"] .bento-ring { box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08); }
[data-theme="light"] .sg-footer { background: #FAFAF8; border-top-color: rgba(0,0,0,0.06); }
[data-theme="light"] .footer-brand-title { color: #111; }
[data-theme="light"] .footer-brand-desc { color: rgba(0,0,0,0.5); }
[data-theme="light"] .footer-col-title { color: #111; }
[data-theme="light"] .footer-link-list a { color: rgba(0,0,0,0.5); }
[data-theme="light"] .footer-link-list a:hover { color: #111; }
[data-theme="light"] .footer-bottom { border-top-color: rgba(0,0,0,0.08); color: rgba(0,0,0,0.4); }
[data-theme="light"] .footer-social { color: rgba(0,0,0,0.4); }
[data-theme="light"] .footer-social:hover { color: #111; }

[data-theme="light"] .sg-navbar.scrolled .nav-inner {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)) !important;
    backdrop-filter: blur(32px) saturate(200%) !important;
    -webkit-backdrop-filter: blur(32px) saturate(200%) !important;
    border: 1px solid rgba(255, 255, 255, 0.6) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.02), inset 0 0 0 1px rgba(255, 255, 255, 0.3) !important;
}
[data-theme="light"] .nav-brand-text { color: #111; }
[data-theme="light"] .nav-link { color: rgba(0,0,0,0.5); }
[data-theme="light"] .nav-link:hover { color: #111; }
[data-theme="light"] .nav-cta { background: #111; color: #fff; }
[data-theme="light"] .nav-leaf { color: var(--sg-accent); }

/* Left Taskbar & Mobile Bar */
.left-taskbar {
    position: fixed;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    width: 68px;
    height: auto;
    display: none;
}

.taskbar-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.08), rgba(15, 15, 15, 0.02)) !important;
    backdrop-filter: blur(32px) saturate(200%) !important;
    -webkit-backdrop-filter: blur(32px) saturate(200%) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 100px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.15), inset 0 0 0 1px rgba(255, 255, 255, 0.05) !important;
    gap: 1.5rem;
}

[data-theme="light"] .taskbar-inner {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)) !important;
    backdrop-filter: blur(32px) saturate(200%) !important;
    -webkit-backdrop-filter: blur(32px) saturate(200%) !important;
    border: 1px solid rgba(255, 255, 255, 0.6) !important;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.02), inset 0 0 0 1px rgba(255, 255, 255, 0.3) !important;
}

.taskbar-brand {
    font-size: 1.2rem;
    color: var(--sg-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: sg-spin 12s linear infinite;
}

.taskbar-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.taskbar-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    border: 1px solid transparent;
}

[data-theme="light"] .taskbar-link {
    color: rgba(0, 0, 0, 0.5);
}

.taskbar-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: scale(1.08);
}

[data-theme="light"] .taskbar-link:hover {
    color: #000;
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.1);
}

.taskbar-link:hover::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    border: 1px solid var(--sg-accent);
    opacity: 0.4;
}

/* Tooltip style */
.tooltip-text {
    position: absolute;
    left: 80px;
    top: 50%;
    transform: translateY(-50%) translateX(-8px);
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

[data-theme="light"] .tooltip-text {
    background: rgba(250, 250, 248, 0.98);
    border-color: rgba(0, 0, 0, 0.08);
    color: #111;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.taskbar-link:hover .tooltip-text {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.taskbar-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background: var(--sg-accent);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--sg-accent-glow);
    animation: ds-pulse 2s infinite ease-in-out;
}

/* Mobile Bottom Taskbar */
.mobile-bottom-bar {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99;
    background: rgba(20, 20, 20, 0.4) !important;
    backdrop-filter: blur(24px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
    border: 1px solid rgba(255,255,255,0.09) !important;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2) !important;
    transition: all 0.3s;
}

[data-theme="light"] .mobile-bottom-bar {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)) !important;
    backdrop-filter: blur(32px) saturate(200%) !important;
    -webkit-backdrop-filter: blur(32px) saturate(200%) !important;
    border: 1px solid rgba(255, 255, 255, 0.6) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.02), inset 0 0 0 1px rgba(255, 255, 255, 0.3) !important;
}

.mobile-bar-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 1.15rem;
    transition: all 0.25s;
    border: 1px solid transparent;
}

[data-theme="light"] .mobile-bar-link {
    color: rgba(0, 0, 0, 0.5);
}

.mobile-bar-link:hover, .mobile-bar-link:active {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
}

[data-theme="light"] .mobile-bar-link:hover, [data-theme="light"] .mobile-bar-link:active {
    color: #000;
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.08);
}

@media (min-width: 1024px) {
    .left-taskbar { display: block; }
    .mobile-bottom-bar { display: none; }
}

@media (max-width: 1023px) {
    .left-taskbar { display: none; }
    .mobile-bottom-bar { display: flex; }
}

/* ═══════════ CUSTOM LIGHT MODE CONTRAST OVERRIDES ═══════════ */
[data-theme="light"] .process-section {
    background: #FAFAF8;
    color: #111;
}
[data-theme="light"] .process-desc {
    color: rgba(0, 0, 0, 0.6);
}
[data-theme="light"] .process-step {
    border-left-color: rgba(0, 0, 0, 0.08);
}
[data-theme="light"] .step-number {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.08);
    color: rgba(0, 0, 0, 0.5);
}
[data-theme="light"] .step-title {
    color: #111;
}
[data-theme="light"] .step-desc {
    color: rgba(0, 0, 0, 0.6);
}
[data-theme="light"] .testimonials-section {
    background: #FAFAF8;
}
[data-theme="light"] .testimonials-serif {
    color: #111;
}
[data-theme="light"] .testimonial-card {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.06);
}
[data-theme="light"] .testimonial-card:hover {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.10);
}
[data-theme="light"] .quote-icon {
    color: rgba(0, 0, 0, 0.02);
}
[data-theme="light"] .testimonial-card:hover .quote-icon {
    color: rgba(0, 0, 0, 0.05);
}
[data-theme="light"] .testimonial-text {
    color: rgba(0, 0, 0, 0.85);
}
[data-theme="light"] .author-avatar {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.08);
    color: #111;
}
[data-theme="light"] .author-name {
    color: #111;
}
[data-theme="light"] .author-role {
    color: rgba(0, 0, 0, 0.5);
}
[data-theme="light"] .manifesto-section {
    background: #FAFAF8;
}
[data-theme="light"] .manifesto-bg-img {
    mix-blend-mode: multiply;
    opacity: 0.15;
}
[data-theme="light"] .manifesto-bg-overlay {
    background: linear-gradient(to top, #FAFAF8 20%, rgba(250, 250, 248, 0.8) 60%, transparent 100%);
}
[data-theme="light"] .manifesto-title {
    color: #111;
}
[data-theme="light"] .manifesto-desc {
    color: rgba(0, 0, 0, 0.65);
}
[data-theme="light"] .cta-section {
    background: #FAFAF8;
}
[data-theme="light"] .cta-card {
    background: #FAFAF8;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 16px 64px rgba(0,0,0,0.05);
}
[data-theme="light"] .cta-bg-img {
    opacity: 0.15;
}
[data-theme="light"] .cta-bg-overlay {
    background: linear-gradient(to top, rgba(250, 250, 248, 0.9) 20%, rgba(250, 250, 248, 0.5) 60%, rgba(250, 250, 248, 0.2) 100%);
}
[data-theme="light"] .cta-title {
    color: #111;
}
[data-theme="light"] .cta-desc {
    color: rgba(0, 0, 0, 0.65);
}
[data-theme="light"] .cta-actions .btn-outline {
    color: #111;
    border-color: rgba(0, 0, 0, 0.15);
}
[data-theme="light"] .cta-actions .btn-outline:hover {
    background: rgba(0, 0, 0, 0.04);
}
[data-theme="light"] .sg-footer {
    background: #FAFAF8;
}

/* ============================================================
   StyleGenie About Page — Y2K Blob Poster Cohesive Override
   ============================================================ */

/* Force global page background to sage green */
body {
    background: var(--c-bg, #AACF90) !important;
    color: var(--c-ink, #0D0D0D) !important;
}

/* Nav wrapper integration */
.sg-navbar {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-bottom: 1.5px solid rgba(0, 0, 0, 0.08) !important;
}
.nav-brand-text {
    color: var(--c-ink, #0D0D0D) !important;
}
.nav-link {
    color: var(--c-ink-2, #444) !important;
}
.nav-link:hover {
    color: var(--c-pink, #FF4FA3) !important;
}
.nav-cta {
    background: var(--c-ink, #0D0D0D) !important;
    color: #fff !important;
}
.nav-cta:hover {
    background: var(--c-pink, #FF4FA3) !important;
}

/* Left Taskbar integration */
.left-taskbar {
    background: rgba(255, 255, 255, 0.7) !important;
    border-right: 1.5px solid rgba(0, 0, 0, 0.08) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
}
.taskbar-link {
    color: var(--c-ink-2, #444) !important;
}
.taskbar-link:hover, .taskbar-link.active {
    color: var(--c-pink, #FF4FA3) !important;
    background: rgba(255, 79, 163, 0.08) !important;
}

/* Hero Section */
.hero-section {
    background: transparent !important;
}
.hero-title {
    color: var(--c-ink, #0D0D0D) !important;
}
.hero-italic {
    color: var(--c-pink, #FF4FA3) !important;
    font-family: var(--f-display, sans-serif) !important;
    font-style: italic !important;
}
.hero-desc {
    color: var(--c-ink-2, #444) !important;
}
.hero-badge {
    background: rgba(255, 255, 255, 0.6) !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
    color: var(--c-ink-2, #444) !important;
}

/* General Sections */
.features-section, .process-section, .showcase-section, .testimonials-section, .manifesto-section, .cta-section, .team-section, .sg-footer {
    background: transparent !important;
}
.section-title {
    color: var(--c-ink, #0D0D0D) !important;
}
.title-accent {
    color: var(--c-pink, #FF4FA3) !important;
    font-style: italic;
}
.section-desc {
    color: var(--c-ink-2, #444) !important;
}

/* Emulated Double Bezel Cards */
.feature-card, .process-step, .bento-item, .testimonial-card, .team-card, .cta-card {
    background: var(--c-white, #fff) !important;
    border-radius: 22px !important;
    border: 1px solid rgba(255,255,255,0.85) !important;
    box-shadow: 
        0 0 0 5px rgba(0,0,0,0.04),
        0 10px 30px rgba(0,0,0,0.05) !important;
    position: relative;
    transition: all 0.35s var(--ease-spring, cubic-bezier(0.34, 1.56, 0.64, 1)) !important;
}
.feature-card:hover, .process-step:hover, .bento-item:hover, .testimonial-card:hover, .team-card:hover, .cta-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 
        0 0 0 5px rgba(255, 79, 163, 0.15),
        0 20px 40px rgba(255, 79, 163, 0.08) !important;
    border-color: rgba(255, 79, 163, 0.3) !important;
}

/* Specific Card elements overrides */
.card-name, .step-title, .bento-title, .author-name, .member-name, .cta-title, .manifesto-title {
    color: var(--c-ink, #0D0D0D) !important;
}
.card-price, .step-desc, .bento-desc, .testimonial-text, .author-role, .member-role, .cta-desc, .manifesto-desc {
    color: var(--c-ink-2, #444) !important;
}
.step-number {
    background: rgba(255, 79, 163, 0.1) !important;
    border-color: rgba(255, 79, 163, 0.2) !important;
    color: var(--c-pink, #FF4FA3) !important;
}

/* Buttons */
.btn-primary, .btn-secondary {
    background: var(--c-ink, #0D0D0D) !important;
    color: #fff !important;
    border-radius: 9999px !important;
    padding: 12px 28px !important;
    transition: all 0.22s var(--ease-out, cubic-bezier(0.16, 1, 0.3, 1)) !important;
}
.btn-primary:hover, .btn-secondary:hover {
    background: var(--c-pink, #FF4FA3) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 79, 163, 0.15) !important;
}
.btn-ghost, .btn-outline {
    background: rgba(255,255,255,0.7) !important;
    border: 1.5px solid rgba(0,0,0,0.12) !important;
    color: var(--c-ink, #0D0D0D) !important;
    border-radius: 9999px !important;
    padding: 12px 28px !important;
    transition: all 0.22s var(--ease-out) !important;
}
.btn-ghost:hover, .btn-outline:hover {
    background: var(--c-white, #fff) !important;
    border-color: rgba(0,0,0,0.20) !important;
}

/* Showcase grid adjustments */
.showcase-header .section-title {
    color: var(--c-ink, #0D0D0D) !important;
}
.showcase-section {
    background: transparent !important;
}
