@charset "UTF-8";

:root {
    --bg: #f6efe4;
    --cream: #fffaf3;
    --sand: #f2e4d3;
    --mist: #e8eff2;
    --white: #fff;
    --ink: #111111;
    --ink-soft: #1a1a1a;
    --muted: #5d6674;
    --muted-strong: #48525f;
    --orange: #bba14f;
    --orange-deep: #8f7732;
    --orange-soft: #ebd6a9;
    --blue: #7e9cab;
    --line: rgba(17, 17, 17, .12);
    --ink-line: rgba(255, 255, 255, .12);
    --ink-muted: rgba(246, 239, 228, .76);
    --shadow-soft: 0 18px 56px rgba(23, 30, 40, .08);
    --shadow-strong: 0 28px 84px rgba(23, 30, 40, .14);
    --radius-xl: 34px;
    --radius-lg: 28px;
    --radius-md: 22px;
    --container: min(1180px, calc(100vw - 48px));
    --transition: 240ms cubic-bezier(.2, 1, .2, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(circle at 10% 8%, rgba(201, 106, 54, .14), transparent 24%),
        radial-gradient(circle at 88% 10%, rgba(126, 156, 171, .2), transparent 28%),
        linear-gradient(180deg, #fdf9f3 0%, #f6efe4 45%, #faf6ef 100%);
    font-family: "Manrope", "Segoe UI", sans-serif;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -4;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, .42), transparent 36%, rgba(255, 255, 255, .28)),
        radial-gradient(circle at 50% 20%, rgba(255, 255, 255, .5), transparent 42%);
    opacity: .75;
}

::selection {
    color: var(--cream);
    background: var(--orange)
}

img {
    display: block;
    max-width: 100%
}

a {
    color: inherit;
    text-decoration: none
}

button,
input,
textarea,
select {
    font: inherit
}

p,
ul {
    margin: 0
}

:focus-visible {
    outline: 2px solid rgba(201, 106, 54, .7);
    outline-offset: 4px
}

html,
body {
    cursor: none;
}

a,
button,
input,
textarea,
select,
[role="button"],
summary {
    cursor: none !important;
}

.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: var(--orange);
    opacity: 0.6;
    pointer-events: none;
    z-index: 999999;
    transform: translate(var(--x, -100px), var(--y, -100px)) translate(-50%, -50%);
    transition: width 0.3s cubic-bezier(0.2, 1, 0.2, 1), height 0.3s cubic-bezier(0.2, 1, 0.2, 1), opacity 0.3s cubic-bezier(0.2, 1, 0.2, 1);
    will-change: transform, width, height;
}

.custom-cursor.is-hovering {
    width: 52px;
    height: 52px;
    opacity: 0.22;
    background-color: var(--orange-soft);
}

@media (hover: none) or (pointer: coarse) {

    html,
    body,
    a,
    button,
    input,
    textarea,
    select,
    [role="button"],
    summary {
        cursor: auto !important;
    }

    .custom-cursor {
        display: none !important;
    }
}

.page-shell {
    position: relative;
    isolation: isolate
}

.ambient {
    position: fixed;
    pointer-events: none;
    filter: blur(96px);
    z-index: -3;
    opacity: .7
}

.ambient--top {
    top: -140px;
    right: -120px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 106, 54, .28), transparent 70%)
}

.ambient--bottom {
    bottom: -180px;
    left: -140px;
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, rgba(126, 156, 171, .24), transparent 72%)
}

.line-field {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: -2
}

.line-field__line {
    position: absolute;
    width: min(34vw, 380px);
    height: calc(100% + 760px);
    fill: none;
    stroke: rgba(201, 106, 54, .14);
    stroke-width: 1;
    opacity: .28;
    will-change: transform
}

.line-field__line path {
    stroke-dasharray: 2400;
    stroke-dashoffset: 2400;
    transition: stroke-dashoffset 120ms linear
}

.line-field__shine {
    fill: none;
    stroke: rgba(126, 156, 171, .42);
    stroke-width: 2.1;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 150 2250;
    stroke-dashoffset: 0;
    opacity: .24;
    mix-blend-mode: screen;
    filter: drop-shadow(0 0 6px rgba(126, 156, 171, .16)) drop-shadow(0 0 16px rgba(201, 106, 54, .1));
    transition: stroke-dashoffset 120ms linear, opacity 220ms ease
}

.line-field__line--one {
    top: -260px;
    left: -140px;
    transform: rotate(-1deg)
}

.line-field__line--two {
    top: -240px;
    right: -160px;
    transform: scaleX(-1) rotate(3deg);
    opacity: .22
}

.topbar {
    position: fixed;
    top: 18px;
    left: 50%;
    z-index: 30;
    transform: translateX(-50%);
    width: min(1220px, calc(100vw - 32px));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 18px;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, .28);
    background: rgba(255, 250, 243, .22);
    backdrop-filter: blur(14px);
    transition: background-color var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.topbar::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(110deg, rgba(255, 255, 255, .22), transparent 34%, rgba(255, 255, 255, .08) 72%, transparent);
    pointer-events: none
}

.topbar.is-scrolled,
.topbar.is-open {
    background: rgba(255, 250, 243, .8);
    border-color: rgba(17, 17, 17, .08);
    box-shadow: var(--shadow-soft)
}

.brand,
.brand__copy,
.topbar__panel,
.topbar__nav {
    display: flex;
    align-items: center
}

.brand {
    gap: 12px;
    position: relative;
    z-index: 1;
    min-width: max-content
}

.brand__copy {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px
}

.brand__mark,
.footer__mark {
    width: 50px;
    aspect-ratio: 1;
    object-fit: contain;
    border-radius: 14px;
    box-shadow: 0 14px 28px rgba(17, 17, 17, .12)
}

.brand__name,
.footer__name {
    font-family: "Fraunces", "Cormorant Garamond", Georgia, serif;
    font-size: clamp(1.3rem, 1.8vw, 1.7rem);
    font-weight: 600;
    letter-spacing: -.03em
}

.brand__role,
.footer__role,
.footer__signature {
    color: var(--muted);
    font-size: .85rem
}

.topbar__panel {
    position: relative;
    z-index: 1;
    gap: 18px
}

.topbar__nav {
    gap: 18px
}

.topbar__nav a {
    position: relative;
    color: var(--muted-strong);
    font-size: .93rem;
    font-weight: 700;
    transition: color var(--transition)
}

.topbar__nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(201, 106, 54, 0), rgba(201, 106, 54, 1), rgba(201, 106, 54, 0));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--transition)
}

.topbar__nav a:hover,
.topbar__nav a:focus-visible {
    color: var(--orange)
}

.topbar__nav a:hover::after,
.topbar__nav a:focus-visible::after {
    transform: scaleX(1)
}

/* Inversão para claro quando no hero escuro */
.topbar:not(.is-scrolled):not(.is-open) {
    border-color: rgba(255, 255, 255, .1);
}

.topbar:not(.is-scrolled):not(.is-open) .brand__name {
    color: var(--cream);
}

.topbar:not(.is-scrolled):not(.is-open) .brand__role {
    color: var(--ink-muted);
}

.topbar:not(.is-scrolled):not(.is-open) .topbar__nav a {
    color: var(--ink-muted);
}

.topbar:not(.is-scrolled):not(.is-open) .topbar__nav a:hover,
.topbar:not(.is-scrolled):not(.is-open) .topbar__nav a:focus-visible {
    color: var(--orange);
}

.topbar:not(.is-scrolled):not(.is-open) .button--ghost.topbar__cta {
    background: rgba(255, 255, 255, .12);
    color: var(--cream);
    border-color: rgba(255, 255, 255, .16);
}

.topbar:not(.is-scrolled):not(.is-open) .topbar__toggle {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .15);
    color: var(--cream);
}

.topbar__toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(17, 17, 17, .08);
    border-radius: 50%;
    background: rgba(255, 255, 255, .54);
    color: var(--ink);
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.topbar__toggle-lines {
    display: inline-grid;
    gap: 4px
}

.topbar__toggle-lines span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform var(--transition), opacity var(--transition)
}

.topbar.is-open .topbar__toggle-lines span:nth-child(1) {
    transform: translateY(6px) rotate(45deg)
}

.topbar.is-open .topbar__toggle-lines span:nth-child(2) {
    opacity: 0
}

.topbar.is-open .topbar__toggle-lines span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg)
}

.topbar__toggle-text {
    font-size: .9rem;
    font-weight: 700
}

.section {
    position: relative;
    padding: clamp(92px, 10vw, 126px) 0
}

.section:not(.section--hero):not(.trust):not(.urgency-band)>* {
    width: var(--container);
    margin-inline: auto
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 20px;
    color: var(--orange);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase
}

.section-kicker::before {
    content: "";
    width: 44px;
    height: 1px;
    border-radius: 999px;
    background: currentColor;
    opacity: .65
}

.section-heading {
    max-width: var(--container);
    margin-bottom: 38px
}

.section-heading>* {
    max-width: 760px
}

.section-heading h2,
.hero__title,
.hero__subtitle,
.hero-card__quote,
.urgency-band h2,
.urgency-band__quote,
.footer__name {
    font-family: "Fraunces", "Cormorant Garamond", Georgia, serif;
    font-optical-sizing: auto
}

.section-heading h2,
.urgency-band h2 {
    margin: 0 0 16px;
    font-size: clamp(2.55rem, 5vw, 4.85rem);
    font-weight: 600;
    line-height: .97;
    letter-spacing: -.045em
}

.section-heading p,
.hero__lead,
.about__content p,
.timeline-step__content p,
.timeline-step__content li,
.pain-card p,
.area-card p,
.differential-card p,
.trust-fact span,
.review-card p,
.faq-item p {
    color: var(--muted);
    line-height: 1.78;
    font-size: 1rem
}

.section--sand {
    background: linear-gradient(180deg, rgba(242, 228, 211, .88), rgba(255, 250, 243, .94))
}

.section--cream {
    background: linear-gradient(180deg, rgba(255, 250, 243, .96), rgba(252, 247, 240, .96))
}

.section--mist {
    background: linear-gradient(180deg, rgba(232, 239, 242, .86), rgba(248, 250, 249, .9))
}

.section--faq {
    background: linear-gradient(180deg, rgba(255, 250, 243, .98), rgba(242, 228, 211, .56))
}

.section--ink {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: radial-gradient(circle at top right, rgba(201, 106, 54, .18), transparent 28%), radial-gradient(circle at bottom left, rgba(126, 156, 171, .18), transparent 28%), linear-gradient(180deg, #0a0a0a 0%, #000000 100%)
}

.bg-video {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%;
    object-fit: cover;
    z-index: -3;
    opacity: 0.1;
    mix-blend-mode: screen;
    pointer-events: none;
    will-change: transform;
    transform: translate3d(0, var(--parallax-shift, 0), 0);
}

.section--ink .section-kicker {
    color: var(--orange-soft)
}

.section--ink .section-heading h2,
.section--ink h3,
.section--ink strong {
    color: var(--cream)
}

.section--ink .section-heading p,
.section--ink .timeline-step__content p,
.section--ink .timeline-step__content li,
.section--ink .urgency-band__copy p,
.section--ink .area-card p {
    color: var(--ink-muted)
}

.section--ink .area-card {
    background: rgba(255, 255, 255, .05);
    border-color: rgba(255, 255, 255, .12);
}

.section--hero {
    display: grid;
    grid-template-columns: minmax(24px, 1fr) minmax(0, var(--container)) minmax(24px, 1fr);
    gap: clamp(20px, 3vw, 40px);
    align-items: center;
    min-height: min(460px, 58svh);
    padding: clamp(100px, 9vw, 125px) 0 54px;
    isolation: isolate;
    overflow: hidden;
}

.section--hero::before,
.section--hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2
}

.section--hero::before {
    background:
        radial-gradient(circle at 18% 18%, rgba(212, 175, 55, .15), transparent 30%),
        radial-gradient(circle at 84% 12%, rgba(126, 156, 171, .1), transparent 30%),
        linear-gradient(120deg, rgba(14, 21, 29, 0.5), rgba(17, 25, 35, 0.25) 46%, rgba(14, 21, 29, 0.55) 100%),
        url("imagens/f-hero.png");
    background-size: cover;
    background-position: center top;
}

.section--hero::after {
    display: none
}

.hero__title,
.hero__subtitle {
    color: var(--cream)
}

.hero__lead,
.hero__points li {
    color: var(--ink-muted)
}

.hero__copy,
.hero__aside,
.trust__content,
.review-card,
.urgency-band__copy,
.urgency-band__actions {
    position: relative;
    z-index: 1;
    width: auto;
    margin: 0
}

.hero__copy {
    grid-column: 2;
    max-width: min(760px, 100%)
}

.hero__aside {
    grid-column: 3;
    display: grid;
    gap: 18px
}

.hero .section-kicker {
    margin-bottom: 14px;
    font-size: 0.72rem
}

.hero__title {
    margin: 0;
    display: grid;
    gap: .05em;
    max-width: 100%;
    font-size: clamp(1.5rem, 3vw, 2.9rem);
    font-weight: 600;
    line-height: .9;
    letter-spacing: -.06em
}

.hero__title-line,
.hero__subtitle-line {
    display: block;
    white-space: nowrap
}

.hero__subtitle {
    margin: 14px 0 0;
    display: grid;
    gap: .08em;
    max-width: 16ch;
    font-size: clamp(0.95rem, 1.3vw, 1.18rem);
    font-weight: 500;
    line-height: 1.08;
    opacity: 0.9
}

.hero__lead {
    margin-top: 14px;
    max-width: 58ch;
    font-size: clamp(0.9rem, 1vw, 1rem)
}

.hero__points {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    display: grid;
    gap: 10px;
    max-width: 34rem
}

.hero__points li {
    position: relative;
    padding-left: 24px;
    color: rgba(255, 250, 243, .76);
    font-size: .9rem;
    font-weight: 600;
    line-height: 1.55
}

.hero__points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .28rem;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, .8), transparent 32%), linear-gradient(135deg, var(--orange), var(--orange-deep));
    box-shadow: 0 0 0 6px rgba(201, 106, 54, .12)
}

.hero__actions,
.urgency-band__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px
}

.button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: .95rem;
    font-weight: 800;
    letter-spacing: -.01em;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), border-color var(--transition), color var(--transition);
}

.button::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(120deg, rgba(255, 255, 255, .16), transparent 40%, rgba(255, 255, 255, .08));
    opacity: 0;
    transition: opacity var(--transition)
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px)
}

.button:hover::before,
.button:focus-visible::before {
    opacity: 1
}

.button--whatsapp {
    background: linear-gradient(135deg, #202a36, #16202a);
    color: var(--cream);
    box-shadow: 0 18px 34px rgba(17, 17, 17, .16), 0 10px 28px rgba(201, 106, 54, .2)
}

.button--whatsapp:hover,
.button--whatsapp:focus-visible {
    box-shadow: 0 22px 42px rgba(17, 17, 17, .18), 0 16px 36px rgba(201, 106, 54, .28)
}

.button--ghost,
.button--outline,
.button--outline-light {
    border-color: rgba(17, 17, 17, .12);
    background: rgba(255, 255, 255, .52);
    color: var(--ink);
    box-shadow: 0 12px 28px rgba(17, 17, 17, .08)
}

.button--ghost {
    min-height: 48px;
    padding-inline: 20px
}

.button--outline {
    background: rgba(255, 250, 243, .18)
}

.button--outline-light {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .16);
    color: var(--cream);
    box-shadow: none
}

.topbar__cta {
    white-space: nowrap
}

.hero-card,
.pain-card,
.about-portrait,
.timeline-step__content,
.area-card,
.differential-card,
.trust-fact,
.review-card,
.faq-item {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, .68);
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background-color var(--transition);
}

.hero-card::before,
.pain-card::before,
.timeline-step__content::before,
.area-card::before,
.differential-card::before,
.review-card::before,
.faq-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(201, 106, 54, .09) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 320ms ease;
    pointer-events: none
}

.hero-card:hover,
.pain-card:hover,
.timeline-step__content:hover,
.area-card:hover,
.differential-card:hover,
.trust-fact:hover,
.review-card:hover,
.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-strong)
}

.hero-card:hover::before,
.pain-card:hover::before,
.timeline-step__content:hover::before,
.area-card:hover::before,
.differential-card:hover::before,
.review-card:hover::before,
.faq-item:hover::before {
    opacity: 1
}

.hero-card--portrait {
    padding: 18px;
    backdrop-filter: blur(12px)
}

.hero-card__badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 250, 243, .9);
    border: 1px solid rgba(17, 17, 17, .08);
    color: var(--orange-deep);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase
}

.hero-card__image {
    position: relative;
    aspect-ratio: .87;
    border-radius: calc(var(--radius-lg) - 4px);
    overflow: hidden;
    background: linear-gradient(180deg, rgba(17, 17, 17, .08), rgba(17, 17, 17, .18))
}

.hero-card__image img,
.about-portrait__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 120ms linear
}

.hero-card__image img {
    transform: translateY(var(--parallax-shift, 0px)) scale(1.02);
    object-position: center 18%
}

.hero-card__caption {
    margin-top: 18px;
    color: var(--ink-soft);
    font-size: .96rem;
    font-weight: 700;
    line-height: 1.55
}

.hero-card--quote {
    padding: 24px;
    border-color: rgba(255, 255, 255, .08);
    background: radial-gradient(circle at top right, rgba(201, 106, 54, .24), transparent 34%), linear-gradient(160deg, rgba(26, 37, 49, .98), rgba(18, 26, 34, .98));
    color: var(--cream);
    box-shadow: 0 20px 40px rgba(17, 17, 17, .18), 0 18px 36px rgba(201, 106, 54, .08)
}

.hero-card--quote::before {
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, .1) 50%, transparent 100%)
}

.hero-card__label,
.pain-card__index,
.timeline-step__tag,
.review-card__label,
.footer__eyebrow {
    display: inline-flex;
    color: var(--orange);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase
}

.hero-card__quote {
    margin-top: 14px;
    font-size: clamp(1.6rem, 3vw, 2.45rem);
    font-weight: 500;
    line-height: .98;
    letter-spacing: -.04em
}

.hero-card__facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 20px
}

.hero-card__facts article {
    padding: 14px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, .08);
    background: rgba(255, 255, 255, .06)
}

.hero-card__facts strong {
    display: block;
    margin-bottom: 6px;
    color: var(--cream);
    font-size: 1rem
}

.hero-card__facts span {
    color: rgba(246, 239, 228, .72);
    font-size: .85rem;
    line-height: 1.5
}

.marquee {
    position: relative;
    padding-bottom: 14px
}

.marquee__inner {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    background: linear-gradient(90deg, #17202a, #1a1a1a, #17202a);
    box-shadow: 0 18px 48px rgba(17, 17, 17, .08)
}

.marquee__inner::before,
.marquee__inner::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: min(12vw, 160px);
    z-index: 1;
    pointer-events: none
}

.marquee__inner::before {
    left: 0;
    background: linear-gradient(90deg, #17202a, rgba(23, 32, 42, 0))
}

.marquee__inner::after {
    right: 0;
    background: linear-gradient(-90deg, #17202a, rgba(23, 32, 42, 0))
}

.marquee__track {
    display: flex;
    align-items: center;
    gap: 28px;
    width: max-content;
    padding-left: 28px;
    color: rgba(255, 250, 243, .82);
    font-size: .84rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
    animation: marquee 32s linear infinite
}

.marquee__track span {
    display: inline-flex;
    align-items: center;
    gap: 28px
}

.marquee__track span::after {
    content: "•";
    color: var(--orange-soft)
}

.pain-grid,
.areas-grid,
.differentials-grid,
.trust__facts {
    display: grid;
    gap: 22px
}

.pain-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr))
}

.pain-card,
.area-card,
.differential-card {
    padding: 24px
}

.pain-card h3,
.timeline-step__content h3,
.area-card h3,
.differential-card h3,
.review-card h3,
.faq-item summary {
    margin: 12px 0 0;
    font-size: 1.32rem;
    line-height: 1.34;
    letter-spacing: -.03em
}

.pain-card p,
.area-card p,
.differential-card p {
    margin-top: 12px
}

.about__grid {
    display: grid;
    grid-template-columns: minmax(320px, .82fr) minmax(0, 1.18fr);
    gap: clamp(28px, 4vw, 56px);
    align-items: start
}

.about-portrait {
    min-height: 620px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .34), rgba(255, 255, 255, .24))
}

.about-portrait__photo,
.about-portrait__overlay {
    position: absolute;
    inset: 0
}

.about-portrait__photo {
    transform: translateY(var(--parallax-shift, 0px)) scale(1.04);
    transition: transform 120ms linear
}

.photo--about {
    object-position: center 18%
}

.about-portrait__overlay {
    background: linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(17, 17, 17, .22)), linear-gradient(160deg, rgba(255, 255, 255, .08), rgba(17, 17, 17, .42))
}

.about-portrait__stamp {
    position: absolute;
    left: 22px;
    bottom: 22px;
    padding: 14px 18px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(17, 17, 17, .78);
    backdrop-filter: blur(14px)
}

.about-portrait__stamp span {
    display: block;
    color: rgba(255, 250, 243, .62);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase
}

.about-portrait__stamp strong {
    display: block;
    margin-top: 4px;
    color: var(--cream);
    font-family: "Fraunces", "Cormorant Garamond", Georgia, serif;
    font-size: 1.3rem;
    font-weight: 600
}

.about__content {
    display: grid;
    gap: 18px
}

.about__content strong {
    color: var(--ink)
}

.about__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px
}

.about__chips span {
    padding: 12px 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, .7);
    color: var(--ink-soft);
    font-size: .9rem;
    font-weight: 700;
    box-shadow: 0 12px 24px rgba(17, 17, 17, .05)
}

.timeline {
    position: relative;
    display: grid;
    gap: 22px
}

.timeline::before {
    content: "";
    position: absolute;
    left: 24px;
    top: 24px;
    bottom: 24px;
    width: 2px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .12), rgba(239, 179, 142, .9), rgba(126, 156, 171, .6), rgba(255, 255, 255, .12))
}

.timeline-step {
    position: relative;
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 18px;
    align-items: start
}

.timeline-step__index {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-top: 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 250, 243, .08);
    color: var(--cream);
    font-size: .9rem;
    font-weight: 800;
    box-shadow: 0 0 0 10px rgba(17, 25, 35, .48);
    transition: transform var(--transition), background-color var(--transition), border-color var(--transition)
}

.timeline-step__content {
    padding: 28px;
    border-color: rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .05);
    box-shadow: 0 18px 44px rgba(0, 0, 0, .14)
}

.timeline-step__tag {
    color: var(--orange-soft)
}

.timeline-step__content ul {
    padding-left: 18px;
    margin-top: 16px;
    display: grid;
    gap: 10px
}

.timeline-step__content p {
    margin-top: 16px
}

.timeline-step.is-active .timeline-step__index {
    transform: scale(1.05);
    background: linear-gradient(135deg, var(--orange), var(--orange-deep));
    border-color: rgba(255, 255, 255, .28)
}

.timeline-step.is-active .timeline-step__content {
    border-color: rgba(239, 179, 142, .24);
    background: rgba(255, 255, 255, .08)
}

.areas-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr))
}

.area-card {
    min-height: 188px;
    background: rgba(255, 255, 255, .72)
}

.differentials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr))
}

.trust {
    display: grid;
    grid-template-columns: minmax(24px, 1fr) minmax(0, calc(var(--container) * 0.6)) minmax(280px, calc(var(--container) * 0.4 - 32px)) minmax(24px, 1fr);
    gap: 28px 32px;
    align-items: start
}

.trust__content {
    grid-column: 2
}

.trust__facts {
    grid-column: 2;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 26px
}

.trust-fact {
    padding: 24px
}

.trust-fact strong {
    display: block;
    margin-bottom: 8px;
    color: var(--ink);
    font-family: "Fraunces", "Cormorant Garamond", Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    letter-spacing: -.04em
}

h2,
h3 {
    margin: 0;
    font-family: "Fraunces", serif;
    font-weight: 600
}

h2 {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    line-height: 1.05;
    letter-spacing: -.03em
}

h3 {
    font-size: var(--text-lg);
    line-height: 1.2;
    color: var(--ink)
}

.text-gold {
    background: linear-gradient(135deg, var(--orange-deep) 0%, var(--orange-soft) 40%, var(--orange) 60%, var(--orange-deep) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--orange);
    background-size: 200% auto;
    animation: goldShine 6s linear infinite;
}

@keyframes goldShine {
    to {
        background-position: 200% center;
    }
}

.review-card,
.review-carousel {
    grid-column: 3;
}

.review-card {
    padding: 32px;
    background: radial-gradient(circle at top right, rgba(201, 106, 54, .12), transparent 28%), linear-gradient(180deg, rgba(255, 255, 255, .88), rgba(255, 248, 241, .82))
}

.review-card p {
    margin-top: 14px
}

.review-card .button--outline-light {
    margin-top: 22px;
    background: rgba(17, 17, 17, .06);
    border-color: rgba(17, 17, 17, .12);
    color: var(--ink)
}

.urgency-band {
    display: grid;
    grid-template-columns: minmax(24px, 1fr) minmax(0, calc(var(--container) * 0.62)) max-content minmax(24px, 1fr);
    gap: 28px;
    align-items: end
}

.urgency-band__copy {
    grid-column: 2;
    max-width: 760px
}

.urgency-band__actions {
    grid-column: 3;
    flex-direction: column;
    align-items: stretch;
    margin-top: 0
}

.urgency-band h2 {
    max-width: 11ch
}

.urgency-band__copy p+p {
    margin-top: 14px
}

.urgency-band__quote {
    margin-top: 24px;
    max-width: 17ch;
    font-size: clamp(1.9rem, 3vw, 2.65rem);
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: -.04em;
    color: var(--cream)
}

.faq-list {
    display: grid;
    gap: 16px
}

.faq-item {
    padding: 22px 24px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, .65);
    transition: background var(--transition);
}

.faq-item[open] {
    background: var(--ink);
}

.faq-item[open] summary,
.faq-item[open] summary::after {
    color: var(--cream);
}

.faq-item[open] p {
    color: rgba(255, 255, 255, 0.85);
    /* whiteish with opacity in dark mode */
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    color: var(--ink);
    font-weight: 800
}

.faq-item summary::-webkit-details-marker {
    display: none
}

.faq-item summary::after {
    content: "+";
    float: right;
    color: var(--orange);
    font-size: 1.4rem;
    line-height: 1;
    transition: transform var(--transition)
}

.faq-item[open] summary::after {
    transform: rotate(45deg)
}

.faq-item p {
    margin-top: 14px
}

.footer {
    position: relative;
    padding: 34px 0 48px;
    background: linear-gradient(180deg, #080808 0%, #000000 100%);
    color: var(--ink-muted)
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: var(--container);
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, .18), rgba(255, 255, 255, 0))
}

.footer__inner {
    width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px
}

.footer__brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    flex: 1 1 auto;
    padding: 26px 28px;
    border-radius: 30px;
    border: 1px solid var(--ink-line);
    background: radial-gradient(circle at left center, rgba(201, 106, 54, .16), transparent 34%), linear-gradient(135deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
    box-shadow: 0 20px 52px rgba(0, 0, 0, .18)
}

.footer__details {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 16px
}

.footer__identity {
    min-width: 0
}

.footer__copy {
    min-width: 0
}

.footer__eyebrow {
    margin-bottom: 8px;
    color: var(--orange-soft)
}

.footer__name,
.footer__role,
.footer__signature {
    margin: 0
}

.footer__role {
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .05);
    color: var(--cream);
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    white-space: nowrap
}

.footer__signature {
    max-width: none;
    white-space: nowrap
}

.footer__social {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    transition: all var(--transition);
    margin-left: 8px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .05);
}

.footer__social:hover,
.footer__social:focus-visible {
    color: var(--orange);
    border-color: rgba(201, 106, 54, .3);
    background: rgba(201, 106, 54, .05);
    transform: translateY(-2px);
}

.footer__cta {
    align-self: stretch;
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .12);
    color: var(--cream);
    box-shadow: none
}

.split-words .word {
    display: inline-block;
    opacity: 0;
    filter: blur(12px);
    transform: translateY(24px)
}

.split-words.is-visible .word,
.is-visible .split-words .word,
.is-visible.split-words .word {
    animation: word-in .92s cubic-bezier(.2, 1, .2, 1) forwards;
    animation-delay: calc(var(--word-index) * 70ms + var(--split-offset, 0ms))
}

.reveal {
    opacity: 0;
    filter: blur(12px);
    transform: translateY(34px) scale(.985);
    transition: opacity .86s cubic-bezier(.2, 1, .2, 1), transform .86s cubic-bezier(.2, 1, .2, 1), filter .86s cubic-bezier(.2, 1, .2, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform, filter
}

.hero .reveal {
    transition-duration: .98s
}

.reveal.is-visible {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1)
}

@keyframes word-in {
    0% {
        opacity: 0;
        filter: blur(12px);
        transform: translateY(24px)
    }

    100% {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0)
    }
}

@keyframes marquee {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

@media (prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important
    }

    .reveal,
    .split-words .word {
        opacity: 1 !important;
        filter: none !important;
        transform: none !important
    }
}

@media (max-width:1080px) {

    .section--hero,
    .trust,
    .urgency-band {
        grid-template-columns: minmax(20px, 1fr) minmax(0, var(--container)) minmax(20px, 1fr);
        gap: 24px;
        min-height: auto
    }

    .hero__copy,
    .hero__aside,
    .trust__content,
    .trust__facts,
    .review-card,
    .review-carousel,
    .urgency-band__copy,
    .urgency-band__actions {
        grid-column: 2
    }

    .hero__aside {
        max-width: 580px
    }

    .pain-grid,
    .areas-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .footer__inner {
        flex-direction: column;
        align-items: stretch
    }

    .footer__cta {
        width: 100%
    }
}

@media (max-width:900px) {
    body.nav-open {
        overflow: hidden
    }

    .topbar {
        padding: 14px 18px 14px 22px
    }

    .topbar__toggle {
        display: inline-flex
    }

    .topbar__panel {
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        right: 0;
        display: grid;
        gap: 16px;
        padding: 18px;
        border: 1px solid rgba(17, 17, 17, .08);
        border-radius: 24px;
        background: rgba(255, 250, 243, .94);
        box-shadow: var(--shadow-soft);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-6px);
        transition: opacity var(--transition), transform var(--transition)
    }

    .topbar.is-open .topbar__panel {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0)
    }

    .topbar__nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px
    }

    .topbar__cta,
    .button,
    .button--ghost,
    .button--outline,
    .button--outline-light {
        width: 100%
    }

    .differentials-grid,
    .trust__facts {
        grid-template-columns: 1fr
    }

    .about__grid,
    .footer__brand,
    .footer__details {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: flex-start
    }

    .urgency-band__actions {
        flex-direction: row;
        flex-wrap: wrap
    }
}

@media (max-width:720px) {
    :root {
        --container: min(1180px, calc(100vw - 48px))
    }

    .topbar {
        width: calc(100vw - 32px);
        top: 14px
    }

    .section {
        padding: 82px 0
    }

    .section--hero {
        padding-top: 100px;
        padding-bottom: 40px;
        background-color: #0e151d;
    }

    .section--hero::before {
        width: calc(100% + 90px);
        background-position: 
            calc(50% - 45px) top,
            calc(50% - 45px) top,
            calc(50% - 45px) top,
            calc(60% - 95px) top;
    }

    .hero__title {
        font-size: clamp(1.6rem, 7vw, 2.4rem)
    }

    .hero__subtitle {
        max-width: 14ch;
        font-size: clamp(0.95rem, 4vw, 1.2rem)
    }

    .hero__actions,
    .urgency-band__actions {
        flex-direction: column
    }

    .hero-card__facts,
    .pain-grid,
    .areas-grid {
        grid-template-columns: 1fr
    }

    .about-portrait {
        min-height: 520px
    }

    .timeline::before {
        left: 20px
    }

    .timeline-step {
        grid-template-columns: 56px minmax(0, 1fr)
    }

    .timeline-step__content,
    .review-card,
    .faq-item,
    .pain-card,
    .area-card,
    .differential-card {
        padding: 22px
    }

    .urgency-band h2,
    .section-heading h2 {
        font-size: clamp(2.2rem, 10vw, 3.4rem)
    }

    .urgency-band__quote {
        font-size: clamp(1.6rem, 8vw, 2.2rem)
    }

    .footer__brand {
        padding: 22px
    }
}

@media (max-width:540px) {
    .brand__copy {
        gap: 0
    }

    .brand__name {
        font-size: 1.16rem
    }

    .brand__role,
    .footer__role,
    .footer__signature {
        font-size: .8rem
    }

    .hero-card--quote,
    .hero-card--portrait {
        padding: 16px
    }

    .hero-card__badge {
        top: 16px;
        left: 16px
    }

    .about-portrait {
        min-height: 460px
    }
}

.floating-wa {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, #1bd741, #128c7e);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 28px rgba(18, 140, 126, .35);
    z-index: 999;
    transition: transform var(--transition), box-shadow var(--transition);
}

.floating-wa:hover,
.floating-wa:focus-visible {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 18px 40px rgba(18, 140, 126, .45);
}

@media (max-width: 720px) {
    .floating-wa {
        bottom: 18px;
        right: 18px;
        width: 58px;
        height: 58px;
    }
}

/* Review Carousel Slider */
.review-carousel {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin: 24px auto;
}

.review-carousel__track {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    align-items: center;
}

.review-carousel__slide {
    grid-area: 1 / 1;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.98);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out, visibility 1s ease-in-out;
    border-radius: var(--radius-lg);
    box-shadow: 0 16px 32px rgba(0,0,0,0.08);
    display: block;
}

.review-carousel__slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 2;
}

.review-carousel__slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: inherit;
}