/* ==========================================
   DEEGET BRUTALIST DAY THEME (REFINED FIGMA BLUES)
   ========================================== */

:root {
    /* Day Mode Palette */
    --color-bg: #ffffff;
    --color-surface: #f8fafc;
    --color-surface-card: #ffffff;
    --color-border: #1e1e1e;
    --color-border-subtle: rgba(30, 30, 30, 0.08);

    /* Pistachio Brand Green */
    --color-pistachio: #B4E100;
    --color-carbon: #1E1E1E;

    /* Typography */
    --color-text-primary: #1E1E1E;
    --color-text-secondary: #475569;
    --color-text-muted: #64748b;

    /* Curves & Timing */
    --transition-premium: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg);
    color: var(--color-text-primary);
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    background-color: var(--color-bg);
    overflow-x: hidden;
}

/* Bold Brutalist Titles */
h1,
h2,
h3,
h4,
.logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 0.95;
}

/* Specialized 'Oi' font for brutalist display */
.font-oi {
    font-family: 'Oi', cursive, sans-serif;
    font-weight: 400;
    letter-spacing: -0.02em;
}

/* ==========================================
   STICKY FLOATING CAPSULE NAVIGATION
   ========================================== */

.nav-bar {
    position: fixed;
    top: 32px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1028px;
    height: 84px;
    background: #FFFFFF;
    border-radius: 60px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    z-index: 100;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition-premium);
}

.nav-container {
    height: 100%;
    padding: 0 14px 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    height: 50px;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo-img {
    /* 🔴 MODIFICA ESTE VALOR PARA CAMBIAR EL TAMAÑO DEL LOGOTIPO */
    height: 24px;
    width: auto;
    object-fit: contain;
}

.brand-logo-svg text {
    fill: #1e1e1e;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.2rem;
}

.nav-item {
    font-size: 0.92rem;
    font-weight: 700;
    color: #1E1E1E;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition-fast);
}

.nav-item:hover {
    opacity: 0.6;
}

.btn-nav {
    padding: 18px 36px;
    background: #1E1E1E;
    border-radius: 60px;
    color: #FFFFFF;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition-fast);
}

.btn-nav:hover {
    background: var(--color-pistachio);
    color: #1E1E1E;
}

/* ==========================================
   BRUTALIST TICKER HERO SECTION (DAY VERSION)
   ========================================== */

.hero-section {
    position: relative;
    width: 100%;
    height: 1120px;
    background: var(--color-pistachio);
    border-radius: 0px 0px 80px 80px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 2rem 0;
}

/* Background Scrolling Text Tickers (Tightly spaced vertical lines) */
.hero-ticker-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 170%;
    height: 105%;
    /* Slightly larger to guarantee top-to-bottom coverage */
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    /* Fully remove gaps to overlap rows cleanly */
    opacity: 0.9;
    z-index: 1;
    pointer-events: none;
}

.ticker-row {
    display: flex;
    white-space: nowrap;
    overflow: visible;
    /* Prevent box model clipping of letters */
    height: 220px;
    /* Generous height prevents clipping of ascenders */
    padding: 10px 0;
    /* Breathing room for thick white outlines */
    margin: -35px 0;
    /* Seamless vertical overlap to make lines touch */
}

.ticker-track {
    display: flex;
    gap: 3.5rem;
}

/* Slow continuous scroll speeds */
.ticker-row.left-to-right .ticker-track {
    animation: scroll-right 150s linear infinite;
}

.ticker-row.right-to-left .ticker-track {
    animation: scroll-left 150s linear infinite;
}

@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Ticker typography config (Lower-case outline, thicker stroke) */
.ticker-text {
    font-family: 'Oi', cursive, sans-serif;
    font-size: 11.5rem;
    color: transparent;
    -webkit-text-stroke: 5.5px #FFFFFF;
    /* Enhanced bolder outline visibility */
    line-height: 1;
    /* Standard line-height is safe now due to track container padding */
}

/* Foreground Interactive Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1105px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Main heading using 'Oi' font */
.hero-headline-brutalist {
    font-family: 'Oi', cursive, sans-serif;
    font-weight: 400;
    font-size: 6.8rem;
    line-height: 1.15;
    color: #1E1E1E;
    text-align: center;
    margin-bottom: 5.5rem;
    /* Ajustado de 3.5rem a 5.5rem para centrar verticalmente entre el nav-bar y la descripción */
    animation: pop-bounce 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes pop-bounce {
    0% {
        transform: scale(0.9) translateY(30px);
        opacity: 0;
    }

    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

/* Oval glass descriptor container */
.hero-desc-container {
    background: #FFFFFF;
    border-radius: 53px;
    padding: 2.8rem 4rem;
    width: 100%;
    max-width: 1105px;
    margin-bottom: 4rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.hero-desc-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.45rem;
    line-height: 1.4;
    font-weight: 600;
    color: #000000;
}

.hero-desc-text strong {
    font-weight: 800;
    color: var(--color-pistachio);
    background: #000000;
    padding: 2px 8px;
    border-radius: 6px;
}

/* Split CTA Buttons matching figma specs */
.hero-button-group {
    display: flex;
    gap: 1.8rem;
    width: 100%;
    justify-content: center;
}

.btn-brutalist-black {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 18px 48px;
    background: #1E1E1E;
    border-radius: 60px;
    color: #FFFFFF;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 2px solid #1E1E1E;
    transition: var(--transition-premium);
}

.btn-brutalist-black:hover {
    background: #ffffff;
    color: #1E1E1E;
    border-color: #1E1E1E;
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* ==========================================
   MAIN COMMON LIGHT UTILITIES
   ========================================== */

.hidden {
    display: none !important;
}

main {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 3rem;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 10rem auto 7rem;
}

.section-tag {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: #1E1E1E;
    background: var(--color-pistachio);
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 3.6rem;
    font-weight: 900;
    line-height: 0.98;
    letter-spacing: -0.04em;
    color: var(--color-text-primary);
    margin-bottom: 2rem;
}

.section-desc {
    color: var(--color-text-secondary);
    font-size: 1.15rem;
    line-height: 1.6;
}

/* ==========================================
   COMPARATIVE SECTION (TILTED LIGHT CARDS)
   ========================================== */

.comparison-section {
    padding: 4rem 0;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.compare-card {
    background: var(--color-surface-card);
    border: 2px solid var(--color-border);
    border-radius: 32px;
    padding: 4rem;
    transition: var(--transition-premium);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.02);
}

.compare-card.red-theme {
    transform: rotate(-2deg) translateY(10px);
}

.compare-card.green-theme {
    transform: rotate(2.5deg) translateY(-10px);
    border-color: var(--color-pistachio);
    background: rgba(180, 225, 0, 0.015);
}

.compare-card:hover {
    transform: scale(1.03) rotate(0deg);
    border-color: var(--color-border);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.compare-card h3 {
    font-size: 2.4rem;
    margin-bottom: 0.8rem;
}

.card-subtitle {
    color: var(--color-text-secondary);
    font-size: 1.05rem;
    margin-bottom: 3.5rem;
}

.comparison-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    font-size: 1.05rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

.comparison-list li strong {
    color: var(--color-text-primary);
}

.comparison-list li svg {
    flex-shrink: 0;
    margin-top: 3px;
}

.comparison-list li.fail svg {
    stroke: var(--color-text-muted);
}

.comparison-list li.success svg {
    stroke: #82A300;
}

/* ==========================================
   INTERACTIVE CALCULATOR (LIGHT BRUTALIST)
   ========================================== */

.calculator-section {
    padding: 8rem 0;
    border-top: 1px solid var(--color-border-subtle);
}

.calculator-container {
    display: grid;
    grid-template-columns: 0.8fr 2.2fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 4rem auto 0;
    align-items: stretch;
}

.calc-inputs {
    display: flex;
    flex-direction: column;
    gap: 0;
    justify-content: space-between;
    height: 100%;
}

.calc-results-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.inputs-header-block {
    margin-bottom: 0.5rem;
    padding-top: calc(3rem + 2px);
    /* Alinea perfectamente con el h3 de las tarjetas de la derecha */
}

.inputs-badge {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 900;
    color: #1E1E1E;
    background: rgba(30, 30, 30, 0.08);
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.inputs-header-block h3 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 6px;
    color: var(--color-text-primary);
    line-height: 1.1;
}

.inputs-subtitle {
    font-size: 0.88rem;
    color: var(--color-text-muted);
}

.input-card {
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--color-border-subtle);
    border-radius: 0;
    padding: 1.5rem 0;
    transition: var(--transition-fast);
}

.input-card:focus-within {
    border-bottom-color: var(--color-border);
}

.input-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.input-header label {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--color-text-secondary);
}

.input-val {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--color-text-primary);
}

.glow-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 3px;
    background: var(--color-border-subtle);
    outline: none;
    cursor: pointer;
}

.glow-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #1E1E1E;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.glow-slider::-webkit-slider-thumb:hover {
    transform: scale(1.3);
}

.glow-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border: none;
    border-radius: 50%;
    background: #1E1E1E;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.glow-slider::-moz-range-thumb:hover {
    transform: scale(1.3);
}

.slider-marks {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.slider-marks span {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-text-muted);
}

.calc-column {
    position: relative;
    z-index: 2;
    transform-style: preserve-3d;
    /* Contexto 3D infalible para el orden de apilamiento */
    background: #FFFFFF !important;
    /* Fondo blanco 100% sólido y opaco */
    border: 2px solid var(--color-border);
    border-radius: 28px;
    padding: 2.5rem 2.0rem 1.6rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-premium);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.calc-column:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

/* Gemini-style Aurora glow behind the cards on hover */
.calc-column::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 30px;
    z-index: -1;
    transform: translateZ(-1px);
    /* Posiciona físicamente la aurora en el plano tridimensional trasero */
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
    filter: blur(40px);
    /* Desenfoque de 20px suave para un resplandor gaseoso y etéreo de plasma Boreal */
    pointer-events: none;
}

.calc-column:hover::before {
    opacity: 0.5;
    /* Contraste y brillo óptimos sobre fondo blanco */
}

.theme-red::before {
    background: linear-gradient(120deg, #ef4444, #e84393, #6c5ce7, #d81b60, #ff7675, #8e24aa);
    background-size: 300% 300%;
    animation: aurora-fractal-glow 12s ease-in-out infinite;
}

.theme-green::before {
    background: linear-gradient(120deg, var(--color-pistachio), #00e676, #00b0ff, #ffe082, #00b894, #9ccc65);
    background-size: 300% 300%;
    animation: aurora-fractal-glow 12s ease-in-out infinite;
}

/* Animación orgánica tipo fractal: deforma el radio con porcentajes asimétricos extremos y altera la escala de forma no uniforme, sin rotación física */
@keyframes aurora-fractal-glow {
    0% {
        background-position: 0% 50%;
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: translateZ(-1px) scale(1.01, 1.01);
    }

    25% {
        background-position: 100% 0%;
        border-radius: 65% 35% 55% 45% / 40% 60% 40% 60%;
        transform: translateZ(-1px) scale(1.08, 0.94);
    }

    50% {
        background-position: 100% 50%;
        border-radius: 35% 65% 30% 70% / 70% 30% 70% 30%;
        transform: translateZ(-1px) scale(0.94, 1.08);
    }

    75% {
        background-position: 0% 100%;
        border-radius: 70% 30% 80% 20% / 30% 70% 30% 70%;
        transform: translateZ(-1px) scale(1.06, 1.02);
    }

    100% {
        background-position: 0% 50%;
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: translateZ(-1px) scale(1.01, 1.01);
    }
}

.calc-column.theme-red {
    border-color: #ef4444;
    background: #FFFFFF !important;
}

.calc-column.theme-red:hover {
    border-color: #d32f2f;
    background: #FFFFFF !important;
}

.calc-column.theme-green {
    border-color: var(--color-pistachio);
    background: #FFFFFF !important;
}

.calc-column.theme-green:hover {
    border-color: #1E1E1E;
    background: #FFFFFF !important;
}

.column-header {
    margin-bottom: 2.2rem;
}

.column-tag-negative {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 900;
    color: #ef4444;
    background: rgba(239, 68, 68, 0.08);
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.column-tag-positive {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 900;
    color: #82A300;
    background: rgba(180, 225, 0, 0.08);
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.column-header h3 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 6px;
    color: var(--color-text-primary);
    line-height: 1.1;
}

.column-subtitle {
    font-size: 0.88rem;
    color: var(--color-text-muted);
}

.calc-stats {
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
    flex-grow: 1;
    justify-content: flex-start;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-border-subtle);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.stat-value {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-text-primary);
}

.highlighted-warning,
.highlighted-deeget-cost {
    column-gap: inherit;
    border-bottom: none;
    padding: 12px 16px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    transition: background 0.3s ease, border 0.3s ease;
}

.theme-red .highlighted-warning,
.theme-red .highlighted-deeget-cost {
    background: rgba(239, 68, 68, 0.06);
    border: 1px solid rgba(239, 68, 68, 0.12);
}

.theme-red .highlighted-warning .stat-label,
.theme-red .highlighted-deeget-cost .stat-label {
    color: #ef4444;
    font-weight: 700;
}

.theme-red .highlighted-warning .stat-value,
.theme-red .highlighted-deeget-cost .stat-value {
    color: #ef4444;
    font-size: 1.2rem;
    font-weight: 900;
}

.theme-green .highlighted-warning,
.theme-green .highlighted-deeget-cost {
    background: rgba(130, 163, 0, 0.06);
    border: 1px solid rgba(130, 163, 0, 0.15);
}

.theme-green .highlighted-warning .stat-label,
.theme-green .highlighted-deeget-cost .stat-label {
    color: #82A300;
    font-weight: 700;
}

.theme-green .highlighted-warning .stat-value,
.theme-green .highlighted-deeget-cost .stat-value {
    color: #82A300;
    font-size: 1.2rem;
    font-weight: 900;
}

.highlighted-success {
    border-bottom: none;
    padding: 12px 16px;
    background: var(--color-pistachio);
    border-radius: 12px;
    border: none;
}

.highlighted-success .stat-label {
    color: #1E1E1E;
    font-weight: 800;
}

.highlighted-success .stat-value {
    color: #1E1E1E;
    font-size: 1.25rem;
    font-weight: 900;
}

.rest-value {
    margin-top: auto;
    border-bottom: none;
    padding-bottom: 0;
}

/* ==========================================
   RESULTADO FINAL - RECOVERY BLOCK (MASSIVE)
   ========================================== */

.calc-recovery-block {
    grid-column: 1 / -1;
    background: var(--color-pistachio);
    border-radius: 24px;
    padding: 1.6rem 2rem 1.4rem;
    margin-top: 0;
    text-align: center;
    color: #1E1E1E;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color-border);
    transition: var(--transition-premium);
}

.calc-recovery-block:hover {
    transform: scale(1.005);
}

.calc-recovery-block.glow-active {
    box-shadow: 0 25px 60px rgba(180, 225, 0, 0.35);
    border-color: var(--color-pistachio);
    transform: scale(1.008);
}

.recovery-top-row {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 1.5rem;
    margin-bottom: 1.2rem;
    justify-content: center;
}

.recovery-title-col {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: #1E1E1E;
    text-align: left;
    line-height: 1.15;
    flex-shrink: 0;
    min-width: 130px;
    letter-spacing: -0.02em;
}

.recovery-divider-vertical {
    width: 1.5px;
    height: 54px;
    background-color: #1E1E1E;
    opacity: 0.6;
    flex-shrink: 0;
}

.recovery-numbers-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    flex-grow: 1;
    padding-left: 0.5rem;
}

.calc-recovery-block .saving-huge {
    font-family: 'Outfit', sans-serif;
    font-size: 2.35rem;
    font-weight: 900;
    color: #1E1E1E;
    letter-spacing: -0.04em;
    line-height: 1;
    margin: 0;
    display: flex;
    align-items: baseline;
}

.calc-recovery-block .saving-annual {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: #1E1E1E;
    letter-spacing: -0.02em;
    margin-top: 3px;
    opacity: 0.9;
}

.calc-recovery-block .calc-emotional-milestone {
    width: 100%;
    background: #1E1E1E;
    border: none;
    border-radius: 100px;
    padding: 10px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.calc-recovery-block .milestone-text {
    color: #FFFFFF;
    font-size: 0.88rem;
    line-height: 1.4;
    text-align: center;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    margin: 0;
}

/* ==========================================
   BENEFITS SECTION (LIGHT EDITORIAL CARD)
   ========================================== */

.benefits-section {
    padding: 8rem 0;
    border-top: 1px solid var(--color-border-subtle);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1100px;
    margin: 4rem auto 0;
}

.benefit-card {
    background: transparent;
    border: none;
    border-top: 2px solid var(--color-border-subtle);
    border-radius: 0;
    padding: 3rem 0;
    transition: var(--transition-smooth);
}

.benefit-card:hover {
    border-top-color: #1E1E1E;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: transparent;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 2rem;
    color: #1E1E1E;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    font-weight: 800;
}

.benefit-card p {
    color: var(--color-text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* ==========================================
   EARLY ADOPTER & LEAD GENERATION WAITLIST
   ========================================== */

.offer-section {
    padding: 10rem 0 12rem;
    border-top: 1px solid var(--color-border-subtle);
}

.offer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    max-width: 1100px;
    margin: 4rem auto 0;
}

.pricing-card {
    background: transparent;
    border: none;
    border-top: 2px solid var(--color-border-subtle);
    padding: 4rem 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.badge-urgent {
    align-self: flex-start;
    padding: 5px 12px;
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.25);
    border-radius: 4px;
    color: #F59E0B;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.pricing-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.pricing-tagline {
    color: var(--color-text-secondary);
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 3.5rem;
}

.pricing-value-box {
    background: #f8fafc;
    border: 2px solid var(--color-border);
    border-radius: 24px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.price-old {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    text-decoration: line-through;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.price-new-container {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 8px;
}

.price-amount {
    font-family: 'Outfit', sans-serif;
    font-size: 4.8rem;
    font-weight: 900;
    color: var(--color-text-primary);
    line-height: 1;
}

.price-period {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    font-weight: 700;
}

.price-lifetime {
    margin-left: 14px;
    padding: 6px 12px;
    background: var(--color-pistachio);
    border-radius: 4px;
    color: #1E1E1E;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.pricing-conditions {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 3.5rem;
}

.pricing-conditions p {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
}

.pricing-conditions strong {
    color: var(--color-text-primary);
}

.availability-status {
    border-top: 2px solid var(--color-border-subtle);
    padding-top: 2.5rem;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    margin-bottom: 14px;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #F59E0B;
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
    animation: pulse-orange 1.8s infinite;
}

.progress-bar-container {
    width: 100%;
    height: 4px;
    background: var(--color-border-subtle);
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: #1E1E1E;
    border-radius: 10px;
}

/* waitlist form capture styled as line fields */
.form-card {
    background: #ffffff;
    border: 2px solid var(--color-border);
    border-radius: 32px;
    padding: 4.5rem;
    position: relative;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.02);
}

.form-card h3 {
    font-size: 2.4rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.form-card p {
    color: var(--color-text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 3.5rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--color-text-secondary);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Day Mode Minimalist Underline Input Fields */
.form-group input {
    width: 100%;
    padding: 12px 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--color-border-subtle);
    border-radius: 0;
    color: var(--color-text-primary);
    font-size: 1.1rem;
    font-family: inherit;
    transition: var(--transition-fast);
}

.form-group input:focus {
    outline: none;
    border-bottom-color: #1E1E1E;
    background: transparent;
    box-shadow: none;
}

.form-group input::placeholder {
    color: rgba(30, 30, 30, 0.25);
}

.form-group.invalid input {
    border-bottom-color: #ef4444;
}

.error-msg {
    display: block;
    font-size: 0.75rem;
    color: #ef4444;
    margin-top: 6px;
    min-height: 18px;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: #1E1E1E;
    border: none;
    border-radius: 100px;
    color: #ffffff;
    font-weight: 800;
    font-size: 1.05rem;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition-smooth);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.btn-submit:hover {
    background: var(--color-pistachio);
    color: #1E1E1E;
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.btn-submit:active {
    transform: translateY(0);
}

.loader-circle {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #ffffff;
    animation: spin-loader 0.8s linear infinite;
}

.success-capture-panel {
    text-align: center;
    animation: modalReveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.success-tick {
    width: 80px;
    height: 80px;
    background: rgba(30, 30, 30, 0.03);
    border: 2px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 2.5rem;
}

.success-tick svg {
    stroke: #1E1E1E;
}

.success-capture-panel h4 {
    font-size: 2.1rem;
    font-weight: 900;
    margin-bottom: 1.2rem;
}

.success-capture-panel p {
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

.btn-outline-small {
    padding: 14px 28px;
    background: transparent;
    border: 2px solid rgba(30, 30, 30, 0.15);
    border-radius: 100px;
    color: var(--color-text-primary);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-outline-small:hover {
    border-color: #1E1E1E;
    background: rgba(30, 30, 30, 0.02);
}

/* ==========================================
   WHITE COMPONENT BLOCK FOOTER (UMANO EXACT STYLE)
   ========================================== */

.footer-block-section {
    background-color: #f8fafc;
    color: #1E1E1E;
    padding: 8rem 3rem 2rem;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    border-top: 2px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    max-width: 1100px;
    margin: 0 auto 6rem;
    align-items: stretch;
}

.footer-cta-card {
    background-color: var(--color-pistachio);
    border: 2px solid var(--color-border);
    border-radius: 28px;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.02);
}

.footer-cta-card h2 {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    color: #1E1E1E;
}

.footer-cta-card p {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(30, 30, 30, 0.7);
    margin-top: 1.5rem;
}

.footer-cta-card .btn-footer-cta {
    align-self: flex-start;
    margin-top: 4rem;
    padding: 16px 36px;
    background: #1E1E1E;
    color: #ffffff;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-cta-card .btn-footer-cta:hover {
    background: #ffffff;
    color: #1E1E1E;
}

.footer-nav-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 2rem 0;
}

.footer-nav-block h4 {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #64748b;
    margin-bottom: 2rem;
}

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

.footer-links-list a {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1E1E1E;
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-links-list a:hover {
    opacity: 0.6;
}

/* Giant background signature */
.footer-giant-signature {
    text-align: center;
    padding: 4rem 0 2rem;
    user-select: none;
    pointer-events: none;
}

.giant-signature-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 8vw;
    letter-spacing: -0.06em;
    color: rgba(30, 30, 30, 0.04);
    line-height: 0.9;
}

.footer-bottom-bar {
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.88rem;
    color: #64748b;
}

.footer-bottom-bar a {
    color: #64748b;
    text-decoration: none;
}

.footer-bottom-bar a:hover {
    color: #1E1E1E;
}

/* ==========================================
   RESPONSIVE OVERRIDES
   ========================================== */

@media (max-width: 1024px) {
    .nav-bar {
        width: 95%;
    }

    .hero-section {
        height: auto;
        padding-top: 9rem;
        padding-bottom: 6rem;
    }

    .hero-headline-brutalist {
        font-size: 4.2rem;
    }

    .section-title {
        font-size: 3.2rem;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        padding: 0 1rem;
    }

    .compare-card.red-theme,
    .compare-card.green-theme {
        transform: none;
    }

    .calculator-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .calc-inputs {
        gap: 2rem;
        height: auto;
    }

    .inputs-header-block {
        padding-top: 0;
    }

    .calc-results-wrapper {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .offer-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .footer-top-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    main {
        padding: 0 1.5rem;
    }

    .nav-bar {
        top: 16px;
        height: 64px;
    }

    .nav-container {
        padding: 0 16px;
    }

    .nav-links {
        display: flex;
        gap: 0;
    }

    .nav-links .nav-item {
        display: none;
    }

    .btn-nav {
        padding: 12px 24px;
        font-size: 0.85rem;
    }

    .hero-section {
        padding: 8rem 1.5rem 4rem;
    }

    .hero-headline-brutalist {
        font-size: 3rem;
        margin-bottom: 2.5rem;
    }

    .hero-desc-container {
        padding: 2rem 1.5rem;
        border-radius: 30px;
        margin-bottom: 3rem;
    }

    .hero-desc-text {
        font-size: 1.15rem;
    }

    .hero-button-group {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .btn-brutalist-black {
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: 2.6rem;
    }

    .comparison-section,
    .calculator-section,
    .benefits-section,
    .offer-section {
        padding-left: 0;
        padding-right: 0;
    }

    .footer-block-section {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .compare-card,
    .form-card {
        padding: 3rem 1.5rem;
    }

    .calc-column {
        padding: 2rem 1.25rem;
    }

    .calc-recovery-block {
        padding: 2rem 1.25rem;
    }

    .recovery-top-row {
        flex-direction: column;
        gap: 1rem;
    }

    .recovery-divider-vertical {
        display: none;
    }

    .recovery-title-col {
        text-align: center;
        min-width: unset;
    }

    .recovery-numbers-col {
        align-items: center;
        text-align: center;
        padding-left: 0;
    }

    .saving-huge {
        font-size: 2.4rem;
    }

    .pricing-value-box {
        padding: 1.5rem;
    }

    .price-amount {
        font-size: 3.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-cta-card {
        padding: 3rem 2rem;
    }

    .footer-cta-card h2 {
        font-size: 2.2rem;
    }

    .footer-bottom-bar {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

/* ==========================================
   CUSTOM MOUSE TRAIL EFFECT (CRAV INSPIRED)
   ========================================== */
.custom-trail-icon {
    position: fixed;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.custom-trail-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.custom-trail-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9997;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Toggle Pacman Button (Fixed Top-Right) */
.pacman-toggle-btn {
    position: fixed;
    top: 32px;
    right: 32px;
    width: 68px;
    height: 68px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 9999;
    display: none;
    /* hidden on mobile/touch screens for clean mobile UX */
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pacman-toggle-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Display custom trail and toggle button only on hoverable fine-pointer devices */
@media (hover: hover) and (pointer: fine) {

    .custom-trail-icon.active,
    .custom-trail-canvas.active {
        opacity: 1;
    }

    .pacman-toggle-btn {
        display: block;
    }

    .pacman-toggle-btn:hover {
        transform: scale(1.08);
    }

    .pacman-toggle-btn:active {
        transform: scale(0.95);
    }
}