:root {
    --light-bg: #f4f1f7;
    --light-bg-soft: #eeeaf3;
    --light-bg-muted: #e8e4ef;
    --light-surface: rgba(255, 255, 255, 0.72);
    --light-surface-strong: #f9f7fb;
    --light-surface-soft: rgba(248, 246, 250, 0.82);
    --light-text: #25222a;
    --light-text-secondary: #6e6875;
    --light-text-muted: #8a8391;
    --light-lilac: #b8a7d6;
    --light-purple: #8f6bde;
    --light-purple-strong: #805be0;
    --light-blue: #7898e8;
    --light-dark-accent: #29252f;
    --light-border: rgba(63, 52, 73, 0.1);
    --light-border-strong: rgba(105, 82, 137, 0.17);
    --light-shadow-soft: 0 18px 50px rgba(72, 55, 88, 0.07);
    --web-bg: #101014;
    --web-surface: #16161c;
    --web-card: #1c1b22;
    --web-card-strong: #211d2b;
    --web-text: #f5f2f8;
    --web-muted: #b9b4c2;
    --web-dim: #8f8999;
    --web-lilac: #b9a7d8;
    --web-purple: #9b6cff;
    --web-blue: #5b8cff;
    --web-border: rgba(255, 255, 255, 0.09);
    --web-border-active: rgba(155, 108, 255, 0.65);
    --web-radius: 20px;
    --web-shadow: 0 20px 52px rgba(0, 0, 0, 0.2);
    --web-header-bg: rgba(16, 16, 20, 0.8);
    --web-header-scrolled-bg: rgba(16, 16, 20, 0.92);
}

html[data-theme="light"] {
    --web-bg: var(--light-bg);
    --web-surface: var(--light-bg-soft);
    --web-card: var(--light-surface);
    --web-card-strong: var(--light-surface-strong);
    --web-text: var(--light-text);
    --web-muted: var(--light-text-secondary);
    --web-dim: var(--light-text-muted);
    --web-lilac: #74568e;
    --web-purple: var(--light-purple);
    --web-blue: var(--light-blue);
    --web-border: var(--light-border);
    --web-border-active: rgba(105, 82, 137, 0.52);
    --web-shadow: var(--light-shadow-soft);
    --web-header-bg: rgba(244, 241, 247, 0.78);
    --web-header-scrolled-bg: rgba(244, 241, 247, 0.92);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 85% 5%, rgba(91, 140, 255, 0.1), transparent 27rem),
        radial-gradient(circle at 8% 35%, rgba(155, 108, 255, 0.1), transparent 24rem),
        var(--web-bg);
    color: var(--web-text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.55;
    transition: background-color 180ms ease, color 180ms ease;
}

.nodo-intro {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: none;
    place-items: center;
    overflow: hidden;
    pointer-events: none;
    background: #101014;
}

html.nodo-intro-active .nodo-intro {
    display: grid;
    animation: nodo-intro-overlay 1.6s ease-in-out forwards;
}

.nodo-intro-network {
    position: relative;
    width: clamp(218px, 25vw, 296px);
    aspect-ratio: 1;
    animation: nodo-intro-network 1.6s ease-in-out forwards;
}

.nodo-intro-mark {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    width: clamp(130px, 14vw, 184px);
    height: auto;
    object-fit: contain;
    transform: translate(-50%, -50%) scale(0.84);
    animation: nodo-intro-mark 1.25s ease-out forwards;
}

.nodo-intro-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: var(--intro-line-length);
    height: 1px;
    transform-origin: 0 50%;
    transform: rotate(var(--intro-line-angle)) scaleX(0);
    background: linear-gradient(90deg, rgba(155, 108, 255, 0.06), rgba(91, 140, 255, 0.58));
    opacity: 0;
    animation: nodo-intro-line 560ms ease-out var(--intro-line-delay) forwards;
}

.nodo-intro-line-1 { --intro-line-angle: -90deg; --intro-line-length: 94px; --intro-line-delay: 410ms; }
.nodo-intro-line-2 { --intro-line-angle: -34deg; --intro-line-length: 93px; --intro-line-delay: 470ms; }
.nodo-intro-line-3 { --intro-line-angle: 29deg; --intro-line-length: 98px; --intro-line-delay: 530ms; }
.nodo-intro-line-4 { --intro-line-angle: 84deg; --intro-line-length: 95px; --intro-line-delay: 590ms; }
.nodo-intro-line-5 { --intro-line-angle: 147deg; --intro-line-length: 96px; --intro-line-delay: 650ms; }
.nodo-intro-line-6 { --intro-line-angle: 207deg; --intro-line-length: 91px; --intro-line-delay: 710ms; }

.nodo-intro-node {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0.4);
    background: #8f6bde;
    box-shadow: 0 0 0 4px rgba(143, 107, 222, 0.09);
    opacity: 0;
    animation: nodo-intro-node 520ms ease-out var(--intro-node-delay) forwards;
}

.nodo-intro-node-1 { top: 7%; left: 51%; --intro-node-delay: 270ms; }
.nodo-intro-node-2 { top: 26%; left: 85%; --intro-node-delay: 330ms; background: #7898e8; }
.nodo-intro-node-3 { top: 68%; left: 89%; --intro-node-delay: 390ms; background: #b8a7d6; }
.nodo-intro-node-4 { top: 96%; left: 57%; --intro-node-delay: 450ms; background: #7898e8; }
.nodo-intro-node-5 { top: 75%; left: 12%; --intro-node-delay: 510ms; background: #b8a7d6; }
.nodo-intro-node-6 { top: 31%; left: 7%; --intro-node-delay: 570ms; }

a { color: inherit; }

button { font: inherit; }

.shell {
    width: min(100% - 40px, 1120px);
    margin-inline: auto;
}

.section { padding: 72px 0; }

.eyebrow {
    margin: 0 0 12px;
    color: var(--web-lilac);
    font-size: 0.72rem;
    font-weight: 750;
    letter-spacing: 0.13em;
}

h1, h2, h3, p { margin-top: 0; }

h1, h2, h3 { text-wrap: balance; }

h2 {
    margin-bottom: 14px;
    font-size: clamp(1.7rem, 6vw, 2.45rem);
    letter-spacing: -0.035em;
    line-height: 1.12;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 14px 0;
    border-bottom: 1px solid var(--web-border);
    background: var(--web-header-bg);
    backdrop-filter: blur(14px);
    transition: padding 180ms ease, background-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.header--scrolled {
    padding: 11px 0;
    background: var(--web-header-scrolled-bg);
    backdrop-filter: blur(18px);
}

.header-content,
.brand,
.hero-actions,
.advisor-nav,
.result-actions,
.footer-grid { display: flex; align-items: center; }

.header-content { justify-content: space-between; gap: 16px; }
.header-actions { display: flex; align-items: center; gap: 10px; }

.brand {
    gap: 9px;
    color: var(--web-text);
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-decoration: none;
}

.brand-mark { width: 30px; height: 30px; object-fit: contain; transform-origin: center; }
.brand-mark.is-spinning { animation: brand-spin 650ms ease-in-out; }

.header-help,
.text-link {
    color: var(--web-lilac);
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
}

.header-help-full,
.header-help-compact { display: none; }

.mobile-menu-toggle { display: none; }
.mobile-navigation[hidden] { display: none; }
.mobile-navigation { position: fixed; inset: 0; z-index: 300; }
.mobile-navigation-backdrop { position: absolute; inset: 0; width: 100%; padding: 0; border: 0; background: rgba(16, 16, 20, 0.58); backdrop-filter: blur(5px); cursor: pointer; }
.mobile-navigation-panel {
    position: relative;
    display: flex;
    width: min(88vw, 360px);
    min-height: 100%;
    margin-left: auto;
    flex-direction: column;
    padding: max(22px, env(safe-area-inset-top)) max(20px, env(safe-area-inset-right)) max(24px, env(safe-area-inset-bottom)) 20px;
    overflow-y: auto;
    border-left: 1px solid var(--web-border);
    background: var(--web-card-strong);
    box-shadow: -18px 0 46px rgba(0, 0, 0, 0.2);
    animation: mobile-navigation-in 180ms ease-out both;
}
.mobile-navigation-heading { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 28px; color: var(--web-lilac); font-size: 0.74rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.mobile-navigation-close,
.showcase-arrow { display: inline-grid; width: 42px; height: 42px; place-items: center; padding: 0; border: 1px solid var(--web-border); border-radius: 12px; background: var(--web-card); color: var(--web-text); cursor: pointer; }
.mobile-navigation-close { flex: 0 0 auto; font-size: 1.4rem; line-height: 1; }
.mobile-navigation-links { display: grid; gap: 4px; }
.mobile-navigation-links a { display: flex; min-height: 48px; align-items: center; padding: 9px 0; border-bottom: 1px solid var(--web-border); color: var(--web-text); font-size: 1rem; font-weight: 750; text-decoration: none; }
.mobile-navigation-separator { height: 1px; margin: 24px 0 18px; background: var(--web-border); }
.mobile-navigation-help { display: grid; gap: 4px; padding: 4px 0; color: var(--web-muted); font-size: 0.9rem; text-decoration: none; }
.mobile-navigation-help strong { color: var(--web-lilac); font-size: 1rem; }
body.mobile-navigation-open { overflow: hidden; }

.theme-toggle {
    display: inline-grid;
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
    place-items: center;
    padding: 0;
    border: 1px solid var(--web-border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--web-lilac);
    cursor: pointer;
    transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.theme-toggle-icon { font-size: 1.1rem; line-height: 1; }

.hero { padding: 68px 0 42px; }

.hero-content { max-width: 880px; }

.hero h1 {
    max-width: 850px;
    margin-bottom: 20px;
    font-size: clamp(2.3rem, 7.5vw, 4.25rem);
    letter-spacing: -0.058em;
    line-height: 1.05;
}
.hero-title-line { display: block; }

.hero-copy {
    max-width: 600px;
    margin-bottom: 30px;
    color: var(--web-muted);
    font-size: clamp(1rem, 3.8vw, 1.15rem);
}

.hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 50px;
    padding: 13px 20px;
    border: 1px solid transparent;
    border-radius: 14px;
    font-weight: 750;
    text-align: center;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button-primary {
    background: linear-gradient(135deg, var(--web-purple), var(--web-blue));
    box-shadow: 0 12px 26px rgba(91, 140, 255, 0.2);
    color: #fff;
}

.button-secondary {
    border-color: var(--web-border);
    background: rgba(255, 255, 255, 0.04);
    color: var(--web-text);
    cursor: pointer;
}

.button-text {
    border: 0;
    background: transparent;
    color: var(--web-muted);
    cursor: pointer;
}

.hero-note { margin: 24px 0 0; color: var(--web-dim); font-size: 0.84rem; }

.simple-section { padding: 18px 0 46px; }

.simple-heading { max-width: 600px; margin-bottom: 16px; }
.simple-heading .eyebrow { margin-bottom: 5px; }
.simple-heading h2 { margin-bottom: 0; }

.simple-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.simple-list li { min-width: 0; }

.simple-card {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 72px;
    height: 100%;
    padding: 11px;
    border: 1px solid var(--web-border);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.025);
    color: inherit;
    cursor: pointer;
    text-decoration: none;
    transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.simple-card span {
    display: grid;
    flex: 0 0 auto;
    width: 25px;
    height: 25px;
    place-items: center;
    border-radius: 50%;
    background: rgba(155, 108, 255, 0.16);
    color: var(--web-lilac);
    font-size: 0.8rem;
    font-weight: 800;
}

.simple-card p { margin: 0; color: var(--web-muted); font-size: 0.82rem; line-height: 1.34; }

.advisor-section {
    padding-top: 48px;
    background: linear-gradient(145deg, rgba(155, 108, 255, 0.08), rgba(91, 140, 255, 0.045) 48%, transparent 78%);
}

.advisor-shell { max-width: 940px; }

.advisor-intro { max-width: 640px; margin-bottom: 18px; }
.advisor-intro > p:last-child, .faq-heading > p { margin-bottom: 0; color: var(--web-muted); }

.advisor-card {
    min-height: 0;
    padding: 18px;
    border: 1px solid var(--web-border);
    border-radius: var(--web-radius);
    background:
        radial-gradient(circle at 96% 3%, rgba(185, 167, 216, 0.1), transparent 19rem),
        linear-gradient(145deg, #211d2b, #24202e);
    box-shadow: var(--web-shadow);
}

.advisor-view { animation: none; }

.advisor-start { display: grid; min-height: 300px; align-content: center; max-width: 570px; }
.advisor-start h3 { margin-bottom: 12px; font-size: clamp(1.65rem, 6vw, 2.2rem); letter-spacing: -0.04em; line-height: 1.1; }
.advisor-start p { margin-bottom: 28px; color: var(--web-muted); }
.advisor-start .button { cursor: pointer; }
.advisor-start .button-primary:active { box-shadow: 0 8px 18px rgba(91, 140, 255, 0.2); transform: translateY(0); }

.advisor-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 8px;
    color: var(--web-lilac);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.progress-track { height: 6px; margin-bottom: 18px; overflow: hidden; border-radius: 999px; background: rgba(255, 255, 255, 0.08); }
.progress-bar { height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--web-purple), var(--web-blue)); transition: width 0.2s ease; }

.question-title { margin-bottom: 6px; font-size: clamp(1.4rem, 5.2vw, 1.9rem); letter-spacing: -0.04em; line-height: 1.14; }
.question-help { margin-bottom: 16px; color: var(--web-muted); font-size: 0.92rem; }

.advisor-selection-status {
    display: grid;
    align-content: start;
    gap: 2px;
    min-height: 4.1em;
    margin: -7px 0 10px;
    color: var(--web-lilac);
    font-size: 0.82rem;
    font-weight: 750;
    line-height: 1.45;
}

.advisor-selection-note {
    color: var(--web-muted);
    font-size: 0.78rem;
    font-weight: 600;
}

.choice-grid { display: grid; gap: 8px; }

.commerce-needs {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--web-border);
}

.commerce-needs-title { margin: 0 0 4px; font-size: 1.05rem; letter-spacing: -0.02em; line-height: 1.3; }
.commerce-needs-help { margin: 0 0 12px; color: var(--web-muted); font-size: 0.88rem; }

.choice-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    width: 100%;
    min-height: 58px;
    padding: 11px 43px 11px 14px;
    border: 1px solid var(--web-border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.025);
    box-shadow: inset 0 0 0 1px transparent;
    color: var(--web-text);
    cursor: pointer;
    text-align: left;
    transition: border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease, opacity 0.18s ease;
}

.choice-card-detailed { min-height: 72px; padding-block: 13px; }
.choice-card-compact { min-height: 58px; }
.choice-card strong { display: block; margin-bottom: 3px; font-size: 0.94rem; line-height: 1.3; }
.choice-card span { display: block; color: var(--web-muted); font-size: 0.82rem; line-height: 1.4; }
.choice-card.is-selected { border-color: var(--web-border-active); background: rgba(155, 108, 255, 0.13); box-shadow: inset 0 0 0 1px rgba(155, 108, 255, 0.12); }
.choice-card.is-unavailable { opacity: 0.6; }

.choice-indicator {
    position: absolute;
    top: 14px;
    right: 14px;
    display: grid !important;
    width: 19px;
    height: 19px;
    place-items: center;
    border: 1px solid transparent;
    border-radius: 50%;
    background: transparent;
    color: #fff !important;
    font-size: 0.7rem !important;
    font-weight: 900;
    line-height: 1 !important;
    opacity: 0;
    transition: opacity 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.choice-card.is-selected .choice-indicator {
    border-color: rgba(255, 255, 255, 0.24);
    background: linear-gradient(135deg, var(--web-purple), var(--web-blue));
    opacity: 1;
}

.advisor-message { min-height: 3em; margin: 10px 0 0; color: #e4c7ff; font-size: 0.86rem; line-height: 1.45; }
.advisor-nav {
    position: sticky;
    bottom: 0;
    z-index: 1;
    justify-content: space-between;
    gap: 8px;
    margin-top: 8px;
    padding: 12px 0 2px;
    background: linear-gradient(to bottom, rgba(36, 32, 46, 0), #24202e 34%);
}
.advisor-nav .button { min-width: 122px; }
.advisor-next:disabled { box-shadow: none; cursor: not-allowed; filter: saturate(0.55); opacity: 0.5; }

.result-eyebrow { color: var(--web-lilac); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.13em; }
.result-title { margin: 8px 0 12px; font-size: clamp(1.55rem, 6vw, 2.2rem); letter-spacing: -0.04em; line-height: 1.13; }

.plan-result {
    margin: 0 0 16px;
    padding: 18px;
    border: 1px solid var(--web-border-active);
    border-radius: 17px;
    background: var(--web-card-strong);
}

.plan-result h3 { margin-bottom: 10px; font-size: clamp(1.55rem, 5.5vw, 1.9rem); letter-spacing: -0.04em; line-height: 1.12; }
.plan-result p { margin-bottom: 13px; color: var(--web-muted); }
.plan-summary { max-width: 650px; color: var(--web-text) !important; font-size: 1rem; line-height: 1.55; }

.plan-facts { display: grid; gap: 6px; margin: 0; padding: 0; list-style: none; color: var(--web-text); font-size: 0.9rem; }
.plan-facts li { display: flex; gap: 8px; }
.plan-facts li::before { content: "✓"; color: var(--web-lilac); font-weight: 800; }
.plan-price { margin: 0 0 4px; color: var(--web-text); font-size: 1.15rem; font-weight: 800; }
.plan-price-context { margin: 0 0 4px !important; color: var(--web-lilac) !important; font-size: 0.77rem; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; }
.plan-price-note { max-width: 610px; margin: 0 0 12px !important; color: var(--web-dim) !important; font-size: 0.81rem; line-height: 1.45; }
.plan-time { margin: 0; color: var(--web-lilac); font-size: 0.88rem; font-weight: 650; }
.plan-note { margin: 15px 0 0 !important; color: var(--web-dim) !important; font-size: 0.82rem; }

.result-details { display: grid; gap: 8px; margin-bottom: 16px; }
.result-details details { overflow: hidden; border: 1px solid var(--web-border); border-radius: 13px; background: rgba(255, 255, 255, 0.025); }
summary { cursor: pointer; }
.result-details summary { display: flex; align-items: center; min-height: 54px; padding: 15px; color: var(--web-text); font-size: 0.9rem; font-weight: 750; }
.result-details details > div { padding: 0 15px 15px; color: var(--web-muted); font-size: 0.88rem; line-height: 1.55; }
.result-details ul { display: grid; gap: 7px; margin: 0; padding-left: 18px; }
.result-details p:last-child { margin-bottom: 0; }

.result-actions { align-items: stretch; flex-direction: column; gap: 8px; }
.result-actions .button { width: 100%; }

.contact-recommendation {
    display: grid;
    gap: 2px;
    margin-bottom: 18px;
    padding: 14px 16px;
    border: 1px solid var(--web-border);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.035);
}

.contact-recommendation p { margin: 0; }
.contact-recommendation-label { color: var(--web-lilac); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.contact-recommendation-plan { color: var(--web-text); font-size: 1.05rem; font-weight: 800; }
.contact-recommendation-price { color: var(--web-muted); font-size: 0.87rem; font-weight: 650; }

.contact-title { margin: 0 0 8px; font-size: clamp(1.55rem, 5.5vw, 2rem); letter-spacing: -0.04em; line-height: 1.14; }
.contact-intro { max-width: 660px; margin-bottom: 18px; color: var(--web-muted); }
.contact-form { display: grid; gap: 12px; max-width: 760px; }
.contact-field { display: grid; gap: 6px; }
.contact-label { color: var(--web-text); font-size: 0.88rem; font-weight: 750; }

.contact-control {
    width: 100%;
    min-height: 48px;
    padding: 12px 13px;
    border: 1px solid var(--web-border);
    border-radius: 12px;
    outline: 0;
    background: rgba(255, 255, 255, 0.035);
    color: var(--web-text);
    font: inherit;
    line-height: 1.4;
    transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

textarea.contact-control { min-height: 112px; resize: vertical; }
.contact-control::placeholder { color: var(--web-dim); opacity: 1; }
.contact-control:disabled { cursor: not-allowed; opacity: 0.55; }
.contact-control:focus { border-color: var(--web-border-active); box-shadow: 0 0 0 3px rgba(155, 108, 255, 0.16); }

.contact-checkbox { display: flex; align-items: center; gap: 9px; color: var(--web-muted); font-size: 0.86rem; font-weight: 650; cursor: pointer; }
.contact-checkbox input { width: 17px; height: 17px; accent-color: var(--web-purple); }
.contact-marketing-consent { align-items: flex-start; margin-top: 4px; padding-top: 12px; border-top: 1px solid var(--web-border); line-height: 1.45; }
.contact-marketing-consent input { flex: 0 0 auto; margin-top: 2px; }
.contact-honeypot { position: absolute; width: 1px; height: 1px; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }
.contact-validation { min-height: 2.9em; margin: 0; color: #e4c7ff; font-size: 0.86rem; line-height: 1.45; }
.contact-actions { display: grid; gap: 7px; margin-top: 2px; }
.contact-actions .button { width: 100%; }
.contact-form[aria-busy="true"] .button-primary { cursor: wait; }

.success-copy { max-width: 660px; margin-bottom: 14px; color: var(--web-muted); }
.success-email { margin: 0 0 18px; padding: 12px 14px; border: 1px solid var(--web-border); border-radius: 13px; background: rgba(255, 255, 255, 0.035); color: var(--web-text); font-size: 0.9rem; line-height: 1.5; }
.success-process { display: grid; gap: 8px; margin: 0 0 18px; padding: 0; list-style: none; }
.success-step { display: flex; align-items: center; gap: 10px; min-height: 46px; padding: 10px 12px; border: 1px solid var(--web-border); border-radius: 13px; background: rgba(255, 255, 255, 0.025); color: var(--web-muted); font-size: 0.9rem; font-weight: 700; }
.success-step-mark { display: grid; width: 23px; height: 23px; flex: 0 0 23px; place-items: center; border: 1px solid var(--web-border); border-radius: 50%; color: var(--web-dim); font-size: 0.78rem; line-height: 1; }
.success-step.is-complete { border-color: var(--web-border-active); color: var(--web-text); }
.success-step.is-complete .success-step-mark { border-color: transparent; background: linear-gradient(135deg, var(--web-purple), var(--web-blue)); color: #fff; }
.success-step.is-current { color: var(--web-text); }
.success-step.is-current .success-step-mark { border-color: var(--web-border-active); color: var(--web-lilac); }
.success-actions { display: grid; gap: 8px; }
.success-actions .button { width: 100%; }

.work-section {
    padding-top: 68px;
    background: linear-gradient(145deg, rgba(155, 108, 255, 0.065), transparent 56%);
}

.work-shell { max-width: 940px; }
.work-heading { max-width: 680px; margin-bottom: 28px; }
.work-heading > p:last-child { margin-bottom: 0; color: var(--web-muted); }

.project-showcase { min-width: 0; }
.showcase-viewport { min-width: 0; overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: x mandatory; scrollbar-width: none; }
.showcase-viewport::-webkit-scrollbar { display: none; }
.showcase-track { display: flex; width: 100%; }
.showcase-card { display: grid; flex: 0 0 calc(100% - 32px); min-width: 0; gap: 28px; padding: 16px; scroll-snap-align: start; scroll-snap-stop: always; border: 1px solid var(--web-border); border-radius: 22px; background: linear-gradient(145deg, var(--web-card), var(--web-card-strong)); box-shadow: var(--web-shadow); }
.showcase-preview { min-width: 0; margin: 0; aspect-ratio: 16 / 10; overflow: hidden; border: 1px solid var(--web-border); border-radius: 16px; background: var(--web-card-strong); box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18); }
.showcase-preview img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.showcase-preview-placeholder { display: grid; align-content: center; justify-items: center; gap: 6px; padding: 18px; color: var(--web-muted); text-align: center; }
.showcase-placeholder-name { color: var(--web-text); font-size: clamp(1.4rem, 6vw, 2rem); font-weight: 800; letter-spacing: -0.035em; }
.showcase-placeholder-note { color: var(--web-dim); font-size: 0.82rem; }
.showcase-content { min-width: 0; align-self: center; }
.showcase-content .eyebrow { margin-bottom: 7px; }
.showcase-type { margin-bottom: 7px; color: var(--web-lilac); font-size: 0.78rem; font-weight: 750; letter-spacing: 0.06em; text-transform: uppercase; }
.showcase-content h3 { margin-bottom: 7px; font-size: clamp(1.7rem, 6vw, 2.25rem); letter-spacing: -0.045em; line-height: 1.12; }
.showcase-subtitle { margin-bottom: 17px; color: var(--web-dim); font-size: 0.87rem; }
.showcase-description { max-width: 550px; color: var(--web-muted); }
.showcase-status-badge { display: inline-flex; margin-bottom: 15px; padding: 5px 9px; border: 1px solid var(--web-border-active); border-radius: 99px; color: var(--web-lilac); font-size: 0.75rem; font-weight: 750; }
.showcase-pending-copy { margin-bottom: 18px; color: var(--web-muted); }
.showcase-tags { display: flex; flex-wrap: wrap; gap: 7px; margin: 0 0 21px; padding: 0; list-style: none; }
.showcase-tags li { padding: 6px 9px; border: 1px solid var(--web-border); border-radius: 99px; background: var(--web-card); color: var(--web-text); font-size: 0.76rem; font-weight: 700; }
.showcase-link { display: inline-flex; min-height: 42px; align-items: center; }
.showcase-controls { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 14px; }
.showcase-arrows { display: flex; gap: 8px; }
.showcase-arrow { transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease, transform 180ms ease; }
.showcase-dots { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.showcase-dot { width: 10px; height: 10px; padding: 0; border: 0; border-radius: 50%; background: var(--web-border-active); cursor: pointer; transition: transform 180ms ease, background-color 180ms ease; }
.showcase-dot.is-active { transform: scale(1.22); background: var(--web-purple); }
.showcase-tab { min-height: 38px; padding: 8px 11px; border: 1px solid var(--web-border); border-radius: 99px; background: transparent; color: var(--web-muted); cursor: pointer; font-size: 0.82rem; font-weight: 700; transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease; }
.showcase-tab.is-active { border-color: var(--web-border-active); background: var(--web-card); color: var(--web-text); }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.continuity-section { padding-top: 28px; }
.continuity-shell { max-width: 940px; }
.continuity-card {
    padding: 25px 22px;
    border: 1px solid var(--web-border);
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(155, 108, 255, 0.1), rgba(91, 140, 255, 0.045));
}
.continuity-heading { max-width: 690px; }
.continuity-heading h2 { margin-bottom: 12px; }
.continuity-heading > p:last-child { margin-bottom: 0; color: var(--web-muted); }
.continuity-paths { display: grid; gap: 10px; margin: 23px 0 18px; }
.continuity-path { padding: 15px; border: 1px solid var(--web-border); border-radius: 14px; background: rgba(255, 255, 255, 0.035); }
.continuity-path p { margin-bottom: 5px; color: var(--web-lilac); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.1em; }
.continuity-path h3 { margin: 0; font-size: 1rem; letter-spacing: -0.015em; line-height: 1.38; }
.continuity-link { display: inline-flex; min-height: 42px; align-items: center; }

.faq-section { padding-top: 72px; }
.faq-shell { max-width: 860px; }
.faq-heading { max-width: 650px; margin-bottom: 26px; }
.faq-list { display: grid; gap: 10px; }
.faq-list details {
    border: 1px solid var(--web-border);
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(185, 167, 216, 0.025));
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.04);
    transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}
.faq-list summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 58px;
    width: 100%;
    padding: 15px 17px;
    color: var(--web-text);
    font-weight: 700;
    line-height: 1.4;
    list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::marker { content: ""; }
.faq-list summary::after {
    content: "+";
    display: grid;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    place-items: center;
    border: 1px solid rgba(185, 167, 216, 0.34);
    border-radius: 50%;
    background: rgba(185, 167, 216, 0.08);
    color: var(--web-lilac);
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1;
    transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}
.faq-list details[open] { border-color: rgba(185, 167, 216, 0.48); background: rgba(185, 167, 216, 0.075); box-shadow: 0 12px 30px rgba(155, 108, 255, 0.09); }
.faq-list details[open] summary::after { content: "−"; border-color: rgba(185, 167, 216, 0.54); background: rgba(185, 167, 216, 0.16); color: var(--web-text); }
.faq-list details > div { padding: 16px 17px 17px; border-top: 1px solid rgba(255, 255, 255, 0.07); color: var(--web-muted); font-size: 0.92rem; line-height: 1.6; }
.faq-list details[open] > div { animation: faq-reveal 180ms ease-out both; }
.faq-list details p:last-child { margin-bottom: 0; }

.final-section { padding: 24px 0 48px; }
.final-card { padding: 28px 24px; border: 1px solid var(--web-border); border-radius: var(--web-radius); background: linear-gradient(135deg, rgba(155, 108, 255, 0.12), rgba(91, 140, 255, 0.055)); }
.final-card h2 { max-width: 700px; font-size: clamp(1.55rem, 5vw, 2.1rem); }
.final-card > p:not(.eyebrow) { max-width: 580px; margin-bottom: 20px; color: var(--web-muted); }

.site-footer {
    --footer-bg: #29252f;
    --footer-text: #f5f2f8;
    --footer-muted: #c8c1ce;
    --footer-accent: #c3a9e8;
    --footer-border: rgba(255, 255, 255, 0.08);
    padding: 48px 0 38px;
    border-top: 1px solid var(--footer-border);
    background: var(--footer-bg);
    color: var(--footer-text);
}
.footer-grid { align-items: flex-start; flex-direction: column; gap: 30px; }
.footer-grid > .footer-brand-block,
.footer-grid > .footer-block { max-width: 315px; }
.footer-grid .brand { margin-bottom: 13px; color: var(--footer-text); }
.footer-grid p { margin-bottom: 10px; color: var(--footer-muted); font-size: 0.87rem; }
.footer-grid .footer-label { color: var(--footer-text); font-weight: 700; }
.footer-person { margin-bottom: 16px; }
.footer-person p { margin-bottom: 3px; }
.footer-grid .footer-person-name { color: var(--footer-text); font-weight: 750; }
.footer-grid .footer-person-role { color: var(--footer-muted); font-size: 0.82rem; }
.footer-person-trigger {
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--footer-accent);
    cursor: pointer;
    font: inherit;
    text-align: left;
}
.footer-grid .footer-person-trigger { color: var(--footer-accent); }
.footer-grid .footer-location { display: inline-block; color: var(--footer-accent); font-weight: 700; text-decoration: none; }
.site-footer .text-link { color: var(--footer-accent); }
.footer-contact-card + .footer-contact-card { margin-top: 23px; }
.footer-copy-mobile { display: none; }

body.team-modal-open,
body.team-photo-viewer-open { overflow: hidden; }
.team-modal[hidden] { display: none; }
.team-modal { position: fixed; inset: 0; z-index: 400; display: grid; place-items: center; padding: 20px; }
.team-modal-backdrop { position: absolute; inset: 0; background: rgba(16, 16, 20, 0.68); backdrop-filter: blur(6px); }
.team-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 510px);
    max-height: min(700px, calc(100vh - 40px));
    overflow-y: auto;
    padding: 28px;
    border: 1px solid var(--web-border);
    border-radius: 22px;
    background: var(--web-card-strong);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.3);
    color: var(--web-text);
    animation: team-modal-in 180ms ease-out both;
}
.team-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    padding: 0;
    border: 1px solid var(--web-border);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    color: var(--web-text);
    cursor: pointer;
    font-size: 1.35rem;
    line-height: 1;
}
.team-photo-button {
    position: relative;
    display: grid;
    width: 96px;
    height: 96px;
    place-items: center;
    margin: 0 0 20px;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(155, 108, 255, 0.3), rgba(91, 140, 255, 0.22));
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    cursor: zoom-in;
}
.team-modal-placeholder { color: #fff; font-size: 1.5rem; font-weight: 800; letter-spacing: 0.04em; }
.team-modal-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: 0; transition: opacity 180ms ease; }
.team-photo-button.has-photo .team-modal-photo { opacity: 1; }
.team-photo-button.has-photo .team-modal-placeholder { opacity: 0; }
.team-modal-eyebrow { margin-bottom: 6px; color: var(--web-lilac); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; }
.team-modal-dialog h2 { margin-bottom: 5px; font-size: clamp(1.7rem, 7vw, 2.2rem); letter-spacing: -0.04em; }
.team-modal-role { margin-bottom: 16px; color: var(--web-lilac); font-weight: 700; }
.team-modal-dialog > p:last-child { margin-bottom: 0; color: var(--web-muted); }

.team-photo-viewer[hidden] { display: none; }
.team-photo-viewer { position: fixed; inset: 0; z-index: 410; display: grid; place-items: center; padding: 30px; }
.team-photo-viewer-backdrop { position: absolute; inset: 0; background: rgba(15, 12, 20, 0.82); backdrop-filter: blur(8px); }
.team-photo-viewer-dialog { position: relative; z-index: 1; display: grid; max-width: min(78vw, 820px); max-height: 82vh; }
.team-photo-viewer-image { display: block; max-width: min(78vw, 820px); max-height: 82vh; width: auto; height: auto; object-fit: contain; border-radius: 18px; box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34); }
.team-photo-viewer-close {
    position: absolute;
    z-index: 2;
    top: 18px;
    right: 18px;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    background: rgba(20, 17, 27, 0.66);
    color: #fff;
    cursor: pointer;
    font-size: 1.35rem;
    line-height: 1;
}

.floating-whatsapp {
    position: fixed;
    z-index: 90;
    right: max(24px, env(safe-area-inset-right));
    bottom: max(24px, env(safe-area-inset-bottom));
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 99px;
    background: #25D366;
    box-shadow: 0 10px 24px rgba(20, 111, 57, 0.24);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;
    transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}
.floating-whatsapp-icon { display: block; width: 20px; height: 20px; flex: 0 0 20px; }

:focus-visible { outline: 3px solid var(--web-blue); outline-offset: 3px; }

#inicio,
#como-funciona,
#asesor,
#proyectos,
#acompanamiento,
#faq { scroll-margin-top: 78px; }

@media (max-width: 767px) {
    .shell { width: min(calc(100% - 32px), 680px); }
    .site-header { padding: 11px 0; }
    .header-content { gap: 8px; }
    .header-actions { flex: 0 1 auto; gap: 6px; }
    .brand { gap: 8px; font-size: .9rem; }
    .brand-mark { width: 29px; height: 29px; }
    .theme-toggle { width: 38px; height: 38px; border-radius: 11px; }
    .header-help { display: none; }
    .header-help-short { display: none; }
    .header-help-compact { display: none; }
    .mobile-menu-toggle { display: inline-grid; width: 38px; height: 38px; flex: 0 0 auto; place-content: center; gap: 4px; padding: 0; border: 1px solid var(--web-border); border-radius: 11px; background: var(--web-card); color: var(--web-lilac); cursor: pointer; }
    .mobile-menu-toggle span { display: block; width: 17px; height: 1.5px; border-radius: 99px; background: currentColor; }

    .hero { padding: 54px 0 38px; }
    .hero .eyebrow { margin-bottom: 12px; }
    .hero h1 { width: 100%; max-width: 100%; margin-bottom: 20px; font-size: clamp(2.15rem, 9.2vw, 2.55rem); line-height: 1.04; text-wrap: balance; }
    .hero-title-line { display: block; }
    .hero-copy { margin-bottom: 24px; font-size: 1rem; }
    .hero-actions { gap: 14px; }
    .hero-actions .button { width: 100%; }
    .hero-note { margin-top: 18px; }

    .section { padding: 58px 0; }
    .simple-section { padding: 18px 0 50px; }
    .simple-heading { margin-bottom: 18px; }
    .simple-list {
        display: flex;
        width: calc(100% + 16px);
        gap: 10px;
        margin-right: -16px;
        padding: 2px 16px 4px 0;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        overscroll-behavior-x: contain;
        scroll-padding-inline: 0;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        -webkit-overflow-scrolling: touch;
    }
    .simple-list::-webkit-scrollbar { display: none; }
    .simple-list li { display: flex; flex: 0 0 76%; min-width: 0; scroll-snap-align: start; }
    .simple-card { width: 100%; min-height: 76px; padding: 13px; }

    .advisor-section { padding-top: 58px; }
    .advisor-intro { margin-bottom: 20px; }
    .advisor-card { overflow: visible; padding: 20px; border-radius: 20px; }
    .advisor-start { min-height: 250px; }
    .advisor-start p { margin-bottom: 24px; }
    .advisor-message { min-height: 3em; }
    .question-title { font-size: clamp(1.5rem, 7vw, 1.9rem); }
    .question-help { margin-bottom: 16px; }
    .advisor-selection-status { min-height: 3.6em; margin: -5px 0 10px; }
    .choice-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
    .choice-card { min-height: 60px; padding: 12px 36px 12px 13px; }
    .choice-card strong { font-size: .92rem; }
    .choice-card-detailed { grid-column: 1 / -1; min-height: 76px; padding: 13px 36px 13px 14px; }
    .choice-card-detailed strong { font-size: .94rem; }
    .choice-card-detailed span { font-size: .82rem; }
    .advisor-nav { gap: 10px; padding-top: 12px; }
    .advisor-nav .button { flex: 1; min-width: 0; min-height: 50px; padding-inline: 14px; }

    .plan-result { padding: 18px; }
    .result-actions { gap: 10px; }
    .result-actions .button { min-height: 52px; }
    .contact-section { padding-top: 54px; }
    .contact-control { min-height: 50px; }
    textarea.contact-control { min-height: 112px; }
    .contact-checkbox { min-height: 44px; }

    .work-section { padding-top: 58px; }
    .work-heading { margin-bottom: 22px; }
    .showcase-hint { margin: 0 0 10px; color: var(--web-dim); font-size: 0.79rem; }
    .showcase-track { gap: 12px; }
    .showcase-card { flex-basis: calc(100% - 32px); gap: 22px; padding: 12px; border-radius: 19px; }
    .showcase-preview { border-radius: 14px; }
    .showcase-description { margin-bottom: 17px; }
    .showcase-link { min-height: 40px; }
    .showcase-tabs { display: none; }
    .continuity-section { padding-top: 20px; }
    .continuity-card { padding: 23px 19px; border-radius: 19px; }
    .continuity-paths { margin: 20px 0 15px; }
    .continuity-link { min-height: 40px; }

    .faq-section { padding-top: 58px; }
    .faq-heading { margin-bottom: 22px; }
    .faq-list { gap: 8px; }
    .faq-list details { border-radius: 14px; }
    .faq-list summary { min-height: 54px; padding: 13px 14px; font-size: .92rem; }
    .faq-list summary::after { width: 26px; height: 26px; }
    .faq-list details > div { padding: 0 14px 14px; font-size: .9rem; }

    .final-section { padding: 28px 0 50px; }
    .final-card { padding: 28px 24px; text-align: center; }
    .final-card .button { width: 100%; }

    .floating-whatsapp {
        right: max(16px, env(safe-area-inset-right));
        bottom: max(16px, env(safe-area-inset-bottom));
        width: 52px;
        min-height: 52px;
        height: 52px;
        justify-content: center;
        padding: 0;
        border-radius: 50%;
    }
    .floating-whatsapp-full { display: none; }
    .floating-whatsapp-icon { width: 24px; height: 24px; flex-basis: 24px; }

    .site-footer { padding: 40px 0 28px; }
    .footer-grid { display: flex; align-items: stretch; flex-direction: column; gap: 0; text-align: left; }
    .footer-grid > .footer-brand-block,
    .footer-grid > .footer-block { width: 100%; max-width: none; }
    .footer-brand-block { padding: 0 0 24px; border-bottom: 1px solid var(--footer-border); }
    .footer-grid .brand { justify-content: flex-start; }
    .footer-brand-block > p { margin-bottom: 0; font-size: .88rem; line-height: 1.55; }
    .footer-team,
    .footer-location-block { padding: 22px 0; border-bottom: 1px solid var(--footer-border); }
    .footer-grid .footer-label { margin-bottom: 10px; font-size: .84rem; letter-spacing: .03em; line-height: 1.35; text-transform: none; }
    .footer-team { display: grid; gap: 0; }
    .footer-person { display: grid; gap: 0; min-height: 0; margin: 0; padding: 7px 0; }
    .footer-person p { margin: 0; }
    .footer-person-trigger { display: inline-flex; width: 100%; min-height: 36px; align-items: center; justify-content: flex-start; text-align: left; }
    .footer-grid .footer-person-name { font-size: .92rem; line-height: 1.28; }
    .footer-grid .footer-person-role { font-size: .83rem; line-height: 1.45; }
    .footer-grid .footer-location { display: inline-flex; min-height: 36px; align-items: center; justify-content: flex-start; font-size: .89rem; line-height: 1.36; }
    .footer-location-copy { display: grid; gap: 4px; margin-top: 6px; }
    .footer-location-copy p { margin: 0; font-size: .81rem; line-height: 1.42; }
    .footer-copy-full { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
    .footer-copy-mobile { display: inline; }
    .footer-contact { display: grid; grid-template-columns: 1fr; gap: 0; margin-top: 0; padding: 16px 0 0; }
    .footer-contact-card { margin: 0; padding: 0; border: 0; border-radius: 0; background: transparent; }
    .footer-contact-card + .footer-contact-card { margin-top: 0; }
    .footer-contact-card > p { display: none; }
    .footer-contact-card .text-link { display: inline-flex; width: 100%; min-height: 48px; align-items: center; justify-content: flex-start; border-top: 1px solid var(--footer-border); font-size: .9rem; font-weight: 700; }

    .team-modal { padding: 12px; }
    .team-modal-dialog { width: min(94vw, 510px); max-height: calc(100vh - 24px); padding: 22px 18px 18px; border-radius: 18px; }
    .team-modal-close { width: 38px; height: 38px; top: 10px; right: 10px; }
    .team-photo-viewer { padding: 12px; }
    .team-photo-viewer-dialog,
    .team-photo-viewer-image { max-width: 94vw; max-height: 82vh; }
    .team-photo-viewer-close { top: 10px; right: 10px; }
}

@media (max-width: 350px) {
    .choice-grid { grid-template-columns: 1fr; }
    .advisor-nav .button { padding-inline: 10px; }
}

@media (min-width: 768px) {
    .section { padding: 96px 0; }
    .site-header { padding: 16px 0; }
    .site-header.header--scrolled { padding: 12px 0; }
    .brand-mark { width: 33px; height: 33px; }
    .header-help-full { display: inline; }
    .header-help-short,
    .header-help-compact { display: none; }
    .mobile-menu-toggle,
    .mobile-navigation { display: none !important; }
    .hero { padding: 104px 0 54px; }
    .hero-actions { align-items: center; flex-direction: row; }
    .simple-section { padding-bottom: 56px; }
    .advisor-section { padding-top: 62px; }
    .advisor-card { padding: 24px; }
    .showcase-hint { display: none; }
    .showcase-card { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr); flex-basis: 100%; align-items: start; gap: 32px; padding: 18px; }
    .showcase-preview { min-height: 0; }
    .showcase-content { align-self: start; padding: 4px 2px 4px 0; }
    .showcase-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
    .continuity-paths { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .advisor-start { min-height: 270px; }
    .choice-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .result-actions { flex-direction: row; flex-wrap: wrap; }
    .result-actions .button { width: auto; }
    .faq-section { padding-top: 72px; }
    .final-section { padding: 40px 0 56px; }
    .footer-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px 42px; }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .section { padding: 76px 0; }
    .site-header { padding: 14px 0; }
    .site-header.header--scrolled { padding: 10px 0; }
    .hero { padding: 76px 0 42px; }
    .simple-section { padding-bottom: 48px; }
    .advisor-section { padding-top: 54px; }
    .advisor-card { padding: 22px; }
    .faq-section { padding-top: 60px; }
    .final-section { padding: 32px 0 46px; }
}

@media (min-width: 1024px) {
    .simple-list { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .simple-card { min-height: 62px; }
    .choice-grid.choice-grid-compact { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .advisor-card { min-height: 0; }
    .hero h1 { font-size: clamp(3.3rem, 5vw, 4.25rem); }
    .footer-grid { grid-template-columns: 1.1fr 0.95fr 1.25fr 1.15fr; gap: 34px; }
}

@media (max-width: 1023px) and (orientation: landscape) and (max-height: 520px) {
    .site-header { padding: 7px 0; }
    .hero { padding: 30px 0 24px; }
    .team-modal { padding: 8px; }
    .team-modal-dialog { max-height: calc(100vh - 16px); }
    .team-photo-viewer { padding: 8px; }
}

@media (hover: hover) {
    .button-primary:hover { box-shadow: 0 16px 32px rgba(91, 140, 255, 0.3); transform: translateY(-2px); }
    .advisor-next:disabled:hover { box-shadow: none; transform: none; }
    .button-secondary:hover { border-color: var(--web-border-active); background: rgba(155, 108, 255, 0.1); }
    .text-link:hover, .header-help:hover { color: var(--web-text); }
    .choice-card:hover { border-color: rgba(185, 167, 216, 0.5); background: rgba(255, 255, 255, 0.05); box-shadow: inset 0 0 0 1px rgba(185, 167, 216, 0.06); }
    .faq-list details:hover { border-color: rgba(185, 167, 216, 0.32); background: rgba(255, 255, 255, 0.045); box-shadow: 0 8px 20px rgba(155, 108, 255, 0.045); }
    .site-footer .text-link:hover { color: #fff; }
    .simple-card:hover { border-color: rgba(185, 167, 216, 0.5); background: rgba(185, 167, 216, 0.08); box-shadow: 0 12px 26px rgba(155, 108, 255, 0.08); transform: translateY(-2px); }
    .footer-person-trigger:hover, .footer-grid .footer-location:hover { color: #fff; }
    .team-modal-close:hover { border-color: var(--web-border-active); background: rgba(155, 108, 255, 0.12); }
    .team-photo-viewer-close:hover { border-color: rgba(255, 255, 255, 0.34); background: rgba(35, 30, 45, 0.86); }
    .floating-whatsapp:hover { background: #20bd5a; box-shadow: 0 13px 28px rgba(20, 111, 57, 0.3); transform: translateY(-1px); }
}

html[data-theme="light"] body {
    background: var(--light-bg);
}

html[data-theme="light"].nodo-intro-active .nodo-intro {
    background: #f4f1f7;
}

html[data-theme="light"] .nodo-intro-line {
    background: linear-gradient(90deg, rgba(184, 167, 214, 0.12), rgba(120, 152, 232, 0.48));
}

html[data-theme="light"] .nodo-intro-node {
    box-shadow: 0 0 0 4px rgba(143, 107, 222, 0.08);
}

html[data-theme="light"] .hero {
    background:
        radial-gradient(circle at 84% 12%, rgba(184, 167, 214, 0.22), transparent 27rem),
        linear-gradient(135deg, #f7f4f9 0%, #f1edf5 100%);
}

html[data-theme="light"] .simple-section,
html[data-theme="light"] .faq-section {
    background: var(--light-bg-soft);
}

html[data-theme="light"] .advisor-section {
    background: var(--light-bg);
}

html[data-theme="light"] .work-section { background: linear-gradient(145deg, rgba(184, 167, 214, 0.22), transparent 56%); }
html[data-theme="light"] .showcase-card { border-color: var(--light-border); background: rgba(255, 255, 255, 0.66); box-shadow: 0 18px 44px rgba(72, 55, 88, 0.07); }
html[data-theme="light"] .showcase-preview-placeholder,
html[data-theme="light"] .showcase-tags li { border-color: var(--light-border); background: var(--light-surface-soft); }
html[data-theme="light"] .continuity-card { border-color: var(--light-border-strong); background: linear-gradient(135deg, rgba(232, 224, 244, 0.88), rgba(232, 238, 251, 0.92)); }
html[data-theme="light"] .continuity-path { border-color: var(--light-border); background: rgba(255, 255, 255, 0.68); }

html[data-theme="light"] .theme-toggle {
    border-color: var(--light-border);
    background: var(--light-surface);
    color: var(--light-purple-strong);
}

html[data-theme="light"] .button-primary {
    background: linear-gradient(135deg, #9270e6, #7394ea);
    box-shadow: 0 12px 26px rgba(115, 148, 234, 0.2);
}

html[data-theme="light"] .button-secondary {
    background: var(--light-surface);
}

html[data-theme="light"] .simple-card {
    border-color: var(--light-border);
    background: rgba(255, 255, 255, 0.66);
    box-shadow: 0 8px 22px rgba(72, 55, 88, 0.035);
}

html[data-theme="light"] .simple-card span {
    background: rgba(184, 167, 214, 0.32);
    color: var(--light-purple-strong);
}

html[data-theme="light"] .advisor-card {
    border-color: rgba(105, 82, 137, 0.14);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(242, 238, 247, 0.88));
    box-shadow: 0 24px 70px rgba(72, 55, 88, 0.1);
}

html[data-theme="light"] .progress-track {
    background: rgba(105, 82, 137, 0.13);
}

html[data-theme="light"] .choice-card {
    border-color: var(--light-border);
    background: rgba(255, 255, 255, 0.72);
}

html[data-theme="light"] .choice-card.is-selected {
    border-color: var(--light-purple);
    background: rgba(184, 167, 214, 0.22);
    box-shadow: inset 0 0 0 1px rgba(143, 107, 222, 0.1);
}

html[data-theme="light"] .advisor-message {
    color: var(--light-purple-strong);
}

html[data-theme="light"] .advisor-nav {
    background: linear-gradient(to bottom, rgba(244, 241, 247, 0), rgba(244, 241, 247, 0.97) 34%);
}

html[data-theme="light"] .contact-recommendation,
html[data-theme="light"] .contact-control {
    border-color: var(--light-border);
    background: rgba(255, 255, 255, 0.76);
}

html[data-theme="light"] .contact-control:focus {
    box-shadow: 0 0 0 3px rgba(143, 107, 222, 0.14);
}

html[data-theme="light"] .contact-validation {
    color: var(--light-purple-strong);
}

html[data-theme="light"] .plan-result,
html[data-theme="light"] .result-details details {
    background: var(--light-surface-strong);
    box-shadow: 0 10px 28px rgba(72, 55, 88, 0.045);
}

html[data-theme="light"] .faq-list details {
    border-color: var(--light-border);
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 10px 32px rgba(72, 55, 88, 0.05);
}

html[data-theme="light"] .faq-list details[open] {
    border-color: var(--light-border-strong);
    background: var(--light-surface-strong);
    box-shadow: 0 12px 34px rgba(105, 82, 137, 0.08);
}

html[data-theme="light"] .faq-list summary::after {
    border-color: rgba(105, 82, 137, 0.24);
    background: rgba(184, 167, 214, 0.16);
}

html[data-theme="light"] .faq-list details[open] summary::after {
    border-color: rgba(143, 107, 222, 0.4);
    background: rgba(184, 167, 214, 0.26);
    color: var(--light-text);
}

html[data-theme="light"] .faq-list details > div {
    border-top-color: rgba(63, 52, 73, 0.08);
}

html[data-theme="light"] .team-photo-button {
    box-shadow: 0 6px 20px rgba(72, 55, 88, 0.12);
}

html[data-theme="light"] .final-card {
    border-color: var(--light-border-strong);
    background: linear-gradient(135deg, rgba(232, 224, 244, 0.9), rgba(232, 238, 251, 0.95));
}

.hero,
.simple-section,
.advisor-section,
.faq-section,
.final-card,
.site-footer,
.simple-list li,
.simple-card,
.advisor-card,
.choice-card,
.faq-list details,
.plan-result,
.result-details details,
.contact-recommendation,
.contact-control {
    transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

@media (hover: hover) {
    html[data-theme="light"] .theme-toggle:hover {
        border-color: rgba(143, 107, 222, 0.38);
        background: rgba(255, 255, 255, 0.94);
    }

    html[data-theme="light"] .button-primary:hover {
        box-shadow: 0 16px 32px rgba(115, 148, 234, 0.28);
    }

    html[data-theme="light"] .button-secondary:hover {
        background: rgba(184, 167, 214, 0.18);
    }

    html[data-theme="light"] .choice-card:hover {
        border-color: rgba(143, 107, 222, 0.34);
        background: rgba(255, 255, 255, 0.9);
        box-shadow: inset 0 0 0 1px rgba(143, 107, 222, 0.06);
    }

    html[data-theme="light"] .faq-list details:hover {
        border-color: rgba(105, 82, 137, 0.28);
        background: rgba(255, 255, 255, 0.8);
        box-shadow: 0 12px 34px rgba(72, 55, 88, 0.065);
    }
}

@keyframes brand-spin {
    to { transform: rotate(360deg); }
}

@keyframes mobile-navigation-in {
    from { opacity: 0; transform: translateX(14px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes nodo-intro-overlay {
    0%, 76% { opacity: 1; }
    100% { opacity: 0; }
}

@keyframes nodo-intro-network {
    0%, 70% { opacity: 1; transform: scale(1); }
    84% { opacity: 1; transform: scale(1.045); }
    100% { opacity: 0; transform: scale(1.12); }
}

@keyframes nodo-intro-mark {
    0% { opacity: 0; transform: translate(-50%, -50%) scale(0.84); }
    24%, 68% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    82% { opacity: 1; transform: translate(-50%, -50%) scale(1.03); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes nodo-intro-node {
    0% { opacity: 0; transform: translate(-50%, -50%) scale(0.4); }
    72% { opacity: 0.92; transform: translate(-50%, -50%) scale(1.08); }
    100% { opacity: 0.76; transform: translate(-50%, -50%) scale(1); }
}

@keyframes nodo-intro-line {
    0% { opacity: 0; transform: rotate(var(--intro-line-angle)) scaleX(0); }
    100% { opacity: 0.72; transform: rotate(var(--intro-line-angle)) scaleX(1); }
}

@keyframes team-modal-in {
    from { opacity: 0; transform: translateY(8px) scale(0.985); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes faq-reveal {
    from { opacity: 0; }
    to { opacity: 1; }
}

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