:root {
    --ink: #07120c;
    --ink-2: #0d1f15;
    --ink-3: #173525;
    --green: #58d337;
    --green-strong: #42bd26;
    --green-soft: #e7f8df;
    --teal: #16a6a0;
    --gold: #d7ee45;
    --white: #ffffff;
    --paper: #f7f8f5;
    --soft: #edf1eb;
    --line: rgba(7, 18, 12, .12);
    --muted: #647069;
    --shadow: 0 30px 80px rgba(3, 14, 8, .14);
    --shadow-soft: 0 16px 46px rgba(3, 14, 8, .08);
    --radius-lg: 34px;
    --radius-md: 22px;
    --radius-sm: 14px;
    --shell: min(1180px, calc(100% - 40px));
    --header-height: 88px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

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

.shell {
    width: var(--shell);
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 12px;
    left: 12px;
    padding: 12px 16px;
    color: var(--ink);
    background: var(--white);
    border-radius: 10px;
    transform: translateY(-180%);
    transition: transform .2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: fixed;
    z-index: 1000;
    inset: 0 0 auto;
    height: var(--header-height);
    color: var(--white);
    background: linear-gradient(to bottom, rgba(2, 8, 4, .82), rgba(2, 8, 4, .36), transparent);
    transition: background .3s ease, box-shadow .3s ease, height .3s ease, backdrop-filter .3s ease;
}

.site-header.is-scrolled,
body.legal-page .site-header {
    background: rgba(4, 15, 9, .92);
    box-shadow: 0 1px 0 rgba(255, 255, 255, .08);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.brand {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
}

.brand img {
    width: 196px;
    height: 58px;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 14px;
    font-weight: 650;
}

.main-nav > a:not(.nav-client) {
    position: relative;
    color: rgba(255, 255, 255, .82);
    transition: color .2s ease;
}

.main-nav > a:not(.nav-client)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -9px;
    height: 2px;
    background: var(--green);
    transition: right .25s ease;
}

.main-nav > a:hover,
.main-nav > a:focus-visible {
    color: var(--white);
}

.main-nav > a:hover::after,
.main-nav > a:focus-visible::after {
    right: 0;
}

.nav-client {
    padding: 12px 19px;
    color: var(--ink);
    background: var(--white);
    border-radius: 999px;
    transition: transform .2s ease, background .2s ease;
}

.nav-client:hover {
    background: var(--green);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .08);
    border-radius: 14px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 21px;
    height: 2px;
    margin: 4px auto;
    background: var(--white);
    border-radius: 999px;
    transition: transform .25s ease, opacity .25s ease;
}

.menu-toggle.is-active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.hero {
    position: relative;
    height: min(850px, 96vh);
    min-height: 700px;
    color: var(--white);
    overflow: hidden;
    background: var(--ink);
}

.hero-track,
.hero-slide {
    position: absolute;
    inset: 0;
}

.hero-slide {
    display: grid;
    align-items: center;
    background-image: var(--hero-image);
    background-position: center;
    background-size: cover;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.035);
    transition: opacity .9s ease, visibility .9s ease, transform 6s ease;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 9, 5, .91) 0%, rgba(2, 9, 5, .73) 36%, rgba(2, 9, 5, .12) 72%),
        linear-gradient(0deg, rgba(2, 9, 5, .78) 0%, transparent 38%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: var(--header-height);
}

.hero-content > * {
    max-width: 660px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, .74);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 34px;
    height: 2px;
    background: var(--green);
}

.eyebrow strong {
    color: var(--green);
}

.eyebrow-dark {
    color: #547060;
}

.hero h1,
.hero h2 {
    margin-bottom: 24px;
    font-size: clamp(54px, 6.7vw, 98px);
    line-height: .94;
    letter-spacing: -.055em;
    text-wrap: balance;
}

.hero h1 span,
.hero h2 span {
    color: var(--green);
}

.hero-content p {
    max-width: 570px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, .82);
    font-size: clamp(17px, 1.6vw, 21px);
    line-height: 1.55;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 23px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 780;
    line-height: 1.2;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, color .2s ease, background .2s ease, border-color .2s ease;
}

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

.button-primary {
    color: var(--ink);
    background: var(--green);
    box-shadow: 0 16px 36px rgba(72, 207, 42, .24);
}

.button-primary:hover {
    background: #6ce14d;
    box-shadow: 0 19px 46px rgba(72, 207, 42, .32);
}

.button-ghost {
    color: var(--white);
    border-color: rgba(255, 255, 255, .34);
    background: rgba(255, 255, 255, .07);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.button-ghost:hover {
    border-color: rgba(255, 255, 255, .65);
    background: rgba(255, 255, 255, .14);
}

.button-dark {
    color: var(--white);
    background: var(--ink);
}

.button-dark:hover {
    background: var(--ink-3);
    box-shadow: var(--shadow-soft);
}

.button-light {
    color: var(--ink);
    background: var(--white);
}

.hero-controls {
    position: absolute;
    z-index: 5;
    right: 0;
    bottom: 32px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}

.carousel-arrow {
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    padding: 0;
    color: var(--white);
    background: rgba(5, 16, 9, .35);
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 50%;
    cursor: pointer;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.carousel-arrow:hover {
    background: rgba(5, 16, 9, .7);
    border-color: rgba(255, 255, 255, .7);
    transform: scale(1.04);
}

.carousel-arrow svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.carousel-dots button {
    width: 28px;
    height: 4px;
    padding: 0;
    background: rgba(255, 255, 255, .36);
    border: 0;
    border-radius: 99px;
    cursor: pointer;
    transition: width .25s ease, background .25s ease;
}

.carousel-dots button.is-active {
    width: 52px;
    background: var(--green);
}

.trust-strip {
    color: var(--white);
    background: var(--ink);
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-grid > div {
    display: flex;
    min-height: 118px;
    align-items: center;
    gap: 16px;
    padding: 26px 24px;
    border-right: 1px solid rgba(255, 255, 255, .09);
}

.trust-grid > div:first-child {
    border-left: 1px solid rgba(255, 255, 255, .09);
}

.trust-icon {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    place-items: center;
    color: var(--green);
    background: rgba(88, 211, 55, .1);
    border-radius: 13px;
}

.trust-icon svg,
.feature-icon svg,
.step-icon svg,
.benefit-row > span svg,
.contact-info-card > span svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.trust-grid p {
    margin: 0;
}

.trust-grid strong,
.trust-grid small {
    display: block;
}

.trust-grid strong {
    margin-bottom: 3px;
    font-size: 14px;
}

.trust-grid small {
    color: rgba(255, 255, 255, .55);
    font-size: 12px;
}

.section {
    padding-block: 116px;
}

.section-light {
    background: var(--white);
}

.section-soft {
    background: var(--paper);
}

.section-dark {
    color: var(--white);
    background: var(--ink);
}

.section-heading {
    max-width: 730px;
    margin-bottom: 58px;
}

.center-heading {
    margin-inline: auto;
    text-align: center;
}

.center-heading .eyebrow {
    justify-content: center;
}

.section-heading h2,
.section-copy h2,
.health-copy h2,
.contact-copy h2,
.purpose-content h2,
.legal-hero h1 {
    margin-bottom: 22px;
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1.02;
    letter-spacing: -.045em;
    text-wrap: balance;
}

.section-heading p,
.section-copy > p,
.health-copy > p,
.contact-copy > p,
.purpose-content > p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 18px;
}

.section-dark .section-heading p,
.app-section .section-copy > p,
.purpose-content > p {
    color: rgba(255, 255, 255, .65);
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.feature-card {
    position: relative;
    min-height: 332px;
    padding: 32px 28px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.feature-card::after {
    content: "";
    position: absolute;
    right: -52px;
    bottom: -52px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(88, 211, 55, .2), transparent 66%);
    opacity: 0;
    transition: opacity .25s ease;
}

.feature-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-soft);
    transform: translateY(-8px);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-number {
    position: absolute;
    top: 22px;
    right: 25px;
    color: rgba(7, 18, 12, .22);
    font-size: 12px;
    font-weight: 800;
}

.feature-icon {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    margin-bottom: 70px;
    color: var(--ink);
    background: var(--green);
    border-radius: 16px;
}

.feature-icon svg {
    width: 26px;
    height: 26px;
}

.feature-card h3 {
    margin-bottom: 12px;
    font-size: 21px;
    line-height: 1.18;
}

.feature-card p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}

.app-section {
    color: var(--white);
    background:
        radial-gradient(circle at 75% 20%, rgba(88, 211, 55, .12), transparent 30%),
        linear-gradient(135deg, #07120c, #10291b 70%, #07120c);
    overflow: hidden;
}

.split-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: clamp(55px, 8vw, 110px);
}

.app-visual {
    position: relative;
    max-width: 480px;
}

.image-frame {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.image-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: inherit;
    pointer-events: none;
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-frame-tall {
    aspect-ratio: 2 / 3;
}

.floating-stat {
    position: absolute;
    right: -54px;
    bottom: 45px;
    width: 250px;
    padding: 22px 24px;
    color: var(--ink);
    background: var(--green);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.floating-stat strong,
.floating-stat span {
    display: block;
}

.floating-stat strong {
    margin-bottom: 3px;
    font-size: 21px;
}

.floating-stat span {
    font-size: 13px;
}

.section-copy .eyebrow {
    margin-bottom: 18px;
}

.check-list {
    display: grid;
    gap: 8px;
    margin: 34px 0 36px;
    padding: 0;
    list-style: none;
}

.check-list li {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 15px;
    padding: 19px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .11);
}

.check-list li > span {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    color: var(--ink);
    background: var(--green);
    border-radius: 50%;
}

.check-list li > span svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.check-list strong {
    display: block;
    margin-bottom: 4px;
    font-size: 18px;
}

.check-list p {
    margin: 0;
    color: rgba(255, 255, 255, .58);
    font-size: 14px;
}

.steps-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.steps-grid::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 54px;
    right: 10%;
    left: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(7, 18, 12, .22), transparent);
}

.step-card {
    position: relative;
    z-index: 1;
    min-height: 310px;
    padding: 28px 26px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
}

.step-card > span {
    position: absolute;
    top: 22px;
    right: 22px;
    color: rgba(7, 18, 12, .24);
    font-size: 12px;
    font-weight: 800;
}

.step-icon {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    margin-bottom: 68px;
    color: var(--white);
    background: var(--ink);
    border-radius: 18px;
}

.step-icon svg {
    width: 27px;
    height: 27px;
}

.step-card h3 {
    margin-bottom: 12px;
    font-size: 20px;
    line-height: 1.2;
}

.step-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.download-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-top: 30px;
    padding: 38px 42px;
    color: var(--white);
    background: var(--ink);
    border-radius: var(--radius-md);
}

.download-panel .eyebrow {
    margin-bottom: 10px;
}

.download-panel h3 {
    margin-bottom: 7px;
    font-size: 31px;
    line-height: 1.1;
}

.download-panel p {
    margin: 0;
    color: rgba(255, 255, 255, .6);
}

.store-buttons {
    display: flex;
    flex: 0 0 auto;
    gap: 10px;
}

.store-button {
    display: grid;
    min-width: 176px;
    grid-template-columns: 34px 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 10px;
    padding: 10px 15px;
    color: var(--white);
    background: #000;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 13px;
    transition: transform .2s ease, border-color .2s ease;
}

.store-button:hover:not(.is-disabled) {
    border-color: var(--green);
    transform: translateY(-3px);
}

.store-button > span {
    grid-row: 1 / 3;
}

.store-button svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

.store-button small {
    align-self: end;
    font-size: 10px;
    line-height: 1;
}

.store-button strong {
    align-self: start;
    font-size: 15px;
    line-height: 1.15;
}

.store-button.is-disabled {
    color: rgba(255, 255, 255, .55);
    cursor: not-allowed;
}

.health-section {
    position: relative;
    background: linear-gradient(135deg, #fff5ea 0%, #f7fbff 55%, #eef9ff 100%);
    overflow: hidden;
}

.health-section::before,
.health-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    pointer-events: none;
}

.health-section::before {
    width: 300px;
    height: 300px;
    top: -140px;
    left: -100px;
    background: rgba(246, 122, 53, .12);
}

.health-section::after {
    width: 360px;
    height: 360px;
    right: -130px;
    bottom: -190px;
    background: rgba(22, 144, 204, .12);
}

.health-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.08fr;
    align-items: center;
    gap: 76px;
}

.health-logo {
    width: min(360px, 100%);
    margin-bottom: 34px;
}

.health-highlight {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 22px;
    margin: 34px 0;
    padding: 24px 26px;
    background: rgba(255, 255, 255, .7);
    border: 1px solid rgba(23, 89, 122, .1);
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
}

.health-highlight strong {
    color: #e76724;
    font-size: 42px;
    line-height: 1;
    letter-spacing: -.04em;
}

.health-highlight span {
    color: #52636b;
    font-size: 14px;
}

.health-image {
    position: relative;
}

.health-image::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 45px -35px -35px 45px;
    background: linear-gradient(135deg, #f4823c, #1b8fca);
    border-radius: var(--radius-lg);
}

.health-image img {
    width: 100%;
    aspect-ratio: 1.38 / 1;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.benefits-layout {
    display: grid;
    grid-template-columns: .86fr 1.14fr;
    align-items: center;
    gap: 80px;
}

.benefit-image img {
    width: 100%;
    max-height: 660px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: 0 35px 80px rgba(0, 0, 0, .28);
}

.benefit-list {
    display: grid;
}

.benefit-row {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 20px;
    padding: 26px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .11);
}

.benefit-row:first-child {
    padding-top: 0;
}

.benefit-row > span {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    color: var(--green);
    background: rgba(88, 211, 55, .1);
    border-radius: 17px;
}

.benefit-row > span svg {
    width: 25px;
    height: 25px;
}

.benefit-row h3 {
    margin-bottom: 6px;
    font-size: 21px;
}

.benefit-row p {
    margin: 0;
    color: rgba(255, 255, 255, .58);
}

.purpose-section {
    position: relative;
    min-height: 650px;
    display: grid;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.purpose-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(3, 12, 6, .9), rgba(3, 12, 6, .48) 58%, rgba(3, 12, 6, .12)),
        url('../img/forest-bg.webp') center/cover no-repeat;
    transform: scale(1.02);
}

.purpose-content {
    position: relative;
    z-index: 1;
    max-width: 680px;
    padding-block: 100px;
}

.purpose-content > p {
    margin-bottom: 34px;
    font-size: 19px;
}

.contact-section {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: start;
    gap: 82px;
}

.contact-copy > p {
    margin-bottom: 38px;
}

.contact-info-card {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    align-items: start;
    padding: 20px 0;
    border-top: 1px solid var(--line);
}

.contact-info-card > span {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    color: var(--ink);
    background: var(--green-soft);
    border-radius: 14px;
}

.contact-info-card strong {
    display: block;
    margin-bottom: 4px;
}

.contact-info-card p {
    margin: 0;
    color: var(--muted);
}

.contact-info-card a:hover {
    color: var(--green-strong);
}

.contact-form-wrap {
    padding: 36px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.contact-form {
    display: grid;
    gap: 19px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.contact-form label:not(.privacy-check) {
    display: grid;
    gap: 8px;
}

.contact-form label > span:first-child {
    font-size: 13px;
    font-weight: 750;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    color: var(--ink);
    background: var(--white);
    border: 1px solid rgba(7, 18, 12, .14);
    border-radius: 13px;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form input,
.contact-form select {
    min-height: 52px;
    padding: 0 15px;
}

.contact-form textarea {
    min-height: 150px;
    padding: 14px 15px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--green-strong);
    box-shadow: 0 0 0 4px rgba(88, 211, 55, .13);
}

.privacy-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--muted);
    font-size: 13px;
}

.privacy-check input {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    margin-top: 1px;
    accent-color: var(--green-strong);
}

.privacy-check a {
    color: var(--ink);
    text-decoration: underline;
}

.button-submit {
    width: 100%;
    border: 0;
}

.honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.form-message {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 13px;
    font-size: 14px;
}

.form-message.success {
    color: #155b22;
    background: #e2f7e4;
    border: 1px solid #b7e6bd;
}

.form-message.error {
    color: #8c2424;
    background: #fde9e9;
    border: 1px solid #f0bcbc;
}

.final-cta {
    padding: 30px 0;
    color: var(--white);
    background: var(--ink);
}

.final-cta-inner {
    display: flex;
    min-height: 260px;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 48px 54px;
    background:
        radial-gradient(circle at 87% 35%, rgba(88, 211, 55, .2), transparent 26%),
        linear-gradient(135deg, #10281b, #07120c);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius-lg);
}

.final-cta .eyebrow {
    margin-bottom: 12px;
}

.final-cta h2 {
    max-width: 690px;
    margin: 0;
    font-size: clamp(35px, 4vw, 56px);
    line-height: 1.04;
    letter-spacing: -.04em;
}

.site-footer {
    padding-top: 80px;
    color: rgba(255, 255, 255, .7);
    background: #020704;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr .75fr .9fr 1.25fr;
    gap: 50px;
    padding-bottom: 64px;
}

.footer-brand img {
    width: 205px;
    height: auto;
    margin-bottom: 22px;
}

.footer-brand p {
    max-width: 340px;
}

.footer-grid h2 {
    margin-bottom: 19px;
    color: var(--white);
    font-size: 14px;
}

.footer-grid > div:not(.footer-brand) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-grid a,
.footer-grid p {
    margin-bottom: 9px;
    font-size: 13px;
}

.footer-grid a:hover {
    color: var(--green);
}

.footer-bottom {
    display: flex;
    min-height: 76px;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, .42);
    font-size: 12px;
}

.cookie-banner {
    position: fixed;
    z-index: 1200;
    right: 18px;
    bottom: 18px;
    left: 18px;
    display: flex;
    max-width: 760px;
    align-items: center;
    gap: 18px;
    margin-left: auto;
    padding: 16px 18px;
    color: var(--white);
    background: rgba(4, 15, 9, .95);
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 16px;
    box-shadow: var(--shadow);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner p {
    flex: 1;
    margin: 0;
    color: rgba(255, 255, 255, .7);
    font-size: 12px;
}

.cookie-banner a {
    color: var(--white);
    text-decoration: underline;
}

.cookie-banner button {
    flex: 0 0 auto;
    padding: 10px 15px;
    color: var(--ink);
    background: var(--green);
    border: 0;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}

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

/* Páginas jurídicas */
body.legal-page {
    background: var(--paper);
}

.legal-hero {
    padding: 170px 0 72px;
    color: var(--white);
    background:
        radial-gradient(circle at 80% 20%, rgba(88, 211, 55, .18), transparent 28%),
        linear-gradient(135deg, #07120c, #153624);
}

.legal-hero p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, .66);
    font-size: 17px;
}

.legal-content-wrap {
    padding-block: 70px 100px;
}

.legal-content {
    max-width: 940px;
    margin: auto;
    padding: clamp(28px, 5vw, 64px);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.legal-content h1,
.legal-content h2,
.legal-content h3,
.legal-content h4 {
    color: var(--ink) !important;
    line-height: 1.2;
}

.legal-content h4 {
    margin: 28px 0 20px;
    font-size: 28px;
}

.legal-content p,
.legal-content li,
.legal-content div {
    color: #3d4a42 !important;
    font-family: inherit !important;
    font-size: 15px !important;
    line-height: 1.8 !important;
}

.legal-content a {
    color: #278e30 !important;
    text-decoration: underline;
}

.legal-content table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
    border-collapse: collapse;
}

.legal-content td,
.legal-content th {
    padding: 10px;
    border: 1px solid var(--line);
}

@media (max-width: 1080px) {
    :root {
        --shell: min(100% - 32px, 1040px);
    }

    .main-nav {
        gap: 20px;
        font-size: 13px;
    }

    .feature-cards,
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid::before {
        display: none;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-grid > div:nth-child(3) {
        border-left: 1px solid rgba(255, 255, 255, .09);
    }

    .download-panel {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr;
    }

    .footer-grid > div:last-child {
        grid-column: 2 / 4;
    }
}

@media (max-width: 860px) {
    :root {
        --header-height: 76px;
    }

    .brand img {
        width: 174px;
        height: 50px;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: var(--header-height);
        right: 0;
        bottom: 0;
        left: 0;
        display: flex;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        padding: 25px 20px 40px;
        background: rgba(4, 15, 9, .98);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
        overflow-y: auto;
    }

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

    .main-nav > a:not(.nav-client) {
        padding: 18px 6px;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        font-size: 18px;
    }

    .main-nav > a:not(.nav-client)::after {
        display: none;
    }

    .nav-client {
        margin-top: 22px;
        text-align: center;
    }

    .hero {
        min-height: 680px;
        height: 88svh;
    }

    .hero-overlay {
        background:
            linear-gradient(90deg, rgba(2, 9, 5, .9), rgba(2, 9, 5, .48)),
            linear-gradient(0deg, rgba(2, 9, 5, .85), transparent 42%);
    }

    .hero h1,
    .hero h2 {
        font-size: clamp(48px, 10.5vw, 76px);
    }

    .hero-controls {
        justify-content: flex-start;
    }

    .split-grid,
    .health-grid,
    .benefits-layout,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .split-grid,
    .health-grid,
    .benefits-layout,
    .contact-grid {
        gap: 58px;
    }

    .app-visual {
        width: min(75%, 470px);
        margin-inline: auto;
    }

    .floating-stat {
        right: -50px;
    }

    .health-copy {
        order: 2;
    }

    .health-image {
        order: 1;
    }

    .benefit-image img {
        width: min(76%, 490px);
        margin-inline: auto;
    }

    .purpose-section {
        min-height: 570px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / 3;
    }

    .footer-grid > div:last-child {
        grid-column: auto;
    }
}

@media (max-width: 620px) {
    :root {
        --shell: calc(100% - 28px);
        --radius-lg: 25px;
        --radius-md: 18px;
    }

    .hero {
        min-height: 720px;
        height: 92svh;
    }

    .hero-slide {
        background-position: 62% center;
    }

    .hero-overlay {
        background:
            linear-gradient(90deg, rgba(2, 9, 5, .9), rgba(2, 9, 5, .54)),
            linear-gradient(0deg, rgba(2, 9, 5, .9), rgba(2, 9, 5, .08) 58%);
    }

    .hero-content {
        display: flex;
        min-height: 100%;
        flex-direction: column;
        justify-content: flex-end;
        padding-bottom: 105px;
    }

    .hero h1,
    .hero h2 {
        font-size: clamp(46px, 15vw, 67px);
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-controls {
        bottom: 27px;
    }

    .carousel-arrow {
        width: 44px;
        height: 44px;
    }

    .carousel-dots button {
        width: 18px;
    }

    .carousel-dots button.is-active {
        width: 35px;
    }

    .trust-grid,
    .feature-cards,
    .steps-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid > div,
    .trust-grid > div:first-child,
    .trust-grid > div:nth-child(3) {
        min-height: 92px;
        padding: 18px 4px;
        border-right: 0;
        border-left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .09);
    }

    .section {
        padding-block: 82px;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .section-heading h2,
    .section-copy h2,
    .health-copy h2,
    .contact-copy h2,
    .purpose-content h2,
    .legal-hero h1 {
        font-size: clamp(36px, 11vw, 49px);
    }

    .section-heading p,
    .section-copy > p,
    .health-copy > p,
    .contact-copy > p,
    .purpose-content > p {
        font-size: 16px;
    }

    .feature-card,
    .step-card {
        min-height: auto;
    }

    .feature-icon,
    .step-icon {
        margin-bottom: 48px;
    }

    .app-visual,
    .benefit-image img {
        width: 88%;
    }

    .floating-stat {
        right: -7%;
        bottom: 30px;
        width: 210px;
        padding: 18px;
    }

    .download-panel {
        padding: 30px 24px;
    }

    .store-buttons {
        width: 100%;
        flex-direction: column;
    }

    .store-button {
        width: 100%;
    }

    .health-highlight {
        grid-template-columns: 1fr;
    }

    .health-highlight strong {
        font-size: 38px;
    }

    .health-image::before {
        inset: 25px -12px -18px 25px;
    }

    .contact-form-wrap {
        padding: 24px 18px;
    }

    .final-cta {
        padding: 14px 0;
    }

    .final-cta-inner {
        min-height: 360px;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding: 36px 25px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-brand,
    .footer-grid > div:last-child {
        grid-column: auto;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding-block: 24px;
    }

    .cookie-banner {
        align-items: stretch;
        flex-direction: column;
    }

    .legal-hero {
        padding: 135px 0 55px;
    }

    .legal-content-wrap {
        padding-block: 30px 70px;
    }

    .legal-content {
        padding: 24px 18px;
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
