/* ════════════════════════════════════════════════════════
   ASTORIXA STAYS · LANDING CSS
   Dominio: astorixa.property
   Estética: Dark luxury · Editorial · Cinematográfico
   ════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─────────────────────────── */
:root {
    /* Backgrounds */
    --bg-deep: #08080C;
    --bg-1: #0E0E14;
    --bg-2: #14141C;
    --bg-3: #1C1C26;
    --surface-1: #16161E;
    --surface-2: #1E1E28;
    --surface-3: #282834;

    /* Text */
    --text-1: #F4F1EB;
    --text-2: #C8C3B8;
    --text-3: #8A8478;
    --text-muted: #5A5448;

    /* Accents */
    --accent-lime: #C9F574;
    --accent-violet: #9D50FF;
    --accent-coral: #FF6B6B;
    --accent-gold: #E8C547;
    --accent-cyan: #5DD3F0;

    /* Borders */
    --border-subtle: #1F1F2C;
    --border-accent: #2A2A3A;

    /* Gradients */
    --grad-primary: linear-gradient(135deg, #C9F574 0%, #9D50FF 100%);
    --grad-warm: linear-gradient(135deg, #E8C547 0%, #FF6B6B 100%);
    --grad-cool: linear-gradient(135deg, #5DD3F0 0%, #9D50FF 100%);
    --grad-aurora: linear-gradient(135deg, rgba(201, 245, 116, .08) 0%, rgba(157, 80, 255, .12) 50%, rgba(255, 107, 107, .08) 100%);

    /* Type */
    --font-display: 'Fraunces', 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-body: 'Inter Tight', 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', 'SF Mono', Monaco, Consolas, monospace;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,.3);
    --shadow-md: 0 8px 32px rgba(0,0,0,.4);
    --shadow-lg: 0 24px 64px rgba(0,0,0,.5);
    --shadow-glow: 0 0 40px rgba(201, 245, 116, .15);

    /* Easing */
    --ease-out: cubic-bezier(.16, 1, .3, 1);
    --ease-in-out: cubic-bezier(.65, 0, .35, 1);
    --ease-bounce: cubic-bezier(.34, 1.56, .64, 1);

    /* Spacing */
    --container: 1280px;
    --container-narrow: 780px;
    --section-pad: clamp(80px, 12vw, 160px);
}

/* ─── RESET ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-violet) var(--bg-1);
}
html::-webkit-scrollbar { width: 10px; }
html::-webkit-scrollbar-track { background: var(--bg-1); }
html::-webkit-scrollbar-thumb { background: var(--accent-violet); border-radius: 5px; }
body {
    font-family: var(--font-body);
    background: var(--bg-deep);
    color: var(--text-1);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    cursor: default;
}
img { max-width: 100%; height: auto; display: block; }
button { background: none; border: none; cursor: pointer; font-family: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
input, textarea, select { font-family: inherit; }
::selection { background: var(--accent-violet); color: var(--text-1); }

/* Honeypot */
.hp-field {
    position: absolute !important;
    left: -9999px !important;
    opacity: 0 !important;
    pointer-events: none !important;
    height: 1px !important;
    width: 1px !important;
}

/* ─── LOADER ────────────────────────────────── */
.loader {
    position: fixed;
    inset: 0;
    background: var(--bg-deep);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    transition: opacity .8s var(--ease-out), visibility 0s .8s;
}
.loader.hidden {
    opacity: 0;
    visibility: hidden;
}
.loader-text {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .4em;
    color: var(--text-3);
    animation: pulse 2s ease-in-out infinite;
}
.loader-ring { animation: rotate 2s linear infinite; transform-origin: center; }
@keyframes rotate { to { transform: rotate(360deg); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }

/* ─── CURSOR PERSONALIZADO ─────────────────── */
.cursor-dot, .cursor-ring {
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: transform .12s var(--ease-out), width .25s, height .25s, opacity .3s;
    mix-blend-mode: difference;
}
.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--text-1);
}
.cursor-ring {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(244, 241, 235, .5);
    transition: transform .25s var(--ease-out), width .3s, height .3s, opacity .3s;
}
.cursor-ring.hover {
    width: 60px;
    height: 60px;
    border-color: var(--accent-lime);
    background: rgba(201, 245, 116, .05);
}
@media (max-width: 960px), (hover: none) {
    .cursor-dot, .cursor-ring { display: none; }
}

/* ─── SCROLL PROGRESS ──────────────────────── */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: var(--grad-primary);
    z-index: 1000;
    transition: width .1s linear;
    box-shadow: 0 0 12px rgba(201, 245, 116, .6);
}

/* ─── NAVBAR ───────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: all .4s var(--ease-out);
    padding: 20px 0;
}
.navbar.scrolled {
    backdrop-filter: blur(24px) saturate(140%);
    -webkit-backdrop-filter: blur(24px) saturate(140%);
    background: rgba(8, 8, 12, .72);
    border-bottom: 1px solid var(--border-subtle);
    padding: 14px 0;
}
.nav-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: .15em;
    transition: opacity .3s;
}
.nav-logo:hover { opacity: .8; }
.nav-logo-mark { display: flex; align-items: center; }
.nav-logo-text { color: var(--text-1); }
.nav-logo-accent { color: var(--text-3); font-style: italic; font-weight: 400; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}
.nav-links a {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-2);
    letter-spacing: .02em;
    position: relative;
    transition: color .25s;
}
.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 1px;
    background: var(--accent-lime);
    transition: width .3s var(--ease-out);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--text-1); }

.nav-cta {
    padding: 10px 20px;
    border: 1px solid var(--accent-lime);
    border-radius: 100px;
    background: rgba(201, 245, 116, .05);
    color: var(--accent-lime) !important;
    transition: all .25s var(--ease-out) !important;
}
.nav-cta:hover {
    background: var(--accent-lime);
    color: var(--bg-deep) !important;
    box-shadow: 0 0 24px rgba(201, 245, 116, .4);
}
.nav-cta::after { display: none !important; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
}
.nav-toggle span {
    width: 22px;
    height: 1.5px;
    background: var(--text-1);
    transition: all .3s var(--ease-out);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 960px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(8, 8, 12, .98);
        backdrop-filter: blur(24px);
        flex-direction: column;
        gap: 0;
        padding: 24px 0;
        border-bottom: 1px solid var(--border-subtle);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all .4s var(--ease-out);
    }
    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .nav-links a {
        padding: 16px 32px;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid var(--border-subtle);
    }
    .nav-links a::after { display: none; }
    .nav-cta { margin: 16px 32px; text-align: center; }
    .nav-toggle { display: flex; }
}

/* ─── HERO ──────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 32px 80px;
    isolation: isolate;
}
.hero-canvas {
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: .55;
}
.hero-grain {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: .035;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-aurora {
    position: absolute;
    inset: -50%;
    z-index: -1;
    background:
        radial-gradient(circle at 20% 30%, rgba(157, 80, 255, .25) 0%, transparent 35%),
        radial-gradient(circle at 80% 70%, rgba(201, 245, 116, .18) 0%, transparent 35%),
        radial-gradient(circle at 50% 50%, rgba(232, 197, 71, .08) 0%, transparent 60%);
    animation: aurora 20s ease-in-out infinite alternate;
    filter: blur(60px);
}
@keyframes aurora {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-5%, 5%) rotate(8deg); }
}

.hero-container {
    max-width: 1180px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 20px;
    border: 1px solid var(--border-accent);
    border-radius: 100px;
    background: rgba(20, 20, 28, .6);
    backdrop-filter: blur(12px);
    font-size: 12px;
    color: var(--text-2);
    letter-spacing: .06em;
    margin-bottom: 40px;
}
.hero-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-lime);
    box-shadow: 0 0 12px var(--accent-lime);
    animation: heroPulse 1.6s ease-in-out infinite;
}
@keyframes heroPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .5; transform: scale(1.3); }
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 350;
    font-size: clamp(48px, 9vw, 132px);
    line-height: .96;
    letter-spacing: -.035em;
    margin-bottom: 32px;
}
.hero-line {
    display: inline-block;
    margin-right: .25em;
    opacity: 0;
    transform: translateY(60px) rotate(2deg);
    animation: heroLineIn 1.2s var(--ease-out) forwards;
}
.hero-line:nth-child(1) { animation-delay: .1s; }
.hero-line:nth-child(2) { animation-delay: .15s; }
.hero-line:nth-child(3) { animation-delay: .25s; }
.hero-line:nth-child(4) { animation-delay: .3s; }
.hero-line:nth-child(5) { animation-delay: .4s; }
.hero-line:nth-child(6) { animation-delay: .45s; }

.hero-title em {
    font-style: italic;
    font-weight: 350;
    color: var(--text-2);
}
.hero-gradient {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-style: italic;
    font-weight: 400;
}
.hero-period {
    color: var(--accent-lime);
    -webkit-text-fill-color: var(--accent-lime);
    animation: heroDot 1.5s ease-in-out infinite;
}
@keyframes heroLineIn {
    to { opacity: 1; transform: translateY(0) rotate(0); }
}
@keyframes heroDot {
    0%, 100% { opacity: 1; }
    50% { opacity: .3; }
}

.hero-sub {
    font-size: clamp(15px, 1.6vw, 19px);
    color: var(--text-2);
    max-width: 680px;
    margin: 0 auto 56px;
    line-height: 1.6;
}
.hero-sub strong { color: var(--text-1); font-weight: 600; }

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 32px;
    max-width: 920px;
    margin: 0 auto;
    padding: 40px 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}
.stat {
    text-align: center;
}
.stat-value {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 350;
    color: var(--text-1);
    line-height: 1;
    display: inline;
}
.stat-suffix {
    color: var(--accent-lime);
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 42px);
}
.stat-label {
    font-size: 11px;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-top: 12px;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 2;
}
.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--text-3));
    position: relative;
    overflow: hidden;
}
.hero-scroll-line::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, var(--accent-lime), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}
.hero-scroll-text {
    font-size: 10px;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: .25em;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

/* ─── BOTONES ──────────────────────────────── */
.btn-magnetic {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .02em;
    transition: all .35s var(--ease-out);
    cursor: pointer;
    will-change: transform;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}
.btn-magnetic span { position: relative; z-index: 1; }
.btn-magnetic svg { transition: transform .3s var(--ease-out); position: relative; z-index: 1; }
.btn-magnetic:hover svg { transform: translateX(4px); }

.btn-primary {
    background: var(--text-1);
    color: var(--bg-deep);
}
.btn-primary:hover {
    background: var(--accent-lime);
    box-shadow: 0 12px 40px rgba(201, 245, 116, .35);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--surface-2);
    color: var(--text-1);
    border-color: var(--border-accent);
}
.btn-secondary:hover {
    background: var(--surface-3);
    border-color: var(--accent-violet);
    box-shadow: 0 12px 40px rgba(157, 80, 255, .25);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--text-1);
    border-color: var(--border-accent);
    backdrop-filter: blur(8px);
}
.btn-ghost:hover {
    border-color: var(--text-1);
    background: rgba(244, 241, 235, .05);
}

.btn-ghost-alt {
    background: transparent;
    color: var(--accent-cyan);
    border-color: var(--accent-cyan);
}
.btn-ghost-alt:hover {
    background: var(--accent-cyan);
    color: var(--bg-deep);
    box-shadow: 0 12px 40px rgba(93, 211, 240, .3);
}

.btn-light {
    background: var(--text-1);
    color: var(--bg-deep);
}
.btn-light:hover {
    background: var(--accent-gold);
    box-shadow: 0 12px 40px rgba(232, 197, 71, .35);
    transform: translateY(-2px);
}

/* ─── SECCIONES base ──────────────────────── */
.section {
    padding: var(--section-pad) 32px;
    position: relative;
}
.container {
    max-width: var(--container);
    margin: 0 auto;
}
.container-narrow {
    max-width: var(--container-narrow);
    margin: 0 auto;
}

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 80px;
}
.section-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-3);
    letter-spacing: .25em;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
}
.section-tag::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--text-3);
    margin-right: 12px;
    vertical-align: middle;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 80px);
    font-weight: 350;
    line-height: 1;
    letter-spacing: -.025em;
    margin-bottom: 28px;
}
.section-title em {
    font-style: italic;
    font-weight: 400;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.section-lead {
    font-size: clamp(15px, 1.5vw, 18px);
    color: var(--text-2);
    line-height: 1.6;
    max-width: 580px;
    margin: 0 auto;
}
.section-lead strong { color: var(--text-1); font-weight: 600; }
.section-cta {
    text-align: center;
    margin-top: 64px;
}

/* ─── REVEAL animations ──────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── TICKER ────────────────────────────── */
.ticker-section {
    padding: 40px 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    background: var(--bg-1);
    overflow: hidden;
}
.ticker-eyebrow {
    text-align: center;
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-3);
    letter-spacing: .3em;
    margin-bottom: 24px;
}
.ticker {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.ticker-track {
    display: flex;
    gap: 64px;
    animation: tickerScroll 40s linear infinite;
    width: max-content;
}
.ticker-item {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--text-2);
    white-space: nowrap;
    letter-spacing: .04em;
    flex-shrink: 0;
}
@keyframes tickerScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ─── DIFERENCIADORES ─────────────────── */
.diferenciadores {
    background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-1) 100%);
}
.diff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 40px;
}
.diff-card {
    padding: 36px 28px;
    border-radius: 24px;
    background: var(--surface-1);
    border: 1px solid var(--border-subtle);
    transition: all .5s var(--ease-out);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}
.diff-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(201, 245, 116, .08), transparent 40%);
    opacity: 0;
    transition: opacity .4s;
    pointer-events: none;
}
.diff-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.diff-card:hover::before { opacity: 1; }
.diff-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--c1), var(--c2));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--bg-deep);
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
.diff-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: -.01em;
}
.diff-card p {
    color: var(--text-2);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}
.diff-meta {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-3);
    letter-spacing: .1em;
    text-transform: uppercase;
    padding-top: 16px;
    border-top: 1px solid var(--border-subtle);
}

/* ─── PROPIEDADES ────────────────────── */
.properties {
    background: var(--bg-deep);
}
.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}
.property-card {
    background: var(--surface-1);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    overflow: hidden;
    transition: all .5s var(--ease-out);
    cursor: pointer;
}
.property-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-violet);
}
.property-img {
    height: 240px;
    position: relative;
    overflow: hidden;
}
.property-img-1 {
    background:
        radial-gradient(ellipse at 30% 30%, rgba(232, 197, 71, .4), transparent 60%),
        linear-gradient(135deg, #2a3854 0%, #1a2540 60%, #0a1428 100%);
}
.property-img-2 {
    background:
        radial-gradient(ellipse at 70% 30%, rgba(255, 107, 107, .35), transparent 60%),
        linear-gradient(135deg, #3a2a40 0%, #251a30 60%, #15101e 100%);
}
.property-img-3 {
    background:
        radial-gradient(ellipse at 30% 70%, rgba(93, 211, 240, .3), transparent 60%),
        linear-gradient(135deg, #1a3a40 0%, #102530 60%, #061018 100%);
}
.property-img-4 {
    background:
        radial-gradient(ellipse at 50% 50%, rgba(201, 245, 116, .3), transparent 60%),
        linear-gradient(135deg, #2a3a25 0%, #1a2515 60%, #0a1208 100%);
}
.property-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.7' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.4'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
    opacity: .6;
}
.property-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.3) 100%);
    transition: opacity .4s;
}
.property-card:hover .property-img-overlay { opacity: 0; }

.property-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background: rgba(8, 8, 12, .85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(201, 245, 116, .3);
    border-radius: 100px;
    font-size: 10px;
    color: var(--accent-lime);
    letter-spacing: .12em;
    font-weight: 600;
    z-index: 2;
}
.property-info {
    padding: 28px;
}
.property-loc {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-3);
    letter-spacing: .15em;
    margin-bottom: 8px;
}
.property-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 12px;
    letter-spacing: -.01em;
}
.property-desc {
    color: var(--text-2);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 16px;
}
.property-features {
    font-size: 12px;
    color: var(--text-3);
    margin-bottom: 24px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.property-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-subtle);
}
.property-price {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--text-1);
    font-weight: 500;
}
.property-price span {
    font-size: 11px;
    color: var(--text-3);
    font-family: var(--font-mono);
    letter-spacing: .1em;
    display: block;
    text-transform: uppercase;
}
.property-price small {
    font-size: 11px;
    color: var(--text-3);
    font-family: var(--font-body);
}
.property-cta {
    color: var(--accent-lime);
    font-size: 13px;
    font-weight: 500;
    transition: color .25s, transform .25s;
}
.property-cta:hover {
    color: var(--text-1);
    transform: translateX(4px);
}

/* ─── SPLIT (propietarios) ───────────── */
.split-section {
    background: linear-gradient(180deg, var(--bg-1) 0%, var(--bg-deep) 100%);
}
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}
@media (max-width: 960px) {
    .split { grid-template-columns: 1fr; gap: 48px; }
}
.split-content .section-tag,
.split-content .section-title { text-align: left; }
.split-content .section-tag::before { display: none; }
.split-content .section-title { margin-bottom: 24px; max-width: none; text-align: left; }
.split-content .section-lead { text-align: left; max-width: none; margin: 0 0 32px; }

.bullet-list {
    list-style: none;
    margin-bottom: 36px;
}
.bullet-list li {
    padding: 14px 0 14px 32px;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-2);
    font-size: 14px;
    line-height: 1.6;
    position: relative;
}
.bullet-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 14px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--accent-lime);
    color: var(--bg-deep);
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bullet-list strong { color: var(--text-1); }

.commission-callout {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px;
    background: var(--surface-1);
    border: 1px solid var(--accent-lime);
    border-radius: 20px;
    margin-bottom: 36px;
    position: relative;
    overflow: hidden;
}
.commission-callout::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad-primary);
    opacity: .04;
    z-index: -1;
}
.commission-num {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 350;
    line-height: 1;
    color: var(--accent-lime);
}
.commission-text strong {
    display: block;
    font-size: 16px;
    color: var(--text-1);
    margin-bottom: 4px;
}
.commission-text span {
    font-size: 13px;
    color: var(--text-3);
}

/* ─── CALCULADORA ───────────────────── */
.calc-card {
    padding: 40px 32px;
    background: linear-gradient(180deg, var(--surface-1), var(--surface-2));
    border: 1px solid var(--border-accent);
    border-radius: 28px;
    box-shadow: var(--shadow-lg);
    position: relative;
}
.calc-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 28px;
    padding: 1px;
    background: var(--grad-primary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: .3;
    pointer-events: none;
}
.calc-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--accent-lime);
    letter-spacing: .25em;
    margin-bottom: 12px;
}
.calc-header h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 8px;
}
.calc-header p {
    font-size: 13px;
    color: var(--text-3);
    margin-bottom: 28px;
}
.calc-field { margin-bottom: 24px; }
.calc-field label {
    display: block;
    font-size: 12px;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 12px;
}
.calc-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.calc-pill {
    padding: 10px 18px;
    border: 1px solid var(--border-accent);
    border-radius: 100px;
    background: transparent;
    color: var(--text-2);
    font-size: 13px;
    transition: all .25s;
}
.calc-pill:hover { border-color: var(--text-1); color: var(--text-1); }
.calc-pill.active {
    background: var(--accent-lime);
    color: var(--bg-deep);
    border-color: var(--accent-lime);
    font-weight: 600;
}
.calc-range {
    width: 100%;
    height: 4px;
    background: var(--surface-3);
    border-radius: 2px;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
}
.calc-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: var(--accent-lime);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 0 4px rgba(201, 245, 116, .15);
    transition: all .2s;
}
.calc-range::-webkit-slider-thumb:hover { transform: scale(1.15); }
.calc-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: var(--accent-lime);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 0 0 4px rgba(201, 245, 116, .15);
}

.calc-result {
    margin-top: 32px;
    padding: 24px;
    background: var(--bg-deep);
    border-radius: 16px;
    border: 1px solid var(--border-subtle);
}
.calc-result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-2);
}
.calc-result-row strong {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--text-1);
    font-weight: 500;
}
.calc-result-row .muted { color: var(--text-3); }
.calc-result-final {
    border-top: 1px solid var(--border-subtle);
    margin-top: 8px;
    padding-top: 16px;
}
.calc-result-final strong {
    font-size: 24px;
    color: var(--accent-lime);
}
.calc-result-year {
    font-size: 12px;
    color: var(--text-3);
    padding-top: 4px;
}
.calc-result-year strong {
    font-size: 14px;
    color: var(--text-2);
}
.calc-note {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 16px;
    line-height: 1.5;
}
.text-accent { color: var(--accent-lime) !important; }

/* ─── INVERSIONISTAS ────────────────── */
.investors-section {
    background: #F4F1EB;
    color: var(--bg-deep);
    position: relative;
    overflow: hidden;
}
.invest-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(157, 80, 255, .08), transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(232, 197, 71, .15), transparent 40%);
    pointer-events: none;
}
.investors-section .container { position: relative; }
.section-head-light .section-tag { color: var(--bg-2); }
.section-head-light .section-tag::before { background: var(--bg-2); }
.section-head-light .section-title { color: var(--bg-deep); }
.section-head-light .section-title em {
    background: linear-gradient(135deg, var(--accent-violet), var(--accent-coral));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.section-head-light .section-lead { color: var(--bg-2); }

.invest-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    margin-bottom: 80px;
}
@media (max-width: 960px) {
    .invest-grid { grid-template-columns: 1fr; gap: 48px; }
}
.invest-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-content: start;
}
.invest-stat {
    padding: 28px 20px;
    background: var(--bg-deep);
    color: var(--text-1);
    border-radius: 20px;
    text-align: center;
}
.invest-stat-value {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 350;
    line-height: 1;
    margin-bottom: 12px;
}
.invest-stat-value small {
    font-size: .55em;
    color: var(--accent-lime);
}
.invest-stat-label {
    font-size: 11px;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: .12em;
}

.invest-process h3 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 32px;
    color: var(--bg-deep);
}
.process-list {
    list-style: none;
}
.process-list li {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(8, 8, 12, .1);
}
.process-list li:last-child { border-bottom: none; }
.process-num {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--accent-violet);
    font-weight: 600;
    flex-shrink: 0;
    padding-top: 4px;
}
.process-list strong {
    display: block;
    font-family: var(--font-display);
    font-size: 18px;
    margin-bottom: 6px;
    color: var(--bg-deep);
}
.process-list p {
    color: var(--bg-2);
    font-size: 14px;
    line-height: 1.6;
}
.invest-cta {
    margin-top: 32px;
}
.invest-cta .btn-light {
    background: var(--bg-deep);
    color: var(--text-1);
}
.invest-cta .btn-light:hover {
    background: var(--accent-violet);
    color: var(--text-1);
}

/* ─── MEMBRESÍA ─────────────────────── */
.membership {
    background: var(--bg-deep);
}
.tier-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}
.tier-card {
    padding: 40px 32px;
    background: var(--surface-1);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    transition: all .5s var(--ease-out);
    position: relative;
    overflow: hidden;
}
.tier-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-violet);
    box-shadow: var(--shadow-lg);
}
.tier-card-featured {
    border-color: var(--accent-lime);
    background: linear-gradient(180deg, rgba(201, 245, 116, .04), var(--surface-1));
    transform: scale(1.05);
}
@media (max-width: 960px) {
    .tier-card-featured { transform: scale(1); }
}
.tier-ribbon {
    position: absolute;
    top: 0;
    right: 0;
    padding: 6px 16px;
    background: var(--accent-lime);
    color: var(--bg-deep);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .15em;
    border-bottom-left-radius: 12px;
}
.tier-mark {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}
.tier-silver { background: linear-gradient(135deg, #B5B5B5, #707070); color: #fff; }
.tier-gold { background: linear-gradient(135deg, #E8C547, #C99A2F); color: var(--bg-deep); }
.tier-platinum { background: linear-gradient(135deg, #C9F574, #9D50FF); color: var(--bg-deep); }
.tier-name {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 8px;
}
.tier-price {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 28px;
    color: var(--text-1);
}
.tier-price small {
    font-size: 14px;
    color: var(--text-3);
    font-family: var(--font-body);
    font-weight: 400;
}
.tier-list {
    list-style: none;
    margin-bottom: 32px;
}
.tier-list li {
    padding: 10px 0 10px 24px;
    font-size: 13px;
    color: var(--text-2);
    line-height: 1.5;
    position: relative;
    border-bottom: 1px solid var(--border-subtle);
}
.tier-list li::before {
    content: '+';
    position: absolute;
    left: 0;
    color: var(--accent-lime);
    font-weight: 600;
}
.tier-cta {
    width: 100%;
    padding: 14px 24px;
    border: 1px solid var(--border-accent);
    border-radius: 100px;
    color: var(--text-1);
    font-size: 13px;
    font-weight: 500;
    transition: all .3s;
}
.tier-cta:hover {
    background: var(--text-1);
    color: var(--bg-deep);
    border-color: var(--text-1);
}
.tier-cta-featured {
    background: var(--accent-lime);
    color: var(--bg-deep);
    border-color: var(--accent-lime);
    font-weight: 600;
}
.tier-cta-featured:hover {
    background: var(--text-1);
    border-color: var(--text-1);
}

/* ─── TESTIMONIOS ───────────────────── */
.testimonials {
    background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-1) 100%);
    overflow: hidden;
}
.testimonial-marquee {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
    margin: 0 -32px;
}
.testimonial-track {
    display: flex;
    gap: 24px;
    animation: testimonialScroll 50s linear infinite;
    width: max-content;
    padding: 16px 0;
}
.testimonial-track:hover { animation-play-state: paused; }
@keyframes testimonialScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.testimonial-card {
    width: 380px;
    flex-shrink: 0;
    padding: 32px 28px;
    background: var(--surface-1);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
}
.testimonial-stars {
    color: var(--accent-gold);
    font-size: 13px;
    letter-spacing: .15em;
    margin-bottom: 16px;
}
.testimonial-card p {
    font-family: var(--font-display);
    font-size: 17px;
    line-height: 1.5;
    color: var(--text-1);
    margin-bottom: 24px;
    font-style: italic;
    font-weight: 350;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--border-subtle);
}
.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c1), var(--c2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--bg-deep);
    font-size: 14px;
    flex-shrink: 0;
}
.testimonial-author strong {
    display: block;
    font-size: 14px;
    margin-bottom: 2px;
}
.testimonial-author small {
    font-size: 11px;
    color: var(--text-3);
    letter-spacing: .05em;
}

/* ─── FAQ ──────────────────────────── */
.faq {
    background: var(--bg-1);
}
.faq-list {
    margin-top: 40px;
}
.faq-item {
    border-bottom: 1px solid var(--border-subtle);
    padding: 4px 0;
    transition: all .3s;
}
.faq-item:hover { border-color: var(--border-accent); }
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 400;
    color: var(--text-1);
    transition: color .25s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item:hover summary { color: var(--accent-lime); }
.faq-icon {
    font-family: var(--font-mono);
    font-size: 24px;
    color: var(--text-3);
    transition: transform .35s var(--ease-out), color .25s;
    flex-shrink: 0;
}
.faq-item[open] .faq-icon {
    transform: rotate(45deg);
    color: var(--accent-lime);
}
.faq-body {
    padding: 0 0 28px;
    color: var(--text-2);
    font-size: 15px;
    line-height: 1.7;
    max-width: 90%;
    animation: faqOpen .4s var(--ease-out);
}
@keyframes faqOpen {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ─── CONTACTO ─────────────────────── */
.contact-section {
    background: var(--bg-deep);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    margin-top: 40px;
}
@media (max-width: 960px) {
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}
.contact-info h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 32px;
}
.contact-channel {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--surface-1);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    margin-bottom: 12px;
    transition: all .3s var(--ease-out);
}
.contact-channel:hover {
    background: var(--surface-2);
    border-color: var(--accent-lime);
    transform: translateX(4px);
}
.contact-channel-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--surface-3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-lime);
    flex-shrink: 0;
}
.contact-channel strong {
    display: block;
    font-size: 15px;
    margin-bottom: 4px;
    color: var(--text-1);
}
.contact-channel span {
    font-size: 12px;
    color: var(--text-3);
}
.contact-meta {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border-subtle);
}
.contact-meta small {
    font-size: 11px;
    color: var(--text-3);
    line-height: 1.6;
}

/* ─── FORMS ─────────────────────────── */
.lead-form-wrap {
    margin-top: 80px;
    padding: 48px 32px;
    background: var(--surface-1);
    border: 1px solid var(--border-subtle);
    border-radius: 28px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}
.lead-form-light {
    background: var(--bg-deep);
    color: var(--text-1);
}
.lead-form h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 8px;
    text-align: center;
}
.lead-form > p {
    text-align: center;
    color: var(--text-3);
    font-size: 14px;
    margin-bottom: 32px;
}
.contact-form { padding: 0; background: transparent; border: none; }

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}
@media (max-width: 600px) {
    .form-grid { grid-template-columns: 1fr; }
}
.form-row {
    position: relative;
}
.form-row-full { grid-column: 1 / -1; }

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 18px 16px 8px;
    background: var(--bg-deep);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    color: var(--text-1);
    font-size: 14px;
    transition: border-color .25s, background .25s;
    font-family: var(--font-body);
}
.lead-form-light .form-row input,
.lead-form-light .form-row select,
.lead-form-light .form-row textarea {
    background: var(--surface-1);
    border-color: var(--border-accent);
}
.form-row textarea { resize: vertical; min-height: 80px; padding-top: 22px; }
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--accent-lime);
    background: var(--surface-1);
}
.form-row label {
    position: absolute;
    left: 16px;
    top: 18px;
    font-size: 14px;
    color: var(--text-3);
    pointer-events: none;
    transition: all .2s var(--ease-out);
    background: transparent;
    padding: 0 4px;
}
.form-row input:focus + label,
.form-row input:not(:placeholder-shown) + label,
.form-row textarea:focus + label,
.form-row textarea:not(:placeholder-shown) + label {
    top: 4px;
    font-size: 10px;
    color: var(--accent-lime);
    text-transform: uppercase;
    letter-spacing: .12em;
}
.form-row select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A8478' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-top: 13px;
    padding-bottom: 13px;
    cursor: pointer;
}
.captcha-row {
    background: var(--bg-deep);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.captcha-label {
    position: static !important;
    font-size: 12px !important;
    color: var(--text-2) !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-weight: 500 !important;
}
.captcha-row input { padding: 12px 16px !important; }

.form-submit {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
}
.form-submit:disabled {
    opacity: .6;
    cursor: not-allowed;
}
.form-submit.loading::after {
    content: '';
    width: 14px;
    height: 14px;
    border: 2px solid currentColor;
    border-top-color: transparent;
    border-radius: 50%;
    animation: btnSpin .7s linear infinite;
    margin-left: 8px;
}
@keyframes btnSpin { to { transform: rotate(360deg); } }

.form-status {
    text-align: center;
    margin-top: 16px;
    font-size: 13px;
    min-height: 20px;
}
.form-status.success { color: var(--accent-lime); }
.form-status.error { color: var(--accent-coral); }

/* ─── FOOTER ────────────────────────── */
.footer {
    background: var(--bg-1);
    border-top: 1px solid var(--border-subtle);
    padding: 80px 32px 32px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 2fr;
    gap: 80px;
    margin-bottom: 64px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border-subtle);
}
@media (max-width: 960px) {
    .footer-grid { grid-template-columns: 1fr; gap: 48px; }
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: .15em;
    margin-bottom: 20px;
}
.footer-logo em { color: var(--text-3); font-style: italic; font-weight: 400; }
.footer-brand p {
    color: var(--text-3);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 360px;
}
.newsletter-form h4 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 8px;
}
.newsletter-form p {
    font-size: 12px;
    color: var(--text-3);
    margin-bottom: 16px;
    max-width: none;
}
.newsletter-input {
    display: flex;
    background: var(--bg-deep);
    border: 1px solid var(--border-subtle);
    border-radius: 100px;
    overflow: hidden;
    transition: border-color .25s;
}
.newsletter-input:focus-within {
    border-color: var(--accent-lime);
}
.newsletter-input input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 14px 20px;
    color: var(--text-1);
    font-size: 13px;
    outline: none;
}
.newsletter-input button {
    width: 50px;
    background: var(--accent-lime);
    color: var(--bg-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .25s;
}
.newsletter-input button:hover { background: var(--text-1); }

.footer-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
@media (max-width: 600px) {
    .footer-cols { grid-template-columns: 1fr 1fr; gap: 32px; }
}
.footer-cols h5 {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-3);
    letter-spacing: .2em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.footer-cols a {
    display: block;
    color: var(--text-2);
    font-size: 13px;
    padding: 6px 0;
    transition: color .25s, transform .25s;
}
.footer-cols a:hover {
    color: var(--accent-lime);
    transform: translateX(4px);
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-bottom small {
    color: var(--text-muted);
    font-size: 11px;
    letter-spacing: .04em;
}

/* ─── CHAT WIDGET ──────────────────── */
.chat-launcher {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 90;
    width: auto;
    padding: 14px 20px 14px 14px;
    background: var(--text-1);
    color: var(--bg-deep);
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 12px 40px rgba(0,0,0,.35);
    transition: all .3s var(--ease-out);
}
.chat-launcher:hover {
    background: var(--accent-lime);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 16px 48px rgba(201, 245, 116, .35);
}
.chat-launcher-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 100px;
    border: 2px solid var(--accent-lime);
    opacity: 0;
    animation: launcherPulse 2.5s ease-out infinite;
    pointer-events: none;
}
@keyframes launcherPulse {
    0% { opacity: .8; transform: scale(.95); }
    100% { opacity: 0; transform: scale(1.15); }
}
.chat-launcher-label {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .02em;
}

.chat-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 91;
    width: 380px;
    max-width: calc(100vw - 32px);
    max-height: calc(100vh - 48px);
    height: 560px;
    background: var(--surface-1);
    border: 1px solid var(--border-accent);
    border-radius: 24px;
    box-shadow: 0 24px 80px rgba(0,0,0,.5);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(40px) scale(.95);
    opacity: 0;
    visibility: hidden;
    transition: all .4s var(--ease-out);
    transform-origin: bottom right;
}
.chat-widget.open {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
}

.chat-header {
    padding: 20px;
    background: linear-gradient(135deg, var(--surface-2), var(--surface-1));
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    gap: 14px;
}
.chat-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--grad-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--bg-deep);
    font-size: 20px;
    position: relative;
    flex-shrink: 0;
}
.chat-avatar-pulse {
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid var(--accent-lime);
    animation: launcherPulse 2s ease-out infinite;
}
.chat-header-info { flex: 1; }
.chat-header-info strong {
    display: block;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 500;
}
.chat-header-info small {
    font-size: 11px;
    color: var(--text-3);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 2px;
}
.chat-online {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-lime);
    box-shadow: 0 0 8px var(--accent-lime);
    animation: heroPulse 2s ease-in-out infinite;
}
.chat-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--surface-3);
    color: var(--text-2);
    font-size: 22px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
}
.chat-close:hover { background: var(--accent-coral); color: var(--text-1); }

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    scrollbar-width: thin;
}
.chat-body::-webkit-scrollbar { width: 4px; }
.chat-body::-webkit-scrollbar-thumb { background: var(--surface-3); border-radius: 2px; }

.chat-msg {
    display: flex;
    animation: chatMsgIn .35s var(--ease-out);
}
@keyframes chatMsgIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
.chat-msg-user { justify-content: flex-end; }
.chat-msg-bubble {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.5;
}
.chat-msg-bot .chat-msg-bubble {
    background: var(--surface-3);
    color: var(--text-1);
    border-bottom-left-radius: 4px;
}
.chat-msg-user .chat-msg-bubble {
    background: var(--accent-lime);
    color: var(--bg-deep);
    border-bottom-right-radius: 4px;
}
.chat-msg-bubble strong { font-weight: 600; }
.chat-msg-bubble a {
    color: var(--accent-lime);
    text-decoration: underline;
}
.chat-msg-user .chat-msg-bubble a { color: var(--bg-deep); }
.chat-msg-cta {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 14px;
    background: var(--bg-deep);
    color: var(--accent-lime);
    border: 1px solid var(--accent-lime);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    transition: all .2s;
    text-decoration: none !important;
}
.chat-msg-cta:hover {
    background: var(--accent-lime);
    color: var(--bg-deep) !important;
}

.chat-typing {
    display: inline-flex;
    gap: 4px;
    padding: 14px 18px;
    background: var(--surface-3);
    border-radius: 18px 18px 18px 4px;
}
.chat-typing span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--text-2);
    animation: chatType 1.2s ease-in-out infinite;
}
.chat-typing span:nth-child(2) { animation-delay: .2s; }
.chat-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes chatType {
    0%, 60%, 100% { opacity: .3; transform: translateY(0); }
    30% { opacity: 1; transform: translateY(-4px); }
}

.chat-quick-replies {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    padding-top: 4px;
}
.chat-quick {
    padding: 8px 14px;
    background: transparent;
    border: 1px solid var(--border-accent);
    border-radius: 100px;
    color: var(--text-2);
    font-size: 12px;
    transition: all .2s;
}
.chat-quick:hover {
    background: var(--surface-3);
    color: var(--text-1);
    border-color: var(--accent-lime);
}

.chat-input-row {
    display: flex;
    gap: 8px;
    padding: 16px 20px;
    border-top: 1px solid var(--border-subtle);
    background: var(--surface-2);
}
.chat-input-row input {
    flex: 1;
    background: var(--bg-deep);
    border: 1px solid var(--border-subtle);
    border-radius: 100px;
    padding: 12px 16px;
    color: var(--text-1);
    font-size: 13px;
    outline: none;
    transition: border-color .25s;
}
.chat-input-row input:focus { border-color: var(--accent-lime); }
.chat-input-row button {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--accent-lime);
    color: var(--bg-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s;
}
.chat-input-row button:hover { background: var(--text-1); transform: scale(1.05); }

/* ─── EXIT POPUP ───────────────────── */
.exit-popup {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s, visibility 0s .4s;
}
.exit-popup.open {
    opacity: 1;
    visibility: visible;
    transition: opacity .4s;
}
.exit-popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 8, 12, .85);
    backdrop-filter: blur(12px);
}
.exit-popup-card {
    position: relative;
    width: 100%;
    max-width: 480px;
    padding: 48px 40px;
    background: linear-gradient(180deg, var(--surface-1), var(--surface-2));
    border: 1px solid var(--border-accent);
    border-radius: 28px;
    text-align: center;
    transform: translateY(40px) scale(.95);
    transition: transform .5s var(--ease-out);
    box-shadow: var(--shadow-lg);
    z-index: 1;
}
.exit-popup.open .exit-popup-card {
    transform: translateY(0) scale(1);
}
.exit-popup-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 28px;
    padding: 1px;
    background: var(--grad-primary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: .4;
    pointer-events: none;
}
.exit-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--surface-3);
    color: var(--text-2);
    font-size: 20px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s;
}
.exit-popup-close:hover { background: var(--accent-coral); color: var(--text-1); }
.exit-popup-mark {
    margin: 0 auto 20px;
    width: 60px;
    height: 60px;
}
.exit-popup-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--accent-lime);
    letter-spacing: .25em;
    margin-bottom: 12px;
}
.exit-popup-card h3 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 12px;
    line-height: 1.1;
}
.exit-popup-card p {
    color: var(--text-2);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
}
.exit-popup-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.exit-popup-form input[type="email"] {
    padding: 16px 20px;
    background: var(--bg-deep);
    border: 1px solid var(--border-subtle);
    border-radius: 100px;
    color: var(--text-1);
    font-size: 14px;
    text-align: center;
    transition: border-color .25s;
    outline: none;
}
.exit-popup-form input[type="email"]:focus { border-color: var(--accent-lime); }
.exit-popup-form button {
    width: 100%;
    justify-content: center;
}
.exit-popup-fine {
    display: block;
    margin-top: 16px;
    font-size: 11px;
    color: var(--text-muted);
}

/* ─── TOAST ────────────────────────── */
.toast-stack {
    position: fixed;
    bottom: 100px;
    right: 24px;
    z-index: 95;
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: none;
}
.toast {
    padding: 14px 20px;
    background: var(--surface-2);
    border: 1px solid var(--border-accent);
    border-radius: 12px;
    font-size: 13px;
    color: var(--text-1);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(12px);
    pointer-events: auto;
    animation: toastIn .4s var(--ease-out);
    max-width: 320px;
}
.toast.success { border-color: var(--accent-lime); }
.toast.error { border-color: var(--accent-coral); }
.toast.removing { animation: toastOut .3s var(--ease-out) forwards; }
@keyframes toastIn {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes toastOut {
    to { opacity: 0; transform: translateX(40px); }
}

/* ─── RESPONSIVE FINE-TUNING ────────── */
@media (max-width: 768px) {
    .hero { padding: 100px 20px 60px; }
    .section { padding: 80px 20px; }
    .nav-container { padding: 0 20px; }
    .lead-form-wrap { padding: 32px 24px; }
    .calc-card { padding: 28px 20px; }
    .footer { padding: 60px 20px 24px; }
    .chat-launcher { bottom: 16px; right: 16px; }
    .chat-widget { bottom: 16px; right: 16px; height: calc(100vh - 32px); border-radius: 16px; }
    .testimonial-card { width: 320px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
    .hero-line { opacity: 1; transform: none; animation: none; }
    .ticker-track, .testimonial-track { animation: none; }
}

/* ─── PRINT ────────────────────────── */
@media print {
    .navbar, .chat-launcher, .chat-widget, .exit-popup, .scroll-progress, .cursor-dot, .cursor-ring { display: none !important; }
    body { background: white; color: black; }
}
