/*
|--------------------------------------------------------------------------
| ClearMind Landing Page
|--------------------------------------------------------------------------
*/

:root {
    --cm-primary: #11845f;
    --cm-primary-dark: #075f43;
    --cm-primary-deep: #064b36;
    --cm-primary-soft: #e8f7ef;
    --cm-lime: #c9ef72;
    --cm-ink: #14251f;
    --cm-text: #42564e;
    --cm-muted: #788981;
    --cm-border: #dde8e2;
    --cm-surface: #ffffff;
    --cm-page: #f5f7f2;
    --cm-cream: #f3f0e6;
    --cm-shadow: 0 24px 60px rgba(28, 72, 57, 0.10);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--cm-page);
    color: var(--cm-text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
}

button,
input {
    font: inherit;
}

.cm-landing-page {
    min-height: 100vh;
    overflow: hidden;
}

.cm-landing-header {
    width: min(100% - 42px, 1540px);
    min-height: 84px;
    margin: 20px auto 0;
    padding: 0 22px;
    border: 1px solid rgba(222, 232, 226, 0.95);
    border-radius: 23px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 30px;
    background: rgba(255, 255, 255, 0.90);
    box-shadow: 0 14px 35px rgba(39, 78, 64, 0.06);
    backdrop-filter: blur(13px);
}

.cm-landing-logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
}

.cm-landing-logo-mark {
    width: 45px;
    height: 45px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--cm-primary-dark), var(--cm-primary));
    color: #fff;
    font-size: 24px;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(17, 132, 95, 0.18);
}

.cm-landing-logo-copy {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.cm-landing-logo-copy strong {
    color: var(--cm-ink);
    font-size: 20px;
    letter-spacing: -0.035em;
}

.cm-landing-logo-copy small {
    margin-top: 5px;
    color: var(--cm-primary);
    font-size: 8px;
    font-weight: 850;
    letter-spacing: 0.22em;
}

.cm-landing-nav {
    justify-self: center;
    padding: 6px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #f4f6f1;
}

.cm-landing-nav a {
    padding: 10px 15px;
    border-radius: 999px;
    color: var(--cm-text);
    font-size: 10px;
    font-weight: 750;
    text-decoration: none;
    transition: background 150ms ease, color 150ms ease;
}

.cm-landing-nav a:hover {
    background: #fff;
    color: var(--cm-primary-dark);
}

.cm-landing-header-actions {
    display: flex;
    align-items: center;
    gap: 9px;
}

.cm-button {
    min-height: 42px;
    padding: 0 16px;
    border: 0;
    border-radius: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 10px;
    font-weight: 850;
    text-decoration: none;
    transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

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

.cm-button-primary {
    background: linear-gradient(135deg, var(--cm-primary-dark), var(--cm-primary));
    color: #fff;
    box-shadow: 0 12px 24px rgba(17, 132, 95, 0.17);
}

.cm-button-primary:hover {
    box-shadow: 0 16px 30px rgba(17, 132, 95, 0.22);
}

.cm-button-ghost {
    border: 1px solid var(--cm-border);
    background: #fff;
    color: var(--cm-primary-dark);
}

.cm-button-text {
    padding-left: 6px;
    padding-right: 6px;
    background: transparent;
    color: var(--cm-primary-dark);
}

.cm-button-light {
    background: #fff;
    color: var(--cm-primary-dark);
    box-shadow: 0 13px 28px rgba(0, 0, 0, 0.12);
}

.cm-button-large {
    min-height: 51px;
    padding: 0 19px;
    border-radius: 15px;
    font-size: 11px;
}

.cm-button-large > span {
    font-size: 17px;
}

.cm-landing-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--cm-border);
    border-radius: 13px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    background: #fff;
    cursor: pointer;
}

.cm-landing-menu-button span {
    width: 17px;
    height: 2px;
    border-radius: 999px;
    background: var(--cm-ink);
}

.cm-landing-mobile-menu {
    display: none;
}

.cm-hero {
    width: min(100% - 42px, 1540px);
    margin: 20px auto 0;
    padding: clamp(52px, 7vw, 102px) clamp(34px, 6vw, 88px);
    border-radius: 34px;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
    align-items: center;
    gap: clamp(45px, 7vw, 100px);
    background:
        radial-gradient(circle at 78% 18%, rgba(201, 239, 114, 0.16), transparent 24%),
        linear-gradient(145deg, #f7f5ed, #f2f0e6);
    box-shadow: 0 20px 55px rgba(53, 75, 63, 0.05);
}

.cm-hero-copy {
    max-width: 680px;
}

.cm-hero-proof {
    width: fit-content;
    margin-bottom: 26px;
    padding: 7px 11px 7px 7px;
    border: 1px solid rgba(17, 132, 95, 0.13);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.77);
    color: var(--cm-primary-dark);
    font-size: 9px;
    font-weight: 800;
}

.cm-proof-icon {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--cm-primary-soft);
    color: var(--cm-primary-dark);
    font-size: 9px;
}

.cm-hero-kicker,
.cm-section-eyebrow {
    margin: 0;
    color: var(--cm-primary);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.cm-hero h1 {
    margin: 14px 0 22px;
    color: var(--cm-ink);
    font-size: clamp(51px, 6.2vw, 92px);
    line-height: 0.98;
    letter-spacing: -0.065em;
}

.cm-hero h1 span {
    position: relative;
    display: inline-block;
    color: var(--cm-primary-dark);
}

.cm-hero h1 span::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 9px;
    border-radius: 999px;
    background: var(--cm-lime);
    opacity: 0.9;
    z-index: -1;
}

.cm-hero-description {
    max-width: 610px;
    margin: 0;
    color: var(--cm-text);
    font-size: 15px;
    line-height: 1.75;
}

.cm-hero-benefits {
    margin-top: 24px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 11px;
}

.cm-hero-benefits span {
    min-height: 37px;
    padding: 0 12px;
    border: 1px solid rgba(17, 132, 95, 0.12);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.75);
    color: var(--cm-text);
    font-size: 9px;
    font-weight: 750;
}

.cm-hero-benefits i {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--cm-primary-soft);
    color: var(--cm-primary-dark);
    font-style: normal;
    font-size: 8px;
}

.cm-hero-actions {
    margin-top: 31px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 13px;
}

.cm-hero-note {
    margin: 17px 0 0;
    color: var(--cm-muted);
    font-size: 9px;
}

.cm-hero-visual {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cm-dashboard-glow {
    position: absolute;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 239, 114, 0.55), rgba(201, 239, 114, 0));
    filter: blur(8px);
}

.cm-dashboard-preview {
    position: relative;
    z-index: 2;
    width: min(100%, 720px);
    border: 9px solid #15251f;
    border-radius: 30px;
    overflow: hidden;
    background: #eef5f1;
    box-shadow: 0 38px 75px rgba(23, 65, 50, 0.25);
    transform: perspective(1200px) rotateY(-6deg) rotateX(2deg);
}

.cm-preview-topbar {
    min-height: 62px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
}

.cm-preview-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cm-preview-logo > span {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--cm-primary);
    color: #fff;
    font-size: 14px;
    font-weight: 900;
}

.cm-preview-logo strong {
    color: var(--cm-ink);
    font-size: 11px;
}

.cm-preview-top-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cm-preview-top-actions span {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    background: var(--cm-primary-soft);
}

.cm-preview-top-actions span:last-child {
    width: 62px;
}

.cm-preview-body {
    min-height: 465px;
    display: grid;
    grid-template-columns: 54px 1fr;
}

.cm-preview-sidebar {
    padding: 17px 9px;
    display: flex;
    flex-direction: column;
    gap: 11px;
    background: var(--cm-primary-dark);
}

.cm-preview-sidebar span {
    width: 36px;
    height: 36px;
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.08);
}

.cm-preview-sidebar span.is-active {
    background: var(--cm-lime);
}

.cm-preview-content {
    padding: 17px;
    overflow: hidden;
}

.cm-preview-welcome {
    padding: 16px 17px;
    border-radius: 17px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    background: linear-gradient(135deg, var(--cm-primary-dark), var(--cm-primary));
    color: #fff;
}

.cm-preview-welcome > div {
    display: flex;
    flex-direction: column;
}

.cm-preview-welcome small {
    color: rgba(255, 255, 255, 0.65);
    font-size: 7px;
}

.cm-preview-welcome strong {
    margin-top: 4px;
    color: #fff;
    font-size: 13px;
}

.cm-preview-balance {
    padding: 9px 11px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.13);
}

.cm-preview-balance strong {
    font-size: 10px;
}

.cm-preview-stat-row {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;
}

.cm-preview-stat-row > div {
    min-width: 0;
    padding: 11px;
    border-radius: 14px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3px 8px;
    background: #fff;
}

.cm-preview-stat-row > div > span {
    width: 28px;
    height: 28px;
    grid-row: span 2;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-style: normal;
}

.cm-preview-stat-row span.is-green {
    background: var(--cm-primary-soft);
    color: var(--cm-primary);
}

.cm-preview-stat-row span.is-lime {
    background: #f2f9dd;
    color: #729b1a;
}

.cm-preview-stat-row span.is-soft {
    background: #edf1ef;
    color: #75827c;
}

.cm-preview-stat-row small {
    color: var(--cm-muted);
    font-size: 6px;
}

.cm-preview-stat-row strong {
    color: var(--cm-ink);
    font-size: 10px;
}

.cm-preview-platforms,
.cm-preview-chart-card {
    margin-top: 12px;
    padding: 13px;
    border-radius: 16px;
    background: #fff;
}

.cm-preview-section-head,
.cm-preview-chart-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.cm-preview-section-head > div,
.cm-preview-chart-head > div {
    display: flex;
    flex-direction: column;
}

.cm-preview-section-head small,
.cm-preview-chart-head small {
    color: var(--cm-muted);
    font-size: 6px;
}

.cm-preview-section-head strong,
.cm-preview-chart-head strong {
    margin-top: 3px;
    color: var(--cm-ink);
    font-size: 10px;
}

.cm-preview-section-head > span,
.cm-preview-chart-head > span {
    color: var(--cm-primary-dark);
    font-size: 6px;
    font-weight: 800;
}

.cm-preview-platform-row {
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.cm-preview-platform-row > div {
    min-width: 0;
    padding: 10px;
    border: 1px solid var(--cm-border);
    border-radius: 13px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 8px;
}

.cm-preview-platform-row > div > span {
    width: 31px;
    height: 31px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--cm-primary-soft);
    color: var(--cm-primary-dark);
    font-size: 7px;
    font-weight: 900;
}

.cm-preview-platform-row p {
    min-width: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.cm-preview-platform-row strong {
    overflow: hidden;
    color: var(--cm-ink);
    font-size: 7px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cm-preview-platform-row small {
    margin-top: 2px;
    overflow: hidden;
    color: var(--cm-muted);
    font-size: 5px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cm-preview-platform-row i {
    color: var(--cm-primary-dark);
    font-style: normal;
    font-size: 9px;
}

.cm-preview-chart {
    height: 76px;
    margin-top: 14px;
    display: flex;
    align-items: end;
    gap: 7px;
}

.cm-preview-chart i {
    flex: 1;
    border-radius: 5px 5px 2px 2px;
    background: linear-gradient(180deg, var(--cm-lime), var(--cm-primary));
}

.cm-floating-card {
    position: absolute;
    z-index: 4;
    padding: 12px 14px;
    border: 1px solid rgba(222, 232, 226, 0.95);
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 9px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 35px rgba(35, 76, 61, 0.13);
}

.cm-floating-card > span {
    width: 31px;
    height: 31px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--cm-primary-soft);
    color: var(--cm-primary-dark);
    font-size: 9px;
    font-weight: 900;
}

.cm-floating-card p {
    margin: 0;
    display: flex;
    flex-direction: column;
}

.cm-floating-card small {
    color: var(--cm-muted);
    font-size: 6px;
}

.cm-floating-card strong {
    margin-top: 2px;
    color: var(--cm-ink);
    font-size: 9px;
}

.cm-floating-card-one {
    left: -15px;
    bottom: 75px;
}

.cm-floating-card-two {
    right: -15px;
    top: 70px;
}

.cm-trust-strip {
    width: min(100% - 42px, 1400px);
    margin: 18px auto 0;
    padding: 20px 28px;
    border: 1px solid var(--cm-border);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: #fff;
}

.cm-trust-strip > p {
    margin: 0;
    color: var(--cm-ink);
    font-size: 11px;
    font-weight: 850;
}

.cm-trust-strip > div {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
}

.cm-trust-strip span {
    padding: 8px 10px;
    border-radius: 999px;
    background: var(--cm-primary-soft);
    color: var(--cm-primary-dark);
    font-size: 8px;
    font-weight: 750;
}

.cm-section {
    width: min(100% - 42px, 1380px);
    margin: 0 auto;
    padding: 110px 0;
}

.cm-section-heading {
    max-width: 760px;
    margin: 0 auto 46px;
    text-align: center;
}

.cm-section-heading > span {
    color: var(--cm-primary);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.cm-section-heading h2,
.cm-rewards-copy h2 {
    margin: 10px 0 13px;
    color: var(--cm-ink);
    font-size: clamp(36px, 4.5vw, 63px);
    line-height: 1.06;
    letter-spacing: -0.055em;
}

.cm-section-heading p,
.cm-rewards-copy > p {
    margin: 0;
    color: var(--cm-muted);
    font-size: 13px;
    line-height: 1.75;
}

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

.cm-step-card {
    position: relative;
    min-height: 310px;
    padding: 30px;
    border: 1px solid var(--cm-border);
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 16px 38px rgba(32, 75, 59, 0.05);
}

.cm-step-card::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    right: -85px;
    bottom: -85px;
    border: 28px solid var(--cm-primary-soft);
    border-radius: 50%;
}

.cm-step-number {
    color: var(--cm-muted);
    font-size: 9px;
    font-weight: 850;
}

.cm-step-icon {
    width: 54px;
    height: 54px;
    margin-top: 44px;
    border-radius: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--cm-primary-dark), var(--cm-primary));
    color: #fff;
    font-size: 19px;
    font-weight: 900;
    box-shadow: 0 13px 27px rgba(17, 132, 95, 0.17);
}

.cm-step-card h3 {
    margin: 20px 0 10px;
    color: var(--cm-ink);
    font-size: 20px;
    letter-spacing: -0.02em;
}

.cm-step-card p {
    max-width: 310px;
    margin: 0;
    color: var(--cm-muted);
    font-size: 10px;
    line-height: 1.7;
}

.cm-rewards-section {
    padding: 75px clamp(34px, 6vw, 82px);
    border-radius: 32px;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(400px, 1.05fr);
    align-items: center;
    gap: 70px;
    background: linear-gradient(145deg, #e8f4eb, #eff7ea);
}

.cm-rewards-copy > p {
    max-width: 630px;
}

.cm-reward-list {
    margin: 28px 0 32px;
    display: grid;
    gap: 12px;
}

.cm-reward-list > div {
    display: flex;
    align-items: flex-start;
    gap: 11px;
}

.cm-reward-list > div > span {
    width: 31px;
    height: 31px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    background: var(--cm-primary-dark);
    color: #fff;
    font-size: 9px;
}

.cm-reward-list p {
    margin: 0;
    display: flex;
    flex-direction: column;
}

.cm-reward-list strong {
    color: var(--cm-ink);
    font-size: 11px;
}

.cm-reward-list small {
    margin-top: 4px;
    color: var(--cm-muted);
    font-size: 9px;
}

.cm-reward-visual {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cm-reward-wallet-card {
    width: min(100%, 420px);
    padding: 28px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 90% 0%, rgba(201, 239, 114, 0.24), transparent 34%),
        linear-gradient(145deg, var(--cm-primary-deep), var(--cm-primary));
    color: #fff;
    box-shadow: 0 30px 60px rgba(12, 82, 57, 0.25);
    transform: rotate(-3deg);
}

.cm-reward-wallet-head {
    display: flex;
    align-items: center;
    gap: 9px;
}

.cm-reward-wallet-head > span {
    width: 35px;
    height: 35px;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--cm-primary-dark);
    font-size: 16px;
    font-weight: 900;
}

.cm-reward-wallet-head small {
    color: rgba(255, 255, 255, 0.68);
    font-size: 9px;
}

.cm-reward-wallet-card > strong {
    margin-top: 38px;
    display: block;
    color: #fff;
    font-size: 58px;
    letter-spacing: -0.06em;
}

.cm-reward-wallet-card > small {
    color: rgba(255, 255, 255, 0.64);
    font-size: 9px;
}

.cm-reward-wallet-progress {
    height: 8px;
    margin-top: 24px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.12);
}

.cm-reward-wallet-progress span {
    height: 100%;
    display: block;
    border-radius: inherit;
    background: var(--cm-lime);
}

.cm-reward-wallet-bottom {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cm-reward-wallet-bottom p {
    margin: 0;
    display: flex;
    flex-direction: column;
}

.cm-reward-wallet-bottom small {
    color: rgba(255, 255, 255, 0.55);
    font-size: 7px;
}

.cm-reward-wallet-bottom strong {
    margin-top: 3px;
    color: #fff;
    font-size: 11px;
}

.cm-reward-wallet-bottom > span {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--cm-lime);
    color: var(--cm-primary-dark);
    font-size: 17px;
}

.cm-reward-status-card {
    position: absolute;
    right: 8px;
    bottom: 30px;
    min-width: 225px;
    padding: 14px;
    border-radius: 16px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
    background: #fff;
    box-shadow: 0 18px 40px rgba(28, 73, 56, 0.17);
}

.cm-status-dot {
    width: 13px;
    height: 13px;
    border: 4px solid #fff1c2;
    border-radius: 50%;
    background: #d69b16;
    box-shadow: 0 0 0 4px #fff7da;
}

.cm-reward-status-card > div {
    display: flex;
    flex-direction: column;
}

.cm-reward-status-card small {
    color: var(--cm-muted);
    font-size: 7px;
}

.cm-reward-status-card strong {
    margin-top: 3px;
    color: var(--cm-ink);
    font-size: 10px;
}

.cm-reward-status-card > span:last-child {
    color: var(--cm-primary-dark);
}

.cm-stats-section {
    width: min(100% - 42px, 1380px);
    margin: 26px auto 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.cm-stat-card {
    padding: 24px;
    border: 1px solid var(--cm-border);
    border-radius: 21px;
    display: flex;
    flex-direction: column;
    background: #fff;
}

.cm-stat-card small {
    color: var(--cm-muted);
    font-size: 8px;
    font-weight: 750;
}

.cm-stat-card strong {
    margin-top: 11px;
    color: var(--cm-ink);
    font-size: 31px;
    letter-spacing: -0.04em;
}

.cm-stat-card span {
    margin-top: 6px;
    color: var(--cm-muted);
    font-size: 8px;
    line-height: 1.45;
}

.cm-faq-section {
    padding-bottom: 120px;
}

.cm-faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 11px;
}

.cm-faq-list details {
    border: 1px solid var(--cm-border);
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
}

.cm-faq-list summary {
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: var(--cm-ink);
    cursor: pointer;
    font-size: 11px;
    font-weight: 800;
    list-style: none;
}

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

.cm-faq-list summary i {
    width: 29px;
    height: 29px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    background: var(--cm-primary-soft);
    color: var(--cm-primary-dark);
    font-style: normal;
    font-size: 12px;
}

.cm-faq-list details[open] summary i {
    transform: rotate(45deg);
}

.cm-faq-list details p {
    margin: 0;
    padding: 0 20px 20px;
    color: var(--cm-muted);
    font-size: 10px;
    line-height: 1.75;
}

.cm-final-cta {
    width: min(100% - 42px, 1380px);
    margin: 0 auto 70px;
    padding: 52px 58px;
    border-radius: 29px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    background:
        radial-gradient(circle at 80% 0%, rgba(201, 239, 114, 0.22), transparent 28%),
        linear-gradient(145deg, var(--cm-primary-deep), var(--cm-primary));
    color: #fff;
    box-shadow: 0 28px 60px rgba(11, 91, 63, 0.20);
}

.cm-final-cta > div {
    max-width: 720px;
}

.cm-final-cta > div > span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.cm-final-cta h2 {
    margin: 9px 0 9px;
    color: #fff;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.cm-final-cta p {
    margin: 0;
    color: rgba(255, 255, 255, 0.71);
    font-size: 11px;
}

.cm-landing-footer {
    padding: 60px max(24px, calc((100% - 1380px) / 2));
    background: #11251e;
    color: #fff;
}

.cm-landing-footer .cm-landing-logo-copy strong {
    color: #fff;
}

.cm-landing-footer-main {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(420px, 1.2fr);
    gap: 75px;
}

.cm-landing-footer-brand {
    max-width: 430px;
}

.cm-landing-footer-brand p {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.56);
    font-size: 10px;
    line-height: 1.75;
}

.cm-landing-footer-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.cm-landing-footer-links > div {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.cm-landing-footer-links strong {
    margin-bottom: 4px;
    color: #fff;
    font-size: 10px;
}

.cm-landing-footer-links a {
    color: rgba(255, 255, 255, 0.58);
    font-size: 9px;
    text-decoration: none;
}

.cm-landing-footer-links a:hover {
    color: var(--cm-lime);
}

.cm-landing-footer-bottom {
    margin-top: 48px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: rgba(255, 255, 255, 0.42);
    font-size: 8px;
}

@media (max-width: 1180px) {
    .cm-landing-header {
        grid-template-columns: auto 1fr auto;
    }

    .cm-landing-nav {
        display: none;
    }

    .cm-hero {
        grid-template-columns: 1fr;
    }

    .cm-hero-copy {
        max-width: 820px;
    }

    .cm-hero-visual {
        min-height: 560px;
    }

    .cm-rewards-section {
        grid-template-columns: 1fr;
    }

    .cm-rewards-copy {
        max-width: 800px;
    }

    .cm-stats-section {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .cm-landing-header {
        width: min(100% - 24px, 1540px);
        margin-top: 12px;
        padding: 0 14px;
    }

    .cm-landing-header-actions {
        display: none;
    }

    .cm-landing-menu-button {
        display: flex;
        justify-self: end;
    }

    .cm-landing-mobile-menu {
        position: relative;
        z-index: 20;
        width: min(100% - 24px, 1540px);
        margin: 8px auto 0;
        padding: 12px;
        border: 1px solid var(--cm-border);
        border-radius: 17px;
        background: #fff;
        box-shadow: 0 14px 30px rgba(32, 75, 59, 0.08);
    }

    .cm-landing-mobile-menu.is-open {
        display: grid;
        gap: 6px;
    }

    .cm-landing-mobile-menu a {
        min-height: 42px;
        padding: 0 12px;
        border-radius: 11px;
        display: flex;
        align-items: center;
        color: var(--cm-text);
        font-size: 10px;
        font-weight: 800;
        text-decoration: none;
    }

    .cm-landing-mobile-menu a.is-primary {
        background: var(--cm-primary);
        color: #fff;
    }

    .cm-hero,
    .cm-trust-strip,
    .cm-section,
    .cm-stats-section,
    .cm-final-cta {
        width: min(100% - 24px, 1380px);
    }

    .cm-hero {
        padding: 52px 25px;
        border-radius: 25px;
    }

    .cm-hero h1 {
        font-size: clamp(47px, 12vw, 72px);
    }

    .cm-hero-visual {
        min-height: 470px;
    }

    .cm-floating-card {
        display: none;
    }

    .cm-trust-strip {
        align-items: flex-start;
        flex-direction: column;
    }

    .cm-step-grid {
        grid-template-columns: 1fr;
    }

    .cm-step-card {
        min-height: 260px;
    }

    .cm-step-icon {
        margin-top: 28px;
    }

    .cm-rewards-section {
        padding: 50px 25px;
        border-radius: 25px;
    }

    .cm-stats-section {
        grid-template-columns: 1fr 1fr;
    }

    .cm-final-cta {
        padding: 40px 27px;
        align-items: flex-start;
        flex-direction: column;
    }

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

@media (max-width: 620px) {
    .cm-landing-logo-copy {
        display: none;
    }

    .cm-hero {
        gap: 30px;
    }

    .cm-hero-description {
        font-size: 12px;
    }

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

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

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

    .cm-hero-benefits span {
        width: 100%;
    }

    .cm-hero-visual {
        min-height: 350px;
    }

    .cm-dashboard-preview {
        border-width: 6px;
        border-radius: 22px;
        transform: none;
    }

    .cm-preview-topbar {
        min-height: 48px;
    }

    .cm-preview-body {
        min-height: 330px;
        grid-template-columns: 38px 1fr;
    }

    .cm-preview-sidebar {
        padding: 10px 5px;
    }

    .cm-preview-sidebar span {
        width: 28px;
        height: 28px;
    }

    .cm-preview-content {
        padding: 10px;
    }

    .cm-preview-platform-row {
        grid-template-columns: 1fr;
    }

    .cm-preview-chart-card {
        display: none;
    }

    .cm-section {
        padding: 80px 0;
    }

    .cm-section-heading h2,
    .cm-rewards-copy h2 {
        font-size: 38px;
    }

    .cm-reward-visual {
        min-height: 330px;
    }

    .cm-reward-wallet-card {
        padding: 23px;
    }

    .cm-reward-wallet-card > strong {
        font-size: 47px;
    }

    .cm-reward-status-card {
        right: 0;
        bottom: 10px;
    }

    .cm-stats-section {
        grid-template-columns: 1fr;
    }

    .cm-landing-footer {
        padding: 48px 22px;
    }

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

    .cm-landing-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}


/*
|--------------------------------------------------------------------------
| Centered Hero Final Update
|--------------------------------------------------------------------------
*/

.cm-landing-header-actions {
    gap: 12px;
}

.cm-landing-header-actions .cm-button {
    min-height: 49px;
    padding: 0 22px;
    border-radius: 14px;
    font-size: 11px;
}

.cm-hero.cm-hero-centered {
    min-height: 740px;
    padding: clamp(64px, 8vw, 110px) clamp(24px, 6vw, 90px);
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    text-align: center;
    background:
        radial-gradient(circle at 50% 8%, rgba(201, 239, 114, 0.18), transparent 27%),
        radial-gradient(circle at 12% 88%, rgba(17, 132, 95, 0.07), transparent 24%),
        linear-gradient(145deg, #f8f6ef, #f1f2e9);
}

.cm-hero-centered .cm-hero-copy {
    width: min(100%, 1080px);
    max-width: none;
    margin: 0 auto;
}

.cm-hero-centered .cm-hero-proof {
    margin-right: auto;
    margin-bottom: 26px;
    margin-left: auto;
}

.cm-hero-centered h1 {
    max-width: 1000px;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(56px, 7.4vw, 104px);
}

.cm-hero-centered .cm-hero-description {
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
    font-size: 15px;
}

.cm-hero-centered .cm-hero-benefits {
    justify-content: center;
}

.cm-hero-actions-centered {
    margin-top: 35px;
    justify-content: center;
}

.cm-button-hero {
    min-width: 190px;
    min-height: 59px;
    padding: 0 28px;
    border-radius: 17px;
    font-size: 14px;
}

.cm-button-hero > span {
    font-size: 19px;
}

.cm-hero-centered .cm-hero-note {
    margin-top: 18px;
    text-align: center;
}

.cm-hero-info-grid {
    width: 100%;
    margin: 50px auto 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    text-align: left;
}

.cm-hero-info-card {
    min-width: 0;
    padding: 23px;
    border: 1px solid rgba(213, 227, 219, 0.96);
    border-radius: 21px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 17px 38px rgba(32, 75, 59, 0.07);
    backdrop-filter: blur(10px);
    transition:
        transform 160ms ease,
        border-color 160ms ease,
        box-shadow 160ms ease;
}

.cm-hero-info-card:hover {
    border-color: rgba(17, 132, 95, 0.26);
    box-shadow: 0 22px 44px rgba(32, 75, 59, 0.10);
    transform: translateY(-3px);
}

.cm-hero-info-icon {
    width: 49px;
    height: 49px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    background: linear-gradient(
        145deg,
        var(--cm-primary-dark),
        var(--cm-primary)
    );
    color: #fff;
    font-size: 17px;
    font-weight: 900;
    box-shadow: 0 12px 24px rgba(17, 132, 95, 0.15);
}

.cm-hero-info-card > div {
    min-width: 0;
}

.cm-hero-info-card small {
    color: var(--cm-primary);
    font-size: 8px;
    font-weight: 850;
    letter-spacing: 0.10em;
    text-transform: uppercase;
}

.cm-hero-info-card strong {
    margin-top: 5px;
    display: block;
    color: var(--cm-ink);
    font-size: 15px;
    line-height: 1.35;
}

.cm-hero-info-card p {
    margin: 7px 0 0;
    color: var(--cm-muted);
    font-size: 9px;
    line-height: 1.65;
}

@media (max-width: 900px) {
    .cm-hero.cm-hero-centered {
        min-height: auto;
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .cm-hero-info-grid {
        grid-template-columns: 1fr;
        max-width: 660px;
    }
}

@media (max-width: 620px) {
    .cm-hero-centered h1 {
        font-size: clamp(46px, 15vw, 66px);
    }

    .cm-hero-actions-centered {
        width: 100%;
        align-items: stretch;
        flex-direction: column;
    }

    .cm-button-hero {
        width: 100%;
        min-width: 0;
    }

    .cm-hero-info-grid {
        margin-top: 36px;
    }

    .cm-hero-info-card {
        padding: 19px;
    }
}
/* === Landing hero compact adjustment === */
.cm-hero.cm-hero-centered {
    min-height: 650px;
    padding: clamp(34px, 4.5vw, 64px) clamp(24px, 6vw, 90px) clamp(44px, 5vw, 68px);
    align-items: start;
}

.cm-hero-centered .cm-hero-copy {
    padding-top: 0;
}

.cm-hero-centered .cm-hero-proof {
    margin-bottom: 18px;
}

.cm-hero-centered .cm-hero-kicker {
    margin-bottom: 8px;
}

.cm-hero-centered h1 {
    margin-top: 6px;
    margin-bottom: 16px;
    font-size: clamp(48px, 6.4vw, 92px);
    line-height: 0.94;
}

.cm-hero-centered .cm-hero-description {
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
    font-size: 14px;
    line-height: 1.65;
}

.cm-hero-centered .cm-hero-benefits {
    margin-top: 18px;
}

.cm-hero-actions-centered {
    margin-top: 22px;
}

.cm-hero-centered .cm-hero-note {
    margin-top: 12px;
}

.cm-hero-info-grid {
    margin: 30px auto 0;
}

@media (max-width: 900px) {
    .cm-hero.cm-hero-centered {
        min-height: auto;
        padding-top: 46px;
        padding-bottom: 52px;
    }

    .cm-hero-centered h1 {
        font-size: clamp(42px, 10vw, 64px);
    }

    .cm-hero-info-grid {
        margin-top: 24px;
    }
}