/* LexTZ.com v2.0 - Final Luxury Premium Design System */

/* ==========================================================================
   1. Typography & Tokens
   ========================================================================== */

@font-face {
    font-family: 'Fraunces';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('/assets/fonts/fraunces-500-latin.woff2') format('woff2');
}
@font-face {
    font-family: 'Instrument Sans';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/assets/fonts/instrumentsans-400-latin.woff2') format('woff2');
}
@font-face {
    font-family: 'Instrument Sans';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('/assets/fonts/instrumentsans-500-latin.woff2') format('woff2');
}
@font-face {
    font-family: 'Instrument Sans';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('/assets/fonts/instrumentsans-600-latin.woff2') format('woff2');
}

:root {
    /* Brand Tokens */
    --ink: #241E20;
    --bone: #F7F3EF;
    --greige: #E8E0D9;
    --brass: #B9946A;
    --brass-lift: #CBA87F;
    
    /* Semantic Colors */
    --text-dark: #2A2326;
    --text-light: #F0EAE4;
    --muted-dark: #6E6165;
    --muted-light: #A79BA0;

    /* Fonts */
    --font-heading: 'Fraunces', serif;
    --font-body: 'Instrument Sans', sans-serif;
    
    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 32px;
    --spacing-lg: 64px;
    --spacing-xl: 100px;
    
    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(0,0,0,0.03);
    --shadow-float: 0 15px 40px rgba(0,0,0,0.08);
    --shadow-dark: 0 20px 50px rgba(0,0,0,0.4);
    
    /* Radii */
    --radius-card: 20px;
    --radius-btn: 8px;
}

/* ==========================================================================
   2. Base Styles
   ========================================================================== */

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--text-dark);
    background-color: var(--bone);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2 {
    font-family: var(--font-heading);
    font-weight: 500;
    margin-top: 0;
    margin-bottom: var(--spacing-sm);
    line-height: 1.1;
    letter-spacing: -0.01em;
}

h3 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: var(--spacing-xs);
    letter-spacing: -0.01em;
}

p, li {
    font-size: 1.15rem;
    margin-top: 0;
    margin-bottom: var(--spacing-sm);
}

.eyebrow {
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.85rem;
    display: block;
    margin-bottom: var(--spacing-md);
    color: var(--brass);
}

a {
    color: var(--brass);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--brass-lift);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: var(--spacing-xl) 8%;
}

/* ==========================================================================
   3. Animations
   ========================================================================== */

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

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

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

/* ==========================================================================
   4. Section Themes
   ========================================================================== */

.section-ink {
    background-color: var(--ink);
    color: var(--text-light);
}
.section-ink h1, .section-ink h2, .section-ink h3 { color: var(--text-light); }
.section-ink .eyebrow { color: var(--brass); }
.section-ink p, .section-ink li { color: rgba(240, 234, 228, 0.8); }

.section-bone {
    background-color: var(--bone);
    color: var(--text-dark);
}
.section-bone h1, .section-bone h2, .section-bone h3 { color: var(--text-dark); }
.section-bone .eyebrow { color: var(--brass); }
.section-bone p, .section-bone li { color: rgba(42, 35, 38, 0.8); }

/* ==========================================================================
   5. Header & Nav
   ========================================================================== */

#header-v2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 1.2rem 8%;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

#header-v2.theme-dark {
    background-color: rgba(36, 30, 32, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

#header-v2.theme-light {
    background-color: rgba(247, 243, 239, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(42, 35, 38, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.logo-container { order: 1; }
.logo-img { height: 32px; width: auto; transition: transform 0.3s; }
.logo-img:hover { transform: scale(1.03); }

.header-cta-container { order: 2; margin-left: auto; margin-right: 1.5rem; }
.menu-toggle { order: 3; background: transparent; border: none; cursor: pointer; padding: 5px; }

#header-v2.theme-dark .menu-toggle span { background-color: var(--text-light); }
#header-v2.theme-light .menu-toggle span { background-color: #2A2326; }

.menu-toggle span {
    display: block; width: 26px; height: 2px; margin-bottom: 5px; transition: 0.3s;
}
.menu-toggle span:last-child { margin-bottom: 0; }

#nav-menu {
    order: 4;
    width: 100%;
    display: none;
    flex-direction: column;
    padding-top: 1.5rem;
    gap: 1rem;
}
#nav-menu.open { display: flex; }

#nav-menu a {
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    color: inherit;
    position: relative;
}

#header-v2.theme-dark #nav-menu a { color: var(--text-light); }
#header-v2.theme-light #nav-menu a { color: #2A2326; }

@media (hover: hover) {
    #nav-menu a::after {
        content: '';
        position: absolute;
        bottom: -6px;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--brass);
        transition: width 0.3s ease;
    }
    #nav-menu a:hover::after { width: 100%; }
}

@media (min-width: 900px) {
    #header-v2 { flex-wrap: nowrap; }
    .header-cta-container { order: 3; margin: 0; }
    .menu-toggle { display: none; }
    #nav-menu {
        display: flex;
        order: 2;
        width: auto;
        flex-direction: row;
        padding-top: 0;
        gap: 2.5rem;
    }
}

/* Flag-Pill Language Switcher */
.lang-pill {
    display: inline-flex;
    align-items: center;
    padding: 3px;
    background: rgba(42, 35, 38, 0.06);
    border: 1px solid rgba(42, 35, 38, 0.12);
    border-radius: 30px;
    gap: 3px;
    transition: all 0.3s ease;
    vertical-align: middle;
    margin-left: 0.5rem;
}

#header-v2.theme-dark .lang-pill {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.lang-pill-opt {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-decoration: none !important;
    color: var(--text-dark);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

#header-v2.theme-dark .lang-pill-opt {
    color: var(--text-light);
}

.lang-pill-opt.active {
    background: var(--brass);
    color: #FFFFFF !important;
    box-shadow: 0 3px 10px rgba(185, 148, 106, 0.4);
}

.lang-pill-opt:hover:not(.active) {
    opacity: 0.85;
    transform: translateY(-1px);
}

.lang-pill-opt .flag-icon {
    font-size: 0.9rem;
    line-height: 1;
}

.lang-pill-opt::after {
    display: none !important;
}

/* ==========================================================================
   6. Buttons
   ========================================================================== */

.btn-cta {
    display: inline-block;
    padding: 16px 32px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: var(--radius-btn);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    border: none;
}

.btn-prelaunch {
    background-color: rgba(255,255,255,0.1);
    color: var(--text-light);
    border: 1px solid rgba(255,255,255,0.2);
    cursor: default;
}
#header-v2.theme-light .btn-prelaunch {
    background-color: var(--greige);
    color: var(--text-dark);
    border: none;
}

.btn-live {
    background-color: var(--brass);
    color: var(--ink) !important;
}

@media (hover: hover) {
    .btn-live:hover {
        background-color: var(--brass-lift);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(185, 148, 106, 0.4);
    }
}

/* ==========================================================================
   7. Hero Section (Asymmetrical & LCP Optimized)
   ========================================================================== */

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    align-items: center;
    min-height: 80vh;
}

.hero-text {
    animation: fadeInUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.hero-text p {
    font-size: 1.3rem;
    max-width: 90%;
    margin-bottom: var(--spacing-md);
    font-weight: 400;
}

/* The LCP image MUST NOT be animated */
.hero-img {
    width: 100%;
    max-width: 650px;
    height: auto;
    display: block;
    margin: 0 auto;
}

@media (min-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
    .hero-text h1 { font-size: 4.5rem; }
}

/* ==========================================================================
   8. Luxury Cards (Grid Systems)
   ========================================================================== */

.pillars-grid, .tools-grid, .ritual-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.card, .tool-card, .chapter-card {
    background: #ffffff; 
    border-radius: var(--radius-card);
    padding: 40px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.03);
    perspective: 1000px;
    transform-style: preserve-3d;
    will-change: transform;
}

/* Accent Line */
.card::before, .tool-card::before, .chapter-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--brass);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Translucent Dark Cards on Ink */
/* Card Animations: Hover (Desktop) & Touch Active (Mobile) */
.card:hover, .tool-card:hover, .chapter-card:hover,
.card:active, .tool-card:active, .chapter-card:active,
.card.is-touched, .tool-card.is-touched, .chapter-card.is-touched {
    transform: translateY(-8px) scale(1.015);
    box-shadow: var(--shadow-float);
    cursor: pointer;
}

.section-ink .card:hover, .section-ink .tool-card:hover, .section-ink .chapter-card:hover,
.section-ink .card:active, .section-ink .tool-card:active, .section-ink .chapter-card:active,
.section-ink .card.is-touched, .section-ink .tool-card.is-touched, .section-ink .chapter-card.is-touched {
    border-color: rgba(184, 142, 110, 0.7);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(184, 142, 110, 0.25);
}

.card:hover::before, .tool-card:hover::before, .chapter-card:hover::before,
.card:active::before, .tool-card:active::before, .chapter-card:active::before,
.card.is-touched::before, .tool-card.is-touched::before, .chapter-card.is-touched::before {
    transform: scaleX(1);
}

.tool-card img {
    width: 100%;
    max-width: 240px;
    height: 180px;
    object-fit: contain;
    display: block;
    margin: 0 auto 24px;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.4s ease;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.35));
}

.section-bone .tool-card img {
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.12));
}

.tool-card:hover img, .tool-card:active img, .tool-card.is-touched img { 
    transform: scale(1.08) translateY(-6px); 
    filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.55));
}

.section-ink .tool-card:hover .aura-stage::before,
.section-ink .tool-card:active .aura-stage::before,
.section-ink .tool-card.is-touched .aura-stage::before {
    transform: scale(1.15);
    box-shadow: 0 0 50px rgba(184, 142, 110, 0.45);
}

@media (min-width: 768px) {
    .pillars-grid { grid-template-columns: repeat(3, 1fr); }
    .tools-grid { grid-template-columns: repeat(2, 1fr); gap: 50px; }
    .ritual-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1024px) {
    .tools-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ==========================================================================
   9. Guide Gallery (eBook Section)
   ========================================================================== */

.guide-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    align-items: center;
}

.guide-gallery img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-btn);
    box-shadow: var(--shadow-float);
    transition: transform 0.4s ease;
}

.guide-gallery-cover {
    max-width: 320px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.guide-gallery-spreads {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    max-width: 450px;
    margin: 0 auto;
}

@media (hover: hover) {
    .guide-gallery img:hover {
        transform: translateY(-5px) scale(1.02);
        box-shadow: var(--shadow-dark);
    }
}

@media (min-width: 900px) {
    .guide-gallery {
        grid-template-columns: 1fr 1.5fr;
        gap: 60px;
    }
    .guide-gallery-spreads {
        flex-direction: row;
        max-width: 100%;
    }
    .guide-gallery-spreads img {
        width: calc(50% - var(--spacing-sm) / 2);
    }
}

.guide-chapters-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

@media (min-width: 768px) {
    .guide-chapters-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .guide-chapters-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.chapter-card img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-btn);
    margin-bottom: 16px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.4s ease;
}

.chapter-card:hover img {
    transform: scale(1.02);
}

.chapter-card .chapter-num {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brass);
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}

.chapter-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    line-height: 1.3;
}

.chapter-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}


/* ==========================================================================
   9. Ritual Section
   ========================================================================== */

.ritual-num {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 500;
    color: var(--brass);
    line-height: 1;
    margin-bottom: var(--spacing-sm);
    opacity: 0.9;
}

/* ==========================================================================
   10. Legal Pages
   ========================================================================== */

.legal-page { background-color: var(--bone); }
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing-xl) 8%;
    background: #ffffff;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}
.legal-content h1 { font-size: 3rem; margin-bottom: var(--spacing-md); }
.legal-content h2 { font-size: 1.8rem; margin-top: var(--spacing-lg); }
.legal-content p, .legal-content li { font-size: 1.1rem; }
.lang-divider { border: 0; height: 1px; background: var(--greige); margin: var(--spacing-xl) 0; }
.lang-jump { text-align: right; padding-bottom: var(--spacing-md); }

/* ==========================================================================
   11. Footer
   ========================================================================== */

#footer-v2 {
    background-color: var(--ink);
    color: var(--text-light);
    padding: var(--spacing-xl) 8% var(--spacing-md);
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    max-width: 1280px;
    margin: 0 auto;
}
.footer-section h3 { font-size: 1.2rem; color: #fff; margin-bottom: 24px; }
.footer-section ul { list-style: none; padding: 0; margin: 0; }
.footer-section li { margin-bottom: 16px; font-size: 1.05rem; }
.footer-section a { color: rgba(240,234,228,0.7); text-decoration: none; transition: color 0.3s; }
.footer-section a:hover { color: var(--brass); }

.footer-bottom {
    max-width: 1280px;
    margin: var(--spacing-xl) auto 0;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: rgba(240,234,228,0.4);
    font-size: 0.95rem;
}

@media (min-width: 768px) {
    .footer-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ==========================================================================
   12. Utilities
   ========================================================================== */

.text-center { text-align: center; }
.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mt-xl { margin-top: var(--spacing-xl); }
.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mb-xl { margin-bottom: var(--spacing-xl); }
.my-md { margin-top: var(--spacing-md); margin-bottom: var(--spacing-md); }

/* ==========================================================================
   13. Materials, Compliance & FAQ Styling
   ========================================================================== */

/* Specs Card */
.specs-card {
    background: #ffffff;
    border-radius: var(--radius-card);
    padding: 32px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,0.04);
}
.specs-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--greige);
}
.specs-card-header h3 {
    margin: 0;
    font-size: 1.4rem;
}
.specs-badge {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(184, 142, 110, 0.12);
    color: var(--brass);
    padding: 6px 14px;
    border-radius: 20px;
}
.specs-table-container {
    overflow-x: auto;
}
.specs-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}
.specs-table th {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--brass);
    padding: 12px 16px;
    border-bottom: 2px solid var(--greige);
}
.specs-table td {
    padding: 16px;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    font-size: 1rem;
    color: var(--text-dark);
}
.specs-table tr:last-child td {
    border-bottom: none;
}

/* Compliance Grid */
.compliance-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}
@media (min-width: 768px) {
    .compliance-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.compliance-card {
    background: #ffffff;
    border-radius: var(--radius-card);
    padding: 30px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.compliance-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-float);
}
.card-tag-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--brass);
    margin-bottom: 12px;
    display: inline-block;
}
.card-tag-label.verified {
    color: #2e7d32;
}
.compliance-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}
.compliance-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(42, 35, 38, 0.85);
}

/* Substance Tags / Pills */
.substance-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}
.substance-tags span {
    font-size: 0.78rem;
    font-weight: 600;
    background: rgba(46, 125, 50, 0.08);
    color: #2e7d32;
    padding: 4px 10px;
    border-radius: 12px;
    border: 1px solid rgba(46, 125, 50, 0.15);
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}
@media (min-width: 768px) {
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .faq-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.faq-card {
    background: #ffffff;
    border-radius: var(--radius-card);
    padding: 32px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-float);
}
.faq-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--brass);
    opacity: 0.6;
    margin-bottom: 12px;
    line-height: 1;
}
.faq-card h3 {
    font-size: 1.25rem;
    margin-bottom: 14px;
    line-height: 1.35;
    color: var(--text-dark);
}
.faq-card p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(42, 35, 38, 0.8);
}

/* ==========================================================================
   14. Tool Cards — Aura Glass Dark Matte Styling
   ========================================================================== */

.aura-stage {
    position: relative;
    padding: 20px 10px;
    margin-bottom: 20px;
    min-height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.aura-stage img {
    position: relative;
    z-index: 1;
    margin-bottom: 0 !important;
}

/* Aura Dark Matte Card Base (#1c1719) */
.section-ink .tool-card {
    background: #1c1719;
    border: 1px solid rgba(184, 142, 110, 0.35);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
}
.section-ink .tool-card .aura-stage::before {
    content: '';
    position: absolute;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 232, 230, 0.95) 0%, rgba(184, 142, 110, 0.25) 70%, transparent 100%);
    box-shadow: 0 0 35px rgba(184, 142, 110, 0.25);
    z-index: 0;
}

/* ==========================================================================
   15. Mobile & Tablet Responsive Media Queries
   ========================================================================== */

/* Mobile Phones (up to 767px) */
@media (max-width: 767px) {
    .container {
        padding: 3rem 1.25rem !important;
    }
    h1 {
        font-size: 2.2rem !important;
        line-height: 1.18 !important;
    }
    h2 {
        font-size: 1.75rem !important;
        line-height: 1.25 !important;
    }
    .tools-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    .specs-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    #header-v2 {
        padding: 1rem 4.5% !important;
    }
    .tool-card {
        padding: 24px 20px !important;
    }
    .faq-card {
        padding: 24px 20px !important;
    }
    .hero-content {
        flex-direction: column !important;
        gap: 2.5rem !important;
    }
}

/* Tablets & Small Laptops (768px to 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .container {
        padding: 4rem 5% !important;
    }
    .tools-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.8rem !important;
    }
    .specs-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    .hero-content {
        flex-direction: column !important;
        gap: 3rem !important;
    }
}


