/* 
   THEME MAIN CSS - ELITE EDITION
   Includes Sticky Stacking, Horizontal Drift, Border Beams, and Editorial Type.
*/

:root {
    --color-bg-dark: #050505;
    --color-card-bg: rgba(20, 20, 20, 0.6);
    --color-bg-glass: rgba(255, 255, 255, 0.03);
    --border-glass: rgba(255, 255, 255, 0.08);
    --color-primary: #22c55e;
    --color-accent-red: #ef4444;
}

/* 110% Polish: Global Typography */
body,
.val,
.huge-metric {
    font-variant-numeric: tabular-nums;
    /* Monospaced numbers for pro look */
}

/* -------------------------------------------------------------------------- */
/*                         UNIFIED BACKGROUND & SPACING                        */
/* -------------------------------------------------------------------------- */
.site-main {
    background: #0a0a0a;
    position: relative;
}

/* Consistent section spacing for seamless flow */
.site-main>section {
    position: relative;
}

/* Remove any section borders that create visual seams */
.site-main section::before,
.site-main section::after {
    border: none;
}

/* -------------------------------------------------------------------------- */
/*                                UTILITIES                                   */
/* -------------------------------------------------------------------------- */
.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.text-gradient-red {
    background: linear-gradient(135deg, #ff4d4d, #b91c1c);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-green {
    background: linear-gradient(135deg, #4ade80, #16a34a);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-white {
    background: linear-gradient(135deg, #ffffff, #a3a3a3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes pulse {
    0% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }

    70% {
        opacity: 1;
        box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
    }

    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

.badge-warning {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
    color: var(--color-primary);
}

.badge-success {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
    color: var(--color-primary);
}

.badge-neutral {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #e5e5e5;
}

/* -------------------------------------------------------------------------- */
/*                          ELITE INTERACTION: BORDER BEAM                    */
/* -------------------------------------------------------------------------- */
@property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

.border-beam {
    position: relative;
    border: 1px solid transparent;
}

.border-beam::after,
.border-beam::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    z-index: -1;
    border-radius: inherit;
    padding: 1px;
    /* border width */
    background-image: conic-gradient(from var(--angle), transparent 70%, var(--color-primary));
    animation: spin 3s linear infinite;
}

.border-beam::before {
    filter: blur(1.5rem);
    opacity: 0.5;
}

@keyframes spin {
    from {
        --angle: 0deg;
    }

    to {
        --angle: 360deg;
    }
}

/* -------------------------------------------------------------------------- */
/*                            PROBLEM SECTION                                 */
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/*         EDITORIAL PROBLEM SECTION (HUMAN-CRAFTED)                          */
/* -------------------------------------------------------------------------- */

/* Backward compatibility */
.problem-section {
    padding: 12rem 0;
    background: transparent;
    position: relative;
}

.killer-problem-section {
    padding: 12rem 0;
    background: transparent;
    position: relative;
}

/* Header */
.killer-header {
    text-align: center;
    margin-bottom: 6rem;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}

.badge-warning-premium {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ef4444;
    margin-bottom: 1.5rem;
}

.section-title-killer {
    font-size: clamp(3rem, 5vw, 5.5rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.text-gradient-danger {
    color: #ef4444;
}

.killer-subtitle {
    font-size: 1.9rem;
    color: #a3a3a3;
    font-weight: 400;
    line-height: 1.5;
}

/* Problem Cards Grid */
.killer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
    gap: 2.5rem;
    max-width: 136rem;
    margin: 0 auto;
    padding: 0 5rem;
}

/* Killer Card - Clean & Editorial */
.killer-card {
    position: relative;
    background: #000000;
    border-left: 2px solid #ef4444;
    padding: 3.5rem 3rem;
    transition: all 0.3s ease;
}

.killer-card:hover {
    border-left-color: #f97316;
    transform: translateX(4px);
}

/* Problem Number */
.problem-number {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ef4444;
    margin-bottom: 2rem;
    font-family: 'Courier New', monospace;
}

/* Content */
.killer-content {
    position: relative;
}

.killer-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.2rem;
    line-height: 1.3;
}

.killer-description {
    font-size: 1.5rem;
    color: #9ca3af;
    line-height: 1.7;
    font-weight: 400;
}

/* Responsive */
@media (max-width: 768px) {
    .killer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .killer-card {
        padding: 3rem 2.5rem;
    }

    .killer-title {
        font-size: 2rem;
    }
}



/* -------------------------------------------------------------------------- */
/*            BEYOND GOD TIER: PROTOCOL SECTION (PRECISION TIMELINE)          */
/* -------------------------------------------------------------------------- */

.protocol-section {
    padding: 12rem 0;
    background: transparent;
    position: relative;
    overflow: visible;
}

.protocol-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(16, 185, 129, 0.08), transparent 70%);
    pointer-events: none;
}

/* Header */
.protocol-header {
    text-align: center;
    margin-bottom: 10rem;
    position: relative;
    z-index: 10;
}

.badge-premium-green {
    display: inline-block;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(16, 185, 129, 0.08));
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 0.8rem 2rem;
    border-radius: 5rem;
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #10b981;
    margin-bottom: 2.5rem;
    box-shadow: 0 0 30px -10px rgba(16, 185, 129, 0.3);
}

.section-title-large {
    font-size: clamp(4rem, 7vw, 7rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 2rem;
}

.protocol-subtitle {
    font-size: 1.8rem;
    color: #737373;
    max-width: 75rem;
    margin: 0 auto;
    line-height: 1.7;
}

/* Timeline Container */
.protocol-timeline {
    position: relative;
    max-width: 90rem;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Animated Timeline Line */
.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(16, 185, 129, 0.6) 0%,
            rgba(16, 185, 129, 0.3) 50%,
            transparent 100%);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
}

/* Protocol Steps */
.protocol-steps {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 8rem;
}

/* Protocol Card */
.protocol-card {
    position: relative;
    opacity: 0;
    animation: protocolReveal 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.protocol-card[data-step="1"] {
    animation-delay: 0.1s;
}

.protocol-card[data-step="2"] {
    animation-delay: 0.2s;
}

.protocol-card[data-step="3"] {
    animation-delay: 0.3s;
}

@keyframes protocolReveal {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Timeline Node */
.timeline-node {
    position: absolute;
    left: 50%;
    top: 3rem;
    transform: translateX(-50%);
    z-index: 3;
}

.node-dot {
    width: 16px;
    height: 16px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.6);
    position: relative;
    z-index: 2;
}

.node-pulse {
    position: absolute;
    inset: -8px;
    background: rgba(16, 185, 129, 0.3);
    border-radius: 50%;
    animation: nodePulse 2s ease-in-out infinite;
}

@keyframes nodePulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Glass Card */
.card-glass {
    position: relative;
    background: linear-gradient(135deg,
            rgba(20, 20, 22, 0.9),
            rgba(15, 15, 17, 0.8));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2rem;
    padding: 4rem;
    margin-left: calc(50% + 4rem);
    width: calc(50% - 6rem);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.protocol-card:nth-child(even) .card-glass {
    margin-left: 2rem;
    margin-right: calc(50% + 4rem);
}

.card-glass:hover {
    transform: translateY(-8px);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.6),
        0 0 40px -10px rgba(16, 185, 129, 0.2);
}

/* Card Glow Hover */
.card-glow-hover {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(16, 185, 129, 0.1),
            transparent 50%);
    border-radius: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.card-glass:hover .card-glow-hover {
    opacity: 1;
}

/* Card Header */
.card-header-protocol {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.step-number {
    font-size: 6rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #10b981 0%, #86efac 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.step-badge {
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #52525b;
}

/* Card Body */
.card-body-protocol {
    position: relative;
}

.protocol-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.protocol-description {
    font-size: 1.6rem;
    color: #a3a3a3;
    line-height: 1.7;
    margin-bottom: 3rem;
}

/* Protocol Features */
.protocol-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
}

.feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 0.8rem 1.5rem;
    border-radius: 5rem;
    font-size: 1.3rem;
    color: #d4d4d8;
    font-weight: 500;
    transition: all 0.3s ease;
}

.feature-pill:hover {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.4);
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 1.6rem;
    filter: grayscale(0.2);
}

/* Responsive */
@media (max-width: 968px) {
    .timeline-line {
        left: 2rem;
    }

    .card-glass {
        margin-left: 6rem !important;
        margin-right: 2rem !important;
        width: auto !important;
    }

    .timeline-node {
        left: 2rem;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .protocol-steps {
        gap: 6rem;
    }

    .step-number {
        font-size: 4.5rem;
    }

    .protocol-title {
        font-size: 2.2rem;
    }

    .protocol-features {
        flex-direction: column;
    }
}


/* -------------------------------------------------------------------------- */
/*                  PROOF SECTION: VALIDATED RESULTS                          */
/* -------------------------------------------------------------------------- */

.proof-section {
    padding: 12rem 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.proof-header {
    text-align: center;
    margin-bottom: 8rem;
    position: relative;
    z-index: 10;
}

.badge-glow {
    display: inline-block;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(34, 197, 94, 0.05));
    border: 1px solid rgba(34, 197, 94, 0.3);
    padding: 0.8rem 2rem;
    border-radius: 5rem;
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #22c55e;
    margin-bottom: 2.5rem;
    box-shadow: 0 0 30px -10px rgba(34, 197, 94, 0.2);
}

.proof-subtitle {
    font-size: 1.7rem;
    color: #737373;
    max-width: 65rem;
    margin: 2rem auto 0;
    line-height: 1.6;
}

/* Cards Grid */
.proof-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(35rem, 1fr));
    gap: 3.5rem;
    max-width: 136rem;
    margin: 0 auto;
    padding: 0 5rem;
}

/* Result Card */
.result-card {
    position: relative;
    background: linear-gradient(135deg, rgba(24, 24, 27, 0.8), rgba(17, 17, 17, 0.6));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1.5rem;
    padding: 3.5rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #22c55e, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.result-card:hover {
    transform: translateY(-8px);
    border-color: rgba(34, 197, 94, 0.2);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.5),
        0 0 40px -10px rgba(34, 197, 94, 0.15);
}

.result-card:hover::before {
    opacity: 1;
}

/* Card Shine Effect */
card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.05),
            transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.result-card:hover .card-shine {
    left: 100%;
}

/* Card Tag */
.card-tag {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #71717a;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Metric Display */
.card-metric {
    margin-bottom: 3.5rem;
    position: relative;
}

.metric-number {
    font-size: 7.5rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -3px;
    background: linear-gradient(135deg, #ffffff 0%, #d4d4d8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    font-variant-numeric: tabular-nums;
}

.metric-suffix {
    display: inline-block;
    font-size: 4rem;
    font-weight: 700;
    color: #22c55e;
    margin-left: 0.8rem;
    vertical-align: top;
    margin-top: 0.5rem;
}

.metric-unit {
    font-size: 1.6rem;
    color: #a3a3a3;
    font-weight: 500;
    margin-top: 1rem;
    line-height: 1.4;
}

/* Stats Grid */
.card-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 2.5rem;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    text-align: center;
}

.stat-label {
    font-size: 1.15rem;
    color: #71717a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.stat-value {
    font-size: 1.7rem;
    color: #fff;
    font-weight: 700;
}

/* Card Project */
.card-project {
    font-size: 1.3rem;
    color: #52525b;
    font-style: italic;
}

/* Footer */
.proof-footer {
    margin-top: 8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.proof-note {
    font-size: 1.4rem;
    color: #71717a;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.proof-cta-btn {
    display: inline-block;
    padding: 1.6rem 3.5rem;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.12), rgba(34, 197, 94, 0.08));
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 0.8rem;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.proof-cta-btn:hover {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.15));
    border-color: rgba(34, 197, 94, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -10px rgba(34, 197, 94, 0.25);
}

/* -------------------------------------------------------------------------- */
/*                  PROOF SECTION: RESPONSIVE SYSTEM                          */
/* -------------------------------------------------------------------------- */

/* Ultra-Small Devices (<320px) */
@media (max-width: 319px) {
    .proof-section {
        padding: 6rem 0;
    }

    .proof-header {
        margin-bottom: 4rem;
    }

    .badge-glow {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
        letter-spacing: 0.8px;
    }

    .section-title {
        font-size: 2.8rem !important;
        line-height: 1.2;
    }

    .proof-subtitle {
        font-size: 1.2rem;
        padding: 0 1rem;
    }

    .proof-cards-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.5rem;
    }

    .result-card {
        padding: 2rem 1.8rem;
    }

    .card-tag {
        font-size: 0.95rem;
        margin-bottom: 1.8rem;
        padding-bottom: 1rem;
    }

    .metric-number {
        font-size: 4rem;
        letter-spacing: -2px;
    }

    .metric-suffix {
        font-size: 2.5rem;
    }

    .metric-unit {
        font-size: 1.2rem;
    }

    .card-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.8rem 0;
        margin-bottom: 1.8rem;
    }

    .stat-label {
        font-size: 0.95rem;
    }

    .stat-value {
        font-size: 1.4rem;
    }

    .card-project {
        font-size: 1.1rem;
    }

    .proof-footer {
        margin-top: 4rem;
        gap: 1.8rem;
    }

    .proof-note {
        font-size: 1.1rem;
    }

    .proof-cta-btn {
        padding: 1.4rem 2.5rem;
        font-size: 1.3rem;
    }
}

/* Mobile Phones (320px - 480px) */
@media (min-width: 320px) and (max-width: 480px) {
    .proof-section {
        padding: 8rem 0;
    }

    .proof-header {
        margin-bottom: 5rem;
    }

    .badge-glow {
        font-size: 1rem;
        padding: 0.7rem 1.5rem;
        letter-spacing: 1px;
    }

    .section-title {
        font-size: 3.2rem !important;
        line-height: 1.2;
    }

    .proof-subtitle {
        font-size: 1.35rem;
        padding: 0 1.5rem;
    }

    .proof-cards-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 0 2rem;
    }

    .result-card {
        padding: 2.5rem 2.2rem;
    }

    .card-tag {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .metric-number {
        font-size: 5rem;
        letter-spacing: -2.5px;
    }

    .metric-suffix {
        font-size: 3rem;
    }

    .metric-unit {
        font-size: 1.3rem;
    }

    .card-stats {
        grid-template-columns: 1fr;
        gap: 1.8rem;
        padding: 2rem 0;
        margin-bottom: 2rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .card-project {
        font-size: 1.2rem;
    }

    .proof-footer {
        margin-top: 5rem;
        gap: 2rem;
    }

    .proof-note {
        font-size: 1.2rem;
    }

    .proof-cta-btn {
        padding: 1.5rem 3rem;
        font-size: 1.4rem;
    }
}

/* Large Mobile (481px - 767px) */
@media (min-width: 481px) and (max-width: 767px) {
    .proof-section {
        padding: 10rem 0;
    }

    .proof-header {
        margin-bottom: 6rem;
    }

    .section-title {
        font-size: 3.8rem !important;
    }

    .proof-subtitle {
        font-size: 1.5rem;
    }

    .proof-cards-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 2.5rem;
    }

    .result-card {
        padding: 3rem 2.8rem;
    }

    .metric-number {
        font-size: 6.5rem;
    }

    .metric-suffix {
        font-size: 3.5rem;
    }

    .card-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 2.2rem 0;
        margin-bottom: 2.2rem;
    }

    .proof-footer {
        margin-top: 6rem;
    }
}

/* Tablets Portrait (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .proof-section {
        padding: 11rem 0;
    }

    .proof-header {
        margin-bottom: 7rem;
    }

    .section-title {
        font-size: 4.5rem !important;
    }

    .proof-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
        gap: 3rem;
        padding: 0 3rem;
    }

    .result-card {
        padding: 3.2rem;
    }

    .metric-number {
        font-size: 7rem;
    }

    .card-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}


.elite-results-section {
    padding: 12rem 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

/* Removed horizontal line separator for uniform background */

/* Elite Header */
.elite-results-header {
    text-align: center;
    margin-bottom: 10rem;
    position: relative;
    z-index: 10;
}

.badge-premium {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(74, 222, 128, 0.05));
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 0.8rem 2rem;
    border-radius: 5rem;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #10b981;
    margin-bottom: 2.5rem;
    overflow: hidden;
}

.badge-glow {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.3), transparent);
    animation: badgeGlow 3s ease-in-out infinite;
}

@keyframes badgeGlow {

    0%,
    100% {
        opacity: 0;
        transform: translateX(-100%);
    }

    50% {
        opacity: 1;
        transform: translateX(100%);
    }
}

.section-title-massive {
    font-size: clamp(4.5rem, 8vw, 8rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 2rem;
}

.text-gradient-luxury {
    background: linear-gradient(135deg, #10b981 0%, #4ade80 50%, #86efac 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        filter: hue-rotate(0deg);
    }

    50% {
        filter: hue-rotate(10deg);
    }
}

.section-subtitle {
    font-size: 1.8rem;
    color: #71717a;
    font-weight: 400;
    max-width: 60rem;
    margin: 0 auto;
}

/* Results Showcase Grid */
.results-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(36rem, 1fr));
    gap: 4rem;
    perspective: 2000px;
    max-width: 136rem;
    margin: 0 auto;
    padding: 0 5rem;
}

/* Premium Card - The Star */
.premium-card {
    position: relative;
    background: rgba(17, 17, 17, 0.6);
    border-radius: 2rem;
    padding: 4rem;
    transform-style: preserve-3d;
    transform: translateZ(0);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    animation: floatIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.premium-card[data-reveal-delay="0"] {
    animation-delay: 0s;
}

.premium-card[data-reveal-delay="100"] {
    animation-delay: 0.1s;
}

.premium-card[data-reveal-delay="200"] {
    animation-delay: 0.2s;
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.premium-card:hover {
    transform: translateY(-12px) scale3d(1.02, 1.02, 1.02);
    box-shadow: 0 40px 80px -20px rgba(16, 185, 129, 0.3);
}

/* Glass Layer */
.card-glass-layer {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.05) 0%,
            rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(20px);
    border-radius: 2rem;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Animated Glow Border */
.card-glow-border {
    position: absolute;
    inset: -2px;
    background: conic-gradient(from var(--gradient-angle),
            transparent 0%,
            transparent 40%,
            rgba(16, 185, 129, 0.5) 50%,
            transparent 60%,
            transparent 100%);
    border-radius: 2rem;
    z-index: 0;
    animation: rotateBorder 4s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.premium-card:hover .card-glow-border {
    opacity: 1;
}

@keyframes rotateBorder {
    0% {
        --gradient-angle: 0deg;
    }

    100% {
        --gradient-angle: 360deg;
    }
}

/* Card Content */
.card-content {
    position: relative;
    z-index: 2;
}

.card-category {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #a1a1aa;
    margin-bottom: 3rem;
}

.category-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.6);
    animation: pulse 2s ease-in-out infinite;
}

/* Metric Hero */
.metric-hero {
    margin-bottom: 4rem;
}

.metric-value {
    display: inline-block;
    font-size: 9.6rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -4px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-variant-numeric: tabular-nums;
}

.metric-suffix {
    display: inline-block;
    font-size: 5rem;
    font-weight: 700;
    color: #10b981;
    margin-left: 0.5rem;
}

.metric-label {
    display: block;
    font-size: 1.6rem;
    color: #d4d4d8;
    font-weight: 500;
    margin-top: 1rem;
    letter-spacing: 0.5px;
}

/* Stat Grid */
.stat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.stat-icon {
    font-size: 2rem;
    filter: grayscale(0.3);
}

.stat-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.stat-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
}

.stat-label {
    font-size: 1.2rem;
    color: #71717a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Card Footer Info */
.card-footer-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px dotted rgba(255, 255, 255, 0.08);
}

.project-title {
    font-size: 1.4rem;
    color: #a1a1aa;
    font-weight: 500;
}

.project-tag {
    font-size: 1.2rem;
    color: #52525b;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.4rem 1rem;
    border-radius: 0.4rem;
}

/* Shimmer Effect */
.card-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg,
            transparent 30%,
            rgba(255, 255, 255, 0.08) 50%,
            transparent 70%);
    transform: translateX(-100%);
    border-radius: 2rem;
    pointer-events: none;
    z-index: 3;
}

.premium-card:hover .card-shimmer {
    animation: shimmer 1.5s ease-in-out;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Elite Footer */
.elite-results-footer {
    margin-top: 10rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.trust-badge-inline {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.4rem;
    color: #71717a;
}

.trust-icon {
    color: #10b981;
    font-weight: bold;
    font-size: 1.6rem;
}

/* Elite CTA Button */
.elite-cta-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.8rem 4rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 1rem;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 600;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.elite-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px -10px rgba(16, 185, 129, 0.3);
    border-color: rgba(16, 185, 129, 0.5);
}

.btn-label {
    position: relative;
    z-index: 2;
}

.btn-arrow {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.elite-cta-btn:hover .btn-arrow {
    transform: translateX(5px);
}

.btn-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.2), transparent);
    transform: translateX(-100%);
}

.elite-cta-btn:hover .btn-glow {
    animation: buttonGlow 0.8s ease-out;
}

@keyframes buttonGlow {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .results-showcase {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .metric-value {
        font-size: 7rem;
    }

    .stat-grid {
        grid-template-columns: 1fr;
    }
}


/* -------------------------------------------------------------------------- */
/*                      VISION SECTION: 110% CINEMATIC                        */
/* -------------------------------------------------------------------------- */
.vision-section {
    padding: 12rem 0;
    background: transparent;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* GOD RAY SPOTLIGHT */
.god-ray-spotlight {
    position: absolute;
    top: -50%;
    left: 50%;
    width: 200vw;
    height: 2000px;
    background: conic-gradient(from 180deg at 50% 0%,
            transparent 160deg,
            rgba(255, 255, 255, 0.03) 180deg,
            transparent 200deg);
    transform: translateX(-50%);
    animation: godRayRotate 20s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 1;
    filter: blur(50px);
}

@keyframes godRayRotate {
    from {
        transform: translateX(-50%) rotate(-15deg);
        opacity: 0.5;
    }

    to {
        transform: translateX(-50%) rotate(15deg);
        opacity: 0.8;
    }
}

/* KINETIC WATERMARK */
.kinetic-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    /* Extremely subtle */
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.05em;
    user-select: none;
    will-change: transform;
    /* Prepare for JS parallax */
}

.editorial-headline {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 0.85;
    /* Tighter */
    margin-bottom: 8rem;
    position: relative;
    z-index: 2;
}

.editorial-headline .line-1 {
    font-size: clamp(6rem, 15vw, 18rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.06em;
    /* Tighter */
    text-shadow: 0 0 50px rgba(255, 255, 255, 0.2);
    /* Glow */
}

.editorial-headline .line-2 {
    font-size: clamp(6rem, 15vw, 18rem);
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.4);
    letter-spacing: -0.06em;
}

.vision-narrow {
    max-width: 75rem;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.vision-manifesto {
    font-size: 2.6rem;
    color: #a3a3a3;
    line-height: 1.4;
    text-align: center;
    margin-bottom: 5rem;
    font-weight: 400;
}

/* ELITE GLOW TEXT */
.elite-glow-text {
    position: relative;
    color: #fff;
    font-weight: 700;
    display: inline-block;
}

.elite-glow-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    box-shadow: 0 0 15px 1px rgba(255, 255, 255, 0.5);
}

.elite-glow-text.text-green {
    color: var(--color-primary);
}

.elite-glow-text.text-green::after {
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    box-shadow: 0 0 15px 2px rgba(34, 197, 94, 0.4);
}

.highlight-white {
    color: #fff;
    border-bottom: 1px solid #fff;
}

.highlight-green {
    color: var(--color-primary);
    border-bottom: 1px solid var(--color-primary);
}

.signature-block {
    text-align: center;
}

.sig-name {
    display: block;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #fff;
    font-size: 1.4rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.sig-title {
    display: block;
    font-size: 1.2rem;
    color: #444;
    margin-top: 0.5rem;
}

/* -------------------------------------------------------------------------- */
/*                        CTA SECTION: "THE BOARDROOM"                        */
/* -------------------------------------------------------------------------- */
.cta-section {
    padding: 12rem 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.cta-grid-expert {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 5rem;
}

/* LEFT COL */
.cta-content-col {
    padding-right: 2rem;
}

.cta-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    padding: 0.8rem 1.6rem;
    border-radius: 50px;
    margin-bottom: 3rem;
    color: #22c55e;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.cta-status-badge .pulsing-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.cta-status-badge .status-text {
    color: #86efac;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.cta-expert-title {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.05;
    color: #666;
    margin-bottom: 2.5rem;
    letter-spacing: -0.03em;
}

.cta-expert-title .text-white {
    color: #fff;
}

.cta-expert-desc {
    font-size: 1.8rem;
    color: #a1a1aa;
    line-height: 1.6;
    margin-bottom: 4rem;
    max-width: 45rem;
}

.expert-checklist {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 5rem;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 1.5rem;
    color: #e4e4e7;
    font-weight: 500;
}

.check-icon {
    width: 2.4rem;
    height: 2.4rem;
    background: var(--color-primary);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
}

.cta-social-proof {
    display: flex;
    align-items: center;
    gap: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 3rem;
}

.cta-social-proof .avatars {
    display: flex;
}

.cta-social-proof .avatars img {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    border: 2px solid #000;
    margin-left: -1rem;
}

.cta-social-proof .avatars img:first-child {
    margin-left: 0;
}

.cta-social-proof p {
    font-size: 1.3rem;
    color: #71717a;
    font-style: italic;
    max-width: 25rem;
}

/* RIGHT COL: FORM */
.form-card-glass {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    padding: 4rem;
    border-radius: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.form-header {
    margin-bottom: 3rem;
    text-align: center;
}

.form-header h3 {
    font-size: 2.4rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.form-header p {
    font-size: 1.3rem;
    color: #52525b;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.expert-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.input-group label {
    display: block;
    font-size: 1.2rem;
    color: #a1a1aa;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.expert-form input,
.expert-form select {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 1rem;
    color: #fff;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    outline: none;
    font-family: inherit;
}

.expert-form input:focus,
.expert-form select:focus {
    border-color: var(--color-primary);
    background: rgba(34, 197, 94, 0.05);
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.1);
}

.expert-form select option {
    background: #000;
    color: #fff;
}

.submit-btn-elite {
    margin-top: 1rem;
    background: #fff;
    color: #000;
    border: none;
    padding: 1.8rem;
    border-radius: 1rem;
    font-size: 1.6rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
}

/* ELITE SUBMIT BUTTON: MATTE ONYX (PHYSICAL) */
.submit-btn-elite {
    margin-top: 1.5rem;
    background: linear-gradient(180deg, #27272a 0%, #18181b 100%);
    /* Zinc 800 -> 900 */
    color: #fafafa;
    border: 1px solid rgba(255, 255, 255, 0.05);
    /* Subtle machined edge */
    padding: 2.2rem 4rem;
    border-radius: 100px;
    /* Full Organic Pill */
    font-family: 'Inter', sans-serif;
    font-size: 1.7rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;

    /* Physical Shadow Stack */
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    /* Top Rim Light */

    z-index: 1;
    transform: translateZ(0);
}

/* NO ARTIFICIAL GLOWS - ONLY PHYSICS */
.submit-btn-elite::before {
    display: none;
}

/* HOVER STATE: MATERIAL LIGHTENING */
.submit-btn-elite:hover {
    background: linear-gradient(180deg, #3f3f46 0%, #27272a 100%);
    /* Zinc 700 -> 800 */
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow:
        0 10px 15px -3px rgba(0, 0, 0, 0.2),
        0 4px 6px -2px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.submit-btn-elite:active {
    background: #18181b;
    transform: translateY(0);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* RESTRAINED ARROW */
.btn-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
    color: rgba(255, 255, 255, 0.7);
    /* Muted arrow */
}

.submit-btn-elite:hover .btn-arrow {
    transform: translateX(3px);
    color: #fff;
}

.btn-text {
    position: relative;
    z-index: 2;
}

@media (max-width: 900px) {
    .cta-grid-expert {
        grid-template-columns: 1fr;
        gap: 6rem;
    }

    .cta-content-col {
        text-align: center;
        padding-right: 0;
    }

    .expert-checklist {
        align-items: center;
        max-width: max-content;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-social-proof {
        justify-content: center;
    }

    .check-item {
        text-align: left;
    }
}

/* -------------------------------------------------------------------------- */
/*                        FOOTER (GROVIA REPLICA)                             */
/* -------------------------------------------------------------------------- */
.site-footer-wrapper {
    background: #0a0a0a;
    padding: 0 0 5rem 0;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.footer-card {
    background: #111;
    /* Solid Matte Card */
    border-radius: 4rem;
    /* Extra round like reference */
    padding: 6rem;
    position: relative;
    overflow: hidden;
    width: 100%;

    /* Grid Layout: 2 Columns Split */
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    min-height: 400px;
    /* Ensure height for spacing */
}

/* --- LEFT COLUMN --- */
.footer-col-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.newsletter-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.4rem;
    font-weight: 500;
    color: #dedede;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.newsletter-form {
    max-width: 480px;
    width: 100%;
}

.input-pill {
    background: #1a1a1a;
    border-radius: 100px;
    padding: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.input-pill input {
    background: transparent;
    border: none;
    flex-grow: 1;
    padding: 1.4rem 2.4rem;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    outline: none;
    font-weight: 400;
}

.input-pill input::placeholder {
    color: #71717a;
    font-weight: 400;
}

.input-pill button {
    background: #fff;
    color: #000;
    border: none;
    padding: 1.4rem 3.2rem;
    border-radius: 100px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.5rem;
    letter-spacing: -0.01em;
}

.input-pill:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.input-pill button:hover {
    background: #f5f5f5;
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.footer-contact-group {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding-top: 3rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-socials {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

.social-icon {
    width: 4rem;
    height: 4rem;
    background: #1a1a1a;
    border-radius: 8px;
    /* Slightly rounded square like reference? Or Circle? Ref looks squarish-circle */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a1a1aa;
    text-decoration: none;
    font-size: 1.6rem;
    transition: all 0.2s ease;
}

.social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* BRAND COLORS */
.social-icon.icon-x:hover {
    background: #fff;
    color: #000;
}

.social-icon.icon-ig:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: #fff;
}

.social-icon.icon-li:hover {
    background: #0077b5;
    color: #fff;
}

.footer-email {
    font-family: 'Inter', sans-serif;
    font-size: 3.8rem;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1.1;
    transition: color 0.2s ease;
}

.footer-email:hover {
    text-decoration: underline;
}

/* --- RIGHT COLUMN --- */
.footer-col-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    /* Align rights */
    text-align: right;
}

.footer-links-wrapper {
    display: flex;
    gap: 8rem;
    /* Space between Pages and Legal groups */
    align-items: flex-start;
}

.footer-nav-group {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.nav-header {
    display: flex;
    align-items: center;
    /* Align arrow and text */
    gap: 1rem;
    color: #71717a;
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 400;
    margin-top: -5px;
    /* Visual tweak */
}

.arrow-icon {
    width: 20px;
    height: 20px;
    opacity: 0.7;
    margin-right: 5px;
}

.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    text-align: left;
    /* List items align left relative to themselves */
}

.nav-list a {
    font-size: 1.8rem;
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    transition: opacity 0.2s;
    display: block;
}

.nav-list a:hover {
    opacity: 0.7;
}

.footer-copyright {
    color: #52525b;
    font-size: 1.4rem;
    margin-top: auto;
    /* Push to bottom if flex spacing fails */
}

/* -------------------------------------------------------------------------- */
/*                        FOOTER: RESPONSIVE SYSTEM                           */
/* -------------------------------------------------------------------------- */

/* Ultra-Small Devices (<320px) */
@media (max-width: 319px) {
    .site-footer-wrapper {
        padding: 0 0 3rem 0;
    }

    .footer-card {
        grid-template-columns: 1fr;
        gap: 5rem;
        padding: 3rem 2.5rem;
        border-radius: 2.5rem;
        min-height: auto;
        background: linear-gradient(145deg, #111 0%, #0d0d0d 100%);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    }

    .footer-col-left,
    .footer-col-right {
        align-items: flex-start;
        text-align: left;
    }

    .newsletter-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
        line-height: 1.2;
        letter-spacing: -0.02em;
    }

    .newsletter-form {
        max-width: 100%;
    }

    .input-pill {
        flex-direction: column;
        gap: 1.2rem;
        padding: 0.8rem;
        background: #0a0a0a;
        border: 1px solid rgba(255, 255, 255, 0.06);
        box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .input-pill input {
        padding: 1.2rem 1.8rem;
        font-size: 1.5rem;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.05);
        transition: all 0.3s ease;
    }

    .input-pill input:focus {
        background: rgba(255, 255, 255, 0.04);
        border-color: rgba(255, 255, 255, 0.1);
    }

    .input-pill button {
        width: 100%;
        padding: 1.2rem 2rem;
        font-weight: 600;
        border-radius: 8px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }

    .input-pill button:hover {
        transform: translateY(-1px);
        box-shadow: 0 6px 16px rgba(255, 255, 255, 0.15);
    }

    .footer-contact-group {
        gap: 3rem;
    }

    .footer-socials {
        gap: 1.2rem;
    }

    .social-icon {
        width: 4.2rem;
        height: 4.2rem;
        font-size: 1.6rem;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.06);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .social-icon:hover {
        transform: translateY(-3px);
    }

    .footer-email {
        font-size: 2.2rem;
        word-break: break-word;
        line-height: 1.3;
        letter-spacing: -0.01em;
        font-weight: 400;
    }

    .footer-col-right {
        flex-direction: column-reverse;
        gap: 3.5rem;
    }

    .footer-links-wrapper {
        display: flex;
        flex-direction: column;
        gap: 3.5rem;
        width: 100%;
    }

    .footer-nav-group {
        flex-direction: column;
        gap: 1.8rem;
        width: 100%;
        padding: 2rem;
        background: rgba(255, 255, 255, 0.02);
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.04);
    }

    .footer-nav-group:nth-child(1) {
        order: 2;
    }

    .footer-nav-group:nth-child(2) {
        order: 1;
    }

    .nav-header {
        font-size: 1.6rem;
        opacity: 0.9;
        font-weight: 500;
    }

    .nav-list {
        gap: 1.2rem;
    }

    .nav-list a {
        font-size: 1.5rem;
        padding: 0.4rem 0;
        display: block;
        transition: all 0.2s ease;
        opacity: 0.85;
    }

    .nav-list a:hover {
        opacity: 1;
        transform: translateX(4px);
    }

    .footer-copyright {
        font-size: 1.3rem;
        opacity: 0.6;
        line-height: 1.5;
    }
}

/* Mobile Phones (320px - 480px) */
@media (min-width: 320px) and (max-width: 480px) {
    .site-footer-wrapper {
        padding: 0 0 4rem 0;
    }

    .footer-card {
        grid-template-columns: 1fr;
        gap: 5.5rem;
        padding: 3.5rem 3rem;
        border-radius: 3rem;
        min-height: auto;
        background: linear-gradient(145deg, #111 0%, #0d0d0d 100%);
        box-shadow: 0 12px 45px rgba(0, 0, 0, 0.45);
    }

    .footer-col-left,
    .footer-col-right {
        align-items: flex-start;
        text-align: left;
    }

    .newsletter-title {
        font-size: 2.6rem;
        margin-bottom: 2.2rem;
        line-height: 1.2;
        letter-spacing: -0.02em;
    }

    .newsletter-form {
        max-width: 100%;
    }

    .input-pill {
        flex-direction: column;
        gap: 1.3rem;
        padding: 1rem;
        background: #0a0a0a;
        border: 1px solid rgba(255, 255, 255, 0.06);
        box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .input-pill input {
        padding: 1.3rem 2rem;
        font-size: 1.6rem;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.05);
        transition: all 0.3s ease;
    }

    .input-pill input:focus {
        background: rgba(255, 255, 255, 0.04);
        border-color: rgba(255, 255, 255, 0.1);
    }

    .input-pill button {
        width: 100%;
        padding: 1.3rem 2.2rem;
        font-weight: 600;
        border-radius: 10px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }

    .input-pill button:hover {
        transform: translateY(-1px);
        box-shadow: 0 6px 16px rgba(255, 255, 255, 0.15);
    }

    .footer-contact-group {
        gap: 3.2rem;
    }

    .footer-socials {
        gap: 1.4rem;
    }

    .social-icon {
        width: 4.5rem;
        height: 4.5rem;
        font-size: 1.7rem;
        border-radius: 11px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.06);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .social-icon:hover {
        transform: translateY(-3px);
    }

    .footer-email {
        font-size: 2.6rem;
        word-break: break-word;
        line-height: 1.3;
        letter-spacing: -0.01em;
        font-weight: 400;
    }

    .footer-col-right {
        flex-direction: column-reverse;
        gap: 4rem;
    }

    .footer-links-wrapper {
        display: flex;
        flex-direction: column;
        gap: 4rem;
        width: 100%;
    }

    .footer-nav-group {
        flex-direction: column;
        gap: 2rem;
        width: 100%;
        padding: 2.2rem;
        background: rgba(255, 255, 255, 0.02);
        border-radius: 14px;
        border: 1px solid rgba(255, 255, 255, 0.04);
    }

    .footer-nav-group:nth-child(1) {
        order: 2;
    }

    .footer-nav-group:nth-child(2) {
        order: 1;
    }

    .nav-header {
        font-size: 1.7rem;
        opacity: 0.9;
        font-weight: 500;
    }

    .nav-list {
        gap: 1.3rem;
    }

    .nav-list a {
        font-size: 1.6rem;
        padding: 0.5rem 0;
        display: block;
        transition: all 0.2s ease;
        opacity: 0.85;
    }

    .nav-list a:hover {
        opacity: 1;
        transform: translateX(4px);
    }

    .footer-copyright {
        font-size: 1.4rem;
        opacity: 0.6;
        line-height: 1.5;
    }
}

/* Large Mobile (481px - 767px) */
@media (min-width: 481px) and (max-width: 767px) {
    .site-footer-wrapper {
        padding: 0 0 4.5rem 0;
    }

    .footer-card {
        grid-template-columns: 1fr;
        gap: 6rem;
        padding: 4rem 3.5rem;
        border-radius: 3.5rem;
        min-height: auto;
        background: linear-gradient(145deg, #111 0%, #0d0d0d 100%);
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    }

    .footer-col-left,
    .footer-col-right {
        align-items: flex-start;
        text-align: left;
    }

    .newsletter-title {
        font-size: 2.8rem;
        margin-bottom: 2.4rem;
        line-height: 1.2;
        letter-spacing: -0.02em;
    }

    .input-pill {
        flex-direction: row;
        gap: 0.8rem;
        padding: 0.8rem;
        background: #0a0a0a;
        border: 1px solid rgba(255, 255, 255, 0.06);
        box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .input-pill input {
        padding: 1.3rem 2rem;
        font-size: 1.6rem;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.05);
        transition: all 0.3s ease;
    }

    .input-pill input:focus {
        background: rgba(255, 255, 255, 0.04);
        border-color: rgba(255, 255, 255, 0.1);
    }

    .input-pill button {
        padding: 1.3rem 2.5rem;
        font-weight: 600;
        border-radius: 10px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }

    .input-pill button:hover {
        transform: translateY(-1px);
        box-shadow: 0 6px 16px rgba(255, 255, 255, 0.15);
    }

    .footer-email {
        font-size: 3.2rem;
        word-break: break-word;
        line-height: 1.3;
        letter-spacing: -0.015em;
        font-weight: 400;
    }

    .footer-col-right {
        flex-direction: column-reverse;
        gap: 4.5rem;
    }

    .footer-links-wrapper {
        display: flex;
        flex-direction: column;
        gap: 4.5rem;
        width: 100%;
    }

    .footer-nav-group {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
        gap: 2rem;
        padding: 2.5rem;
        background: rgba(255, 255, 255, 0.02);
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.04);
    }

    .footer-nav-group:nth-child(1) {
        order: 2;
    }

    .footer-nav-group:nth-child(2) {
        order: 1;
    }

    .nav-header {
        font-size: 1.8rem;
        opacity: 0.9;
        font-weight: 500;
    }

    .nav-list {
        gap: 1.4rem;
    }

    .nav-list a {
        font-size: 1.7rem;
        padding: 0.5rem 0;
        display: block;
        transition: all 0.2s ease;
        opacity: 0.85;
    }

    .nav-list a:hover {
        opacity: 1;
        transform: translateX(4px);
    }

    .footer-copyright {
        font-size: 1.4rem;
        opacity: 0.6;
        line-height: 1.5;
    }
}

/* Tablets Portrait (768px - 900px) */
@media (min-width: 768px) and (max-width: 900px) {
    .footer-card {
        grid-template-columns: 1fr;
        gap: 5.5rem;
        padding: 4.5rem 4rem;
        border-radius: 3.5rem;
    }

    .footer-col-left {
        align-items: flex-start;
    }

    .newsletter-title {
        font-size: 3rem;
    }

    .footer-email {
        font-size: 3.8rem;
    }

    .footer-col-right {
        align-items: flex-start;
        text-align: left;
        flex-direction: column-reverse;
        gap: 4rem;
    }

    .footer-links-wrapper {
        flex-direction: row;
        gap: 6rem;
        width: 100%;
        justify-content: space-between;
    }

    .footer-nav-group {
        flex-direction: column;
        gap: 2.5rem;
    }

    .nav-header {
        font-size: 1.9rem;
    }

    .nav-list a {
        font-size: 1.7rem;
    }
}

/* -------------------------------------------------------------------------- */
/*                               FOOTER                                       */
/* -------------------------------------------------------------------------- */
.site-footer {
    background: #0a0a0a;
    border-top: none;
    padding: 8rem 0 4rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #666;
}

.footer-links h4 {
    color: #fff;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-bottom {
    border-top: 1px solid #111;
    padding-top: 3rem;
    text-align: center;
    color: #333;
}

@media(max-width: 900px) {

    .editorial-headline .line-1,
    .editorial-headline .line-2 {
        font-size: 10vw;
    }

    .sticky-card {
        position: static;
        margin-bottom: 2rem;
    }

    .card-01,
    .card-02,
    .card-03 {
        top: 0;
        z-index: 1;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* -------------------------------------------------------------------------- */
/*                            LEGAL PAGES STYLES                              */
/* -------------------------------------------------------------------------- */
.legal-page {
    background: #0a0a0a;
    min-height: 100vh;
}

.legal-hero {
    padding: 16rem 0 8rem 0;
    text-align: center;
    position: relative;
}

.legal-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100%;
    background: radial-gradient(ellipse at center top, rgba(34, 197, 94, 0.08), transparent 70%);
    pointer-events: none;
}

.legal-title {
    font-family: 'Outfit', sans-serif;
    font-size: 5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    position: relative;
}

.legal-updated {
    font-size: 1.4rem;
    color: #71717a;
    font-weight: 400;
}

.legal-content {
    padding: 0 0 12rem 0;
}

.legal-container {
    max-width: 90rem;
    margin: 0 auto;
    padding: 0 5rem;
}

.legal-intro {
    font-size: 1.8rem;
    line-height: 1.8;
    color: #a1a1aa;
    margin-bottom: 6rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-section {
    margin-bottom: 5rem;
}

.legal-section h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.4rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(34, 197, 94, 0.2);
}

.legal-section h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #e4e4e7;
    margin: 2.5rem 0 1.5rem 0;
}

.legal-section p {
    font-size: 1.6rem;
    line-height: 1.8;
    color: #a1a1aa;
    margin-bottom: 1.5rem;
}

.legal-section ul {
    margin: 1.5rem 0 2rem 2.5rem;
    list-style: none;
}

.legal-section ul li {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #a1a1aa;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
}

.legal-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.8rem;
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
}

.legal-section ul li strong {
    color: #e4e4e7;
    font-weight: 600;
}

.contact-info {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.2rem;
    padding: 2.5rem 3rem;
    margin-top: 2rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: #22c55e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #4ade80;
}

.legal-cta {
    margin-top: 6rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.legal-cta p {
    font-size: 1.6rem;
    color: #71717a;
    margin-bottom: 3rem;
}

.btn-back-home {
    display: inline-block;
    padding: 1.4rem 3rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 0.8rem;
    color: #22c55e;
    font-size: 1.5rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-back-home:hover {
    background: rgba(34, 197, 94, 0.2);
    border-color: #22c55e;
    transform: translateX(-4px);
}

/* Legal Page Responsive */
@media (max-width: 768px) {
    .legal-hero {
        padding: 12rem 0 6rem 0;
    }

    .legal-title {
        font-size: 3.5rem;
    }

    .legal-container {
        padding: 0 2rem;
    }

    .legal-section h2 {
        font-size: 2rem;
    }

    .legal-section p,
    .legal-section ul li {
        font-size: 1.4rem;
    }
}