:root {
    --bg: #DABF9A;
    --accent: #66462D;
    --text: #2C2520;
    --card: rgba(255, 255, 255, 0.4);
    --shadow-paper: 0 4px 12px rgba(0,0,0,0.03), 0 10px 25px rgba(102, 70, 45, 0.08);
    --shadow-deep: 0 20px 50px rgba(102, 70, 45, 0.12);
    --radius: 32px;
    --gold: #BC9D78;
    --wax: #A64B3B;
    --amber: #C8832A;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--bg);
    font-family: 'Outfit', sans-serif;
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
    max-width: 100vw;
}

.felt-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url("https://www.transparenttextures.com/patterns/felt.png");
    opacity: 0.12;
    pointer-events: none;
    z-index: 9999;
}

/* Base Constraints */
.section {
    padding: clamp(48px, 8vw, 100px) clamp(20px, 6vw, 80px);
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

img, svg, div {
    max-width: 100%;
}

/* Navigation */
.glass-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 clamp(20px, 6vw, 80px);
    height: 64px;
    background: rgba(218,191,154,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 1000;
    border-bottom: 1px solid transparent;
    transition: box-shadow 0.3s ease;
}

.glass-nav.scrolled {
    box-shadow: 0 8px 40px rgba(102,70,45,0.1);
    border-bottom: 1px solid rgba(102,70,45,0.1);
}

.nav-left .brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--accent);
    min-height: 44px;
}


.nav-official-logo {
    height: 32px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(102, 70, 45, 0.15));
}

.brand span {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: clamp(1px, 0.5vw, 3px);
    text-transform: uppercase;
}

.nav-center {
    display: flex;
    align-items: center;
    gap: clamp(16px, 3vw, 32px);
}

.nav-link {
    letter-spacing: 8px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: clamp(1px, 0.5vw, 3px);
    color: var(--text);
    text-decoration: none;
    opacity: 0.5;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.nav-link:hover, .nav-link.active {
    opacity: 1;
}

.nav-dot {
    opacity: 0.3;
}

.nav-right {
    display: flex;
    align-items: center;
}

.btn-connect {
    position: relative;
    overflow: hidden;
    background: #2C2520;
    color: #DABF9A;
    border-radius: 50px;
    padding: 0 28px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: clamp(1px, 0.5vw, 3px);
    text-transform: uppercase;
    text-decoration: none;
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

.btn-connect:hover {
    box-shadow: 0 8px 32px rgba(44,37,32,0.3);
    background: #000;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--accent);
    transition: 0.3s ease;
}

.mobile-menu {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(218,191,154,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.2,0.8,0.2,1);
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu a {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -1px;
    text-decoration: none;
    color: var(--accent);
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}


/* HERO */
.hero {
    min-height: 100vh;
    padding: clamp(100px, 15vw, 140px) clamp(20px, 6vw, 80px) clamp(48px, 8vw, 100px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-left {
    width: 55%;
    position: relative;
    z-index: 10;
}

.hero-eyebrow {
    font-size: clamp(8px, 1.5vw, 10px);
    font-weight: 800;
    letter-spacing: clamp(2px, 1vw, 6px);
    opacity: 0.4;
    text-transform: uppercase;
    display: block;
    margin-bottom: clamp(16px, 3vw, 24px);
}

.hero-headline {
    font-size: clamp(36px, 8vw, 80px);
    letter-spacing: clamp(-4px, -0.04em, -2px);
    line-height: 1;
    color: var(--accent);
    margin-bottom: clamp(24px, 4vw, 32px);
}

.hero-headline span {
    display: block;
}

.underline-wrapper {
    position: relative;
    display: inline-block;
}

.underline-svg {
    position: absolute;
    bottom: -15%;
    left: 0;
    width: 100%;
    height: auto;
    z-index: -1;
    overflow: visible;
}

@keyframes draw-underline {
    to { stroke-dashoffset: 0; }
}

/* Legal & Document Layouts */
.legal-page-body {
    background-color: #f4efea;
}

.legal-container {
    max-width: 960px;
    margin: 160px auto 120px;
    background: #fdfaf5;
    padding: 100px 10%;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05), 0 20px 60px rgba(102, 70, 45, 0.1);
    position: relative;
    border: 1px solid rgba(102, 70, 45, 0.05);
    overflow: hidden;
    z-index: 10;
}

.legal-container::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url("https://www.transparenttextures.com/patterns/handmade-paper.png");
    opacity: 0.35;
    pointer-events: none;
}

.legal-container .section-title {
    text-align: left;
    margin-bottom: 60px;
    font-size: clamp(48px, 8vw, 80px);
    line-height: 0.9;
    letter-spacing: -4px;
    color: var(--text);
}

.legal-container .label {
    background: var(--accent);
    color: var(--bg);
    padding: 4px 10px;
    display: inline-block;
    margin-bottom: 24px;
    border-radius: 3px;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.legal-notice-box {
    background: rgba(166, 75, 59, 0.02);
    border: 1px solid rgba(166, 75, 59, 0.1);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 80px;
    position: relative;
    border-left: 8px solid var(--wax);
    backdrop-filter: blur(10px);
    box-shadow: inset 0 0 40px rgba(166, 75, 59, 0.02);
}

.legal-notice-box h2 {
    color: var(--wax);
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-weight: 800;
}

.legal-notice-box p {
    font-size: 15px;
    line-height: 1.7;
}

/* Tactile Accordion */
.legal-faq details {
    border-bottom: 1px solid rgba(102, 70, 45, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.legal-faq summary {
    padding: 36px 0;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.8px;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text);
    transition: color 0.3s ease;
}

.legal-faq summary::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    color: var(--gold);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.legal-faq details[open] summary::after {
    transform: rotate(45deg);
    color: var(--wax);
}

.legal-faq details:hover summary {
    color: var(--accent);
}

.legal-faq .faq-content {
    padding: 0 0 40px 0;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
    opacity: 0.8;
}

.legal-faq .faq-content strong {
    color: var(--text);
    font-weight: 800;
}


.hero-subtitle {
    font-size: clamp(14px, 2vw, 16px);
    opacity: 0.78;
    max-width: 440px;
    line-height: 1.75;
    margin-bottom: clamp(24px, 4vw, 32px);
}

.typewriter-container {
    margin-bottom: clamp(24px, 4vw, 40px);
    min-height: 1.5em;
}

.typewriter-text {
    font-size: clamp(8px, 1.5vw, 10px);
    letter-spacing: clamp(1px, 0.3vw, 4px);
    text-transform: uppercase;
    font-weight: 800;
    opacity: 0.45;
}

.hero-cta-group {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.hero-pill {
    position: relative;
    overflow: hidden;
    height: 52px;
    min-width: 200px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: clamp(1px, 0.5vw, 2px);
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.primary-pill {
    background: #2C2520;
    color: #DABF9A;
}

.ghost-pill {
    background: transparent;
    border: 1px solid rgba(44,37,32,0.25);
    color: #2C2520;
}

.hero-right {
    width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 500px;
}

.polaroid-stack {
    filter: drop-shadow(0 32px 48px rgba(44,37,32,0.22));
    position: relative;
    width: 280px;
    height: 360px;
    perspective: 1000px;
}

.polaroid {
    position: absolute;
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 16px;
    padding: 12px 12px 64px 12px;
    box-shadow: 0 24px 60px rgba(44,37,32,0.18);
    transition: transform 0.4s cubic-bezier(0.2,0.8,0.2,1);
    transform-origin: bottom center;
}

.p-1 { transform: rotate(-10deg) translateX(-15px); z-index: 1; }
.p-2 { transform: rotate(-4deg) translateX(-5px); z-index: 2; }
.p-3 { transform: rotate(2deg) translateX(5px); z-index: 3; }
.p-4 { transform: rotate(8deg) translateX(15px); z-index: 4; }

.polaroid-stack:hover .p-1 { transform: rotate(-20deg) translateX(-60px) translateY(-5px); }
.polaroid-stack:hover .p-2 { transform: rotate(-8deg) translateX(-25px) translateY(-15px); }
.polaroid-stack:hover .p-3 { transform: rotate(4deg) translateX(25px) translateY(-15px); }
.polaroid-stack:hover .p-4 { transform: rotate(16deg) translateX(60px) translateY(-5px); }

.p-image {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.p-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    mix-blend-mode: multiply;
    opacity: 0.9;
}

.grad-zephyr { background: radial-gradient(circle at 50% 100%, rgba(184,164,133,0.25) 0%, rgba(102,70,45,0.02) 100%); }
.grad-stacy { background: radial-gradient(circle at 50% 100%, rgba(196,175,144,0.25) 0%, rgba(102,70,45,0.02) 100%); }
.grad-david { background: radial-gradient(circle at 50% 100%, rgba(168,144,112,0.25) 0%, rgba(102,70,45,0.02) 100%); }
.grad-astraea { background: radial-gradient(circle at 50% 100%, rgba(188,170,136,0.25) 0%, rgba(102,70,45,0.02) 100%); }

.p-initial {
    font-size: clamp(40px, 8vw, 72px);
    font-weight: 800;
    color: rgba(255,255,255,0.22);
}

.p-bottom {
    position: absolute;
    bottom: 12px;
    left: 16px;
    right: 16px;
}

.p-name { display: block; font-size: 14px; font-weight: 700; }
.p-role { display: block; font-size: 9px; letter-spacing: 2px; text-transform: uppercase; opacity: 0.5; }
.p-id { position: absolute; bottom: 0; right: 0; font-size: 7px; font-weight: 800; opacity: 0.2; }


/* MASTERPIECE SECTION 1: MISSION */
.mission-masterpiece {
    padding: clamp(60px,8vw,100px) clamp(20px,6vw,72px);
    position: relative;
    overflow: hidden;
    max-width: 100vw;
}

.mission-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(80px,18vw,220px);
    font-weight: 800;
    color: rgba(102,70,45,0.03);
    letter-spacing: -6px;
    pointer-events: none;
    z-index: 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.mission-number {
    letter-spacing: -8px;
    font-size: clamp(72px,12vw,140px);
    font-weight: 800;
    color: rgba(102,70,45,0.07);
    line-height: 0.9;
    letter-spacing: -4px;
}

.mission-right {
    position: relative;
    padding-left: 36px;
}

.mission-eyebrow-row {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.mission-eyebrow {
    font-size: 9px;
    letter-spacing: 5px;
    opacity: 0.5;
    color: #66462D;
    text-transform: uppercase;
    white-space: nowrap;
}

.mission-rule {
    flex: 1;
    height: 1px;
    background: rgba(102,70,45,0.2);
    margin-left: 16px;
}

.mission-text {
    font-size: clamp(16px,2.2vw,21px);
    font-weight: 700;
    line-height: 1.65;
}

.highlight-nonclinical {
    background: rgba(102,70,45,0.1);
    border: 1px solid rgba(102,70,45,0.2);
    font-weight: 800;
    border-radius: 5px;
    padding: 2px 10px;
    font-style: italic;
}

.mission-doc-ref {
    font-size: 8px;
    letter-spacing: 3px;
    opacity: 0.2;
    color: #66462D;
    margin-top: 28px;
}


/* MASTERPIECE SECTION 2: COMPANIONS GRID */
.companions-masterpiece {
    max-width: 1400px;
    margin: 0 auto;
}

.comp-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 32px;
}

.comp-header-left {
    text-align: left;
}

.comp-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    opacity: 0.5;
    text-transform: uppercase;
    color: #66462D;
    display: block;
    margin-bottom: 8px;
}

.comp-title {
    font-size: clamp(24px,4vw,36px);
    font-weight: 800;
    letter-spacing: -1px;
}

.comp-pill {
    background: rgba(102,70,45,0.08);
    border: 1px solid rgba(102,70,45,0.15);
    border-radius: 40px;
    padding: 6px 16px;
    font-size: 9px;
    letter-spacing: 2px;
    color: #66462D;
    font-weight: 800;
}

.comp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.comp-card {
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(102,70,45,0.05);
    display: flex;
    flex-direction: column;
}

.brass-fastener, .comp-name-overlay {
    display: none !important;
}

.comp-image-frame {
    height: 240px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-top: 20px;
}

.comp-image-frame img {
    height: 90%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 12px 24px rgba(102,70,45,0.15));
    transition: transform 0.6s cubic-bezier(0.2,0.8,0.2,1);
    display: block;
}

.comp-initial { display: none; }

.comp-body {
    padding: 24px 20px 48px;
    text-align: center;
    flex: 1;
}

.comp-role-badge {
    background: transparent;
    border: 1px solid rgba(102,70,45,0.15);
    border-radius: 40px;
    font-size: 8px;
    letter-spacing: 2px;
    color: #66462D;
    display: inline-block;
    padding: 6px 14px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.comp-name {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
    color: #2C2520;
}

.comp-desc {
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.7;
    color: #2C2520;
}

.comp-hover-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 48px;
    background: #66462D;
    color: #DABF9A;
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 800;
    text-transform: uppercase;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.2,0.8,0.2,1);
}

.comp-stamp {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 7px;
    opacity: 0.3;
    color: #66462D;
    font-weight: 800;
    letter-spacing: 1px;
    border: none;
    padding: 0;
}

@media (hover: hover) {
    .comp-card {
        transition: transform 0.4s cubic-bezier(0.2,0.8,0.2,1), box-shadow 0.4s cubic-bezier(0.2,0.8,0.2,1);
    }
    .comp-card:hover {
        transform: translateY(-7px);
        box-shadow: 0 28px 60px rgba(44,37,32,0.13);
    }
    .comp-card:hover .comp-hover-cta {
        transform: translateY(0);
    }
    .comp-card:hover img {
        transform: scale(1.08) translateY(-4px);
    }
}

/* MASTERPIECE SECTION 3: L1-L3 CLASSIFICATION */
.l1-l3-masterpiece {
    background: linear-gradient(160deg, rgba(102,70,45,0.05) 0%, transparent 55%);
    border-radius: 36px;
    padding: clamp(48px,7vw,80px) clamp(20px,5vw,60px);
    max-width: 1400px;
    margin: 60px auto;
}

.l1-l3-header {
    text-align: center;
    position: relative;
    margin-bottom: 48px;
}

.l1-l3-title {
    display: inline-block;
    position: relative;
    font-size: clamp(24px,4vw,36px);
    font-weight: 800;
    letter-spacing: -1px;
    background: var(--bg);
    padding: 0 24px;
    z-index: 2;
}

.l1-l3-header::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(102,70,45,0.15), transparent);
    z-index: 1;
}

.l1-l3-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.l1-l3-card {
    will-change: transform;
    border-radius: 26px;
    padding: clamp(28px,4vw,48px) clamp(20px,3vw,36px);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.2,0.8,0.2,1);
    display: flex;
    flex-direction: column;
}

@media (hover: hover) {
    .l1-l3-card:hover {
        transform: translateY(-8px);
    }
}

.ghost-level {
    position: absolute;
    bottom: -18px;
    right: 12px;
    font-size: clamp(90px,14vw,150px);
    font-weight: 800;
    opacity: 0.08;
    letter-spacing: -6px;
    pointer-events: none;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-label {
    font-size: 8px;
    letter-spacing: 2px;
    font-weight: 800;
    text-transform: uppercase;
}

.tier-title {
    font-size: clamp(18px,3vw,26px);
    font-weight: 800;
    letter-spacing: -0.8px;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.tier-body {
    font-size: clamp(12px,1.6vw,13px);
    line-height: 1.8;
    opacity: 0.68;
    position: relative;
    z-index: 2;
}

/* L1 */
.t-l1 {
    background: rgba(255,255,255,0.55);
    border: 1px solid rgba(255,255,255,0.7);
    box-shadow: inset 0 4px 24px rgba(255,255,255,0.6);
}
.dot-l1 { background: #7BAF5A; }

/* L2 */
.t-l2 {
    background: rgba(255,255,255,0.38);
    border: 1.5px solid rgba(102,70,45,0.5);
    box-shadow: 0 0 0 4px rgba(102,70,45,0.04);
}
.dot-l2 { background: #E8A840; }
.orb-l2 {
    position: absolute;
    top: -40px; right: -40px;
    width: 160px; height: 160px;
    background: radial-gradient(circle, rgba(232,168,64,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* L3 */
.t-l3 {
    background: radial-gradient(ellipse at 30% 20%, rgba(102,70,45,0.5) 0%, #1E1510 60%);
    color: #DABF9A;
}
.dot-l3 { background: #E85440; }
.t-l3 .ghost-level { color: #DABF9A; opacity: 0.12; }
.orb-l3 {
    position: absolute;
    top: -40px; right: -40px;
    width: 160px; height: 160px;
    background: radial-gradient(circle, rgba(232,84,64,0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.protocol-strip {
    margin-top: auto;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 4px;
    color: rgba(232,84,64,0.55);
    padding-top: 32px;
}


/* MASTERPIECE SECTION: FEATURES (GROUNDED IN PRACTICE) */
.features-masterpiece {
    max-width: 1400px;
    margin: 60px auto;
}

.features-header {
    text-align: center;
    position: relative;
    margin-bottom: 48px;
}

.features-header::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(102,70,45,0.15), transparent);
    z-index: 1;
}

.features-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    opacity: 0.5;
    text-transform: uppercase;
    color: #66462D;
    display: block;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
}

.features-title {
    display: inline-block;
    position: relative;
    font-size: clamp(24px,4vw,36px);
    font-weight: 800;
    letter-spacing: -1px;
    background: var(--bg);
    padding: 0 24px;
    z-index: 2;
}

.features-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.feature-card {
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow: 0 10px 30px rgba(102,70,45,0.04);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    min-height: 440px;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@media (hover: hover) {
    .feature-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 45px rgba(102,70,45,0.09);
    }
}

.feature-card-body {
    padding: 36px clamp(20px, 4vw, 36px);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-pill {
    align-self: flex-start;
    background: rgba(102,70,45,0.08);
    border: 1px solid rgba(102,70,45,0.15);
    border-radius: 40px;
    padding: 4px 12px;
    font-size: 8px;
    letter-spacing: 2px;
    color: #66462D;
    font-weight: 800;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.feature-card-title {
    font-size: clamp(20px, 3vw, 26px);
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
    color: var(--text);
}

.feature-card-desc {
    font-size: 13.5px;
    line-height: 1.65;
    opacity: 0.72;
    color: var(--text);
    margin-bottom: 24px;
}

/* Letting Go live demo styles */
.letting-go-demo-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-grow: 1;
    position: relative;
}

.demo-textarea {
    width: 100%;
    height: 150px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(102,70,45,0.15);
    border-radius: 18px;
    padding: 16px;
    font-family: inherit;
    font-size: 14.5px;
    color: var(--text);
    resize: none;
    outline: none;
    transition: all 0.3s ease, color 2s ease, text-shadow 2s ease, filter 2s ease, opacity 2s ease;
    box-shadow: inset 0 2px 4px rgba(102, 70, 45, 0.03);
}

.demo-textarea:focus {
    background: #ffffff;
    border-color: var(--accent);
    box-shadow: 0 4px 20px rgba(102,70,45,0.06);
}

.demo-textarea.dissolve {
    color: transparent;
    text-shadow: 0 0 12px var(--accent);
    filter: blur(8px);
    opacity: 0.1;
    pointer-events: none;
    transform: scale(0.96);
}

.demo-actions {
    display: flex;
    justify-content: flex-end;
    transition: opacity 0.5s ease;
}

.btn-release {
    background: var(--accent);
    color: #DABF9A;
    border: none;
    border-radius: 50px;
    padding: 12px 24px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.btn-release:hover {
    background: #000;
    box-shadow: 0 6px 20px rgba(44,37,32,0.25);
}

.demo-feedback-message {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 18px;
    border: 1px dashed rgba(102,70,45,0.25);
    z-index: 10;
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.demo-feedback-message.hidden {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
}

.demo-feedback-message .cloud-icon {
    font-size: 40px;
    margin-bottom: 12px;
    animation: floatCloud 3s ease-in-out infinite;
}

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

.demo-feedback-message p {
    font-size: 15px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 16px;
}

.btn-reset-demo {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    border-radius: 40px;
    padding: 6px 16px;
    font-size: 8.5px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-reset-demo:hover {
    background: var(--accent);
    color: #DABF9A;
}

/* SVG Chart Mockup styles */
.insight-chart-container {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(102,70,45,0.12);
    border-radius: 20px;
    padding: 24px 20px 20px 20px;
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

.insight-svg {
    width: 100%;
    height: 160px;
    display: block;
    overflow: visible;
}

.insight-wave-line {
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
    animation: drawWave 2.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.insight-wave-fill {
    opacity: 0;
    animation: fillWave 1.5s ease-out 1.2s forwards;
}

.chart-pulse-node {
    animation: pulseNode 2.5s ease-in-out infinite;
}

@keyframes drawWave {
    to { stroke-dashoffset: 0; }
}

@keyframes fillWave {
    to { opacity: 1; }
}

@keyframes pulseNode {
    0%, 100% { r: 5; opacity: 0.6; }
    50% { r: 9; opacity: 1; stroke: rgba(188,157,120,0.5); stroke-width: 4px; }
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 14px;
    padding: 0 10px;
}

.chart-labels span {
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text);
    opacity: 0.4;
}

/* Mobile responsive fixes for features */
@media (max-width: 900px) {
    .features-layout {
        grid-template-columns: 1fr;
    }
    .feature-card {
        min-height: auto;
    }
}


/* MASTERPIECE SECTION 4: COMMUNITY PERSPECTIVES */
.community-masterpiece {
    background: repeating-linear-gradient(-45deg, rgba(102,70,45,0.018) 0, rgba(102,70,45,0.018) 1px, transparent 1px, transparent 13px);
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 80px;
    padding-bottom: 80px;
}

.comm-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    position: relative;
}

.comm-title-container {
    position: relative;
    z-index: 2;
}

.comm-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    opacity: 0.5;
    text-transform: uppercase;
    color: #66462D;
    display: block;
    margin-bottom: 8px;
}

.comm-title {
    font-size: clamp(24px,4vw,36px);
    font-weight: 800;
    letter-spacing: -1px;
}

.comm-archive-watermark {
    position: absolute;
    right: 0;
    top: -20px;
    font-size: clamp(60px,12vw,130px);
    font-weight: 800;
    color: rgba(102,70,45,0.04);
    pointer-events: none;
}

.comm-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
}

.card-tall {
    grid-row: span 2;
    min-height: 380px;
}

.comm-card {
    background: white;
    border-radius: 22px;
    padding: clamp(16px, 3vw, 24px) clamp(16px, 3vw, 20px) clamp(20px, 3vw, 28px);
    position: relative;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.2,0.8,0.2,1), box-shadow 0.35s cubic-bezier(0.2,0.8,0.2,1);
}

@media (hover: hover) {
    .comm-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 24px 60px rgba(44,37,32,0.1);
    }
}

.comm-accent-bar {
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, #66462D 0%, rgba(102,70,45,0.2) 100%);
    border-radius: 22px 0 0 22px;
}

.comm-quote-watermark {
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 200px;
    font-weight: 800;
    color: rgba(102,70,45,0.06);
    line-height: 1;
    pointer-events: none;
    font-family: serif;
}

.comm-stars {
    color: #C8832A;
    font-size: 12px;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.comm-text {
    font-size: clamp(12px,1.5vw,14px);
    font-style: italic;
    line-height: 1.8;
    opacity: 0.85;
    position: relative;
    z-index: 1;
    margin-bottom: 24px;
}

.comm-reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.comm-avatar {
    width: 36px;
    height: 36px;
    background: rgba(102,70,45,0.1);
    color: #66462D;
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.comm-info h5 {
    font-size: 11px;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
}

.comm-info span {
    font-size: 9px;
    opacity: 0.6;
}

.comm-verified {
    margin-left: auto;
    background: rgba(102,70,45,0.07);
    border-radius: 40px;
    padding: 4px 10px;
    font-size: 8px;
    letter-spacing: 1px;
    color: #66462D;
    font-weight: 800;
}

.comm-stamp {
    position: absolute;
    letter-spacing: 3px;
    border-top: 0.5px solid rgba(102,70,45,0.08);
    padding-top: 10px;
    bottom: 14px;
    right: 18px;
    font-size: 7px;
    opacity: 0.18;
    font-weight: 800;
}


/* MASTERPIECE SECTION 5: FAQ ACCORDION */
.faq-masterpiece {
    padding: clamp(60px,8vw,100px) clamp(20px,6vw,72px);
    position: relative;
    overflow: hidden;
}

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

.faq-details {
    background: rgba(255,255,255,0.48);
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.6);
    padding: 0;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(102,70,45,0.05);
    transition: background 0.3s, box-shadow 0.3s, border-color 0.3s, transform 0.3s;
    position: relative;
}

.faq-details[open] {
    background: rgba(255,255,255,0.72);
    box-shadow: 0 12px 40px rgba(102,70,45,0.1), 0 0 0 1px rgba(255,255,255,0.8);
    border-color: rgba(255,255,255,0.9);
}

.faq-details[open]::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    height: 0;
    transition: height 0.4s cubic-bezier(0.2,0.8,0.2,1);
    background: #66462D;
    border-radius: 18px 0 0 18px;
}

.faq-summary {
    padding: 20px 24px;
    font-size: clamp(11px,1.8vw,12px);
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-summary::-webkit-details-marker { display: none; }

.faq-toggle-icon {
    width: 24px;
    height: 24px;
    background: rgba(102,70,45,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), background 0.3s;
    font-size: 16px;
    font-weight: 300;
    line-height: 1;
    color: #66462D;
}

.faq-details[open] .faq-toggle-icon {
    transform: rotate(45deg);
    background: rgba(102,70,45,0.15);
}

.faq-answer {
    transform: translateY(8px);
    padding: 0 24px 20px;
    font-size: clamp(13px,2vw,14px);
    line-height: 1.8;
    opacity: 0;
    max-height: 0;
    transition: all 0.4s cubic-bezier(0.2,0.8,0.2,1);
}


/* FOOTER CTA EXACTLY AS IT WAS */
/* FOOTER CTA EXACTLY AS IT WAS */
/* Redesigned Cinematic CTA Section */
.footer-cta {
    overflow: hidden;
    background: #2C2520;
    margin: 0 28px 80px;
    padding: 100px 60px;
    border-radius: 48px;
    min-height: 600px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(218,191,154,0.06);
}

.footer-cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: 
        radial-gradient(ellipse 600px 500px at 0% 0%, rgba(102,70,45,0.6) 0%, transparent 65%),
        radial-gradient(ellipse 400px 400px at 100% 100%, rgba(218,191,154,0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.cta-noise {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0.04;
    pointer-events: none;
    z-index: 2;
}

.cta-content-side {
    width: 60%;
    position: relative;
    z-index: 5;
    padding-left: 20px;
}

.cta-fastener {
    width: 8px;
    height: 8px;
    background: #BC9D78;
    border-radius: 50%;
    position: absolute;
    top: -40px;
    left: -20px;
}

.cta-watermark {
    white-space: nowrap;
    width: 100%;
    position: absolute;
    top: -20px;
    left: -80px;
    font-size: 200px;
    font-weight: 800;
    opacity: 0.03;
    color: #DABF9A;
    letter-spacing: -8px;
    pointer-events: none;
    white-space: nowrap;
    line-height: 1;
}

.cta-eyebrow {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 6px;
    color: rgba(218,191,154,0.45);
    margin-bottom: 32px;
    display: block;
    text-transform: uppercase;
}

.cta-headline {
    font-weight: 800;
    line-height: 0.92;
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}

.cta-line-1 { font-size: 80px; color: rgba(218,191,154,0.35); }
.cta-line-2 { font-size: 120px; color: #DABF9A; letter-spacing: -6px; }
.cta-line-3 { font-size: 96px; color: rgba(218,191,154,0.6); font-style: italic; }

.cta-hr {
    height: 1px;
    background: rgba(218,191,154,0.12);
    border: none;
    margin: 40px 0;
    width: 100%;
}

.cta-btn-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cta-btn {
    height: 64px;
    border-radius: 50px;
    width: fit-content;
    min-width: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 3px;
    font-size: 12px;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.cta-btn-primary {
    background: #DABF9A;
    color: #2C2520;
    box-shadow: 0 20px 60px rgba(218,191,154,0.2);
}

.cta-btn-primary:hover {
    box-shadow: 0 28px 80px rgba(218,191,154,0.35);
    transform: translateY(-3px);
}

.cta-btn-ghost {
    background: rgba(218,191,154,0.07);
    border: 1px solid rgba(218,191,154,0.2);
    color: rgba(218,191,154,0.7);
}

.cta-btn-ghost:hover {
    border-color: rgba(218,191,154,0.5);
    color: rgba(218,191,154,0.9);
}

.cta-trust-strip {
    margin-top: 40px;
    display: flex;
    gap: 24px;
    align-items: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 800;
    color: rgba(218,191,154,0.4);
    letter-spacing: 1px;
}

.trust-check {
    width: 16px;
    height: 16px;
    background: rgba(218,191,154,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    color: #DABF9A;
}

.cta-visual-side {
    width: 40%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.cta-rings-container {
    position: relative;
    width: 360px;
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-ring {
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring-outer {
    width: 360px;
    height: 360px;
    border: 1px solid rgba(218,191,154,0.08);
    animation: spinSlow 40s linear infinite;
}

.ring-mid {
    width: 280px;
    height: 280px;
    border: 1px solid rgba(218,191,154,0.06);
}

.ring-inner {
    width: 180px;
    height: 180px;
    background: rgba(218,191,154,0.05);
    border: 1px solid rgba(218,191,154,0.1);
}

.cta-monogram {
    font-size: 72px;
    font-weight: 800;
    color: rgba(218,191,154,0.6);
    position: absolute;
    animation: breathe 4s ease-in-out infinite;
}

.floating-chip {
    position: absolute;
    background: rgba(218,191,154,0.07);
    border: 1px solid rgba(218,191,154,0.12);
    border-radius: 40px;
    padding: 8px 16px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    color: rgba(218,191,154,0.5);
    white-space: nowrap;
    animation: floatChip ease-in-out infinite;
}

.chip-1 { top: 0%; left: 50%; transform: translateX(-50%); animation-duration: 3s; }
.chip-2 { top: 20%; right: -5%; animation-duration: 3.5s; }
.chip-3 { bottom: 20%; right: -5%; animation-duration: 4s; }
.chip-4 { bottom: 0%; left: 50%; transform: translateX(-50%); animation-duration: 3.2s; }
.chip-5 { bottom: 20%; left: -5%; animation-duration: 4.5s; }
.chip-6 { top: 20%; left: -5%; animation-duration: 3.8s; }

@keyframes breathe {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.06); opacity: 0.9; }
}
@keyframes spinSlow {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes floatChip {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
}



/* APP FOOTER */
.app-footer {
    background: radial-gradient(ellipse at 50% 0%, rgba(102,70,45,0.3) 0%, transparent 60%), #2C2520;
    padding: clamp(48px, 8vw, 80px) clamp(20px, 6vw, 60px);
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.f-official-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    filter: sepia(1) brightness(1.5) opacity(0.8);
    margin-bottom: 24px;
    z-index: 2;
}

.f-brand {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 8px;
    color: #DABF9A;
    opacity: 0.18;
    margin-bottom: 32px;
}

.f-links {
    display: flex;
    gap: 40px;
    margin-bottom: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.f-links a {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #DABF9A;
    opacity: 0.5;
    text-transform: uppercase;
    text-decoration: none;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.f-cr {
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #DABF9A;
    opacity: 0.13;
    text-transform: uppercase;
}

.f-watermark {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 320px;
    font-weight: 800;
    color: #DABF9A;
    opacity: 0.018;
    letter-spacing: -4px;
    pointer-events: none;
}

/* TABLET */
@media (max-width: 1024px) {
    .comp-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-cta { margin: 0 16px 80px; padding: 60px 30px; flex-direction: column; text-align: center; }
    .cta-content-side, .cta-visual-side { width: 100%; }
    .cta-visual-side { margin-top: 60px; }
    .cta-btn-stack { align-items: center; }
    .cta-trust-strip { justify-content: center; }
    .cta-fastener { display: none; }
    .cta-watermark { left: 50%; transform: translateX(-50%); font-size: 100px; }
}

/* MOBILE RESPONSIVE < 600px */
@media (max-width: 600px) {
    .glass-nav { height: 56px; }
    .nav-center, .btn-connect {
    position: relative;
    overflow: hidden; display: none; }
    .mobile-toggle { display: flex; }

    .hero { flex-direction: column; justify-content: center; text-align: center; padding-top: 100px; min-height: auto; }
    .hero-left { width: 100%; }
    .hero-right { width: 100%; height: auto; margin-top: 20px; }
    
    .hero-subtitle { margin: 0 auto 32px; }
    .typewriter-container { justify-content: center; }
    .hero-cta-group { flex-direction: column; gap: 10px; }
    .hero-pill {
    position: relative;
    overflow: hidden; width: 100%; min-width: auto; height: 52px; }
    .polaroid-stack {
    filter: drop-shadow(0 32px 48px rgba(44,37,32,0.22)); display: none; }
    .hero-right::after {
        content: ''; display: block; width: 280px; height: 340px;
        background: white; border-radius: 16px; box-shadow: 0 20px 48px rgba(44,37,32,0.18);
        transform: rotate(3deg); background-image: linear-gradient(145deg, #B8A485, #8C7055);
        position: relative;
    }
    .hero-right::before {
        content: 'H'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(3deg);
        font-size: 80px; font-weight: 800; color: rgba(255,255,255,0.2); z-index: 2;
    }

    .mission-grid { grid-template-columns: 1fr; }
    .mission-left { display: none; }
    .mission-right { border-left: none; padding-left: 0; }

    .comp-grid { grid-template-columns: 1fr; }
    .l1-l3-grid { grid-template-columns: 1fr; }
    
    .comm-grid { grid-template-columns: 1fr; }
    .card-tall { grid-row: auto; }

    .f-official-logo { height: 40px; }
    .f-watermark { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

@keyframes spin { 100% { transform: rotate(360deg); } }

.btn-connect::after, .hero-pill::after {
    content: ''; position: absolute; top: 0; left: -80px; width: 60px; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(218,191,154,0.15), transparent);
    transform: skewX(-20deg);
    transition: left 0.5s ease;
}
.btn-connect:hover::after, .hero-pill:hover::after { left: 120%; }

.hero-bg-ring {
    position: absolute; width: 420px; height: 420px; border: 1px dashed rgba(102,70,45,0.07);
    border-radius: 50%; top: 50%; left: 50%; margin-top: -210px; margin-left: -210px;
    animation: spin 35s linear infinite reverse; z-index: -1; pointer-events: none;
}

.mission-right::before {
    content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
    background: linear-gradient(180deg, rgba(102,70,45,0.25) 0%, rgba(102,70,45,0.05) 100%);
}
.mission-doc-ref::before {
    content: ''; display: inline-block; width: 6px; height: 6px; background: #BC9D78;
    opacity: 0.3; transform: rotate(45deg); margin-right: 8px; position: relative; top: -1px;
}
.mission-masterpiece::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background-image: url("https://www.transparenttextures.com/patterns/paper.png");
    opacity: 0.04; pointer-events: none; z-index: 0;
}

.comp-card:hover img { transform: scale(1.06); }

.comp-image-frame::before { content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 80px; background: linear-gradient(0deg, rgba(255,255,255,0.9), transparent); z-index: 5; }

.comp-hover-cta { position: relative; }
.comp-hover-cta::after {
    content: ''; position: absolute; bottom: 10px; left: 0; height: 2px; background: #DABF9A;
    width: 0; transition: width 0.3s ease;
}
.comp-card:hover .comp-hover-cta::after { width: 100%; }
.comp-stamp { border-top: 0.5px solid rgba(102,70,45,0.1); padding-top: 8px; }
.comp-pill { animation: pulseChip 3s ease-in-out infinite; }
@keyframes pulseChip { 0%, 100% { opacity: 0.6; } 50% { opacity: 1; } }

.protocol-strip { animation: blinkStrip 2.5s ease-in-out infinite; }
@keyframes blinkStrip { 0%, 100% { opacity: 0.4; } 50% { opacity: 0.7; } }

.comm-stars span { display: inline-block; transition: transform 0.2s; }
.comm-card:hover .comm-stars span:nth-child(1) { transform: translateY(-2px); transition-delay: 0s; }
.comm-card:hover .comm-stars span:nth-child(2) { transform: translateY(-2px); transition-delay: 0.05s; }
.comm-card:hover .comm-stars span:nth-child(3) { transform: translateY(-2px); transition-delay: 0.1s; }
.comm-card:hover .comm-stars span:nth-child(4) { transform: translateY(-2px); transition-delay: 0.15s; }
.comm-card:hover .comm-stars span:nth-child(5) { transform: translateY(-2px); transition-delay: 0.2s; }
.verified-svg { width: 16px; height: 16px; background: rgba(102,70,45,0.1); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; margin-right: 4px; }
.comm-verified { display: flex; align-items: center; }
.comm-avatar { box-shadow: 0 0 0 2px rgba(102,70,45,0.1); }

.faq-details[open]::before { height: 100%; }

.faq-summary:hover { color: #66462D; opacity: 1; transition: 0.2s; }

.faq-details[open] .faq-answer { transform: translateY(0); }

.faq-watermark { position: absolute; font-size: 300px; font-weight: 800; color: rgba(102,70,45,0.025); right: -40px; top: 50%; transform: translateY(-50%); pointer-events: none; }

.chip-1 { animation-delay: 0.0s; }
.chip-2 { animation-delay: 0.3s; }
.chip-3 { animation-delay: 0.6s; }
.chip-4 { animation-delay: 0.9s; }
.chip-5 { animation-delay: 1.2s; }
.chip-6 { animation-delay: 1.5s; }
.cta-btn-primary { letter-spacing: 3px; }

.f-links a { position: relative; }
.f-links a:not(:last-child)::after { content: '·'; position: absolute; right: -24px; opacity: 0.2; }
.f-separator { background: rgba(218,191,154,0.06); margin: 20px auto; width: 120px; height: 1px; }

/* LEGAL PAGES STYLING */
.legal-container {
    max-width: 900px;
    margin: 120px auto 100px;
    padding: 60px clamp(20px, 5vw, 60px);
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    position: relative;
    box-shadow: 0 40px 100px rgba(102, 70, 45, 0.08);
}

.legal-container .brass-fastener {
    display: block !important;
    width: 12px;
    height: 12px;
    background: #BC9D78;
    border-radius: 50%;
    position: absolute;
    top: 40px;
    left: 40px;
}

.fastener-glow {
    box-shadow: 0 0 15px rgba(188, 157, 120, 0.5);
}

.legal-container .label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 4px;
    color: var(--accent);
    opacity: 0.5;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 40px;
    color: var(--accent);
}

.legal-notice-box {
    background: rgba(102, 70, 45, 0.05);
    border-left: 3px solid var(--accent);
    padding: 30px;
    border-radius: 0 20px 20px 0;
    margin-bottom: 48px;
}

.legal-notice-box h2 {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    color: var(--accent);
}

.legal-notice-box p {
    font-size: 14px;
    opacity: 0.8;
}

.legal-faq details {
    border-bottom: 1px solid rgba(102, 70, 45, 0.1);
    padding: 24px 0;
}

.legal-faq summary {
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--accent);
}

.legal-faq summary::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    opacity: 0.4;
}

.legal-faq details[open] summary::after {
    content: '−';
}

.faq-content {
    padding: 20px 0 10px;
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.75;
}

.stamp-id {
    position: absolute;
    bottom: 40px;
    right: 40px;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 2px;
    opacity: 0.2;
    text-transform: uppercase;
}

/* RECOVERY FORM STYLING */
.recovery-form {
    margin-top: 40px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 8px;
    opacity: 0.6;
}

.form-group input {
    width: 100%;
    height: 56px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(102, 70, 45, 0.15);
    border-radius: 16px;
    padding: 0 20px;
    font-family: inherit;
    font-size: 16px;
    color: var(--text);
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 30px rgba(102, 70, 45, 0.05);
}

.btn-primary {
    width: 100%;
    height: 56px;
    background: var(--accent);
    color: var(--bg);
    border: none;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(102, 70, 45, 0.2);
}

@media (max-width: 600px) {
    .legal-container {
        margin-top: 80px;
        padding: 40px 24px;
        border-radius: 24px;
    }
    .legal-container .brass-fastener {
        top: 24px;
        left: 24px;
        display: block !important;
    }
    .section-title {
        margin-bottom: 30px;
    }
    .legal-notice-box {
        padding: 20px;
    }
    .legal-faq summary {
        font-size: 16px;
    }
}
