@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&family=Inter:wght@300;400&display=swap');

.dh-form.is-loading {
    opacity: 0.85;
}

.dh-form.is-loading .btn {
    cursor: wait;
}

:root {
    --sage:      oklch(52% .04 140);
    --sage-deep: oklch(42% .04 140);
    --cream:     oklch(96% .015 80);
    --clay:      oklch(35% .02 90);
    --bg:    oklch(52% .04 140);
    --paper: oklch(48% .04 140);
    --card:  oklch(44% .04 140);
    --card-2:oklch(40% .04 140);
    --text:  oklch(96% .015 80);
    --muted: oklch(96% .015 80 / 0.6);
    --accent:oklch(96% .015 80 / 0.8);
    --line:  oklch(96% .015 80 / 0.2);
    --white: oklch(96% .015 80);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', Arial, Helvetica, sans-serif;
    background: var(--bg);
    color: var(--text);
    font-size: 16px;
    line-height: 1.55;

    .title,
    h1,
    h2,
    h3,
    h4,
    .eyebrow,
    .section>h2,
    .section>h3,
    .card h3,
    .summary-card .label,
    .full-card>h2,
    .full-card h4,
    .delivery-card-head h2 {
        font-family: 'Cormorant Garamond', Georgia, serif;
        font-weight: 300;
        letter-spacing: -0.01em;
    }

    .section p,
    .card p,
    .full-card p,
    .advanced-note,
    .summary-card .value,
    .subtitle,
    .label,
    .btn,
    .chip,
    .list-block,
    .list-item,
    .feedback,
    .captcha-note {
        font-family: 'Inter', Arial, Helvetica, sans-serif;
    }
}

.page {
    width: 70%;
    margin: 22px auto;
    background: var(--paper);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 10px 34px rgba(0, 0, 0, 0.08);
}

.page .page-section {
    max-width: 100%;
    margin: 20px 0 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.header {
    text-align: center;
    margin-bottom: 26px;
}

.eyebrow {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 8px;
}

.title {
    margin: 0;
    font-size: 44px;
    line-height: 1.1;
    font-weight: 600;
}

.subtitle {
    margin-top: 10px;
    color: var(--muted);
    font-size: 17px;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
    margin: 26px 0 34px;
}

.results-quick-nav {
    position: sticky;
    top: 10px;
    z-index: 4;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 24px;
    padding: 14px;
    background: oklch(44% .04 140 / 0.94);
    backdrop-filter: blur(10px);
    border: 1px solid oklch(96% .015 80 / 0.2);
    border-radius: 8px;
    box-shadow: 0 8px 24px oklch(0% 0 0 / 0.12);
}

.results-quick-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 8px 14px;
    border-radius: 4px;
    border: 1px solid var(--line);
    background: oklch(46% .04 140 / 0.86);
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.2;
    transition: transform 0.16s ease, background 0.16s ease, border-color 0.16s ease;
}

.results-quick-nav a:hover {
    background: var(--white);
    border-color: var(--accent);
    transform: translateY(-1px);
}

.summary-card {
    background: var(--card);
    border-radius: 18px;
    padding: 18px;
}

.summary-card .label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted);
    margin-bottom: 8px;
}

.summary-card .value {
    font-size: 24px;
    font-weight: 600;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 360px 1fr;
    gap: 18px;
    align-items: start;
    margin-bottom: 30px;
}

.panel {
    background: var(--card);
    border-radius: 22px;
    padding: 20px;
}

.panel h2,
.section h2 {
    margin: 0 0 14px;
    font-size: 28px;
}

.panel h3,
.section h3,
.card h3 {
    margin: 0 0 8px;
    font-size: 21px;
}

.panel p,
.section p,
.card p {
    margin: 0 0 12px;
    line-height: 1.6;
    font-size: 16px;
    color: var(--text);
}

.full-card h4 {
    margin: 14px 0 8px;
    font-size: 18px;
}

.muted {
    color: var(--muted);
}

.bodygraph-placeholder {
    background: oklch(44% .04 140);
    border-radius: 8px;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
    border: 1px solid var(--line);
}

.bodygraph-placeholder .inner {
    max-width: 220px;
}

.bodygraph-placeholder h3 {
    margin: 0 0 10px;
    font-size: 22px;
}

.bodygraph-placeholder p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.section {
    margin-top: 24px;
}

.section,
.full-card {
    scroll-margin-top: 84px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.card {
    background: var(--card);
    border-radius: 8px;
    padding: 18px;
    border: 1px solid var(--line);
}

.full-card {
    background: var(--card);
    border-radius: 8px;
    padding: 22px;
    margin-top: 16px;
    border: 1px solid var(--line);
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.chip {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 14px;
}

.list-block {
    display: grid;
    gap: 12px;
}

.list-item {
    background: oklch(44% .04 140 / 0.55);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 16px 16px 14px;
    box-shadow: inset 4px 0 0 oklch(96% .015 80 / 0.15);
}

.list-item strong {
    display: block;
    margin-bottom: 6px;
    font-size: 17px;
    line-height: 1.35;
}

.list-item p:last-child,
.card p:last-child,
.full-card p:last-child {
    margin-bottom: 0;
}

.section>h2,
.full-card>h2 {
    position: relative;
    padding-bottom: 10px;
}

.section>h2::after,
.full-card>h2::after {
    content: "";
    display: block;
    width: 84px;
    height: 2px;
    margin-top: 10px;
    background: linear-gradient(90deg, var(--accent), transparent);
}

.activations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.activation-item {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
}

.activation-item:last-child {
    border-bottom: none;
}

.activation-title {
    font-weight: 700;
    margin-bottom: 6px;
}

.small {
    font-size: 14px;
    color: var(--muted);
}

/* Skin do viewer (bloco colado) */
#document {
    width: 100%;
    margin: 28px auto;
    background: #05070b;
    border-radius: 16px;
    padding: 16px;
    color: #dbe2ea;
    max-height: none !important;
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    overflow: hidden;
}

text {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    fill: #fff;
    font-size: 1.6rem;
    text-anchor: middle;
    font-weight: bold;
}

#document.fill-height,
#document .fill-height {
    height: auto !important;
    min-height: 0 !important;
}

#document .viewer-container {
    padding: 0;
}

#document #chart-side-panel {
    width: 100%;
    min-width: 0;
    margin-left: 0;
}

#document #chart-side-panel .content-container {
    background: #111827de;
    border: 1px solid #243043;
    border-radius: 10px;
    overflow: hidden;
}

#document .v-tabs-bar {
    background: #151a22;
    border-bottom: 1px solid #242c38;
}

#document .v-tab {
    color: #aeb8c4;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .4px;
    font-size: 17px;
    min-height: 46px;
}

#document .v-tab.v-tab--active {
    color: #edf3fb;
}

#document .v-tabs-slider {
    background: #71a7bf;
}

#document .v-window,
#document .v-window__container,
#document .v-window-item,
#document #activations-table,
#document table {
    background: #161b23;
}

#document .v-data-table__wrapper tr {
    border-bottom: 1px solid #252d39;
}

#document .v-data-table__wrapper td {
    color: #dde5ee;
    font-size: 17px;
}

#document .pv-row,
#document .group-header,
#document .reliability {
    border-color: #262f3b;
    color: #d7e0eb;
}

#document .prop {
    color: #9eb0c3;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .3px;
}

#document .val,
#document .val span {
    color: #f3f7fc;
}

#document #document-container {
    width: 100%;
    padding: 0;
    min-width: 0;
}

#document .chart-canvas {
    margin: 0;
    display: grid;
    grid-template-columns: minmax(108px, 156px) minmax(0, 1fr) minmax(108px, 156px);
    align-items: start;
    justify-content: stretch;
    gap: 10px;
    width: 100%;
}

#document .planet-table-col {
    max-width: 156px;
    width: 100%;
    flex: initial;
    padding: 0;
}

#document .planet-table-col svg {
    display: block;
    width: 100%;
    height: clamp(520px, 72vh, 860px);
    max-height: none;
}

#document .bd-col {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    flex: initial;
    padding: 0;
}

#document .bd-col svg {
    display: block;
    width: 100%;
    height: clamp(520px, 72vh, 860px);
    max-height: none;
}

#document .material-icons {
    font-size: 0 !important;
    line-height: 1;
    font-style: normal;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 16px;
}

#document .material-icons::before {
    font-size: 14px;
    color: currentColor;
}

#document .v-slide-group__prev .material-icons::before {
    content: "◀";
}

#document .v-slide-group__next .material-icons::before {
    content: "▶";
}

#document .v-expansion-panel-header__icon .material-icons::before {
    content: "▾";
}

#document #planets-left text,
#document #planets-left .title-label text {
    fill: #B12E39 !important;
}

#document #planets-right text,
#document #planets-right .title-label text {
    fill: #8D6E4D !important;
}

#document #planets-left text.gate,
#document #planets-right text.gate {
    font-size: 40px !important;
    font-weight: 700;
}

#document #planets-left text.gate tspan,
#document #planets-right text.gate tspan {
    font-size: 30px !important;
}

#document #planets-left .title-label text,
#document #planets-right .title-label text {
    font-size: 55px !important;
    font-weight: 700;
    text-anchor: middle;
    dominant-baseline: middle;
}

#document #planets-left svg,
#document #planets-right svg {
    overflow: visible;
}

#document #planets-left .title-label text {
    transform: translateX(6px);
}

#document #planets-right .title-label text {
    transform: translateX(-18px);
}

#document #planets-left .planet .symbol,
#document #planets-right .planet .symbol {
    display: block;
    opacity: 0.95;
    stroke: none;
}

#document #planets-left .planet .symbol {
    fill: #B12E39;
}

#document #planets-right .planet .symbol {
    fill: #8D6E4D;
}

#document .planet .planet-bg {
    fill: transparent !important;
}

#document .planet .fixing use {
    fill: #c8d2de;
    opacity: 0.9;
}

#document #graph #figure {
    fill: #3f4248;
}

#document #graph .center .nums text {
    fill: #f3f8fe;
    font-weight: 600;
    font-size: 20px;
}

#document #graph .channel,
#document #graph .channelHighlights {
    opacity: 1;
}

#document #channelHighlights {
    display: block;
    pointer-events: none;
}

#document #channels [desc] {
    fill: var(--card);
}

#document #channels #c0,
#document #channels #c2,
#document #channels #c7,
#document #channels #c13,
#document #channels #c102034,
#document #channels #c203457,
#document #channels #c103457,
#document #channels #c102057,
#document #channels #c10203457 {
    display: none;
}

#document #channels [desc].is-active-channel {
    opacity: 1;
}

#document #channels [desc].is-active-channel.is-origin-design {
    fill: #B12E39;
}

#document #channels [desc].is-active-channel.is-origin-personality {
    fill: #8D6E4D;
}

#document #channels [desc].is-active-channel.is-origin-mixed {
    fill: #8D6E4D;
}

#document #dh-channel-split-overlays .dh-channel-state-overlay {
    opacity: 1;
}

#document #dh-channel-split-overlays .dh-channel-state-overlay.is-origin-design {
    fill: #B12E39;
}

#document #dh-channel-split-overlays .dh-channel-state-overlay.is-origin-personality {
    fill: #8D6E4D;
}

#document #channelHighlights>[id^="c"] {
    opacity: 0;
}

#document #channelHighlights>[id^="c"].is-active-channel-highlight {
    opacity: 0;
}

#document #gates>g[id^="g"] {
    opacity: 0.18;
}

#document #gates>g[id^="g"] use#h,
#document #gates>g[id^="g"] use#s,
#document #gates>g[id^="g"] #m {
    fill: #627f9d;
}

#document #gates>g[id^="g"].is-active-gate {
    opacity: 1;
}

#document #gates>g[id^="g"].is-active-gate use#h,
#document #gates>g[id^="g"].is-active-gate use#s {
    display: none;
}

#document #gates>g[id^="g"].is-active-gate #m {
    display: none;
}

#document #gates>g[id^="g"].is-active-gate.is-origin-design use#h,
#document #gates>g[id^="g"].is-active-gate.is-origin-design use#s {
    display: inline;
    fill: #B12E39;
}

#document #gates>g[id^="g"].is-active-gate.is-origin-personality use#h,
#document #gates>g[id^="g"].is-active-gate.is-origin-personality use#s {
    display: inline;
    fill: #8D6E4D;
}

#document #gates>g[id^="g"].is-active-gate.is-origin-mixed #m {
    display: inline;
    fill: #B12E39;
}

/* Em gates mistos, a base fica azul e a faixa paralela vermelha vem do path interno #m. */
#document #gates>g[id^="g"].is-active-gate.is-origin-mixed use#h,
#document #gates>g[id^="g"].is-active-gate.is-origin-mixed use#s {
    display: inline;
    fill: #8D6E4D;
}

#document #centers>g[id] {
    opacity: 1;
}

#document #centers>g[id].is-defined-center {
    opacity: 1;
}

#document #centers>g[id] #shape {
    fill: #f3efe8;
    stroke: #d9cec1;
    stroke-width: 2;
}

#document #centers>g[id].is-open-center #shape {
    fill: #f3efe8;
    stroke: #d9cec1;
}

#document #centers>g[id]:not(.is-defined-center) #shape,
#document #centers>g#solar_plexus.is-open-center #shape {
    fill: #f3efe8 !important;
    stroke: #d9cec1 !important;
}

#document #centers>g[id].is-defined-center #shape {
    fill: #627f9d;
    stroke: #89a7c8;
}

#document #centers g[id^="g"] circle {
    fill: #111722;
    stroke: #232b38;
    stroke-width: 1.3;
    transition: fill 0.18s ease, stroke 0.18s ease, filter 0.18s ease;
}

#document #centers g[id^="g"].is-active-gate-node circle {
    fill: #8D6E4D;
    stroke: #9cc8ff;
    stroke-width: 1.8;
    filter: drop-shadow(0 0 2px rgba(47, 143, 255, 0.34));
}

#document #centers g[id^="g"].is-active-gate-node.is-origin-design circle {
    fill: #B12E39;
    stroke: #ffb8b8;
    filter: drop-shadow(0 0 2px rgba(255, 0, 0, 0.34));
}

#document #centers g[id^="g"].is-active-gate-node.is-origin-personality circle {
    fill: #8D6E4D;
    stroke: #9cc8ff;
}

#document #centers g[id^="g"].is-active-gate-node.is-origin-mixed circle {
    fill: #8D6E4D;
    stroke: #B12E39;
    filter: drop-shadow(0 0 2px rgba(47, 143, 255, 0.3));
}

#document #centers g[id^="g"].is-active-gate-node text {
    fill: #f8fbff;
    font-weight: 700;
}

#document .planet.is-hover-match .planet-bg {
    stroke: #4da3ff;
    stroke-width: 2;
    fill: transparent !important;
}

#document .planet.is-hover-match text.gate,
#document .planet.is-hover-match .symbol {
    filter: drop-shadow(0 0 6px rgba(47, 143, 255, 0.45));
}

#document #gates>g[id^="g"].is-hover-match {
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 1));
}

#document #centers g[id^="g"].is-hover-match circle {
    fill: #8D6E4D;
    stroke: #B12E39;
}

#document #channels [desc].is-hover-match {
    opacity: 1;
    fill: #000000;
}

#document #channelHighlights>[id^="c"].is-hover-match {
    opacity: 1;
    filter: drop-shadow(0 0 4px rgba(255, 0, 0, 0.28));
}

.dh-form {
    margin-top: 26px;
    background: var(--card);
    border-radius: 22px;
    padding: 22px;
    border: 1px solid var(--line);
}

.form-notice {
    margin-bottom: 16px;
    border-radius: 14px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid var(--line);
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.dh-form-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.field label {
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted);
}

.field input,
.field select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 10px 12px;
    background: var(--paper);
    color: var(--text);
    font-family: inherit;
    font-size: 16px;
}

.field-wide {
    grid-column: span 3;
}

.captcha-note {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.submit-wrap {
    margin-top: 16px;
    display: flex;
    justify-content: flex-end;
}

.btn {
    border: 0;
    border-radius: 999px;
    padding: 11px 20px;
    background: var(--text);
    color: var(--paper);
    font-family: inherit;
    font-size: 16px;
    cursor: pointer;
}

.feedback {
    margin-top: 14px;
    border-radius: 12px;
    padding: 10px 12px;
    font-size: 14px;
}

.feedback.error {
    background: #f5dada;
    color: #702b2b;
    border: 1px solid #d49a9a;
}

.feedback.success {
    background: #dcefdc;
    color: #24572a;
    border: 1px solid #a9ceab;
}

.is-hidden {
    display: none !important;
}

.delivery-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 22px;
    margin-bottom: 20px;
}

.delivery-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.delivery-card-head h2 {
    margin: 4px 0 0;
    font-size: 30px;
}

.delivery-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.delivery-user-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.delivery-user-item {
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 14px;
}

.delivery-user-item span {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted);
    margin-bottom: 6px;
}

.delivery-user-item strong {
    display: block;
    font-size: 16px;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: transparent;
    color: var(--text);
    border: 1px solid var(--line);
}

.free-details {
    display: grid;
    gap: 18px;
}

.free-copy-card {
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 22px;
}

.free-copy-card p:last-child,
.free-info-card p:last-child {
    margin-bottom: 0;
}

.free-info-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 18px;
}

.free-info-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 22px;
}

.free-info-card ul {
    margin: 0;
    padding-left: 24px;
}

.free-gates {
    font-size: 18px;
    line-height: 1.7;
}

.advanced-note {
    margin-bottom: 16px;
    border-radius: 14px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid var(--line);
    color: var(--muted);
    font-size: 14px;
}

.advanced-mini-grid {
    margin-top: 18px;
}

.advanced-mini-grid .card {
    background: linear-gradient(180deg, rgba(230, 223, 214, 0.92) 0%, rgba(216, 207, 196, 0.72) 100%);
}

.compact-list .list-item {
    padding: 10px 12px;
}

.compact-list .list-item p {
    margin: 0;
}

@media (max-width: 980px) {

    .results-quick-nav {
        position: static;
        margin-bottom: 18px;
    }

    .results-quick-nav a {
        width: 100%;
        justify-content: center;
    }

    .summary-grid,
    .card-grid,
    .activations-grid,
    .hero-layout,
    .dh-form-grid {
        grid-template-columns: 1fr;
    }

    #document {
        width: 100%;
        max-width: 100%;
        margin: 18px auto;
        margin-left: 0;
        margin-right: 0;
        padding: 12px;
        border-radius: 12px;
        grid-template-columns: 1fr;
    }

    #document #chart-side-panel {
        width: 100%;
        min-width: 0;
        margin-left: 0;
        margin-bottom: 12px;
    }

    #document .planet-table-col {
        max-width: 86px;
    }

    #document .chart-canvas {
        grid-template-columns: minmax(78px, 104px) minmax(0, 1fr) minmax(78px, 104px);
        gap: 8px;
    }

    #document .planet-table-col svg,
    #document .bd-col svg {
        height: clamp(380px, 64vh, 620px);
    }

    .field-wide {
        grid-column: span 1;
    }

    .delivery-card-head,
    .delivery-user-grid,
    .free-info-grid {
        grid-template-columns: 1fr;
        display: grid;
    }

    .delivery-card-head {
        justify-content: initial;
    }

    .submit-wrap {
        justify-content: stretch;
    }

    .btn {
        width: 100%;
    }

    .page {
        padding: 20px;
        margin: 14px;
        width: 95%;
    }

    .title {
        font-size: 34px;
    }

    .subtitle {
        font-size: 16px;
    }
}

/* IDENTIDADE VISUAL SAGE */
:root {
    --hd-black:       oklch(42% .04 140);
    --hd-graphite:    oklch(44% .04 140);
    --hd-wine:        oklch(35% .02 90);
    --hd-wine-dark:   oklch(28% .02 90);
    --hd-ivory:       oklch(96% .015 80);
    --hd-paper:       oklch(48% .04 140);
    --hd-sand:        oklch(96% .015 80 / 0.55);
    --hd-taupe:       oklch(96% .015 80 / 0.4);
    --hd-bronze:      oklch(96% .015 80 / 0.7);
    --hd-ink:         oklch(96% .015 80);
    --hd-muted:       oklch(96% .015 80 / 0.6);
    --hd-border-light:oklch(96% .015 80 / 0.2);
    --hd-border-dark: oklch(96% .015 80 / 0.12);
    --hd-shadow:      0 30px 90px oklch(0% 0 0 / 0.22);
    --bg:    oklch(52% .04 140);
    --paper: oklch(48% .04 140);
    --card:  oklch(44% .04 140);
    --card-2:oklch(40% .04 140);
    --text:  oklch(96% .015 80);
    --muted: oklch(96% .015 80 / 0.6);
    --accent:oklch(96% .015 80 / 0.8);
    --line:  oklch(96% .015 80 / 0.2);
}

html {
    scroll-behavior: smooth;
}

body.hd-body,
body {
    min-width: 0;
    margin: 0;
    overflow-x: hidden;
    background: var(--sage, oklch(52% .04 140));
    color: var(--hd-ink);
    font-family: "Inter", Arial, Helvetica, sans-serif;
}

.hd-page.page {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border-radius: 0;
    background: oklch(48% .04 140);
    box-shadow: none;
}

.hd-page>.header,
.hd-page>.hd-form-experience .header {
    display: none;
}

.hd-eyebrow,
.hd-label,
.label,
.hd-data-card span,
.hd-energy-card span {
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: oklch(96% .015 80 / 0.55);
}

.hd-label,
.hd-data-card span,
.hd-energy-card span {
    font-size: 11px;
    letter-spacing: 0.16em;
    color: oklch(96% .015 80 / 0.55);
}

.hd-form-title,
.hd-hero h1,
.hd-report-card h2,
.hd-section-heading h2,
.hd-manifesto h2,
.hd-final-cta h2,
.full-card>h2,
.section>h2,
.card h2,
.card h3,
.free-copy-card h2,
.free-copy-card h3,
.free-info-card h2,
.free-info-card h3 {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-weight: 300;
    letter-spacing: -0.01em;
}

.hd-form-experience {
    position: relative;
    min-height: 100vh;
    padding: 42px 20px 80px;
    background:
        radial-gradient(circle at 18% 12%, oklch(48% .05 140 / 0.6), transparent 30%),
        radial-gradient(circle at 82% 20%, oklch(44% .04 140 / 0.4), transparent 32%),
        oklch(52% .04 140);
    color: oklch(96% .015 80);
}

.hd-form-experience::before,
.hd-hero::before,
.hd-manifesto::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: url("../../../images/hd-orbit-lines.svg");
    background-position: center;
    background-size: cover;
    opacity: 0.08;
}

.hd-form-hero {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 48px;
    width: min(1180px, 100%);
    margin: 0 auto 28px;
    align-items: center;
}

.hd-form-hero__copy {
    max-width: 760px;
}

.hd-form-title {
    max-width: 780px;
    margin: 14px 0 18px;
    color: oklch(96% .015 80);
    font-size: 64px;
    line-height: 0.95;
}

.hd-form-hero .subtitle {
    max-width: 700px;
    margin: 0;
    color: oklch(96% .015 80 / 0.78);
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-size: 18px;
    line-height: 1.6;
}

.hd-form-mantra {
    margin: 22px 0 0;
    color: oklch(96% .015 80 / 0.5);
    font-size: 15px;
    line-height: 1.6;
}

.hd-form-hero__sigil {
    position: relative;
    display: grid;
    min-height: 340px;
    place-items: center;
    border: 1px solid oklch(96% .015 80 / 0.12);
    border-radius: 8px;
    background: oklch(44% .04 140);
    overflow: hidden;
    isolation: isolate;
}

.hd-form-hero__sigil::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, oklch(96% .015 80 / 0.12) 0%, oklch(96% .015 80 / 0.04) 30%, transparent 68%);
    opacity: 0.7;
}

.sacred-star__aura {
    position: absolute;
    width: 90%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, oklch(96% .015 80 / 0.14) 0%, oklch(96% .015 80 / 0.05) 34%, transparent 72%);
    filter: blur(14px);
    animation: star-breathe 6.5s ease-in-out infinite;
}

.sacred-star__svg {
    position: relative;
    z-index: 1;
    width: clamp(280px, 0vw, 360px);
    height: auto;
    color: oklch(96% .015 80 / 0.8);
    animation: star-breathe 6.5s ease-in-out infinite;
}

.sacred-star__outer-rays,
.sacred-star__inner-rays {
    fill: none;
    stroke-linecap: round;
}

.sacred-star__outer-rays {
    transform-origin: 200px 200px;
    animation: star-rotate 56s linear infinite;
}

.sacred-star__outer-rays line {
    stroke: oklch(96% .015 80 / 0.5);
    stroke-width: 1.15;
}

.sacred-star__inner-rays line {
    stroke: oklch(96% .015 80 / 0.35);
    stroke-width: 0.75;
}

.sacred-star__svg > circle:last-of-type,
.sacred-star__svg > circle:nth-last-of-type(2),
.sacred-star__svg > circle:nth-last-of-type(3),
.sacred-star__svg > circle:nth-last-of-type(4),
.sacred-star__svg > circle:nth-last-of-type(5),
.sacred-star__svg > circle:nth-last-of-type(6) {
    fill: oklch(96% .015 80 / 0.7);
    opacity: 0.72;
}

.sacred-star__label {
    position: relative;
    z-index: 2;
    margin-top: -18px;
    color: oklch(96% .015 80 / 0.75);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.48em;
    text-transform: uppercase;
    text-align: center;
    text-shadow: 0 2px 8px oklch(0% 0 0 / 0.35);
}

@keyframes star-breathe {
    0%,
    100% {
        filter: drop-shadow(0 0 18px oklch(96% .015 80 / 0.18));
        transform: scale(1);
    }

    50% {
        filter: drop-shadow(0 0 34px oklch(96% .015 80 / 0.28));
        transform: scale(1.018);
    }
}

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

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

@media (prefers-reduced-motion: reduce) {
    .sacred-star__svg,
    .sacred-star__aura,
    .sacred-star__outer-rays {
        animation: none;
    }
}

.dh-form {
    position: relative;
    z-index: 1;
    width: min(1180px, 100%);
    margin: 0 auto;
    padding: 28px;
    border: 1px solid oklch(96% .015 80 / 0.15);
    border-radius: 8px;
    background: oklch(46% .04 140);
    box-shadow: 0 30px 90px oklch(0% 0 0 / 0.22);
    color: oklch(96% .015 80);
}

.dh-form-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.field {
    gap: 8px;
}

.field label {
    color: oklch(96% .015 80 / 0.55);
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.field input,
.field select {
    min-height: 48px;
    border: none;
    border-bottom: 1px solid oklch(96% .015 80 / 0.3);
    border-radius: 0;
    background: transparent;
    color: oklch(96% .015 80);
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 300;
    padding: 0.5rem 0;
    transition: border-color 180ms ease;
}

.field input:focus,
.field select:focus {
    border-bottom-color: oklch(96% .015 80 / 0.8);
    outline: none;
    box-shadow: none;
}

.field input::placeholder {
    color: oklch(96% .015 80 / 0.35);
}

.field select option {
    background: oklch(42% .04 140);
    color: oklch(96% .015 80);
}

.field .select2-container {
    width: 100% !important;
}

.field .select2-container .select2-selection--single {
    min-height: 48px;
    border: none;
    border-bottom: 1px solid oklch(96% .015 80 / 0.3);
    border-radius: 0;
    background: transparent;
    color: oklch(96% .015 80);
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 300;
    padding: 0.5rem 0;
}

.field .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: oklch(96% .015 80);
    line-height: 32px;
    padding-left: 0;
}

.field .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: oklch(96% .015 80 / 0.35);
}

.field .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
}

.select2-dropdown {
    background: oklch(95% .015 80);
    border: 1px solid oklch(40% .02 90 / 0.25);
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    background: oklch(99% .005 80);
    border: 1px solid oklch(40% .02 90 / 0.25);
    color: oklch(26% .02 90);
}

.select2-container--default .select2-results__option {
    color: oklch(26% .02 90);
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background: oklch(86% .03 90);
    color: oklch(20% .02 90);
}

.select2-container--default .select2-results__option--selected {
    background: oklch(90% .02 90);
    color: oklch(22% .02 90);
}

.field-microcopy,
.captcha-note {
    color: oklch(96% .015 80 / 0.55);
    font-size: 13px;
    line-height: 1.5;
}

.captcha-note {
    border-color: oklch(96% .015 80 / 0.2);
    background: transparent;
}

.submit-wrap {
    justify-content: flex-end;
    margin-top: 22px;
}

.hd-btn,
.btn.hd-btn,
.btn-secondary.hd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    gap: 10px;
    border-radius: 0;
    padding: 0.85rem 2.5rem;
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.28em;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 300ms ease;
}

.hd-btn--primary,
.btn.hd-btn--primary {
    border: none;
    background: oklch(35% .02 90);
    color: oklch(96% .015 80);
    box-shadow: none;
}

.hd-btn--primary:hover,
.hd-btn--primary:focus-visible {
    background: oklch(42% .04 140);
    color: oklch(96% .015 80);
    transform: none;
}

.hd-btn--secondary,
.btn.hd-btn--secondary {
    border: 1px solid oklch(96% .015 80 / 0.3);
    background: transparent;
    color: inherit;
}

.hd-btn--secondary:hover,
.hd-btn--secondary:focus-visible {
    border-color: oklch(96% .015 80 / 0.7);
    background: oklch(96% .015 80 / 0.08);
    transform: none;
}

.hd-btn:focus-visible,
.btn:focus-visible,
.results-quick-nav a:focus-visible {
    outline: 3px solid oklch(96% .015 80 / 0.4);
    outline-offset: 3px;
}

.dh-loading-ritual {
    display: none;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    color: oklch(96% .015 80 / 0.7);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.dh-form.is-loading .dh-loading-ritual {
    display: flex;
}

.dh-loading-ritual__line {
    position: relative;
    width: 160px;
    height: 1px;
    overflow: hidden;
    background: oklch(96% .015 80 / 0.2);
}

.dh-loading-ritual__line::after {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 42%;
    background: oklch(96% .015 80 / 0.7);
    animation: hdLineScan 1.3s ease-in-out infinite;
}

@keyframes hdLineScan {
    0% {
        transform: translateX(-110%);
    }
    100% {
        transform: translateX(250%);
    }
}

.hd-report-page {
    background: oklch(48% .04 140);
}

.hd-hero {
    position: relative;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 34px;
    min-height: 700px;
    padding: 88px max(28px, calc((100vw - 1180px) / 2)) 76px;
    overflow: hidden;
    align-items: center;
    color: oklch(96% .015 80);
    background:
        radial-gradient(circle at 18% 12%, oklch(48% .05 140 / 0.6), transparent 30%),
        radial-gradient(circle at 82% 20%, oklch(44% .04 140 / 0.4), transparent 32%),
        oklch(52% .04 140);
}

.hd-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: url("../../../images/hd-bodygraph-lines.svg");
    background-position: 9% 48%;
    background-repeat: no-repeat;
    background-size: 560px auto;
    mix-blend-mode: screen;
    opacity: 0.08;
}

.hd-hero__content,
.hd-hero__visual {
    position: relative;
    z-index: 1;
}

.hd-hero__content {
    grid-column: span 7;
    max-width: 760px;
}

.hd-hero__visual {
    grid-column: span 5;
}

.hd-hero h1 {
    max-width: 760px;
    margin: 16px 0 18px;
    color: oklch(96% .015 80);
    font-size: 64px;
    line-height: 0.95;
}

.hd-hero__subheadline {
    max-width: 690px;
    margin: 0 0 20px;
    color: oklch(96% .015 80 / 0.9);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 34px;
    font-weight: 300;
    line-height: 1.05;
}

.hd-hero__text {
    max-width: 660px;
    margin: 0;
    color: oklch(96% .015 80 / 0.7);
    font-size: 18px;
    line-height: 1.6;
}

.hd-action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.hd-button-note {
    margin: 16px 0 0;
    color: oklch(96% .015 80 / 0.45);
    font-size: 13px;
    line-height: 1.6;
}

.hd-map-preview-card {
    position: relative;
    min-height: 560px;
    padding: 22px;
    overflow: hidden;
    border: 1px solid oklch(96% .015 80 / 0.12);
    border-radius: 8px;
    background:
        linear-gradient(180deg, oklch(96% .015 80 / 0.06), oklch(96% .015 80 / 0.02)),
        oklch(44% .04 140 / 0.54);
    box-shadow: 0 28px 80px oklch(0% 0 0 / 0.28);
}

.hd-map-preview-card__head {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: oklch(96% .015 80);
}

.hd-map-preview-card__head span {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 28px;
    font-weight: 300;
}

.hd-map-preview-card__head small {
    color: oklch(96% .015 80 / 0.45);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hd-map-preview-card img {
    display: block;
    width: 100%;
    height: 470px;
    margin-top: 22px;
    object-fit: contain;
}

.hd-map-preview-card img[hidden] {
    display: none;
}

.hd-map-placeholder {
    position: relative;
    display: grid;
    min-height: 480px;
    place-items: center;
    overflow: hidden;
}

.hd-map-placeholder[hidden] {
    display: none;
}

.hd-map-placeholder::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border: 1px solid oklch(96% .015 80 / 0.2);
    border-radius: 50%;
}

.hd-map-placeholder img {
    position: absolute;
    inset: 40px 0 0;
    width: 100%;
    height: calc(100% - 40px);
    opacity: 0.82;
}

.hd-map-placeholder span {
    position: relative;
    z-index: 1;
    color: oklch(96% .015 80 / 0.45);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hd-technical-strip {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 24px;
    padding: 26px max(24px, calc((100vw - 1180px) / 2));
    border-top: 1px solid oklch(96% .015 80 / 0.12);
    border-bottom: 1px solid oklch(96% .015 80 / 0.08);
    background: oklch(44% .04 140);
    color: oklch(96% .015 80);
}

.hd-technical-strip dl {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin: 0;
}

.hd-technical-strip dt {
    margin-bottom: 7px;
    color: oklch(96% .015 80 / 0.45);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hd-technical-strip dd {
    margin: 0;
    color: oklch(96% .015 80 / 0.86);
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-size: 13px;
    line-height: 1.45;
}

.hd-report-section,
.hd-energy-section,
.hd-bodygraph-shell,
.hd-reading-section,
.hd-final-cta {
    padding: 72px max(20px, calc((100vw - 1180px) / 2));
}

.hd-report-card {
    padding: 34px;
    border: 1px solid oklch(96% .015 80 / 0.15);
    border-radius: 8px;
    background: oklch(46% .04 140);
    box-shadow: 0 30px 90px oklch(0% 0 0 / 0.22);
}

.hd-report-card__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.hd-report-card h2,
.hd-section-heading h2,
.hd-final-cta h2 {
    margin: 8px 0 10px;
    color: oklch(96% .015 80);
    font-size: 42px;
    line-height: 1;
}

.hd-report-card p,
.hd-section-heading p,
.hd-final-cta p {
    max-width: 640px;
    margin: 0;
    color: oklch(96% .015 80 / 0.65);
    font-size: 16px;
    line-height: 1.6;
}

.hd-report-card .hd-support-copy {
    margin-top: 10px;
}

.hd-data-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.hd-data-card,
.hd-energy-card {
    min-width: 0;
    padding: 24px;
    border: 1px solid oklch(96% .015 80 / 0.15);
    border-radius: 8px;
    background: oklch(44% .04 140);
    animation: hdRevealUp 520ms ease both;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.hd-data-card:hover,
.hd-energy-card:hover {
    border-color: oklch(96% .015 80 / 0.35);
    box-shadow: 0 18px 44px oklch(0% 0 0 / 0.12);
    transform: translateY(-2px);
}

.hd-data-card strong,
.hd-energy-card strong {
    display: block;
    margin-top: 10px;
    overflow-wrap: anywhere;
    color: oklch(96% .015 80);
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.35;
}

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

.hd-energy-section {
    background: oklch(50% .04 140);
}

.hd-energy-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.hd-energy-card {
    background:
        linear-gradient(180deg, oklch(46% .04 140), oklch(44% .04 140));
}

.hd-data-card:nth-child(2),
.hd-energy-card:nth-child(2) {
    animation-delay: 60ms;
}

.hd-data-card:nth-child(3),
.hd-energy-card:nth-child(3) {
    animation-delay: 120ms;
}

.hd-data-card:nth-child(4),
.hd-energy-card:nth-child(4) {
    animation-delay: 180ms;
}

.hd-data-card:nth-child(5),
.hd-energy-card:nth-child(5) {
    animation-delay: 240ms;
}

.hd-data-card:nth-child(6),
.hd-energy-card:nth-child(6) {
    animation-delay: 300ms;
}

.hd-data-card:nth-child(7),
.hd-energy-card:nth-child(7) {
    animation-delay: 360ms;
}

@keyframes hdRevealUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hd-energy-empty {
    padding: 22px 24px;
    border: 1px solid oklch(96% .015 80 / 0.15);
    border-radius: 8px;
    background: oklch(44% .04 140);
    color: oklch(96% .015 80 / 0.6);
    font-size: 16px;
}

.hd-bodygraph-shell {
    background: oklch(48% .04 140);
}

.hd-bodygraph-shell #document {
    display: block !important;
    width: 100%;
    max-width: 1180px;
    margin: 26px auto 0;
    padding: 18px;
    border: 1px solid rgba(244, 240, 232, 0.14);
    border-radius: 22px;
    background:
        radial-gradient(circle at 12% 18%, rgba(91, 31, 40, 0.24), transparent 26%),
        linear-gradient(135deg, #111111 0%, #1A1718 100%);
    box-shadow: var(--hd-shadow);
    color: #dbe2ea;
    overflow: hidden;
}
#dh-birth-title{
    color:#000000;
}
.hd-bodygraph-shell #document #channels [desc] {
    fill: rgba(244, 240, 232, 0.6);
}

.hd-bodygraph-shell #document #centers>g[id] #shape,
.hd-bodygraph-shell #document #centers>g[id].is-open-center #shape,
.hd-bodygraph-shell #document #centers>g[id]:not(.is-defined-center) #shape,
.hd-bodygraph-shell #document #centers>g#solar_plexus.is-open-center #shape {
    fill: #F4F0E8 !important;
    stroke: #D8C8BA !important;
}

.hd-bodygraph-shell #document #centers>g[id].is-defined-center #shape {
    fill: #5B1F28 !important;
    stroke: #B8AA9A !important;
}

.hd-bodygraph-shell #document #channels [desc].is-active-channel.is-origin-design,
.hd-bodygraph-shell #document #dh-channel-split-overlays .dh-channel-state-overlay.is-origin-design {
    fill: #B12E39;
}

.hd-bodygraph-shell #document #channels [desc].is-active-channel.is-origin-personality,
.hd-bodygraph-shell #document #channels [desc].is-active-channel.is-origin-mixed,
.hd-bodygraph-shell #document #dh-channel-split-overlays .dh-channel-state-overlay.is-origin-personality {
    fill: #8D6E4D;
}

.hd-reading-section {
    background: oklch(48% .04 140);
}

.summary-grid,
.card-grid,
.activations-grid,
.free-info-grid {
    gap: 16px;
}

.summary-card,
.card,
.full-card,
.free-copy-card,
.free-info-card,
.list-item,
.advanced-note {
    border: 1px solid oklch(96% .015 80 / 0.15);
    border-radius: 8px;
    background: oklch(44% .04 140);
    color: oklch(96% .015 80);
    box-shadow: 0 14px 34px oklch(0% 0 0 / 0.12);
}

.full-card,
.section {
    max-width: 1180px;
    margin-right: auto;
    margin-left: auto;
}

.section>h2::after,
.full-card>h2::after {
    background: linear-gradient(90deg, oklch(35% .02 90), transparent);
}

.card p,
.full-card p,
.free-copy-card p,
.free-info-card p,
.list-item p,
.panel p,
.section p {
    color: oklch(96% .015 80 / 0.65);
}

.chip {
    border-color: oklch(96% .015 80 / 0.2);
    background: oklch(46% .04 140);
    color: oklch(96% .015 80);
}

.results-quick-nav {
    max-width: 1180px;
    margin-right: auto;
    margin-left: auto;
    border-color: oklch(96% .015 80 / 0.15);
    background: oklch(44% .04 140 / 0.92);
}

.results-quick-nav a {
    border-color: oklch(96% .015 80 / 0.15);
    background: oklch(46% .04 140 / 0.54);
    color: oklch(96% .015 80);
}

.hd-manifesto {
    position: relative;
    overflow: hidden;
    padding: 96px max(20px, calc((100vw - 1180px) / 2));
    background:
        linear-gradient(135deg, oklch(42% .04 140), oklch(38% .04 140));
    color: oklch(96% .015 80);
}

/* IDENTIDADE VISUAL - overrides de layout para result page */
.hd-report-page {
    background:
        radial-gradient(circle at 18% 12%, oklch(48% .05 140 / 0.5), transparent 30%),
        radial-gradient(circle at 78% 22%, oklch(44% .04 140 / 0.3), transparent 32%),
        oklch(52% .04 140);
    color: oklch(96% .015 80);
}

.hd-report-section,
.hd-energy-section,
.hd-reading-section,
.hd-final-cta {
    background: transparent;
}

.hd-report-card {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.hd-report-card__head {
    border-bottom: 1px solid oklch(96% .015 80 / 0.14);
    padding-bottom: 18px;
    margin-bottom: 10px;
}

.hd-report-card h2,
.hd-section-heading h2,
.hd-final-cta h2 {
    color: oklch(96% .015 80);
}

.hd-report-card p,
.hd-section-heading p,
.hd-final-cta p,
.hd-button-note {
    color: oklch(96% .015 80 / 0.6);
}

.hd-data-grid,
.hd-energy-grid {
    display: block;
}

.hd-data-card,
.hd-energy-card {
    border: 0;
    border-bottom: 1px solid oklch(96% .015 80 / 0.14);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 18px 0;
}

.hd-data-card:hover,
.hd-energy-card:hover {
    border-color: oklch(96% .015 80 / 0.35);
    box-shadow: none;
    transform: none;
}

.hd-data-card strong,
.hd-energy-card strong {
    color: oklch(96% .015 80);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(30px, 3.8vw, 48px);
    line-height: 0.95;
}

.hd-data-card span,
.hd-energy-card span,
.hd-label,
.hd-eyebrow {
    color: oklch(96% .015 80 / 0.5);
    font-family: "Inter", Arial, Helvetica, sans-serif;
    letter-spacing: 0.16em;
}

.hd-bodygraph-shell #document {
    border: 1px solid rgba(242, 234, 223, 0.14);
    border-radius: 30px;
    padding: clamp(14px, 2.2vw, 28px);
    background:
        radial-gradient(circle at 22% 15%, rgba(110, 31, 50, 0.32), transparent 30%),
        linear-gradient(145deg, #171014 0%, #0D0A0B 100%);
    box-shadow: 0 36px 120px rgba(0, 0, 0, 0.52);
}

.hd-final-cta {
    border-top: 1px solid oklch(96% .015 80 / 0.14);
}

.delivery-feedback {
    color: oklch(96% .015 80);
}

@media (max-width: 900px) {
    .hd-data-card strong,
    .hd-energy-card strong {
        font-size: clamp(26px, 8.2vw, 38px);
    }

    .hd-action-row {
        width: 100%;
    }

    .hd-action-row .hd-btn {
        width: 100%;
    }
}

.hd-manifesto::after,
.hd-form-experience::after,
.hd-hero .hd-map-preview-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.16;
    background-image:
        linear-gradient(oklch(96% .015 80 / 0.08) 1px, transparent 1px),
        linear-gradient(90deg, oklch(96% .015 80 / 0.06) 1px, transparent 1px);
    background-size: 3px 3px;
}

.hd-manifesto>div {
    position: relative;
    z-index: 1;
    max-width: 850px;
}

.hd-manifesto h2 {
    margin: 12px 0 18px;
    color: oklch(96% .015 80);
    font-size: 58px;
    line-height: 0.95;
}

.hd-manifesto p {
    max-width: 700px;
    margin: 0;
    color: oklch(96% .015 80 / 0.78);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 32px;
    line-height: 1.15;
}

.hd-manifesto strong {
    display: block;
    margin: 34px 0 28px;
    color: oklch(96% .015 80);
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hd-final-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: oklch(46% .04 140);
}

.hd-final-cta .hd-action-row {
    margin-top: 0;
}

.feedback {
    border-radius: 4px;
    font-family: "Inter", Arial, Helvetica, sans-serif;
}

.feedback.success {
    border-color: oklch(96% .015 80 / 0.3);
    background: oklch(96% .015 80 / 0.1);
    color: oklch(96% .015 80);
}

.feedback.error {
    border-color: oklch(85% .1 30 / 0.4);
    background: oklch(40% .15 30 / 0.3);
    color: oklch(85% .1 30);
}

@media (max-width: 1180px) {
    .hd-hero {
        min-height: 640px;
    }

    .hd-hero h1,
    .hd-form-title {
        font-size: 46px;
    }

    .hd-hero__subheadline {
        font-size: 28px;
    }

    .hd-map-preview-card {
        min-height: 500px;
    }
}

/* layout principal do resultado */
.dh-report {
    --dh-obsidian:    oklch(42% .04 140);
    --dh-black-plum:  oklch(44% .04 140);
    --dh-deep-wine:   oklch(35% .02 90);
    --dh-ritual-wine: oklch(38% .02 90);
    --dh-bone:        oklch(96% .015 80);
    --dh-warm-paper:  oklch(48% .04 140);
    --dh-ash-rose:    oklch(96% .015 80 / 0.6);
    --dh-antique-gold:oklch(96% .015 80 / 0.7);
    --dh-bronze-line: oklch(96% .015 80 / 0.3);
    --dh-muted-stone: oklch(96% .015 80 / 0.5);
    --dh-soft-black:  oklch(40% .04 140);
    --dh-border-dark: oklch(96% .015 80 / 0.14);
    --dh-border-warm: oklch(96% .015 80 / 0.2);
    --dh-glow-wine:   oklch(44% .04 140 / 0.38);
    --dh-glow-gold:   oklch(48% .04 140 / 0.24);
}

.dh-report .dh-btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 0;
    padding: 0.85rem 2.5rem;
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 300ms ease;
}

.dh-report .dh-btn:hover {
    transform: translateY(-2px);
}

.dh-report .dh-btn--primary {
    color: oklch(96% .015 80);
    background: oklch(35% .02 90);
    border: none;
    box-shadow: none;
}

.dh-report .dh-btn--secondary {
    color: oklch(96% .015 80);
    background: oklch(96% .015 80 / 0.04);
    border: 1px solid oklch(96% .015 80 / 0.3);
}

.dh-report .dh-btn--secondary:hover {
    background: oklch(96% .015 80 / 0.08);
    border-color: oklch(96% .015 80 / 0.6);
}

.dh-report .dh-hero {
    position: relative;
    min-height: 88vh;
    padding: clamp(52px, 7vw, 110px) max(20px, calc((100vw - 1180px) / 2));
    display: grid;
    gap: clamp(22px, 3.2vw, 42px);
    align-items: center;
    overflow: hidden;
    color: oklch(96% .015 80);
    background:
        radial-gradient(circle at 18% 20%, oklch(48% .05 140 / 0.5), transparent 34%),
        radial-gradient(circle at 78% 18%, oklch(44% .04 140 / 0.3), transparent 28%),
        oklch(52% .04 140);
}

.dh-report .dh-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../../../images/dh-orbit-lines.svg");
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    pointer-events: none;
}

.dh-report .dh-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../../../images/noise.png");
    opacity: 0.08;
    mix-blend-mode: screen;
    pointer-events: none;
}

.dh-report .dh-hero-content,
.dh-report .dh-chart-stage {
    position: relative;
    z-index: 1;
}

.dh-report .dh-hero-kicker,
.dh-report .dh-section-kicker {
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 400;
    color: oklch(96% .015 80 / 0.5);
}

.dh-report .dh-hero-title {
    margin: 14px 0 18px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(54px, 6vw, 100px);
    line-height: 0.88;
    letter-spacing: -0.045em;
    font-weight: 300;
    color: oklch(96% .015 80);
}

.dh-report .dh-hero-copy {
    margin: 0 0 14px;
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-size: clamp(17px, 1.35vw, 19px);
    line-height: 1.65;
    color: oklch(96% .015 80 / 0.65);
}

.dh-report .dh-hero-microcopy {
    margin-top: 14px;
    color: var(--dh-muted-stone);
}

.dh-report .dh-hero-actions {
    margin-top: 26px;
}

.dh-report .dh-chart-stage {
    position: relative;
    min-height: 640px;
    display: grid;
    place-items: center;
}

.dh-report .dh-chart-stage::before {
    content: "";
    position: absolute;
    width: min(560px, 88vw);
    aspect-ratio: 1;
    border-radius: 999px;
    background:
        radial-gradient(circle, oklch(46% .05 140 / 0.42), transparent 62%),
        radial-gradient(circle, oklch(44% .04 140 / 0.18), transparent 72%);
    filter: blur(18px);
}

.dh-report .dh-chart-panel {
    position: relative;
    width: min(520px, 92vw);
    padding: clamp(18px, 2vw, 28px);
    border: 1px solid oklch(96% .015 80 / 0.14);
    border-radius: 8px;
    background: oklch(46% .04 140 / 0.6);
    box-shadow: 0 44px 120px oklch(0% 0 0 / 0.42);
    backdrop-filter: blur(18px);
}

.dh-report .dh-chart-image {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.45));
}

.dh-report .dh-chart-note {
    position: absolute;
    font-family: "Inter", "Courier New", monospace;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: oklch(96% .015 80 / 0.5);
    background: oklch(44% .04 140 / 0.62);
    border: 1px solid oklch(96% .015 80 / 0.2);
    border-radius: 4px;
    padding: 6px 12px;
}

.dh-report .dh-chart-note--top { top: 16px; left: 50%; transform: translateX(-50%); }
.dh-report .dh-chart-note--left { left: 8px; top: 40%; }
.dh-report .dh-chart-note--right { right: 8px; top: 44%; }
.dh-report .dh-chart-note--bottom { bottom: 14px; left: 50%; transform: translateX(-50%); }

.dh-report .dh-atlas-stage {
    position: relative;
    z-index: 1;
    display: grid;
    align-content: center;
    gap: 18px;
    width: min(620px, 100%);
    justify-self: end;
    color: oklch(96% .015 80);
}

.dh-report .dh-atlas-heading {
    max-width: 540px;
    margin: 0 auto;
    text-align: center;
}

.dh-report .dh-atlas-kicker {
    font-family: "Inter", "Courier New", monospace;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: oklch(96% .015 80 / 0.55);
}

.dh-report .dh-atlas-heading h2 {
    margin: 10px 0 10px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(38px, 4.4vw, 64px);
    line-height: 0.94;
    font-weight: 300;
    letter-spacing: -0.01em;
    color: oklch(96% .015 80);
}

.dh-report .dh-atlas-heading p {
    margin: 0 auto;
    max-width: 520px;
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-size: clamp(14px, 1.1vw, 16px);
    line-height: 1.7;
    color: oklch(96% .015 80 / 0.62);
}

.dh-report .dh-atlas-panel {
    position: relative;
    overflow: hidden;
    padding: clamp(12px, 1.6vw, 18px);
    border: 1px solid oklch(96% .015 80 / 0.10);
    border-radius: 8px;
    background: oklch(44% .04 140);
    box-shadow: 0 30px 90px oklch(0% 0 0 / 0.34);
    display: none;
}

.dh-report .dh-atlas-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: url("../../../images/noise.png");
    background-size: 180px 180px;
    opacity: 0.065;
    mix-blend-mode: screen;
}

.dh-report .dh-atlas-panel::after {
    content: "";
    position: absolute;
    inset: 14px;
    pointer-events: none;
    border: 1px solid rgba(233, 221, 208, 0.045);
    border-radius: 24px;
}

.dh-report .dh-atlas-svg {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: auto;
    border-radius: 22px;
    filter: drop-shadow(0 24px 70px rgba(0, 0, 0, 0.42));
}

.dh-report .dh-atlas-index {
    font-family: "Inter", "Courier New", monospace;
    font-size: 10px;
    letter-spacing: 0.16em;
}

.dh-report .dh-atlas-notes path {
    fill: none;
    stroke: oklch(96% .015 80 / 0.22);
    stroke-width: 0.9;
}

.dh-report .dh-atlas-note-label {
    font-family: "Inter", "Courier New", monospace;
    font-size: 9px;
    letter-spacing: 0.2em;
    fill: oklch(96% .015 80 / 0.44);
}

.dh-report .dh-atlas-note-value {
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0;
    fill: oklch(96% .015 80 / 0.82);
}

.dh-report .dh-atlas-caption {
    display: grid;
    gap: 6px;
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}

.dh-report .dh-atlas-caption p {
    margin: 0;
    font-family: "Inter", "Courier New", monospace;
    font-size: 11px;
    line-height: 1.7;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: oklch(96% .015 80 / 0.58);
}

.dh-report .dh-atlas-caption p span {
    display: inline-block;
    margin: 0 8px;
    color: oklch(96% .015 80 / 0.55);
}

.dh-report .dh-atlas-caption strong {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(25px, 2.5vw, 36px);
    line-height: 1;
    font-weight: 300;
    letter-spacing: -0.01em;
    color: oklch(96% .015 80);
}

.dh-report .dh-atlas-caption small {
    display: block;
    max-width: 520px;
    margin: 2px auto 0;
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-size: 13px;
    line-height: 1.6;
    color: oklch(96% .015 80 / 0.48);
}

.dh-report .dh-first-layer,
.dh-report .dh-graph-section,
.dh-report .dh-birth-data,
.dh-report .dh-reading-section,
.dh-report .dh-ritual-note,
.dh-report .dh-final-cta {
    padding: clamp(52px, 7vw, 92px) max(20px, calc((100vw - 1180px) / 2));
}

.dh-report .dh-first-layer {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(18px, 3vw, 42px);
    color: var(--dh-bone);
}

.dh-report .dh-first-layer h2,
.dh-report .dh-graph-copy h2,
.dh-report .dh-birth-data h2,
.dh-report .dh-reading-chapter h2,
.dh-report .dh-ritual-note h2,
.dh-report .dh-final-cta h2 {
    margin: 12px 0 18px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(38px, 5vw, 72px);
    line-height: 0.95;
    letter-spacing: -0.035em;
    color: oklch(96% .015 80);
}

.dh-report .dh-first-layer p,
.dh-report .dh-graph-copy p,
.dh-report .dh-birth-data p,
.dh-report .dh-reading-chapter p,
.dh-report .dh-ritual-note p,
.dh-report .dh-final-cta p {
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-size: clamp(17px, 1.35vw, 19px);
    line-height: 1.65;
    color: oklch(96% .015 80 / 0.65);
}

.dh-report .dh-energy-list {
    display: grid;
    gap: 0;
    border-top: 1px solid oklch(96% .015 80 / 0.14);
}

.dh-report .dh-energy-list div {
    display: grid;
    grid-template-columns: minmax(120px, 0.42fr) 1fr;
    gap: 24px;
    padding: 22px 0;
    border-bottom: 1px solid oklch(96% .015 80 / 0.14);
}

.dh-report .dh-energy-list dt {
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: oklch(96% .015 80 / 0.5);
}

.dh-report .dh-energy-list dd {
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(30px, 4vw, 54px);
    line-height: 0.96;
    color: oklch(96% .015 80);
}

.dh-report .dh-graph-section {
    background: oklch(48% .04 140);
    color: oklch(96% .015 80);
}

.dh-report .dh-graph-stage {
    margin-top: 30px;
}

.dh-report .dh-graph-aside {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.dh-report .dh-graph-aside article {
    border-top: 1px solid oklch(96% .015 80 / 0.14);
    padding-top: 16px;
}

.dh-report .dh-graph-aside span {
    font-family: "Inter", "Courier New", monospace;
    font-size: 28px;
    color: oklch(96% .015 80 / 0.7);
}

.dh-report .dh-graph-aside h3 {
    margin: 10px 0;
    color: oklch(96% .015 80);
}

.dh-report .dh-graph-aside p {
    font-size: 16px;
}

.dh-report .dh-birth-data {
    background: oklch(50% .04 140);
}

.dh-report .dh-birth-data-accordion {
    border: 1px solid oklch(96% .015 80 / 0.2);
    border-radius: 8px;
    background: oklch(46% .04 140 / 0.74);
    padding: 18px;
}

.dh-report .dh-birth-data-accordion > summary {
    cursor: pointer;
    list-style: none;
    font-family: "Inter", "Courier New", monospace;
    color: oklch(96% .015 80);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.dh-report .dh-birth-grid {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 18px;
}

.dh-report .dh-birth-grid div {
    border-bottom: 1px solid oklch(96% .015 80 / 0.15);
    padding: 12px 0;
}

.dh-report .dh-birth-grid dt {
    font-family: "Inter", "Courier New", monospace;
    font-size: 11px;
    color: oklch(96% .015 80 / 0.5);
    text-transform: uppercase;
}

.dh-report .dh-birth-grid dd {
    margin: 8px 0 0;
    font-family: "Inter", Arial, Helvetica, sans-serif;
    color: oklch(96% .015 80);
}

.dh-report .dh-reading-section {
    background: transparent;
}

.dh-report .dh-reading-chapter {
    /*max-width: 720px;*/
    margin: 0 0 42px;
}
.dh-upsell{
    padding: clamp(52px, 7vw, 92px) max(20px, calc((100vw - 1180px) / 2));
    background: oklch(40% .04 140);
}

        .dh-upsell__inner {
            /*max-width: 680px;*/
            margin: 0 auto;
            display: grid;
            gap: 56px;
        }
        .dh-upsell__intro { display: grid; gap: 16px; }
        .dh-upsell__intro h2 {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: clamp(1.75rem, 4vw, 2.5rem);
            font-style: italic;
            font-weight: 300;
            line-height: 1.15;
            color: oklch(96% .015 80);
        }
        .dh-upsell__intro p {
            font-size: 1rem;
            line-height: 1.85;
            color: oklch(96% .015 80 / 0.75);
        }
        .dh-upsell__intro .dh-upsell__highlight {
            font-size: 0.85rem;
            letter-spacing: 0.12em;
            color: oklch(96% .015 80 / 0.5);
            text-transform: uppercase;
            font-family: 'Inter', sans-serif;
        }
        .dh-upsell__features { display: grid; gap: 32px; }
        .dh-upsell__feature h3 {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: 1.25rem;
            font-style: italic;
            font-weight: 300;
            color: oklch(96% .015 80 / 0.95);
            margin-bottom: 8px;
            line-height: 1.3;
        }
        .dh-upsell__feature h3 em {
            font-style: normal;
            color: oklch(96% .015 80);
        }
        .dh-upsell__feature p {
            font-size: 0.9rem;
            line-height: 1.85;
            color: oklch(96% .015 80 / 0.68);
        }
        .dh-upsell__mirror {
            background: oklch(44% .04 140);
            border-left: 2px solid oklch(96% .015 80 / 0.25);
            padding: 28px 28px;
            display: grid;
            gap: 14px;
        }
        .dh-upsell__mirror h3 {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: 1.35rem;
            font-style: italic;
            font-weight: 300;
            color: oklch(96% .015 80 / 0.9);
            line-height: 1.35;
        }
        .dh-upsell__mirror p {
            font-size: 0.9rem;
            line-height: 1.9;
            color: oklch(96% .015 80 / 0.65);
        }
        .dh-upsell__mirror .dh-upsell__whisper {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: 1.1rem;
            font-style: italic;
            color: oklch(96% .015 80 / 0.75);
            margin-top: 8px;
        }
        .dh-upsell__section h3 {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: 1.35rem;
            font-style: italic;
            font-weight: 300;
            color: oklch(96% .015 80 / 0.9);
            margin-bottom: 16px;
            line-height: 1.3;
        }
        .dh-upsell__section p {
            font-size: 0.9rem;
            line-height: 1.9;
            color: oklch(96% .015 80 / 0.68);
            margin-bottom: 10px;
        }
        .dh-upsell__section p:last-child { margin-bottom: 0; }
        .dh-upsell__breakdown {
            list-style: none;
            display: grid;
            gap: 20px;
        }
        .dh-upsell__breakdown li {
            display: grid;
            grid-template-columns: 1fr;
            gap: 4px;
            padding-bottom: 20px;
            border-bottom: 1px solid oklch(96% .015 80 / 0.1);
        }
        .dh-upsell__breakdown li:last-child { border-bottom: none; padding-bottom: 0; }
        .dh-upsell__breakdown strong {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: 1.1rem;
            font-style: italic;
            font-weight: 300;
            color: oklch(96% .015 80);
        }
        .dh-upsell__breakdown span {
            font-size: 0.85rem;
            line-height: 1.75;
            color: oklch(96% .015 80 / 0.6);
        }
        .dh-upsell__changes {
            display: grid;
            gap: 10px;
        }
        .dh-upsell__changes h3 {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: 1.35rem;
            font-style: italic;
            font-weight: 300;
            color: oklch(96% .015 80 / 0.9);
            margin-bottom: 6px;
            line-height: 1.3;
        }
        .dh-upsell__changes li {
            list-style: none;
            font-size: 0.9rem;
            line-height: 1.8;
            color: oklch(96% .015 80 / 0.7);
            padding-left: 1rem;
            position: relative;
        }
        .dh-upsell__changes li::before {
            content: "–";
            position: absolute;
            left: 0;
            color: oklch(96% .015 80 / 0.3);
        }
        .dh-upsell__closing {
            font-size: 0.9rem;
            line-height: 1.9;
            color: oklch(96% .015 80 / 0.65);
        }
        .dh-upsell__closing p { margin-bottom: 10px; }
        .dh-upsell__closing p:last-child { margin-bottom: 0; }

        /* Offer box */
        .dh-upsell__offer {
            background: oklch(36% .02 90);
            padding: 40px 36px;
            display: grid;
            gap: 20px;
            text-align: center;
        }
        .dh-upsell__offer-badge {
            font-family: 'Inter', sans-serif;
            font-size: 0.65rem;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: oklch(96% .015 80 / 0.5);
        }
        .dh-upsell__offer h3 {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: 1.6rem;
            font-style: italic;
            font-weight: 300;
            color: oklch(96% .015 80);
            line-height: 1.2;
        }
        .dh-upsell__offer-details {
            list-style: none;
            display: grid;
            gap: 6px;
        }
        .dh-upsell__offer-details li {
            font-size: 0.82rem;
            line-height: 1.6;
            color: oklch(96% .015 80 / 0.65);
        }
        .dh-upsell__price {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: 3.5rem;
            font-weight: 300;
            color: oklch(96% .015 80);
            line-height: 1;
        }
        .dh-upsell__price small {
            font-size: 1.5rem;
            vertical-align: super;
        }
        .dh-upsell__cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2.5rem;
            background: oklch(96% .015 80);
            color: oklch(36% .02 90);
            font-family: 'Inter', sans-serif;
            font-size: 0.7rem;
            font-weight: 400;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            text-decoration: none;
            transition: background 0.3s;
            cursor: pointer;
        }
        .dh-upsell__cta:hover { background: oklch(90% .012 80); }
        .dh-upsell__secondary {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }
        .dh-upsell__secondary button,
        .dh-upsell__secondary a {
            background: none;
            border: none;
            cursor: pointer;
            font-family: 'Inter', sans-serif;
            font-size: 0.72rem;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: oklch(96% .015 80 / 0.45);
            text-decoration: none;
            transition: color 0.2s;
            padding: 0;
        }
        .dh-upsell__secondary button:hover,
        .dh-upsell__secondary a:hover { color: oklch(96% .015 80 / 0.75); }
        .dh-final-tech {
            font-size: 0.72rem;
            color: oklch(96% .015 80 / 0.3);
            text-align: center;
        }
.dh-report .dh-chapter-number {
    font-family: "Inter", "Courier New", monospace;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: oklch(96% .015 80 / 0.5);
}

.dh-report .dh-chapter-body {
    /*max-width: 720px;*/
}

.dh-report .dh-ritual-note {
    background: oklch(46% .04 140);
    color: oklch(96% .015 80);
}

.dh-report .dh-ritual-note p {
    max-width: 860px;
}

.dh-report .dh-final-cta {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    border-top: 1px solid oklch(96% .015 80 / 0.14);
}

.dh-report .dh-final-tech {
    margin-top: 12px;
    font-family: "Inter", "Courier New", monospace;
    font-size: 11px;
    letter-spacing: 0.08em;
    color: oklch(96% .015 80 / 0.5);
}

@media (max-width: 1024px) {
    .dh-report .dh-hero {
        grid-template-columns: 1fr;
        min-height: 760px;
    }

    .dh-report .dh-atlas-stage {
        justify-self: center;
        width: min(640px, 100%);
    }

    .dh-report .dh-first-layer {
        grid-template-columns: 1fr;
    }

    .dh-report .dh-graph-aside {
        grid-template-columns: 1fr;
    }

    .dh-report .dh-final-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .dh-report .dh-birth-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .dh-report .dh-hero-title {
        font-size: clamp(44px, 12vw, 58px);
    }

    .dh-report .dh-atlas-stage {
        gap: 14px;
    }

    .dh-report .dh-atlas-heading {
        text-align: left;
    }

    .dh-report .dh-atlas-panel {
        padding: 10px;
        border-radius: 24px;
    }

    .dh-report .dh-atlas-svg {
        border-radius: 18px;
    }

    .dh-report .dh-atlas-notes {
        display: none;
    }

    .dh-report .dh-atlas-caption {
        text-align: left;
    }

    .dh-report .dh-atlas-caption p span {
        margin: 0 5px;
    }

    .dh-report .dh-chart-panel {
        width: 92vw;
    }

    .dh-report .dh-hero-actions {
        width: 100%;
    }

    .dh-report .dh-hero-actions .dh-btn {
        width: 100%;
    }

    .dh-report .dh-birth-data-accordion {
        padding: 14px;
    }

    .dh-report .dh-birth-data-accordion:not([open]) > div,
    .dh-report .dh-birth-data-accordion:not([open]) > dl {
        display: none;
    }
}

@media (max-width: 980px) {
    .hd-form-hero,
    .hd-hero,
    .hd-technical-strip,
    .hd-report-card__head,
    .hd-final-cta {
        grid-template-columns: 1fr;
    }

    .hd-form-hero__sigil {
        min-height: 250px;
    }

    .sacred-star__svg {
        width: 280px;
    }

    .hd-hero {
        display: grid;
        padding-top: 64px;
    }

    .hd-hero__content,
    .hd-hero__visual {
        grid-column: auto;
    }

    .hd-technical-strip dl,
    .hd-data-grid,
    .hd-energy-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hd-report-card__head {
        display: grid;
    }

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

    .hd-bodygraph-shell #document {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .hd-form-experience,
    .hd-hero,
    .hd-report-section,
    .hd-energy-section,
    .hd-bodygraph-shell,
    .hd-reading-section,
    .hd-manifesto,
    .hd-final-cta {
        padding-right: 20px;
        padding-left: 20px;
    }

    .hd-form-experience {
        padding-top: 28px;
        padding-bottom: 48px;
    }

    .hd-form-hero {
        gap: 22px;
    }

    .hd-form-hero__sigil {
        width: min(100%, 320px);
        margin: 0 auto;
        min-height: 220px;
        border-radius: 24px;
    }

    .sacred-star__svg {
        width: min(220px, 74vw);
    }

    .sacred-star__label {
        max-width: 86%;
        margin-top: -12px;
        font-size: 10px;
        letter-spacing: 0.24em;
        line-height: 1.5;
    }

    .hd-form-title,
    .hd-hero h1 {
        font-size: 38px;
    }

    .hd-hero__subheadline {
        font-size: 24px;
    }

    .hd-hero__text,
    .hd-form-hero .subtitle {
        font-size: 16px;
    }

    .hd-map-preview-card {
        min-height: 430px;
        padding: 18px;
        border-radius: 24px;
    }

    .hd-map-preview-card__head {
        align-items: flex-start;
        flex-direction: column;
    }

    .hd-map-preview-card img,
    .hd-map-placeholder {
        height: 340px;
        min-height: 340px;
    }

    .dh-form,
    .hd-report-card {
        padding: 22px;
        border-radius: 22px;
    }

    .dh-form-grid,
    .hd-technical-strip dl,
    .hd-data-grid,
    .hd-energy-grid,
    .free-info-grid,
    .card-grid,
    .summary-grid,
    .activations-grid {
        grid-template-columns: 1fr;
    }

    .field-wide {
        grid-column: span 1;
    }

    .hd-action-row,
    .delivery-actions {
        width: 100%;
    }

    .hd-btn,
    .btn.hd-btn,
    .btn-secondary.hd-btn,
    .delivery-actions .hd-btn,
    .submit-wrap .hd-btn {
        width: 100%;
    }

    .hd-report-card h2,
    .hd-section-heading h2,
    .hd-final-cta h2 {
        font-size: 34px;
    }

    .hd-manifesto h2 {
        font-size: 40px;
    }

    .hd-manifesto p {
        font-size: 25px;
    }

    .hd-bodygraph-shell #document {
        padding: 10px;
        border-radius: 16px;
    }

    .hd-bodygraph-shell #document .chart-canvas {
        grid-template-columns: minmax(70px, 84px) minmax(0, 1fr) minmax(70px, 84px);
        gap: 5px;
    }
}

@media (max-width: 420px) {
    .hd-form-hero {
        gap: 18px;
    }

    .hd-form-hero__sigil {
        min-height: 204px;
        border-radius: 20px;
    }

    .sacred-star__svg {
        width: min(204px, 72vw);
    }

    .sacred-star__aura {
        width: 84%;
    }

    .sacred-star__label {
        max-width: 90%;
        margin-top: -8px;
        letter-spacing: 0.16em;
    }
}

@media (max-width: 375px) {
    .hd-form-experience {
        padding-top: 24px;
        padding-bottom: 40px;
    }

    .hd-form-hero {
        gap: 16px;
    }

    .hd-form-title {
        font-size: 34px;
        line-height: 0.98;
    }

    .hd-form-hero .subtitle {
        font-size: 15px;
        line-height: 1.55;
    }

    .hd-form-mantra {
        margin-top: 16px;
        font-size: 14px;
    }

    .hd-form-hero__sigil {
        width: min(100%, 292px);
        min-height: 196px;
        border-radius: 18px;
    }

    .sacred-star__svg {
        width: min(190px, 70vw);
    }

    .sacred-star__label {
        margin-top: -6px;
        font-size: 9px;
        letter-spacing: 0.14em;
    }
}

@media (max-width: 360px) {
    .hd-form-experience {
        padding-top: 20px;
        padding-bottom: 36px;
    }

    .hd-form-hero {
        gap: 14px;
    }

    .hd-form-hero__sigil {
        width: min(100%, 278px);
        min-height: 186px;
    }

    .sacred-star__svg {
        width: min(178px, 68vw);
    }

    .sacred-star__aura {
        width: 80%;
    }

    .sacred-star__label {
        max-width: 92%;
        letter-spacing: 0.12em;
        line-height: 1.45;
    }
}

@media print {
    /* ── Forçar impressão de cores de fundo ── */
    *, *::before, *::after {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }

    /* ── Elementos interativos: ocultar ── */
    .hd-action-row,
    .dh-hero-actions,
    .delivery-actions,
    .delivery-feedback,
    .hd-final-cta,
    .dh-final-cta,
    .dh-upsell,
    .hd-manifesto .hd-btn,
    .results-quick-nav,
    .whatsapp-float,
    .site-nav {
        display: none !important;
    }

    /* ── Layout: remover altura mínima ── */
    .hd-hero,
    .dh-report .dh-hero,
    .hd-manifesto {
        min-height: 0;
        padding-top: 24px;
        padding-bottom: 24px;
    }

    /* ── Evitar cortes em cards e blocos ── */
    .summary-card,
    .card,
    .full-card,
    .free-copy-card,
    .free-info-card,
    .hd-data-card,
    .hd-energy-card,
    .dh-data-card,
    .dh-energy-card,
    .dh-reading-chapter,
    .dh-graph-aside article,
    .dh-var-item,
    .dh-energy-list > div,
    .list-item,
    .advanced-note,
    .hd-report-card,
    .dh-atlas-panel,
    .dh-chart-panel,
    .dh-birth-data-accordion,
    .dh-bodygraph-wrap {
        break-inside: avoid;
    }

    /* ── Bodygraph: nunca cortar ── */
    .hd-bodygraph-shell,
    .dh-graph-stage,
    .dh-chart-stage,
    #document {
        break-inside: avoid;
    }

    /* ── Evitar heading sozinho no fim de página ── */
    h1, h2, h3, h4 {
        break-after: avoid;
    }

    /* ── Parágrafos: evitar linhas orfãs ── */
    p {
        orphans: 3;
        widows: 3;
    }
}

/* ─── Números de linha do Perfil ────────────────────────────────────────── */

.dh-profile-lines {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 4px 10px;
    margin: 4px 0 10px;
    font-family: "Inter", Arial, sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: oklch(96% .015 80);
}

.dh-profile-lines small {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted, #6f665f);
    margin-left: 3px;
}

.dh-profile-lines__sep {
    color: var(--line, #c9beb1);
    font-weight: 400;
}

.dh-line-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: oklch(44% .04 140);
    font-family: "Inter", "Courier New", monospace;
    font-size: 11px;
    font-weight: 400;
    color: oklch(96% .015 80);
    margin-right: 6px;
    vertical-align: middle;
    flex-shrink: 0;
}

/* ─── Variáveis do mapa — coroa visual ─────────────────────────────────── */

.dh-bodygraph-wrap {
    position: relative;
}

.dh-bodygraph-wrap.has-crown {
    padding-top: 108px;
}

.dh-variables-crown {
    position: absolute;
    top: 0;
    left: 50%;
    width: min(540px, 96vw);
    height: 104px;
    transform: translateX(-50%);
    z-index: 8;
    pointer-events: none;
}

.dh-var-node {
    position: absolute;
    display: grid;
    gap: 6px;
    min-width: 136px;
    color: var(--dh-bone, oklch(96% .015 80));
    animation: dh-var-in 500ms ease both;
}

@keyframes dh-var-in {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}

.dh-var-node--digestion {
    top: 0;
    left: 10%;
    text-align: right;
    align-items: end;
}

.dh-var-node--environment {
    top: 56px;
    left: 2%;
    text-align: right;
    align-items: end;
}

.dh-var-node--perspective {
    top: 0;
    right: 10%;
    text-align: left;
    align-items: start;
}

.dh-var-node--motivation {
    top: 56px;
    right: 2%;
    text-align: left;
    align-items: start;
}

.dh-var-label {
    font-family: "Inter", "Courier New", monospace;
    font-size: 9px;
    line-height: 1;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: oklch(96% .015 80 / 0.46);
    display: block;
}

.dh-var-line {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: "Inter", Arial, sans-serif;
    font-size: 11.5px;
    font-weight: 400;
    line-height: 1.1;
    color: oklch(96% .015 80);
}

.dh-var-node--digestion .dh-var-line,
.dh-var-node--environment .dh-var-line {
    flex-direction: row-reverse;
}

.dh-var-arrow {
    flex: 0 0 auto;
    color: oklch(96% .015 80 / 0.7);
    filter: none;
}

.dh-var-node.is-left .dh-var-arrow {
    color: oklch(96% .015 80 / 0.85);
}

.dh-var-node.is-right .dh-var-arrow {
    color: oklch(96% .015 80 / 0.6);
    opacity: 0.85;
}

/* ─── Variáveis do mapa — seção editorial ───────────────────────────────── */

.dh-variables-section {
    margin-top: 48px;
    padding-top: 36px;
    border-top: 1px solid oklch(96% .015 80 / 0.14);
}

.dh-report .dh-variables-section {
    border-top: 1px solid oklch(96% .015 80 / 0.14);
}

.dh-variables-header {
    margin-bottom: 28px;
}

.dh-variables-intro {
    margin: 10px 0 0;
    font-size: 15px;
    line-height: 1.65;
    color: oklch(96% .015 80 / 0.6);
    max-width: 680px;
}

.dh-report .dh-variables-intro {
    color: oklch(96% .015 80 / 0.6);
}

.dh-variables-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
}

.dh-var-item {
    padding: 20px 0;
    border-bottom: 1px solid oklch(96% .015 80 / 0.12);
    display: grid;
    gap: 5px;
}

.dh-var-item:nth-child(odd) {
    padding-right: 28px;
    border-right: 1px solid oklch(96% .015 80 / 0.12);
}

.dh-var-item:nth-child(even) {
    padding-left: 28px;
}

.dh-var-item:nth-last-child(-n+2) {
    border-bottom: none;
}

.dh-var-item-head {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px 10px;
}

.dh-var-item-system {
    font-family: "Inter", "Courier New", monospace;
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: oklch(96% .015 80 / 0.5);
    flex-shrink: 0;
}

.dh-var-item-label {
    font-family: "Inter", "Courier New", monospace;
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: oklch(96% .015 80 / 0.45);
}

.dh-var-item-orientation {
    font-family: "Inter", Arial, sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: oklch(96% .015 80 / 0.75);
    width: 100%;
}

.dh-var-item-value {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 20px;
    font-weight: 300;
    letter-spacing: -0.01em;
    line-height: 1.1;
    color: oklch(96% .015 80);
}

.dh-var-item-meta {
    font-family: "Inter", "Courier New", monospace;
    font-size: 9.5px;
    letter-spacing: 0.08em;
    color: oklch(96% .015 80 / 0.45);
    margin-top: 2px;
}

/* ─── Mobile: coroa vira grid compacto ─────────────────────────────────── */

@media (max-width: 767px) {
    .dh-bodygraph-wrap.has-crown {
        padding-top: 0;
    }

    .dh-variables-crown {
        position: static;
        transform: none;
        width: 100%;
        height: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        margin: 18px 0 0;
        pointer-events: auto;
    }

    .dh-var-node {
        position: static;
        min-width: 0;
        padding: 12px 14px;
        border: 1px solid oklch(96% .015 80 / 0.1);
        border-radius: 8px;
        background: oklch(96% .015 80 / 0.03);
        text-align: left;
        align-items: start;
        animation: none;
    }

    .dh-var-node--digestion .dh-var-line,
    .dh-var-node--environment .dh-var-line {
        flex-direction: row;
    }

    .dh-variables-list {
        grid-template-columns: 1fr;
    }

    .dh-var-item:nth-child(odd) {
        padding-right: 0;
        border-right: none;
    }

    .dh-var-item:nth-child(even) {
        padding-left: 0;
    }

    .dh-var-item:nth-last-child(-n+2) {
        border-bottom: 1px solid oklch(96% .015 80 / 0.12);
    }

    .dh-var-item:last-child {
        border-bottom: none;
    }
}

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