:root {
    color-scheme: light;
    --uc-ink: #10231c;
    --uc-warm-white: #fbfaf6;
    --uc-white: #ffffff;
    --uc-green-700: #0a6b4f;
    --uc-green-800: #07543e;
    --uc-green-500: #11a978;
    --uc-mint-100: #ddf5e9;
    --uc-sand-100: #f2ebdd;
    --uc-sun-400: #f4b942;
    --uc-muted-ink: #475d54;
    --uc-line: rgba(16, 35, 28, 0.16);
    --uc-soft-line: rgba(16, 35, 28, 0.09);
    --uc-page: min(100% - 40px, 1240px);
    font-family: "Plus Jakarta Sans", Inter, ui-sans-serif, system-ui, sans-serif;
    background: var(--uc-warm-white);
    color: var(--uc-ink);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

body {
    min-width: 0;
    margin: 0;
    overflow-x: hidden;
    background: var(--uc-warm-white);
    color: var(--uc-ink);
    font-family: inherit;
    text-rendering: optimizeLegibility;
}

a {
    color: inherit;
    text-underline-offset: 0.2em;
}

img,
svg {
    display: block;
}

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

h1,
h2,
h3,
h4 {
    text-wrap: balance;
}

:focus-visible {
    outline: 3px solid var(--uc-sun-400);
    outline-offset: 4px;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 10px;
    left: 12px;
    transform: translateY(-160%);
    border-radius: 8px;
    background: var(--uc-ink);
    color: var(--uc-white);
    padding: 10px 14px;
}

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

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    min-height: 70px;
    border-bottom: 1px solid var(--uc-soft-line);
    background: rgba(251, 250, 246, 0.94);
    padding: 10px max(20px, calc((100vw - 1240px) / 2));
    backdrop-filter: blur(18px);
}

.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--uc-ink);
    text-decoration: none;
}

.brand-mark {
    width: 31px;
    height: 31px;
    overflow: visible;
    fill: var(--uc-sun-400);
    stroke: var(--uc-green-700);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.35;
}

.brand-name {
    font-size: 1.02rem;
    font-weight: 520;
    letter-spacing: -0.025em;
    white-space: nowrap;
}

.brand-name strong {
    font-weight: 780;
}

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 2vw, 28px);
}

.desktop-nav a {
    color: var(--uc-muted-ink);
    font-size: 0.8rem;
    font-weight: 650;
    text-decoration: none;
    transition: color 150ms ease;
}

.desktop-nav a:hover {
    color: var(--uc-green-700);
}

.mobile-nav {
    display: none;
    position: relative;
}

.mobile-nav summary {
    min-height: 42px;
    cursor: pointer;
    font-size: 0.84rem;
    font-weight: 720;
    list-style: none;
    padding: 11px 8px;
}

.mobile-nav summary::-webkit-details-marker {
    display: none;
}

.mobile-nav nav {
    position: absolute;
    z-index: 110;
    top: calc(100% + 10px);
    right: 0;
    display: grid;
    min-width: 210px;
    border: 1px solid var(--uc-line);
    border-radius: 10px;
    background: var(--uc-warm-white);
    box-shadow: 0 18px 46px rgba(16, 35, 28, 0.12);
    padding: 8px;
}

.mobile-nav nav a {
    min-height: 44px;
    border-radius: 7px;
    font-size: 0.86rem;
    font-weight: 650;
    padding: 12px;
    text-decoration: none;
}

.mobile-nav nav a:hover {
    background: var(--uc-mint-100);
}

.header-cta,
.primary-link,
.primary-action,
.footer-primary-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 9px;
    background: var(--uc-green-700);
    color: var(--uc-white);
    font-size: 0.9rem;
    font-weight: 720;
    padding: 0 19px;
    text-decoration: none;
    transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.header-cta:hover,
.primary-link:hover,
.primary-action:hover,
.footer-primary-link:hover {
    transform: translateY(-1px);
    background: var(--uc-green-800);
}

.eyebrow,
.eyebrow-dark {
    margin: 0 0 18px;
    color: var(--uc-green-700);
    font-size: 0.76rem;
    font-weight: 780;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.eyebrow--light {
    color: var(--uc-mint-100);
}

.about-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(560px, 0.98fr) minmax(0, 1.02fr);
    grid-template-rows: 1fr auto;
    min-height: calc(100svh - 70px);
    overflow: hidden;
    border-bottom: 1px solid var(--uc-soft-line);
    background: var(--uc-warm-white);
}

.about-copy {
    grid-column: 1;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    max-width: none;
    min-width: 0;
    padding: clamp(62px, 8vw, 108px) clamp(28px, 4vw, 64px) clamp(56px, 7vw, 90px) max(20px, calc((100vw - 1240px) / 2));
    animation: hero-in 520ms ease-out both;
}

.about-copy h1 {
    margin-bottom: 24px;
    font-size: clamp(3.35rem, 5.4vw, 5.3rem);
    font-weight: 760;
    letter-spacing: -0.067em;
    line-height: 0.94;
}

.about-copy .lead {
    max-width: 590px;
    margin-bottom: 16px;
    color: var(--uc-ink);
    font-size: clamp(1.12rem, 1.9vw, 1.36rem);
    font-weight: 650;
    line-height: 1.55;
}

.hero-summary {
    max-width: 610px;
    margin-bottom: 26px;
    color: var(--uc-muted-ink);
    line-height: 1.7;
}

.hero-proof-grid {
    display: grid;
    margin-bottom: 28px;
    border-top: 1px solid var(--uc-green-700);
}

.hero-proof-grid article {
    display: grid;
    grid-template-columns: minmax(130px, 0.48fr) minmax(0, 1fr);
    gap: 16px;
    border-bottom: 1px solid var(--uc-line);
    padding: 14px 0;
}

.hero-proof-grid span {
    color: var(--uc-muted-ink);
    font-size: 0.74rem;
}

.hero-proof-grid strong {
    font-size: 0.86rem;
    line-height: 1.45;
}

.about-copy .primary-link {
    align-self: flex-start;
}

.about-hero-art {
    grid-column: 2;
    grid-row: 1 / 3;
    width: 100%;
    height: 100%;
    min-height: 650px;
    object-fit: cover;
    object-position: center;
    background: var(--uc-mint-100);
}

.trust-panel {
    position: relative;
    z-index: 2;
    grid-column: 2;
    grid-row: 2;
    display: grid;
    grid-template-columns: minmax(100px, 0.28fr) minmax(190px, 0.65fr) minmax(0, 1fr);
    gap: 24px;
    align-items: start;
    margin: 0 max(20px, calc((100vw - 1240px) / 2)) 26px 26px;
    border-top: 1px solid rgba(16, 35, 28, 0.28);
    border-radius: 10px;
    background: rgba(251, 250, 246, 0.94);
    color: var(--uc-ink);
    padding: 22px 24px;
    backdrop-filter: blur(16px);
}

.trust-panel > span {
    color: var(--uc-green-700);
    font-size: 0.72rem;
    font-weight: 760;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.trust-panel > strong {
    font-size: 1rem;
    line-height: 1.4;
}

.trust-panel p {
    margin: 0;
    color: var(--uc-muted-ink);
    font-size: 0.82rem;
    line-height: 1.55;
}

.info-section,
.notice-section,
.expectations-section,
.faq-section,
.license-cta-section {
    padding: clamp(76px, 10vw, 132px) max(20px, calc((100vw - 1240px) / 2));
}

.info-section {
    display: grid;
    grid-template-columns: minmax(270px, 0.55fr) minmax(0, 1fr);
    gap: clamp(48px, 8vw, 120px);
    align-items: start;
    border-bottom: 1px solid var(--uc-soft-line);
    background: var(--uc-warm-white);
}

.info-section > .section-heading {
    position: sticky;
    top: 104px;
    grid-column: 1;
}

.info-section > :not(.section-heading) {
    grid-column: 2;
}

.section-heading h2,
.notice-copy h2,
.expectations-copy h2,
.faq-heading h2,
.footer-cta h2 {
    margin-bottom: 20px;
    font-size: clamp(2.15rem, 4.7vw, 4.45rem);
    font-weight: 750;
    letter-spacing: -0.058em;
    line-height: 0.99;
}

.section-heading > p:last-child,
.notice-points p,
.content-flow p,
.rewards-copy p,
.withdrawal-copy p,
.partner-card > p,
.market-copy p,
.expectations-copy > p,
.faq-heading > p:last-child,
.faq-aside p,
.faq-item p,
.detail-copy p,
.task-card p,
.route-card p,
.scout-runner-heading p {
    color: var(--uc-muted-ink);
    line-height: 1.72;
}

#how-it-works {
    display: block;
}

#how-it-works > .section-heading {
    position: static;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.58fr);
    gap: clamp(32px, 7vw, 96px);
    align-items: end;
}

#how-it-works > .section-heading h2 {
    max-width: 760px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: clamp(50px, 7vw, 82px);
    border-top: 1px solid var(--uc-green-700);
}

.info-grid article {
    min-height: 270px;
    border-right: 1px solid var(--uc-line);
    padding: 29px clamp(24px, 3vw, 40px) 18px 0;
}

.info-grid article + article {
    padding-left: clamp(24px, 3vw, 40px);
}

.info-grid article:last-child {
    border-right: 0;
    padding-right: 0;
}

.info-grid article > span,
.partner-top > span,
.reward-factor-grid article > span,
.timeline-item > span {
    display: inline-block;
    margin-bottom: 42px;
    color: var(--uc-green-700);
    font-size: 0.72rem;
    font-weight: 780;
    letter-spacing: 0.08em;
}

.info-grid h3,
.comparison-card h3,
.reward-factor-grid h3,
.timeline-item h3,
.partner-card h3 {
    margin-bottom: 12px;
    font-size: clamp(1.18rem, 2vw, 1.5rem);
    font-weight: 720;
    letter-spacing: -0.03em;
    line-height: 1.22;
}

.info-grid p,
.comparison-card li,
.license-summary p,
.reward-factor-grid p,
.timeline-item p {
    color: var(--uc-muted-ink);
    line-height: 1.7;
}

.notice-section {
    border-bottom: 1px solid var(--uc-line);
    background: var(--uc-sand-100);
}

.notice-copy {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
    gap: clamp(48px, 9vw, 128px);
}

.notice-points {
    border-top: 1px solid var(--uc-green-700);
}

.notice-points p {
    margin: 0;
    border-bottom: 1px solid var(--uc-line);
    padding: 22px 0;
}

.value-section {
    background: var(--uc-warm-white);
}

.value-comparison,
.license-summary,
.scout-runner-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--uc-green-700);
}

.comparison-card,
.license-summary article,
.route-card {
    min-width: 0;
    border-right: 1px solid var(--uc-line);
    padding: 28px 34px 28px 0;
}

.comparison-card + .comparison-card,
.license-summary article + article,
.route-card + .route-card {
    border-right: 0;
    padding-right: 0;
    padding-left: 34px;
}

.comparison-card > span,
.stats-label,
.task-status,
.route-label,
.rewards-snapshot span,
.withdrawal-summary span,
.expectations-panel span {
    color: var(--uc-green-700);
    font-size: 0.72rem;
    font-weight: 780;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.comparison-card h3 {
    margin-top: 30px;
}

.comparison-card ul,
.task-card ul,
.route-card ul {
    margin: 20px 0 0;
    padding-left: 1.15rem;
}

.comparison-card li,
.task-card li,
.route-card li {
    margin: 8px 0;
}

.content-flow {
    margin-top: 38px;
    border-left: 3px solid var(--uc-green-500);
    padding-left: 24px;
}

.content-flow p:last-child {
    margin-bottom: 0;
}

.value-stats-shell {
    margin-top: 48px;
    border-block: 1px solid var(--uc-line);
    background: var(--uc-mint-100);
    padding: 28px;
}

.stats-label {
    margin-bottom: 30px;
}

.jumbo-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.jumbo-stats > div {
    display: grid;
    border-right: 1px solid var(--uc-line);
    padding-right: 28px;
}

.jumbo-stats > div + div {
    padding-left: 28px;
}

.jumbo-stats > div:last-child {
    border-right: 0;
    padding-right: 0;
}

.jumbo-stats strong {
    color: var(--uc-green-800);
    font-size: clamp(2rem, 4vw, 3.8rem);
    letter-spacing: -0.06em;
}

.jumbo-stats span {
    margin-top: 5px;
    color: var(--uc-muted-ink);
    font-size: 0.82rem;
}

.detail-panel {
    margin-top: 38px;
    border-block: 1px solid var(--uc-line);
}

.detail-panel summary,
.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 76px;
    cursor: pointer;
    list-style: none;
    padding: 20px 0;
}

.detail-panel summary::-webkit-details-marker,
.faq-item summary::-webkit-details-marker {
    display: none;
}

.detail-panel summary::after,
.faq-item summary::after {
    content: "+";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--uc-mint-100);
    color: var(--uc-green-700);
    flex: 0 0 auto;
}

.detail-panel[open] summary::after,
.faq-item[open] summary::after {
    content: "−";
}

.detail-panel summary > span {
    color: var(--uc-green-700);
    font-size: 0.72rem;
    font-weight: 760;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.detail-panel summary > strong {
    margin-right: auto;
    font-size: 1.05rem;
}

.value-use-grid,
.task-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--uc-line);
}

.value-use-grid article,
.task-card {
    border-right: 1px solid var(--uc-line);
    border-bottom: 1px solid var(--uc-line);
    padding: 26px 30px 26px 0;
}

.value-use-grid article:nth-child(even),
.task-card:nth-child(even) {
    border-right: 0;
    padding-right: 0;
    padding-left: 30px;
}

.value-use-grid h3,
.task-card h3,
.route-card h3 {
    margin-bottom: 12px;
    font-size: 1.14rem;
    letter-spacing: -0.025em;
}

.value-use-grid p {
    margin-bottom: 0;
    color: var(--uc-muted-ink);
    line-height: 1.68;
}

.value-moat {
    margin-top: 44px;
    border-left: 4px solid var(--uc-sun-400);
    background: var(--uc-green-800);
    color: var(--uc-white);
    padding: 28px;
}

.value-moat p {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.72);
}

.licenses-section,
.setup-section {
    background: var(--uc-sand-100);
}

.license-summary strong {
    display: block;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.license-flow {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 36px 0 0;
    padding: 0;
    border-block: 1px solid var(--uc-line);
    counter-reset: licence-step;
    list-style: none;
}

.license-flow li {
    min-height: 145px;
    border-right: 1px solid var(--uc-line);
    counter-increment: licence-step;
    font-size: 0.84rem;
    font-weight: 680;
    line-height: 1.5;
    padding: 54px 18px 18px;
}

.license-flow li::before {
    content: "0" counter(licence-step);
    display: block;
    margin-bottom: 14px;
    color: var(--uc-green-700);
    font-size: 0.7rem;
}

.license-flow li:last-child {
    border-right: 0;
}

.collaboration-section,
.task-section,
.partners-section {
    background: var(--uc-warm-white);
}

.split-table {
    width: 100%;
    margin-top: 38px;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.split-table caption {
    color: var(--uc-muted-ink);
    font-size: 0.76rem;
    font-weight: 700;
    text-align: left;
    padding-bottom: 14px;
}

.split-table th,
.split-table td {
    border-bottom: 1px solid var(--uc-line);
    padding: 17px 14px;
    text-align: left;
}

.split-table thead th {
    border-top: 1px solid var(--uc-green-700);
    color: var(--uc-green-700);
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.split-table .featured-row {
    background: var(--uc-mint-100);
}

.rewards-section,
.withdrawal-section {
    background: var(--uc-mint-100);
}

.rewards-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.62fr);
    gap: clamp(36px, 6vw, 76px);
}

.rewards-copy p:last-child {
    margin-bottom: 0;
}

.rewards-snapshot,
.withdrawal-summary {
    border-top: 1px solid var(--uc-green-700);
}

.rewards-snapshot > div,
.withdrawal-summary > div {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 8px 18px;
    border-bottom: 1px solid var(--uc-line);
    padding: 18px 0;
}

.rewards-snapshot strong,
.withdrawal-summary strong {
    color: var(--uc-green-800);
    font-size: clamp(1.4rem, 2.4vw, 2rem);
    letter-spacing: -0.04em;
}

.rewards-snapshot p {
    grid-column: 1 / -1;
    margin: 0;
    color: var(--uc-muted-ink);
    font-size: 0.78rem;
}

.reward-factor-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 44px;
    border-top: 1px solid var(--uc-green-700);
}

.reward-factor-grid article {
    border-right: 1px solid var(--uc-line);
    padding: 26px 28px 20px 0;
}

.reward-factor-grid article + article {
    padding-left: 28px;
}

.reward-factor-grid article:last-child {
    border-right: 0;
}

.reward-factor-grid article > span {
    margin-bottom: 28px;
}

.rewards-reality,
.withdrawal-note {
    display: grid;
    grid-template-columns: minmax(120px, 0.28fr) 1fr;
    gap: 28px;
    margin-top: 40px;
    border-top: 1px solid var(--uc-green-700);
    border-bottom: 1px solid var(--uc-line);
    padding: 24px 0;
}

.rewards-reality p,
.withdrawal-note p {
    margin: 0;
    color: var(--uc-muted-ink);
    line-height: 1.68;
}

.task-card-grid,
.scout-runner-grid {
    margin-top: 4px;
}

.task-top {
    margin-bottom: 22px;
}

.task-card p,
.route-card p {
    margin-bottom: 0;
}

.task-card li,
.route-card li {
    color: var(--uc-muted-ink);
    font-size: 0.86rem;
    line-height: 1.55;
}

.scout-runner-heading {
    padding: 24px 0 8px;
}

.route-label {
    margin-bottom: 24px;
}

.setup-timeline {
    border-top: 1px solid var(--uc-green-700);
}

.timeline-item {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 22px;
    border-bottom: 1px solid var(--uc-line);
    padding: 26px 0;
}

.timeline-item > span {
    margin: 5px 0 0;
}

.timeline-item h3 {
    margin-bottom: 10px;
}

.timeline-item p {
    max-width: 62ch;
    margin-bottom: 0;
}

.timeline-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 16px;
}

.timeline-actions a,
.partner-link,
.withdrawal-footer-copy a,
.faq-aside a,
.expectations-actions a {
    color: var(--uc-green-700);
    font-size: 0.88rem;
    font-weight: 720;
}

.license-cta-section {
    background: var(--uc-green-800);
    color: var(--uc-white);
}

.license-cta-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: clamp(36px, 8vw, 100px);
    align-items: end;
}

.license-cta-card h2 {
    max-width: 760px;
    margin-bottom: 18px;
    font-size: clamp(2.3rem, 5vw, 4.7rem);
    letter-spacing: -0.06em;
    line-height: 0.98;
}

.license-cta-card > div:first-child > p:last-child {
    max-width: 60ch;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.68;
}

.license-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: flex-end;
}

.license-cta-actions .primary-link {
    background: var(--uc-white);
    color: var(--uc-green-800);
}

.license-cta-actions > a:not(.primary-link) {
    color: var(--uc-mint-100);
    font-size: 0.88rem;
    font-weight: 700;
}

.withdrawal-section {
    display: block;
}

.withdrawal-shell {
    display: grid;
    grid-template-columns: minmax(270px, 0.55fr) minmax(0, 1fr);
    gap: clamp(48px, 8vw, 120px);
}

.withdrawal-heading {
    position: sticky;
    top: 104px;
    grid-column: 1;
    align-self: start;
}

.withdrawal-layout,
.withdrawal-note,
.withdrawal-footer-copy {
    grid-column: 2;
}

.withdrawal-layout {
    display: grid;
    grid-template-columns: minmax(220px, 0.58fr) minmax(0, 1fr);
    gap: 38px;
}

.withdrawal-copy p:last-child {
    margin-bottom: 0;
}

.withdrawal-footer-copy {
    margin: 24px 0 0;
    color: var(--uc-muted-ink);
    line-height: 1.68;
}

.partner-stack {
    border-top: 1px solid var(--uc-green-700);
}

.partner-card {
    display: grid;
    grid-template-columns: minmax(180px, 0.42fr) 1fr;
    gap: 34px;
    border-bottom: 1px solid var(--uc-line);
    padding: 28px 0;
}

.partner-top {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 12px;
    align-items: start;
}

.partner-top > span {
    margin: 4px 0 0;
}

.partner-card > p {
    margin-bottom: 0;
}

.partner-link {
    grid-column: 2;
    justify-self: start;
}

.market-copy {
    padding: 20px 0 4px;
}

.expectations-section {
    background: var(--uc-green-800);
    color: var(--uc-white);
}

.expectations-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.52fr);
    gap: clamp(52px, 9vw, 128px);
}

.expectations-copy > p {
    max-width: 68ch;
    color: rgba(255, 255, 255, 0.72);
}

.expectations-more {
    border-color: rgba(255, 255, 255, 0.22);
}

.expectations-more summary > span,
.expectations-more summary > strong {
    color: var(--uc-white);
}

.expectations-more summary::after {
    background: rgba(255, 255, 255, 0.12);
    color: var(--uc-white);
}

.expectations-more .detail-copy p {
    color: rgba(255, 255, 255, 0.7);
}

.expectations-panel {
    align-self: start;
    border-top: 1px solid rgba(255, 255, 255, 0.34);
    padding-top: 24px;
}

.expectations-panel span {
    color: var(--uc-mint-100);
}

.expectations-panel strong {
    display: block;
    margin: 12px 0;
    font-size: 1.25rem;
}

.expectations-panel p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.68;
}

.expectations-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 18px;
    margin-top: 28px;
}

.expectations-actions a {
    color: var(--uc-white);
}

.expectations-actions .primary-action {
    background: var(--uc-white);
    color: var(--uc-green-800);
    padding-inline: 18px;
}

.faq-section {
    background: var(--uc-warm-white);
}

.faq-shell {
    display: grid;
    grid-template-columns: minmax(270px, 0.5fr) minmax(0, 1fr);
    gap: clamp(48px, 9vw, 128px);
}

.faq-heading {
    position: sticky;
    top: 104px;
    align-self: start;
}

.faq-layout {
    display: grid;
    gap: 34px;
}

.faq-aside {
    border-top: 1px solid var(--uc-green-700);
    padding: 22px 0 4px;
}

.faq-aside strong {
    font-size: 1.1rem;
}

.faq-aside p {
    margin: 12px 0 16px;
}

.faq-list {
    border-top: 1px solid var(--uc-green-700);
}

.faq-item {
    border-bottom: 1px solid var(--uc-line);
}

.faq-item summary {
    font-weight: 720;
    line-height: 1.45;
}

.faq-item p {
    max-width: 64ch;
    margin: -2px 0 24px;
}

.site-footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 52px 70px;
    align-items: end;
    background: var(--uc-green-800);
    color: var(--uc-white);
    padding: clamp(64px, 8vw, 100px) max(20px, calc((100vw - 1240px) / 2)) 48px;
}

.footer-cta {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px 60px;
    align-items: end;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: clamp(48px, 7vw, 82px);
}

.footer-cta .eyebrow,
.footer-cta h2,
.footer-cta > p:not(.eyebrow) {
    grid-column: 1;
}

.footer-cta h2 {
    max-width: 820px;
    margin-bottom: 0;
}

.footer-cta > p:not(.eyebrow) {
    max-width: 56ch;
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.65;
}

.footer-primary-link {
    grid-column: 2;
    grid-row: 1 / 4;
    align-self: end;
    background: var(--uc-white);
    color: var(--uc-green-800);
}

.brand-lockup--footer {
    color: var(--uc-white);
}

.brand-lockup--footer .brand-mark {
    stroke: var(--uc-white);
}

.footer-brand p {
    margin: 15px 0 0;
    color: rgba(255, 255, 255, 0.7);
}

.site-footer nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 18px 26px;
}

.site-footer nav a {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.86rem;
    font-weight: 650;
    text-decoration: none;
}

.site-footer__company {
    grid-column: 1 / -1;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.76rem;
    padding-top: 22px;
}

@keyframes hero-in {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

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

    .desktop-nav {
        display: none;
    }

    .mobile-nav {
        display: block;
    }

    .about-hero {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        min-height: 0;
    }

    .about-copy {
        grid-column: 1;
        grid-row: auto;
        max-width: 800px;
        padding-inline: max(20px, calc((100vw - 760px) / 2));
    }

    .about-hero-art {
        grid-column: 1;
        grid-row: auto;
        min-height: min(62vw, 650px);
    }

    .trust-panel {
        grid-column: 1;
        grid-row: auto;
        margin: 0;
        border-radius: 0;
        background: var(--uc-mint-100);
        padding: 28px max(20px, calc((100vw - 760px) / 2));
        backdrop-filter: none;
    }

    .info-section,
    .withdrawal-shell,
    .faq-shell {
        grid-template-columns: 1fr;
    }

    .info-section > .section-heading,
    .info-section > :not(.section-heading),
    .withdrawal-heading,
    .withdrawal-layout,
    .withdrawal-note,
    .withdrawal-footer-copy {
        position: static;
        grid-column: 1;
    }

    .faq-heading {
        position: static;
    }
}

@media (max-width: 760px) {
    :root {
        --uc-page: min(100% - 32px, 1240px);
    }

    .site-header {
        min-height: 64px;
        gap: 8px;
        padding-inline: 16px;
    }

    .header-cta {
        min-height: 42px;
        padding-inline: 13px;
        font-size: 0.78rem;
    }

    .about-copy {
        padding: 58px 16px 48px;
    }

    .about-copy h1 {
        font-size: clamp(3.2rem, 15vw, 4.7rem);
    }

    .about-hero-art {
        min-height: 66vw;
    }

    .trust-panel {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 26px 16px;
    }

    .hero-proof-grid article {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .info-section,
    .notice-section,
    .expectations-section,
    .faq-section,
    .license-cta-section {
        padding-right: 16px;
        padding-left: 16px;
    }

    #how-it-works > .section-heading,
    .notice-copy,
    .value-comparison,
    .license-summary,
    .rewards-layout,
    .withdrawal-layout,
    .expectations-card,
    .footer-cta {
        grid-template-columns: 1fr;
    }

    .info-grid,
    .reward-factor-grid,
    .jumbo-stats,
    .license-flow,
    .value-use-grid,
    .task-card-grid,
    .scout-runner-grid {
        grid-template-columns: 1fr;
    }

    .info-grid article,
    .info-grid article + article,
    .comparison-card,
    .comparison-card + .comparison-card,
    .license-summary article,
    .license-summary article + article,
    .route-card,
    .route-card + .route-card,
    .reward-factor-grid article,
    .reward-factor-grid article + article,
    .value-use-grid article,
    .value-use-grid article:nth-child(even),
    .task-card,
    .task-card:nth-child(even) {
        min-height: 0;
        border-right: 0;
        border-bottom: 1px solid var(--uc-line);
        padding: 25px 0;
    }

    .info-grid article > span {
        margin-bottom: 22px;
    }

    .jumbo-stats > div,
    .jumbo-stats > div + div {
        border-right: 0;
        border-bottom: 1px solid var(--uc-line);
        padding: 18px 0;
    }

    .jumbo-stats > div:last-child {
        border-bottom: 0;
    }

    .license-flow li {
        min-height: 0;
        border-right: 0;
        border-bottom: 1px solid var(--uc-line);
        padding: 22px 0;
    }

    .license-flow li:last-child {
        border-bottom: 0;
    }

    .split-table {
        display: block;
        overflow-x: auto;
    }

    .rewards-reality,
    .withdrawal-note {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .partner-card {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .partner-link {
        grid-column: 1;
    }

    .license-cta-card,
    .site-footer {
        grid-template-columns: 1fr;
    }

    .license-cta-actions,
    .site-footer nav {
        justify-content: flex-start;
    }

    .footer-cta .eyebrow,
    .footer-cta h2,
    .footer-cta > p:not(.eyebrow),
    .footer-primary-link {
        grid-column: 1;
        grid-row: auto;
    }
}

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

    .header-cta {
        display: none;
    }

    .mobile-nav {
        grid-column: 2;
    }

    .hero-proof-grid {
        margin-bottom: 24px;
    }

    .about-copy .primary-link {
        width: 100%;
    }

    .detail-panel summary {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .detail-panel summary::after {
        margin-left: auto;
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
