/* ==========================================================================
   Veralize · Landing Page de captação (pré-lançamento / acesso antecipado)
   Design editorial warm/earthy — herda variáveis globais da plataforma.
   ========================================================================== */

:root {
    scroll-behavior: smooth;

    /* Tipografia dedicada da LP */
    --lp-display: 'Fraunces', 'Figtree', serif;
    --lp-sans: 'Figtree', system-ui, sans-serif;

    /* Tokens de superfície e texto (complementam as variáveis globais) */
    --lp-ink: #2a2622;
    --lp-ink-soft: #554e47;
    --lp-muted: #7a6f62;
    --lp-line: rgba(139, 125, 107, 0.22);
    --lp-line-strong: rgba(74, 68, 63, 0.18);
    --lp-surface: rgba(255, 253, 250, 0.78);
    --lp-surface-strong: #ffffff;
    --lp-cream: #f5ede1;
    --lp-clay: #c8b18c;
    --lp-clay-soft: rgba(200, 177, 140, 0.25);
    --lp-deep: #6f6253;
    --lp-espresso: #2f2a25;
    --lp-accent: #d46a2f;

    /* Motion */
    --lp-ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* --------------------------------------------------------------------------
   Base & background atmosphere
   -------------------------------------------------------------------------- */

html {
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
    overflow-x: clip;
}

body {
    font-family: var(--lp-sans);
    color: var(--lp-ink);
    overflow-x: hidden;
    overflow-x: clip;
    background:
        radial-gradient(ellipse 60% 40% at 8% 6%, rgba(200, 177, 140, 0.38), transparent 70%),
        radial-gradient(ellipse 50% 30% at 92% 12%, rgba(139, 125, 107, 0.22), transparent 70%),
        radial-gradient(ellipse 40% 30% at 50% 100%, rgba(200, 177, 140, 0.28), transparent 70%),
        linear-gradient(180deg, #faf7f2 0%, #fffaf1 40%, #f2e8d6 100%);
    min-height: 100vh;
}

main {
    overflow-x: hidden;
    overflow-x: clip;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image:
        linear-gradient(rgba(52, 47, 42, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(52, 47, 42, 0.08) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, #000 0%, transparent 65%);
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, transparent 65%);
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.35;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.18 0 0 0 0 0.15 0 0 0 0 0.12 0 0 0 0.18 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    mix-blend-mode: multiply;
}

main,
.nav,
.footer {
    position: relative;
    z-index: 1;
}

/* --------------------------------------------------------------------------
   Accessibility helpers
   -------------------------------------------------------------------------- */

.skip-link {
    position: absolute;
    top: -60px;
    left: 16px;
    z-index: 50;
    padding: 10px 16px;
    border-radius: 12px;
    background: var(--lp-espresso);
    color: #fff;
    font-weight: 700;
    transition: top 180ms var(--lp-ease);
}

.skip-link:focus {
    top: 16px;
}

:focus-visible {
    outline: 2px solid var(--lp-espresso);
    outline-offset: 3px;
    border-radius: 6px;
}

/* --------------------------------------------------------------------------
   Typography primitives
   -------------------------------------------------------------------------- */

.section__title,
.hero__title,
.lead-card__title {
    font-family: var(--lp-display);
    font-weight: 400;
    letter-spacing: -0.03em;
    color: var(--lp-ink);
    line-height: 0.98;
}

.hero__title em,
.lead-card__title em,
.section__title em {
    font-style: italic;
    font-weight: 400;
    color: var(--lp-deep);
    font-variation-settings:
        'SOFT' 100,
        'opsz' 144;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 14px 7px 10px;
    border: 1px solid var(--lp-line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.55);
    color: var(--lp-deep);
    font-family: var(--lp-sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.eyebrow--dark {
    background: rgba(47, 42, 37, 0.06);
}

.eyebrow__dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--lp-accent);
    box-shadow: 0 0 0 3px rgba(212, 106, 47, 0.18);
    animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
    0%,
    100% {
        box-shadow: 0 0 0 3px rgba(212, 106, 47, 0.18);
    }
    50% {
        box-shadow: 0 0 0 7px rgba(212, 106, 47, 0.04);
    }
}

/* --------------------------------------------------------------------------
   Layout shell
   -------------------------------------------------------------------------- */

.nav,
.hero,
.strip,
.pillars,
.pricing,
.flow,
.founders,
.final-cta,
.footer {
    width: min(1200px, calc(100% - 40px));
    margin-inline: auto;
}

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */

.nav {
    position: sticky;
    top: 16px;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 10px 10px 10px 18px;
    border: 1px solid var(--lp-line);
    border-radius: 16px;
    background: rgba(250, 247, 242, 0.78);
    box-shadow: 0 20px 48px -20px rgba(52, 47, 42, 0.22);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.nav__brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--lp-ink);
    font-family: var(--lp-display);
    font-weight: 500;
    font-size: 18px;
    letter-spacing: -0.02em;
}

.nav__brand img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: contain;
}

.nav__links {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    margin-left: auto;
}

.nav__links a {
    padding: 9px 14px;
    border-radius: 999px;
    color: var(--lp-muted);
    font-size: 14px;
    font-weight: 600;
    transition:
        color 180ms var(--lp-ease),
        background 180ms var(--lp-ease);
}

.nav__links a:hover,
.nav__links a:focus-visible {
    color: var(--lp-ink);
    background: rgba(139, 125, 107, 0.1);
}

.nav__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--lp-espresso);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    transition:
        transform 180ms var(--lp-ease),
        box-shadow 180ms var(--lp-ease);
}

.nav__cta:hover,
.nav__cta:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px -10px rgba(47, 42, 37, 0.45);
    color: #fff;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
    position: relative;
    padding: 72px 0 96px;
}

.hero__bg {
    position: absolute;
    inset: -40px 0 0 0;
    pointer-events: none;
    z-index: 0;
}

.hero__ring {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed var(--color-primary);
    opacity: 0.4;
}

.hero__ring--1 {
    top: -60px;
    right: 40%;
    width: 260px;
    height: 260px;
    border-color: var(--lp-clay);
    opacity: 0.5;
}

.hero__ring--2 {
    bottom: 40px;
    left: -80px;
    width: 380px;
    height: 380px;
    border-style: solid;
    border-color: rgba(200, 177, 140, 0.35);
}

.hero__ring--3 {
    top: 40%;
    right: -120px;
    width: 320px;
    height: 320px;
    border-style: solid;
    border-color: rgba(139, 125, 107, 0.18);
}

.hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.62fr);
    gap: 56px;
    align-items: start;
}

.hero__copy {
    position: relative;
}

.hero__title {
    margin-top: 20px;
    font-size: clamp(2.75rem, 6.2vw, 5.4rem);
    max-width: 18ch;
}

.hero__lede {
    margin-top: 26px;
    max-width: 54ch;
    color: var(--lp-muted);
    font-size: clamp(1.02rem, 1.3vw, 1.16rem);
    line-height: 1.6;
}

.hero__lede strong {
    color: var(--lp-ink);
    font-weight: 700;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 56px;
    padding: 2px;
    border: 1px solid var(--lp-line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.4);
    overflow: hidden;
}

.hero__stats > div {
    padding: 22px 20px;
    background: rgba(255, 253, 250, 0.72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero__stats > div:first-child {
    border-radius: 20px 2px 2px 20px;
}
.hero__stats > div:last-child {
    border-radius: 2px 20px 20px 2px;
}

.hero__stats dt {
    font-family: var(--lp-display);
    font-weight: 400;
    font-size: clamp(2rem, 3vw, 2.6rem);
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--lp-ink);
}

.hero__stats dd {
    margin-top: 8px;
    color: var(--lp-muted);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
}

/* --------------------------------------------------------------------------
   Lead card (hero right column)
   -------------------------------------------------------------------------- */

.lead-card {
    position: relative;
    /* Permite o card respeitar a coluna do grid sem estourar o padding com filhos width:100%. */
    min-width: 0;
    padding: 32px;
    border: 1px solid var(--lp-line-strong);
    border-radius: 28px;
    background: var(--lp-surface-strong);
    box-shadow:
        0 40px 80px -30px rgba(47, 42, 37, 0.28),
        0 2px 0 0 rgba(255, 255, 255, 0.9) inset;
    overflow: hidden;
}

.lead-card::before {
    content: '';
    position: absolute;
    top: -90px;
    right: -90px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--lp-clay-soft), transparent 70%);
    z-index: 0;
}

.lead-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), transparent 15%);
    z-index: 0;
}

.lead-card > * {
    position: relative;
    z-index: 1;
}

.lead-card__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(22, 163, 103, 0.1);
    color: var(--success);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.lead-card__pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 3px rgba(22, 163, 103, 0.2);
    animation: pulse-green 2s ease-in-out infinite;
}

@keyframes pulse-green {
    0%,
    100% {
        box-shadow: 0 0 0 3px rgba(22, 163, 103, 0.2);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(22, 163, 103, 0.02);
    }
}

.lead-card__title {
    margin-top: 18px;
    font-size: clamp(1.75rem, 2.6vw, 2.25rem);
    line-height: 1.04;
}

.lead-card__subtitle {
    margin-top: 12px;
    color: var(--lp-muted);
    font-size: 15px;
    line-height: 1.55;
}

/* --------------------------------------------------------------------------
   Lead form
   -------------------------------------------------------------------------- */

.lead-form {
    display: grid;
    gap: 12px;
    margin-top: 24px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.lead-form.is-locked {
    gap: 0;
}

.lead-form__lock-notice {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 12px;
    padding: 16px 18px;
    margin-top: 2px;
    border: 1px solid rgba(36, 112, 76, 0.25);
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(30, 136, 91, 0.12), rgba(30, 136, 91, 0.04));
    box-shadow: 0 14px 28px -22px rgba(30, 136, 91, 0.75);
}

.lead-form__lock-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: var(--success);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
}

.lead-form__lock-notice p {
    margin: 0;
    color: #1f5c3f;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.55;
}

.lead-form.is-locked .lead-form__field,
.lead-form.is-locked .btn--block,
.lead-form.is-locked .lead-form__status,
.lead-form.is-locked .lead-form__legal {
    display: none;
}

.lead-form__field {
    position: relative;
    display: grid;
    gap: 6px;
    min-width: 0;
}

.lead-form__field label {
    color: var(--lp-ink);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.lead-form__field label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.lead-form__optional {
    display: inline-flex;
    align-items: center;
    height: 18px;
    padding: 0 8px;
    border-radius: 999px;
    background: rgba(139, 125, 107, 0.14);
    color: var(--lp-muted);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.lead-form__field input,
.lead-form__field textarea {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 0 16px;
    border: 1px solid var(--lp-line);
    border-radius: 14px;
    background: #ffffff;
    color: var(--lp-ink);
    font-size: 15px;
    font-family: var(--lp-sans);
    transition:
        border-color 180ms var(--lp-ease),
        background 180ms var(--lp-ease),
        box-shadow 180ms var(--lp-ease);
}

.lead-form__field input {
    height: 52px;
}

.lead-form__field textarea {
    min-height: 112px;
    padding: 14px 16px;
    line-height: 1.5;
    resize: vertical;
}

.lead-form__field input::placeholder,
.lead-form__field textarea::placeholder {
    color: var(--lp-muted);
    opacity: 0.6;
}

.lead-form__field input:hover,
.lead-form__field textarea:hover {
    border-color: rgba(139, 125, 107, 0.45);
}

.lead-form__field input:focus,
.lead-form__field textarea:focus {
    border-color: var(--lp-espresso);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(47, 42, 37, 0.08);
}

.lead-form__field.has-error input,
.lead-form__field.has-error textarea {
    border-color: var(--warning);
    background: rgba(238, 99, 34, 0.04);
}

.lead-form__hint {
    color: var(--lp-muted);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.45;
}

.lead-form__honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.lead-form__status {
    min-height: 22px;
    margin-top: 2px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
    color: var(--lp-muted);
}

.lead-form__status.is-success {
    color: var(--success);
}

.lead-form__status.is-error {
    color: var(--warning);
}

.lead-form__status.is-loading::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-right: 8px;
    border-radius: 50%;
    border: 2px solid rgba(139, 125, 107, 0.3);
    border-top-color: var(--lp-deep);
    vertical-align: -2px;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.lead-form__legal {
    margin-top: 4px;
    color: var(--lp-muted);
    font-size: 12px;
    line-height: 1.5;
}

.lead-form__legal strong {
    color: var(--lp-ink);
    font-weight: 700;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 24px;
    height: 54px;
    border-radius: 999px;
    font-family: var(--lp-sans);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.005em;
    transition:
        transform 180ms var(--lp-ease),
        box-shadow 180ms var(--lp-ease),
        background 180ms var(--lp-ease),
        opacity 180ms var(--lp-ease);
    cursor: pointer;
    white-space: nowrap;
    border: 1px solid transparent;
}

.btn--primary {
    background: var(--lp-espresso);
    color: #fff;
    > * {
        color: #fff;
    }
}

.btn--primary:hover,
.btn--primary:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px -14px rgba(47, 42, 37, 0.55);
    color: #fff;
}

.btn--primary svg {
    transition: transform 200ms var(--lp-ease);
}

.btn--primary:hover svg,
.btn--primary:focus-visible svg {
    transform: translateX(3px);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.6);
    color: var(--lp-ink);
    border: 1px solid var(--lp-line);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -12px rgba(47, 42, 37, 0.25);
    color: var(--lp-ink);
}

.btn--block {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin-top: 8px;
}

.btn--xl {
    height: 62px;
    font-size: 16px;
    padding: 0 32px;
}

.btn[disabled],
.btn.is-loading {
    opacity: 0.65;
    cursor: not-allowed;
    pointer-events: none;
}

.btn.is-loading span::after {
    content: '…';
}

/* --------------------------------------------------------------------------
   Manifesto strip (scrolling marquee)
   -------------------------------------------------------------------------- */

.strip {
    position: relative;
    margin-top: 32px;
    margin-bottom: 72px;
    padding: 18px 0;
    border-top: 1px dashed var(--color-primary);
    border-bottom: 1px dashed var(--color-primary);
    overflow: hidden;
    width: 100%;
    max-width: none;
    margin-inline: 0;
}

.strip__text {
    display: inline-flex;
    align-items: center;
    gap: 40px;
    white-space: nowrap;
    font-family: var(--lp-display);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.25rem, 2.2vw, 1.9rem);
    color: var(--lp-deep);
    animation: marquee 32s linear infinite;
    padding-left: 100%;
}

.strip__sep {
    color: var(--lp-clay);
    font-size: 0.6em;
    font-family: var(--lp-sans);
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

/* --------------------------------------------------------------------------
   Section head
   -------------------------------------------------------------------------- */

.section__head {
    display: grid;
    gap: 14px;
    max-width: 820px;
    margin-bottom: 48px;
}

.section__title {
    font-size: clamp(2.1rem, 4.4vw, 3.8rem);
}

.section__title--on-dark {
    color: #f5ede1;
}

.section__title--on-dark em {
    color: var(--lp-clay);
}

.section__lede {
    max-width: 620px;
    color: var(--lp-muted);
    font-size: clamp(1rem, 1.3vw, 1.14rem);
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Pillars
   -------------------------------------------------------------------------- */

.pillars {
    padding: 80px 0;
}

.pillars__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pillar {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 32px 28px;
    border: 1px solid var(--lp-line-strong);
    border-radius: 26px;
    background: rgba(255, 253, 250, 0.75);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 20px 50px -30px rgba(47, 42, 37, 0.25);
    transition:
        transform 300ms var(--lp-ease),
        box-shadow 300ms var(--lp-ease);
    overflow: hidden;
}

.pillar:hover {
    transform: translateY(-4px);
    box-shadow: 0 40px 70px -30px rgba(47, 42, 37, 0.35);
}

.pillar::after {
    content: '';
    position: absolute;
    right: -60px;
    bottom: -60px;
    width: 180px;
    height: 180px;
    border-radius: 46px;
    background: rgba(200, 177, 140, 0.16);
    transform: rotate(16deg);
    z-index: 0;
    transition: transform 500ms var(--lp-ease);
}

.pillar:hover::after {
    transform: rotate(8deg) translate(-8px, -8px);
}

.pillar > * {
    position: relative;
    z-index: 1;
}

.pillar__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--lp-sans);
}

.pillar__num {
    font-family: var(--lp-display);
    font-style: italic;
    font-weight: 400;
    font-size: 24px;
    color: var(--lp-deep);
    letter-spacing: -0.04em;
}

.pillar__tag {
    padding: 5px 11px;
    border: 1px solid var(--lp-line);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--lp-muted);
}

.pillar__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: var(--lp-cream);
    color: var(--lp-deep);
    margin-top: 4px;
}

.pillar__icon svg {
    width: 28px;
    height: 28px;
}

.pillar__title {
    font-family: var(--lp-display);
    font-weight: 400;
    font-size: clamp(1.5rem, 2vw, 1.85rem);
    letter-spacing: -0.025em;
    line-height: 1.1;
    color: var(--lp-ink);
    margin-top: 4px;
}

.pillar__body {
    color: var(--lp-muted);
    font-size: 15px;
    line-height: 1.6;
}

.pillar__body strong {
    color: var(--lp-ink);
    font-weight: 700;
}

.pillar__list {
    display: grid;
    gap: 10px;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px dashed var(--lp-line-strong);
}

.pillar__list li {
    position: relative;
    padding-left: 24px;
    color: var(--lp-ink-soft);
    font-size: 14px;
    line-height: 1.45;
}

.pillar__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 14px;
    height: 10px;
    background: var(--lp-deep);
    clip-path: polygon(14% 50%, 42% 78%, 100% 12%, 100% 28%, 42% 94%, 0 58%);
}

.pillar--feature {
    background: linear-gradient(180deg, #fffdf9 0%, #f6ecd8 100%);
    border-color: rgba(200, 177, 140, 0.5);
}

.pillar--feature .pillar__icon {
    background: var(--lp-espresso);
    color: #f5ede1;
}

.pillar__badge {
    position: absolute;
    top: 68px;
    right: 30px;
    padding: 5px 10px;
    border-radius: 999px;
    background: var(--lp-accent);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 6px 14px -4px rgba(212, 106, 47, 0.5);
}

/* --------------------------------------------------------------------------
   Pricing (10% taxa fixa)
   -------------------------------------------------------------------------- */

.pricing {
    padding: 40px 0 80px;
}

.pricing__card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: clamp(32px, 4vw, 64px);
    padding: clamp(40px, 5vw, 72px);
    border: 1px solid rgba(200, 177, 140, 0.55);
    border-radius: 40px;
    background:
        radial-gradient(ellipse 60% 40% at 18% 30%, rgba(200, 177, 140, 0.32), transparent 70%),
        linear-gradient(155deg, #fffdf9 0%, #f6ecd8 60%, #ecdec0 100%);
    box-shadow:
        0 40px 90px -40px rgba(47, 42, 37, 0.32),
        0 2px 0 0 rgba(255, 255, 255, 0.7) inset;
    overflow: hidden;
}

.pricing__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.pricing__ring {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.pricing__ring--1 {
    top: -120px;
    left: -100px;
    width: 360px;
    height: 360px;
    border: 1px dashed var(--color-primary);
    opacity: 0.4;
}

.pricing__ring--2 {
    bottom: -140px;
    right: -80px;
    width: 380px;
    height: 380px;
    border: 1px solid rgba(200, 177, 140, 0.4);
}

.pricing__number {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 8px 4px;
}

.pricing__percent {
    font-family: var(--lp-display);
    font-weight: 300;
    font-style: italic;
    font-size: clamp(9rem, 18vw, 14rem);
    line-height: 0.82;
    letter-spacing: -0.07em;
    color: var(--lp-ink);
    text-align: center;
    font-variation-settings:
        'SOFT' 100,
        'opsz' 144;
    background: linear-gradient(180deg, var(--lp-ink) 0%, var(--lp-deep) 75%, var(--lp-clay) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.pricing__percent em {
    font-style: italic;
    font-weight: 300;
    color: var(--lp-accent);
    -webkit-text-fill-color: var(--lp-accent);
    margin-left: -0.02em;
}

.pricing__ribbon {
    display: inline-flex;
    align-items: center;
    padding: 9px 18px;
    border-radius: 999px;
    background: var(--lp-espresso);
    color: #f5ede1;
    font-family: var(--lp-sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    box-shadow: 0 14px 30px -10px rgba(47, 42, 37, 0.45);
}

.pricing__copy {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 14px;
}

.pricing__copy .section__title {
    font-size: clamp(1.85rem, 3.6vw, 3rem);
}

.pricing__copy .section__title em {
    color: var(--lp-accent);
}

.pricing__list {
    display: grid;
    gap: 10px;
    margin-top: 12px;
}

.pricing__list li {
    display: flex;
    gap: 14px;
    padding: 16px 18px;
    border: 1px solid rgba(200, 177, 140, 0.45);
    border-radius: 16px;
    background: rgba(255, 253, 250, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition:
        transform 220ms var(--lp-ease),
        border-color 220ms var(--lp-ease);
}

.pricing__list li:hover {
    transform: translateX(4px);
    border-color: rgba(111, 98, 83, 0.5);
}

.pricing__check {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--lp-espresso);
    color: #f5ede1;
    font-size: 13px;
    font-weight: 800;
}

.pricing__list div {
    color: var(--lp-ink-soft);
    font-size: 14.5px;
    line-height: 1.5;
}

.pricing__list strong {
    display: block;
    color: var(--lp-ink);
    font-family: var(--lp-display);
    font-weight: 400;
    font-style: italic;
    font-size: 17px;
    letter-spacing: -0.01em;
    margin-bottom: 2px;
}

/* --------------------------------------------------------------------------
   Flow (how it works)
   -------------------------------------------------------------------------- */

.flow {
    padding: 40px 0 80px;
}

.flow__panel {
    padding: clamp(32px, 5vw, 64px);
    border: 1px solid var(--lp-line-strong);
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(255, 253, 250, 0.92), rgba(245, 237, 225, 0.6));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 40px 80px -50px rgba(47, 42, 37, 0.3);
}

.flow__head {
    display: grid;
    gap: 14px;
    max-width: 680px;
    margin-bottom: 48px;
}

.flow__tracks {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 36px;
    align-items: start;
}

.flow__divider {
    width: 1px;
    min-height: 100%;
    align-self: stretch;
    background: linear-gradient(180deg, transparent, var(--lp-line-strong) 30%, var(--lp-line-strong) 70%, transparent);
}

.flow__track {
    display: grid;
    gap: 20px;
}

.flow__track-head {
    display: grid;
    gap: 10px;
}

.flow__track-head h3 {
    font-family: var(--lp-display);
    font-weight: 400;
    font-size: clamp(1.4rem, 2vw, 1.75rem);
    color: var(--lp-ink);
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.flow__pill {
    justify-self: start;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--lp-espresso);
    color: #f5ede1;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.flow__pill--alt {
    background: var(--lp-clay);
    color: var(--lp-espresso);
}

.flow__steps {
    display: grid;
    gap: 12px;
    counter-reset: step;
}

.flow__steps li {
    position: relative;
    padding: 18px 20px 18px 58px;
    border: 1px solid var(--lp-line);
    border-radius: 18px;
    background: rgba(255, 253, 250, 0.7);
    transition:
        transform 220ms var(--lp-ease),
        border-color 220ms var(--lp-ease);
}

.flow__steps li:hover {
    transform: translateX(4px);
    border-color: rgba(111, 98, 83, 0.4);
}

.flow__steps li::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--lp-espresso);
    color: #fff;
    font-family: var(--lp-display);
    font-style: italic;
    font-weight: 400;
    font-size: 14px;
}

.flow__steps strong,
.flow__steps span {
    display: block;
}

.flow__steps strong {
    color: var(--lp-ink);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.005em;
}

.flow__steps span {
    margin-top: 4px;
    color: var(--lp-muted);
    font-size: 14px;
    line-height: 1.5;
}

/* --------------------------------------------------------------------------
   Founders section (dark)
   -------------------------------------------------------------------------- */

.founders {
    padding: 40px 0 80px;
}

.founders__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
    gap: 48px;
    padding: clamp(36px, 5vw, 68px);
    border-radius: 36px;
    background:
        radial-gradient(ellipse at top right, rgba(200, 177, 140, 0.2), transparent 55%),
        linear-gradient(160deg, #2f2a25 0%, #1e1a16 100%);
    color: #f5ede1;
    box-shadow: 0 40px 80px -30px rgba(20, 16, 12, 0.5);
    position: relative;
    overflow: hidden;
}

.founders__grid::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -60px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 1px dashed rgba(200, 177, 140, 0.35);
    pointer-events: none;
}

.founders__grid::after {
    content: '';
    position: absolute;
    bottom: -120px;
    right: -60px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    border: 1px solid rgba(200, 177, 140, 0.15);
    pointer-events: none;
}

.founders__copy {
    position: relative;
    z-index: 1;
}

.founders__copy .eyebrow {
    background: rgba(200, 177, 140, 0.14);
    border-color: rgba(200, 177, 140, 0.28);
    color: var(--lp-clay);
    margin-bottom: 18px;
}

.founders__lede {
    margin-top: 24px;
    max-width: 52ch;
    color: rgba(245, 237, 225, 0.72);
    font-size: clamp(1rem, 1.3vw, 1.12rem);
    line-height: 1.65;
}

.founders__list {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 14px;
    align-self: center;
}

.founders__list li {
    display: flex;
    gap: 16px;
    padding: 18px 20px;
    border: 1px solid rgba(200, 177, 140, 0.2);
    border-radius: 18px;
    background: rgba(255, 253, 250, 0.03);
    transition:
        background 200ms var(--lp-ease),
        border-color 200ms var(--lp-ease);
}

.founders__list li:hover {
    background: rgba(200, 177, 140, 0.06);
    border-color: rgba(200, 177, 140, 0.4);
}

.founders__check {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--lp-clay);
    color: var(--lp-espresso);
    font-size: 14px;
    font-weight: 800;
}

.founders__list div {
    color: rgba(245, 237, 225, 0.78);
    font-size: 14.5px;
    line-height: 1.55;
}

.founders__list strong {
    display: block;
    color: #f5ede1;
    font-family: var(--lp-display);
    font-weight: 400;
    font-style: italic;
    font-size: 17px;
    letter-spacing: -0.01em;
    margin-bottom: 2px;
}

/* --------------------------------------------------------------------------
   Final CTA
   -------------------------------------------------------------------------- */

.final-cta {
    padding: 40px 0 96px;
}

.final-cta__card {
    display: grid;
    justify-items: center;
    gap: 20px;
    padding: clamp(44px, 8vw, 96px) 24px;
    border: 1px solid var(--lp-line-strong);
    border-radius: 42px;
    background:
        radial-gradient(ellipse at top, rgba(200, 177, 140, 0.22), transparent 60%),
        linear-gradient(180deg, #fffdf9, #f6ecd8);
    text-align: center;
    box-shadow: 0 40px 80px -40px rgba(47, 42, 37, 0.25);
    position: relative;
    overflow: hidden;
}

.final-cta__card::before,
.final-cta__card::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 1px dashed var(--color-primary);
    opacity: 0.34;
    pointer-events: none;
}

.final-cta__card::before {
    width: 340px;
    height: 340px;
    top: -100px;
    left: -100px;
}

.final-cta__card::after {
    width: 240px;
    height: 240px;
    bottom: -80px;
    right: -60px;
}

.final-cta__card > * {
    position: relative;
    z-index: 1;
}

.final-cta__card .section__title {
    max-width: 20ch;
}

.final-cta__card .section__lede {
    max-width: 52ch;
    margin-inline: auto;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.footer {
    padding: 36px 0 64px;
    border-top: 1px dashed var(--color-primary);
    display: grid;
    gap: 20px;
}

.footer__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer__row--bottom {
    padding-top: 14px;
    border-top: 1px solid var(--lp-line);
    color: var(--lp-muted);
    font-size: 13px;
}

.footer__brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--lp-display);
    font-weight: 500;
    font-size: 18px;
    letter-spacing: -0.02em;
    color: var(--lp-ink);
}

.footer__brand img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
}

.footer__tag {
    color: var(--lp-muted);
    font-size: 14px;
    max-width: 48ch;
    text-align: right;
}

.footer__row--bottom a {
    color: var(--lp-ink);
    font-weight: 700;
    font-size: 13px;
    transition: opacity 180ms var(--lp-ease);
}

.footer__row--bottom a:hover {
    opacity: 0.72;
}

/* --------------------------------------------------------------------------
   Reveal animation (controlled by JS IntersectionObserver)
   -------------------------------------------------------------------------- */

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 720ms var(--lp-ease),
        transform 720ms var(--lp-ease);
    transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1024px) {
    .hero__grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .hero__title {
        max-width: 100%;
    }

    .flow__tracks {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .flow__divider {
        display: none;
    }

    .founders__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .pillars__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pillar--feature {
        grid-column: 1 / -1;
    }

    .pricing__card {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .pricing__number {
        padding: 0;
    }
}

@media (max-width: 720px) {
    .nav {
        flex-wrap: wrap;
        border-radius: 22px;
        padding: 12px 14px;
    }

    .nav__links {
        order: 3;
        width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 2px;
        scrollbar-width: none;
    }

    .nav__links::-webkit-scrollbar {
        display: none;
    }

    .nav__cta {
        order: 2;
        margin-left: auto;
        color: #fff;
        > span {
            color: #fff !important;
        }
    }
    .nav__cta-text {
        color: #fff !important;
    }

    .hero {
        padding: 48px 0 64px;
    }

    .hero__stats {
        grid-template-columns: 1fr;
    }

    .hero__stats > div:first-child,
    .hero__stats > div:last-child {
        border-radius: 20px;
    }

    .hero__actions,
    .hero__actions .btn {
        width: 100%;
    }

    .lead-card {
        padding: 24px;
        border-radius: 24px;
    }

    .pillars {
        padding: 48px 0;
    }

    .pillars__grid {
        grid-template-columns: 1fr;
    }

    .pillar {
        padding: 28px 22px;
    }

    .pricing {
        padding: 24px 0 56px;
    }

    .pricing__card {
        padding: 32px 24px;
        border-radius: 28px;
    }

    .pricing__percent {
        font-size: clamp(7rem, 36vw, 12rem);
    }

    .final-cta__card {
        border-radius: 28px;
    }

    .footer__tag {
        text-align: left;
    }

    .footer__row--bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .strip {
        margin-bottom: 48px;
    }
}

@media (prefers-reduced-motion: reduce) {
    :root {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 1ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .strip__text {
        animation: none;
        padding-left: 24px;
    }
}
