:root {
    --bg: #0A0F14;
    --surface: #141B23;
    --surface-strong: #10161d;
    --surface-soft: rgba(20, 27, 35, 0.78);
    --border: #2D3748;
    --border-strong: rgba(16, 185, 129, 0.35);
    --text: #F3F4F6;
    --muted: #9CA3AF;
    --accent: #10B981;
    --accent-soft: rgba(16, 185, 129, 0.16);
    --accent-glow: rgba(16, 185, 129, 0.42);
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --shell: 1180px;
    --font-ui: "Inter", sans-serif;
    --font-mono: "JetBrains Mono", monospace;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: var(--font-ui);
    color: var(--text);
    background:
        radial-gradient(circle at 15% 20%, rgba(16, 185, 129, 0.12), transparent 26%),
        radial-gradient(circle at 85% 10%, rgba(255, 255, 255, 0.05), transparent 22%),
        linear-gradient(180deg, #081018 0%, #0A0F14 44%, #0d141c 100%);
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(circle at center, black 45%, transparent 100%);
    pointer-events: none;
    opacity: 0.42;
}

body.is-loaded .loading-overlay {
    opacity: 0;
    visibility: hidden;
}

body.cursor-hover .cursor-ring {
    width: 56px;
    height: 56px;
    border-color: rgba(16, 185, 129, 0.65);
    background: rgba(16, 185, 129, 0.08);
}

a {
    color: inherit;
    text-decoration: none;
}

button,
summary {
    font: inherit;
}

img,
svg {
    display: block;
    max-width: 100%;
}

.skip-link {
    position: absolute;
    left: 16px;
    top: -56px;
    padding: 12px 16px;
    border-radius: 999px;
    background: var(--accent);
    color: #05110d;
    z-index: 1200;
}

.skip-link:focus {
    top: 16px;
}

.section-shell {
    width: min(calc(100% - 32px), var(--shell));
    margin: 0 auto;
}

.loading-overlay {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(6, 12, 17, 0.98);
    z-index: 1500;
    transition: opacity 0.45s ease, visibility 0.45s ease;
}

.loading-overlay__shell {
    width: min(520px, calc(100% - 48px));
    padding: 28px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(20, 27, 35, 0.95), rgba(10, 15, 20, 0.95));
    box-shadow: var(--shadow);
}

.loading-overlay__label {
    display: inline-flex;
    margin-bottom: 18px;
    font: 600 0.76rem/1 var(--font-mono);
    letter-spacing: 0.18em;
    color: var(--accent);
}

.loading-overlay__lines {
    display: grid;
    gap: 12px;
}

.loading-overlay__lines span {
    display: block;
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
    background-size: 240px 100%;
    animation: shimmer 1.3s linear infinite;
}

.loading-overlay__lines span:nth-child(2) {
    width: 82%;
}

.loading-overlay__lines span:nth-child(3) {
    width: 91%;
}

.loading-overlay__lines span:nth-child(4) {
    width: 64%;
}

.loading-overlay__lines span:nth-child(5) {
    width: 88%;
}

.loading-overlay__lines span:nth-child(6) {
    width: 54%;
}

.cursor-shell {
    pointer-events: none;
}

.cursor-dot,
.cursor-ring {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1300;
    border-radius: 999px;
    transform: translate(-50%, -50%);
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    box-shadow: 0 0 20px var(--accent-glow);
}

.cursor-ring {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(16, 185, 129, 0.4);
    transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1100;
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(10, 15, 20, 0.72);
}

.site-nav {
    width: min(calc(100% - 32px), var(--shell));
    margin: 0 auto;
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.brand__sigla {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    border: 1px solid rgba(16, 185, 129, 0.28);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.22), rgba(255, 255, 255, 0.02));
    font: 700 0.92rem/1 var(--font-mono);
    letter-spacing: 0.08em;
}

.brand__text {
    display: grid;
    gap: 2px;
}

.brand__text strong {
    font-size: 0.96rem;
}

.brand__text small {
    color: var(--muted);
    font: 500 0.72rem/1.2 var(--font-mono);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.site-menu {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-menu a {
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--muted);
    transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.site-menu a:hover,
.site-menu a.is-active {
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
}

.site-menu .nav-cta {
    border: 1px solid rgba(16, 185, 129, 0.45);
    color: var(--text);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.site-menu .nav-cta:hover {
    background: rgba(16, 185, 129, 0.08);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.24);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--text);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.is-open span:first-child {
    transform: translateY(4px) rotate(45deg);
}

.menu-toggle.is-open span:last-child {
    transform: translateY(-4px) rotate(-45deg);
}

main {
    position: relative;
}

section {
    padding: 34px 0;
}

.hero-section {
    padding-top: 52px;
    padding-bottom: 44px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(300px, 0.96fr);
    gap: 28px;
    align-items: stretch;
}

.hero-copy,
.hero-panel,
.authority-card,
.profile-visual,
.profile-copy,
.door-card,
.timeline,
.faq-list,
.final-cta-card {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(20, 27, 35, 0.94), rgba(13, 19, 26, 0.94));
    box-shadow: var(--shadow);
}

.hero-copy,
.hero-panel {
    min-height: 100%;
    border-radius: calc(var(--radius-lg) + 4px);
    overflow: hidden;
}

.hero-copy {
    padding: 42px;
}

.hero-copy::before,
.hero-panel::before,
.profile-visual::before,
.profile-copy::before,
.door-card::before,
.final-cta-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.24), rgba(255, 255, 255, 0), rgba(16, 185, 129, 0.12));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.hero-copy h1,
.authority-layout h2,
.profile-copy h2,
.section-heading h2,
.method-copy h2,
.final-cta-card h2 {
    margin: 0;
    font-size: clamp(2.7rem, 6vw, 5.4rem);
    line-height: 0.95;
    letter-spacing: -0.06em;
}

.hero-lead,
.section-heading p,
.profile-copy p,
.door-card__header p,
.method-copy p,
.final-cta-card p,
.faq-item p,
.site-footer p,
.authority-card p {
    color: var(--muted);
    line-height: 1.7;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.18);
    color: #7ce6bc;
    font: 700 0.76rem/1 var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.hero-actions,
.final-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
    align-items: stretch;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 22px;
    max-width: 100%;
    border-radius: 14px;
    border: 1px solid transparent;
    font-weight: 700;
    letter-spacing: -0.01em;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.hero-actions .button,
.final-cta-actions .button {
    flex: 1 1 clamp(220px, 30vw, 320px);
}

.button:hover {
    transform: translateY(-2px);
}

.button--primary {
    color: #08110f;
    background: var(--accent);
    box-shadow: 0 0 0 rgba(16, 185, 129, 0), 0 18px 34px rgba(16, 185, 129, 0.22);
}

.button--primary:hover {
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.4), 0 18px 34px rgba(16, 185, 129, 0.2);
}

.button--ghost {
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.02);
}

.button--ghost:hover {
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.22);
}

.hero-signals,
.authority-tags,
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-signals {
    margin-top: 26px;
}

.hero-signals span,
.authority-tags span {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    color: #cdd3db;
    font-size: 0.92rem;
}

.hero-panel {
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 18px;
    padding: 28px;
}

.panel-terminal {
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(6, 10, 14, 0.84);
    overflow: hidden;
}

.panel-terminal__top {
    display: flex;
    gap: 8px;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.panel-terminal__top span {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
}

.panel-terminal__top span:first-child {
    background: #ef4444;
}

.panel-terminal__top span:nth-child(2) {
    background: #f59e0b;
}

.panel-terminal__top span:last-child {
    background: var(--accent);
}

.panel-terminal__body {
    display: grid;
    gap: 14px;
    padding: 20px 18px 22px;
}

.code-line {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 10px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
    font: 500 0.88rem/1.4 var(--font-mono);
}

.code-line span {
    color: #7f8a99;
    text-transform: lowercase;
}

.code-line strong {
    color: #d8f9eb;
    text-align: right;
}

.panel-grid {
    position: relative;
    min-height: 250px;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: grid;
    place-items: center;
    background:
        linear-gradient(180deg, rgba(7, 17, 18, 0.94), rgba(3, 10, 11, 0.98)),
        radial-gradient(circle at center, rgba(16, 185, 129, 0.08), transparent 68%);
}

.panel-grid::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(124, 230, 188, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124, 230, 188, 0.04) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.55;
    pointer-events: none;
}

.radar-screen {
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(230px, calc(100% - 48px));
    aspect-ratio: 1;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(124, 230, 188, 0.2);
    background:
        radial-gradient(circle at center, rgba(40, 255, 179, 0.18), rgba(9, 28, 23, 0.88) 46%, rgba(2, 8, 8, 0.98) 75%),
        repeating-radial-gradient(circle at center, transparent 0 13%, rgba(124, 230, 188, 0.08) 13.5% 14%, transparent 14.5% 27%);
    box-shadow:
        inset 0 0 42px rgba(16, 185, 129, 0.2),
        0 0 34px rgba(16, 185, 129, 0.08);
    overflow: hidden;
}

.radar-screen::before,
.radar-screen::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
}

.radar-screen::before {
    background: radial-gradient(circle at center, transparent 58%, rgba(124, 230, 188, 0.06) 58.4%, transparent 59%);
    opacity: 0.9;
}

.radar-screen::after {
    inset: 12px;
    border: 1px solid rgba(124, 230, 188, 0.08);
}

.radar-sweep {
    position: absolute;
    inset: -16%;
    border-radius: 50%;
    background: conic-gradient(from 0deg, rgba(111, 255, 190, 0.35) 0deg, rgba(111, 255, 190, 0.18) 24deg, rgba(111, 255, 190, 0.04) 40deg, transparent 74deg 360deg);
    mix-blend-mode: screen;
    animation: radarSweep 4.8s linear infinite;
}

@keyframes radarSweep {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.radar-ring,
.radar-axis,
.radar-contact,
.radar-center,
.radar-readout {
    position: absolute;
}

.radar-ring {
    left: 50%;
    top: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(124, 230, 188, 0.15);
}

.radar-ring--outer {
    width: 78%;
    height: 78%;
}

.radar-ring--middle {
    width: 52%;
    height: 52%;
}

.radar-ring--inner {
    width: 26%;
    height: 26%;
}

.radar-axis {
    left: 50%;
    top: 50%;
    background: linear-gradient(90deg, transparent, rgba(124, 230, 188, 0.26), transparent);
    transform: translate(-50%, -50%);
}

.radar-axis--horizontal {
    width: 82%;
    height: 1px;
}

.radar-axis--vertical {
    width: 1px;
    height: 82%;
    background: linear-gradient(180deg, transparent, rgba(124, 230, 188, 0.26), transparent);
}

.radar-contact {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #9dffd7;
    box-shadow: 0 0 0 6px rgba(111, 255, 190, 0.08), 0 0 18px rgba(111, 255, 190, 0.65);
    animation: sonarBlink 2.4s ease-in-out infinite;
}

.radar-contact--alpha {
    top: 24%;
    left: 31%;
    animation-delay: 0.2s;
}

.radar-contact--bravo {
    top: 37%;
    right: 23%;
    animation-delay: 1.1s;
}

.radar-contact--charlie {
    bottom: 26%;
    left: 38%;
    animation-delay: 0.8s;
}

.radar-contact--delta {
    bottom: 33%;
    right: 34%;
    animation-delay: 1.7s;
}

.radar-center {
    left: 50%;
    top: 50%;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cffff0;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 7px rgba(111, 255, 190, 0.12), 0 0 20px rgba(111, 255, 190, 0.45);
}

.radar-readout {
    z-index: 1;
    color: rgba(173, 255, 222, 0.8);
    font: 700 0.68rem/1.2 var(--font-mono);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-shadow: 0 0 8px rgba(111, 255, 190, 0.25);
}

.radar-readout--top {
    top: 18px;
    left: 18px;
}

.radar-readout--right {
    top: 50%;
    right: 18px;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: center;
}

.radar-readout--bottom {
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
}

@keyframes sonarBlink {
    0%,
    100% {
        opacity: 0.45;
        box-shadow: 0 0 0 6px rgba(111, 255, 190, 0.08), 0 0 18px rgba(111, 255, 190, 0.4);
    }

    35%,
    55% {
        opacity: 1;
        box-shadow: 0 0 0 12px rgba(111, 255, 190, 0.18), 0 0 24px rgba(111, 255, 190, 0.8);
    }
}

.panel-card-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.panel-card {
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.panel-card span,
.method-note strong,
.timeline-step__day,
.door-card__badge {
    display: block;
    margin-bottom: 8px;
    color: #7ce6bc;
    font: 700 0.76rem/1.4 var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.panel-card strong,
.method-note span {
    line-height: 1.5;
}

.panel-card--accent {
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.12), rgba(255, 255, 255, 0.02));
    border-color: rgba(16, 185, 129, 0.18);
}

.authority-section,
.profile-section,
.faq-section {
    padding-top: 26px;
}

.authority-layout,
.profile-grid,
.method-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.9fr);
    gap: 24px;
    align-items: start;
}

.authority-layout h2,
.profile-copy h2,
.section-heading h2,
.method-copy h2,
.final-cta-card h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.02;
}

.authority-card,
.profile-visual,
.profile-copy,
.timeline,
.faq-list,
.final-cta-card {
    border-radius: var(--radius-lg);
    padding: 28px;
}

.profile-grid {
    grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
    align-items: stretch;
}

.profile-visual,
.profile-copy {
    overflow: hidden;
}

.profile-visual {
    display: grid;
    gap: 18px;
    background:
        radial-gradient(circle at top, rgba(16, 185, 129, 0.14), transparent 38%),
        linear-gradient(180deg, rgba(20, 27, 35, 0.94), rgba(13, 19, 26, 0.94));
}

.profile-photo-frame {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
}

.profile-photo-frame::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 42%;
    background: linear-gradient(180deg, rgba(10, 15, 20, 0), rgba(10, 15, 20, 0.7));
    pointer-events: none;
}

.profile-photo {
    width: 100%;
    aspect-ratio: 1 / 1.08;
    object-fit: cover;
}

.profile-identity {
    display: grid;
    gap: 6px;
}

.profile-identity strong {
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1;
}

.profile-identity span {
    color: var(--muted);
    line-height: 1.6;
}

.role-chips,
.skill-grid {
    display: grid;
    gap: 12px;
}

.role-chips {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.role-chips span,
.skill-card {
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.role-chips span {
    padding: 12px 14px;
    color: #dfe7f0;
    font: 600 0.88rem/1.4 var(--font-mono);
}

.profile-copy {
    display: grid;
    align-content: start;
}

.skill-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 12px;
}

.skill-card {
    padding: 18px;
}

.skill-card span {
    display: block;
    margin-bottom: 8px;
    color: #7ce6bc;
    font: 700 0.74rem/1.4 var(--font-mono);
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.skill-card strong {
    display: block;
    line-height: 1.5;
    color: #e7edf5;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 26px;
}

.doors-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.door-card {
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
}

.door-card:hover {
    transform: translateY(-6px);
    border-color: rgba(16, 185, 129, 0.28);
    box-shadow: 0 0 22px rgba(16, 185, 129, 0.18), var(--shadow);
}

.door-card--future {
    background: linear-gradient(180deg, rgba(20, 27, 35, 0.94), rgba(12, 18, 24, 0.96));
}

.door-card__header h3,
.timeline-step h3 {
    margin: 0 0 12px;
    font-size: clamp(1.4rem, 2vw, 2rem);
    line-height: 1.12;
}

.check-list {
    list-style: none;
    display: grid;
    gap: 14px;
    margin: 24px 0 30px;
    padding: 0;
}

.check-list li {
    position: relative;
    padding-left: 28px;
    color: #d8dee7;
    line-height: 1.55;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent) 0 42%, rgba(16, 185, 129, 0.15) 43% 100%);
    box-shadow: 0 0 14px rgba(16, 185, 129, 0.3);
}

.method-copy {
    padding-top: 14px;
}

.method-note {
    margin-top: 28px;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid rgba(16, 185, 129, 0.14);
    background: rgba(16, 185, 129, 0.06);
}

.timeline {
    display: grid;
    gap: 18px;
}

.timeline-step {
    position: relative;
    padding: 6px 0 6px 24px;
}

.timeline-step::before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0.12);
}

.timeline-step::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 28px;
    bottom: -18px;
    width: 2px;
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.28), rgba(16, 185, 129, 0));
}

.timeline-step:last-child::after {
    display: none;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    padding: 4px 18px;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    color: var(--accent);
    font-size: 1.4rem;
    line-height: 1;
}

.faq-item[open] summary::after {
    content: "-";
}

.faq-item p {
    margin: 0 0 18px;
    padding-right: 18px;
}

.final-cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-footer {
    padding: 10px 0 110px;
}

.footer-layout {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer strong {
    display: inline-block;
    margin-bottom: 10px;
}

.footer-links a {
    padding: 10px 0;
    color: var(--muted);
}

.footer-links a:hover {
    color: var(--text);
}

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1050;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px 14px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, #0d8f66 0%, #10B981 100%);
    color: #06110d;
    font-weight: 800;
    box-shadow: 0 18px 30px rgba(16, 185, 129, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.4), 0 18px 30px rgba(16, 185, 129, 0.25);
}

.floating-whatsapp__icon {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
}

.floating-whatsapp svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: #06110d;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes shimmer {
    from {
        background-position: -240px 0;
    }

    to {
        background-position: 240px 0;
    }
}

@media (max-width: 1080px) {
    .hero-grid,
    .authority-layout,
    .profile-grid,
    .method-layout,
    .doors-grid,
    .final-cta-card {
        grid-template-columns: 1fr;
    }

    .final-cta-card {
        display: grid;
    }
}

@media (max-width: 820px) {
    .menu-toggle {
        display: inline-flex;
    }

    .site-menu {
        position: absolute;
        left: 16px;
        right: 16px;
        top: calc(100% + 10px);
        display: grid;
        padding: 14px;
        border-radius: 22px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(10, 15, 20, 0.96);
        box-shadow: var(--shadow);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    }

    .site-menu.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .site-menu a,
    .site-menu .nav-cta {
        width: 100%;
        justify-content: flex-start;
        border-radius: 14px;
    }

    .hero-copy,
    .hero-panel,
    .authority-card,
    .profile-visual,
    .profile-copy,
    .timeline,
    .faq-list,
    .final-cta-card,
    .door-card {
        padding: 24px;
    }

    .hero-copy h1 {
        font-size: clamp(2.4rem, 12vw, 4rem);
    }

    .hero-actions,
    .final-cta-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .panel-card-row,
    .footer-layout {
        grid-template-columns: 1fr;
        display: grid;
    }
}

@media (max-width: 640px) {
    .section-shell,
    .site-nav {
        width: min(calc(100% - 20px), var(--shell));
    }

    section {
        padding: 26px 0;
    }

    .hero-section {
        padding-top: 28px;
    }

    .hero-copy,
    .hero-panel,
    .authority-card,
    .profile-visual,
    .profile-copy,
    .timeline,
    .faq-list,
    .final-cta-card,
    .door-card {
        padding: 20px;
        border-radius: 22px;
    }

    .hero-actions,
    .final-cta-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .button {
        width: 100%;
    }

    .hero-signals,
    .authority-tags,
    .footer-links {
        gap: 10px;
    }

    .role-chips,
    .skill-grid {
        grid-template-columns: 1fr;
    }

    .floating-whatsapp {
        right: 12px;
        bottom: 12px;
        padding-right: 14px;
    }
}

@media (pointer: coarse), (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .cursor-shell {
        display: none;
    }

    .loading-overlay__lines span,
    .radar-sweep,
    .radar-contact {
        animation: none;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }
}