/* Final visual polish: aligned product screens, unified signal motion, and rebuilt loops. */

/* Keep the heritage logo rotation constant instead of accelerating on hover. */

.brand:hover .brand-mark,
.brand:focus-visible .brand-mark {
    animation-duration: 10s;
}

/* A single, living signal language for every green status indicator. */

.trust-microcopy span::before,
.section-kicker::before,
.native-eyebrow::before,
.live-pill::before,
.stage-label.live::before,
.action-status.status-done::before,
.engine-core-status i {
    animation: polish-signal-breathe 1.8s ease-out infinite;
}

.trust-microcopy span:nth-child(2)::before { animation-delay: 180ms; }
.trust-microcopy span:nth-child(3)::before { animation-delay: 360ms; }

.live-pill,
.stage-label.live,
.action-status.status-done {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.live-pill::before,
.stage-label.live::before,
.action-status.status-done::before {
    content: "";
    flex: 0 0 auto;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #74a313;
}

.roadmap-card.current .stage-label.live::before {
    width: 6px;
    height: 6px;
    margin: 0;
    background: #668f10;
    box-shadow: none;
    animation: polish-signal-breathe 1.8s ease-out infinite;
}

.motion-section:not(.section-active) .trust-microcopy span::before,
.motion-section:not(.section-active) .section-kicker::before,
.motion-section:not(.section-active) .native-eyebrow::before,
.motion-section:not(.section-active) .live-pill::before,
.motion-section:not(.section-active) .stage-label.live::before,
.motion-section:not(.section-active) .action-status.status-done::before,
.motion-section:not(.section-active) .trust-card-icon::after,
.motion-section:not(.section-active) .status-icon::after,
.motion-section:not(.section-active) .engine-caption > span,
.motion-section:not(.section-active) .faq-item.open button i {
    animation-play-state: paused;
}

.section-heading.revealed .feature-list li::before {
    animation: polish-feature-beacon 2.4s 620ms ease-out infinite;
}

.section-heading.revealed .feature-list li:nth-child(2)::before { animation-delay: 710ms; }
.section-heading.revealed .feature-list li:nth-child(3)::before { animation-delay: 800ms; }
.section-heading.revealed .feature-list li:nth-child(4)::before { animation-delay: 890ms; }

.faq-item.open button i {
    animation: polish-control-breathe 2.2s ease-out infinite;
}

.status-grid.revealed .status-icon::after,
.trust-card.revealed .trust-card-icon::after {
    border-radius: 50%;
    animation: polish-node-ring 2.6s var(--node-delay, 0ms) ease-out infinite;
}

/* The screenshots now share one baseline instead of an artificial stagger. */

.phone-group {
    align-items: flex-start;
}

.phone-frame,
.phone-frame:nth-child(2),
.phone-frame:nth-child(3),
.phone-frame:nth-child(5),
.phone-frame:nth-child(6) {
    --phone-y: 0px;
    --phone-rotate: 0deg;
}

.phone-frame:hover {
    transform: translateY(-12px) rotate(0) scale(1.015);
}

.motion-ready .native-showcase .phone-frame img {
    clip-path: none;
    filter: none;
    transform: none;
}

.motion-ready .native-showcase.section-active .phone-frame img {
    animation: none;
}

.motion-ready .native-showcase .phone-frame {
    opacity: 0.2;
    translate: 0 42px;
    transition: opacity 650ms ease, translate 850ms var(--ease-premium), transform 420ms var(--ease-premium), box-shadow 320ms ease;
}

.motion-ready .native-showcase.section-active .phone-frame {
    opacity: 1;
    translate: 0 0;
}

.native-showcase.section-active .phone-frame:nth-child(2),
.native-showcase.section-active .phone-frame:nth-child(5) { transition-delay: 70ms; }

.native-showcase.section-active .phone-frame:nth-child(3),
.native-showcase.section-active .phone-frame:nth-child(6) { transition-delay: 140ms; }

.native-showcase.section-active .phone-frame:nth-child(4) { transition-delay: 210ms; }

/* The Money OS sheen completes one pass, rests for two seconds, then repeats. */

.roadmap.revealed .roadmap-card.money-os::after {
    animation: none;
    will-change: transform, opacity;
}

.roadmap.revealed .roadmap-card.money-os.money-os-visible::after {
    animation: polish-money-os-sheen 3s linear infinite;
}

/* A real six-stage progression replaces the full-card background wash. */

.roadmap-section.section-active .evolution-line {
    animation: none;
    background-image: none;
}

.evolution-line {
    position: relative;
    isolation: isolate;
    min-height: 86px;
    gap: clamp(8px, 1vw, 14px);
    padding: 21px 30px;
    overflow: hidden;
    border-radius: 25px;
    background:
        radial-gradient(circle at 96% 50%, rgba(200, 243, 74, 0.19), transparent 17rem),
        rgba(252, 253, 249, 0.94);
    box-shadow: 0 15px 38px rgba(37, 50, 29, 0.07), inset 0 1px 0 #fff;
}

.evolution-line::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 52px;
    left: 52px;
    z-index: -1;
    height: 1px;
    background: linear-gradient(90deg, rgba(99, 119, 83, 0.14), rgba(111, 157, 24, 0.3));
}

.evolution-line::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 48px;
    z-index: 3;
    width: 9px;
    height: 9px;
    border: 2px solid rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    background: #78a916;
    box-shadow: 0 0 0 5px rgba(120, 169, 22, 0.1), 0 0 20px rgba(120, 169, 22, 0.32);
    opacity: 0;
    transform: translate(-50%, -50%);
}

.roadmap-section.section-active .evolution-line.revealed::after {
    animation: evolution-packet 3.3s 800ms var(--ease-premium) both;
}

.evolution-step,
.evolution-arrow {
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
}

.evolution-step {
    padding: 8px 11px;
    border: 1px solid transparent;
    border-radius: 999px;
    color: #747d70;
    background: rgba(252, 253, 249, 0.96);
    transition: color 200ms ease, border-color 200ms ease, background 200ms ease, box-shadow 240ms ease;
}

.roadmap-section.section-active .evolution-line.revealed .evolution-step {
    animation: evolution-step-arrive 560ms 820ms var(--ease-premium) both;
}

.roadmap-section.section-active .evolution-line.revealed > :nth-child(3) { animation-delay: 1.34s; }
.roadmap-section.section-active .evolution-line.revealed > :nth-child(5) { animation-delay: 1.86s; }
.roadmap-section.section-active .evolution-line.revealed > :nth-child(7) { animation-delay: 2.38s; }
.roadmap-section.section-active .evolution-line.revealed > :nth-child(9) { animation-delay: 2.9s; }
.roadmap-section.section-active .evolution-line.revealed > :nth-child(11) { animation-delay: 3.42s; }

.evolution-arrow {
    display: grid;
    place-items: center;
    width: 21px;
    height: 21px;
    border: 1px solid rgba(91, 107, 78, 0.12);
    border-radius: 50%;
    color: #8f988a;
    background: #f8faf5;
    font-size: 0.67rem;
}

.roadmap-section.section-active .evolution-line.revealed .evolution-arrow {
    animation: evolution-arrow-arrive 440ms 1.08s var(--ease-premium) both;
}

.roadmap-section.section-active .evolution-line.revealed > :nth-child(4) { animation-delay: 1.6s; }
.roadmap-section.section-active .evolution-line.revealed > :nth-child(6) { animation-delay: 2.12s; }
.roadmap-section.section-active .evolution-line.revealed > :nth-child(8) { animation-delay: 2.64s; }
.roadmap-section.section-active .evolution-line.revealed > :nth-child(10) { animation-delay: 3.16s; }

.evolution-destination {
    color: #4d7108;
    border-color: rgba(111, 157, 24, 0.2);
    background: #f0f7dc;
}

.roadmap-section.section-active .evolution-line.revealed .evolution-destination {
    animation-name: evolution-destination-arrive;
}

/* Rebuilt intelligence engine. The packet is drawn inside the same SVG as its path. */

.intelligence-grid {
    grid-template-columns: minmax(0, 0.82fr) minmax(560px, 1.18fr);
    gap: clamp(44px, 6vw, 88px);
}

.intelligence-engine {
    --reveal-x: 52px;
    --reveal-y: 0px;
    position: relative;
    min-width: 0;
}

.engine-stage {
    position: relative;
    width: 100%;
    max-width: 660px;
    aspect-ratio: 1;
    margin-inline: auto;
    overflow: hidden;
    border: 1px solid rgba(27, 36, 22, 0.12);
    border-radius: 48px;
    background:
        linear-gradient(rgba(59, 76, 47, 0.038) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 76, 47, 0.038) 1px, transparent 1px),
        radial-gradient(circle at 50% 50%, rgba(200, 243, 74, 0.26), transparent 28%),
        rgba(255, 255, 252, 0.9);
    background-size: 42px 42px, 42px 42px, auto, auto;
    box-shadow: 0 30px 72px rgba(41, 55, 31, 0.1), inset 0 1px 0 #fff;
    isolation: isolate;
}

.engine-stage::before,
.engine-stage::after {
    content: "";
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(12px);
}

.engine-stage::before {
    top: -16%;
    right: -12%;
    width: 42%;
    aspect-ratio: 1;
    background: rgba(183, 232, 74, 0.15);
}

.engine-stage::after {
    bottom: -20%;
    left: -12%;
    width: 50%;
    aspect-ratio: 1;
    background: rgba(124, 194, 110, 0.1);
}

.engine-orbit {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.engine-orbit-base,
.engine-orbit-flow {
    fill: none;
    vector-effect: non-scaling-stroke;
}

.engine-orbit-base {
    stroke: rgba(74, 93, 60, 0.18);
    stroke-width: 1.25;
    stroke-dasharray: 4 10;
}

.engine-orbit-flow {
    stroke: #7dac19;
    stroke-width: 2.25;
    stroke-linecap: round;
    stroke-dasharray: 6.6 93.4;
    stroke-dashoffset: 6.6;
    opacity: 0.88;
    transform: rotate(-90deg);
    transform-box: view-box;
    transform-origin: 320px 320px;
}

.intelligence-section.section-active .engine-orbit-flow {
    animation: engine-orbit-flow 5s linear infinite;
}

.engine-core {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 184px;
    aspect-ratio: 1;
    padding: 24px;
    border: 1px solid rgba(15, 20, 13, 0.85);
    border-radius: 50%;
    color: #fff;
    background:
        radial-gradient(circle at 30% 18%, rgba(200, 243, 74, 0.2), transparent 42%),
        #10150d;
    box-shadow: 0 25px 58px rgba(23, 31, 18, 0.28), 0 0 0 13px rgba(200, 243, 74, 0.08);
    text-align: center;
    transform: translate(-50%, -50%);
}

.intelligence-section.section-active .engine-core {
    animation: engine-core-breathe 4.5s ease-in-out infinite;
}

.engine-core-mark {
    display: grid;
    place-items: center;
    width: 45px;
    height: 45px;
    margin-bottom: 12px;
}

.engine-core-mark img {
    width: 100%;
    height: 100%;
    filter: invert(1);
    animation: brand-turn 14s linear infinite;
}

.engine-core small {
    color: rgba(255, 255, 255, 0.58);
    font-family: var(--font-display);
    font-size: 0.57rem;
    font-weight: 600;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.engine-core strong {
    margin-top: 4px;
    font-family: var(--font-display);
    font-size: 0.95rem;
    letter-spacing: -0.02em;
}

.engine-core-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.56rem;
}

.engine-core-status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--lime);
}

.engine-node {
    --engine-step: 0;
    position: absolute;
    z-index: 5;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    width: clamp(168px, 31%, 202px);
    min-height: 78px;
    padding: 11px 13px;
    border: 1px solid rgba(27, 36, 22, 0.13);
    border-radius: 19px;
    background: rgba(255, 255, 255, 0.91);
    box-shadow: 0 15px 34px rgba(41, 54, 32, 0.09), inset 0 1px 0 #fff;
    opacity: 1;
    scale: 1;
    transition: opacity 520ms ease, scale 680ms var(--ease-premium), border-color 220ms ease, box-shadow 280ms ease, background 220ms ease;
    backdrop-filter: blur(16px);
}

.motion-ready .intelligence-engine.reveal:not(.revealed) .engine-node {
    opacity: 0;
    scale: 0.82;
}

.motion-ready .intelligence-engine.revealed .engine-node {
    transition-delay: calc(180ms + var(--engine-step) * 80ms);
}

.intelligence-section.section-active .intelligence-engine.revealed .engine-node {
    animation: engine-node-cycle 5s calc(var(--engine-step) * 1s) ease-in-out infinite;
}

.engine-node > span {
    position: relative;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(105, 150, 20, 0.28);
    border-radius: 50%;
    color: #52740f;
    background: #f0f7dc;
    font-family: var(--font-display);
    font-size: 0.59rem;
    font-weight: 700;
}

.engine-node h3 {
    margin: 0;
    color: #10140e;
    font-family: var(--font-display);
    font-size: 0.77rem;
    letter-spacing: -0.02em;
}

.engine-node p {
    margin: 3px 0 0;
    color: #697264;
    font-size: 0.58rem;
    line-height: 1.35;
}

.engine-node-connect {
    --engine-step: 0;
    top: 13.75%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.engine-node-understand {
    --engine-step: 1;
    top: 38.798%;
    left: 84.476%;
    transform: translate(-50%, -50%);
}

.engine-node-recommend {
    --engine-step: 2;
    top: 79.327%;
    left: 71.307%;
    transform: translate(-50%, -50%);
}

.engine-node-learn {
    --engine-step: 3;
    top: 79.327%;
    left: 28.693%;
    transform: translate(-50%, -50%);
}

.engine-node-permission {
    --engine-step: 4;
    top: 38.798%;
    left: 15.524%;
    transform: translate(-50%, -50%);
}

.engine-caption {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 16px auto 0;
    color: #65705f;
    font-size: 0.65rem;
    text-align: center;
}

.engine-caption > span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #79a916;
    animation: polish-signal-breathe 1.8s ease-out infinite;
}

/* Compact product availability: both columns share the visual center instead of
   letting the short copy sit at the bottom of an oversized headline. */

.section.availability-section {
    padding-top: 20px;
    padding-bottom: clamp(38px, 4vw, 58px);
}

.availability-card {
    grid-template-columns: minmax(0, 1.15fr) minmax(390px, 0.85fr);
    gap: clamp(34px, 4vw, 54px);
    align-items: center;
    padding: clamp(34px, 4vw, 52px);
}

.availability-card > div:first-child {
    min-width: 0;
}

.availability-card h2 {
    max-width: none;
    font-size: clamp(2.65rem, 3.35vw, 3.9rem);
    line-height: 0.96;
    text-wrap: balance;
}

.availability-copy {
    align-self: center;
    padding-left: clamp(22px, 2vw, 30px);
    border-left: 1px solid rgba(74, 103, 17, 0.16);
}

.availability-actions {
    margin-top: 20px;
}

/* Editorial FAQ layout: keep a useful minimum width for the headline and stack
   before the display type begins wrapping one word per line. */

.faq-section {
    padding-top: clamp(56px, 6vw, 78px);
}

.faq-grid {
    grid-template-columns: minmax(500px, 0.96fr) minmax(0, 1.04fr);
    gap: clamp(48px, 4vw, 64px);
}

.faq-grid > .section-heading {
    width: 100%;
    max-width: 560px;
}

.faq-grid > .section-heading h2 {
    font-size: clamp(3.25rem, 3.1vw, 3.55rem);
    line-height: 0.96;
    text-wrap: balance;
}

.faq-list {
    min-width: 0;
}

/* Control by Design: three concise current safeguards plus one full-width future boundary. */

.trust-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 54px;
}

.trust-card {
    position: relative;
    min-height: 218px;
    padding: 26px;
    border-radius: 26px;
}

.trust-card::after {
    content: "";
    position: absolute;
    right: 26px;
    bottom: 0;
    left: 26px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #7fab1e, rgba(127, 171, 30, 0.06));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 800ms var(--ease-premium) calc(240ms + var(--reveal-delay, 0ms));
}

.trust-card.revealed::after {
    transform: scaleX(1);
}

.trust-card-icon {
    width: 50px;
    height: 50px;
    margin: 0;
    border-radius: 50%;
}

.trust-card > .stage-label {
    position: absolute;
    top: 27px;
    right: 26px;
}

.trust-card h3 {
    margin: 30px 0 10px;
    font-size: 1.08rem;
}

.trust-card p {
    max-width: 35ch;
    font-size: 0.76rem;
    line-height: 1.62;
}

.trust-card.roadmap-trust {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr) auto;
    grid-template-areas:
        "icon title label"
        "icon copy copy";
    gap: 8px 20px;
    min-height: 0;
    padding: 24px 26px;
    background:
        linear-gradient(90deg, rgba(140, 156, 255, 0.09), transparent 72%),
        #f8f9ff;
}

.roadmap-trust .trust-card-icon {
    grid-area: icon;
}

.trust-card.roadmap-trust > .stage-label {
    position: static;
    grid-area: label;
    align-self: start;
    justify-self: end;
}

.trust-card.roadmap-trust h3 {
    grid-area: title;
    margin: 2px 0 0;
}

.trust-card.roadmap-trust p {
    grid-area: copy;
    max-width: 80ch;
}

.trust-card.roadmap-trust::after {
    background: linear-gradient(90deg, #7e90ed, rgba(126, 144, 237, 0.06));
}

/* The orbiting signal is now physically attached to its ring at every size. */

.final-cta {
    padding: 88px 0 68px;
}

.final-cta-inner {
    padding: 64px 64px 60px;
}

.cta-orbit-one {
    animation: none;
}

.cta-orbit-two {
    animation: none;
}

.cta-orbit-runner {
    position: absolute;
    inset: -1px;
    border-radius: 50%;
    animation: cta-orbit-turn 8s linear infinite;
}

.cta-orbit-runner .cta-signal {
    position: absolute;
    top: -5px;
    left: 50%;
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #79ad15;
    box-shadow: none;
    transform: translateX(-50%);
    animation: polish-signal-breathe 1.6s ease-out infinite;
}

.cta-mark-wrap {
    display: block;
    width: auto;
    height: auto;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    animation: cta-mark-float 5s ease-in-out infinite;
}

.cta-mark-wrap img {
    display: block;
    width: 82px;
    height: 82px;
    filter: drop-shadow(0 15px 24px rgba(61, 84, 40, 0.18));
    animation: brand-turn 16s linear infinite;
}

.cta-visual-label {
    bottom: -3%;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    letter-spacing: 0.16em;
}

/* A premium terminal footer: clear hierarchy, useful navigation, and a final brand statement. */

.site-footer {
    position: relative;
    overflow: hidden;
    padding: 30px 0 22px;
    border-top: 0;
    color: #10140e;
    background:
        radial-gradient(circle at 8% 20%, rgba(200, 243, 74, 0.23), transparent 25rem),
        radial-gradient(circle at 92% 85%, rgba(128, 194, 106, 0.09), transparent 24rem),
        linear-gradient(180deg, #f4f7ef 0%, #e9efe3 100%);
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.62;
    background-image:
        linear-gradient(rgba(27, 36, 22, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(27, 36, 22, 0.035) 1px, transparent 1px);
    background-size: 68px 68px;
}

.footer-grid {
    position: relative;
    isolation: isolate;
    grid-template-columns: minmax(320px, 1.02fr) minmax(0, 1.35fr);
    gap: clamp(58px, 8vw, 112px);
    padding: 64px clamp(36px, 5vw, 68px) 58px;
    overflow: hidden;
    border: 1px solid rgba(27, 36, 22, 0.13);
    border-bottom: 0;
    border-radius: 42px 42px 0 0;
    background: rgba(255, 255, 253, 0.88);
    box-shadow: 0 28px 72px rgba(38, 51, 29, 0.11), inset 0 1px 0 #fff;
    backdrop-filter: blur(16px);
}

.footer-grid::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #6f9d18, var(--lime), transparent 74%);
}

.footer-grid::after {
    content: "";
    position: absolute;
    bottom: -145px;
    left: -90px;
    z-index: -1;
    width: 305px;
    aspect-ratio: 1;
    opacity: 0.025;
    background: url("../Asset 4.svg") center / contain no-repeat;
    transform: rotate(12deg);
}

.footer-brand {
    align-self: start;
}

.footer-brand .brand {
    width: fit-content;
    gap: 12px;
}

.footer-brand .brand-mark {
    width: 34px;
    height: 34px;
}

.footer-brand .brand-wordmark {
    width: 146px;
    height: auto;
}

.footer-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 38px;
    color: #5c711f;
    font-family: var(--font-display);
    font-size: 0.61rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.footer-kicker i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #78a916;
    animation: polish-signal-breathe 1.8s ease-out infinite;
}

.footer-statement {
    display: block;
    max-width: 490px;
    margin-top: 17px;
    color: #10140e;
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 3.4vw, 3.65rem);
    font-weight: 600;
    letter-spacing: -0.055em;
    line-height: 0.98;
}

.footer-brand p {
    max-width: 390px;
    margin: 24px 0 0;
    color: #596354;
    font-size: 0.84rem;
    line-height: 1.65;
}

.footer-status {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.footer-status span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 30px;
    padding: 6px 10px;
    border: 1px solid rgba(27, 36, 22, 0.11);
    border-radius: 999px;
    color: #606b5b;
    background: rgba(248, 251, 243, 0.82);
    font-size: 0.62rem;
    font-weight: 600;
}

.footer-status span::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #78a916;
    animation: polish-signal-breathe 1.8s ease-out infinite;
}

.footer-status span:nth-child(2)::before {
    animation-delay: 250ms;
}

.footer-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(28px, 4vw, 52px);
    align-self: center;
}

.footer-links > div {
    gap: 8px;
    padding-left: 20px;
    border-left: 1px solid rgba(27, 36, 22, 0.1);
}

.footer-links strong {
    margin-bottom: 12px;
    color: #768070;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 4px 0;
    color: #343c30;
    font-size: 0.77rem;
    transition: color 180ms ease, transform 220ms var(--ease-premium);
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: #456900;
    transform: translateX(4px);
}

.footer-links a::after {
    bottom: 2px;
    background: #6f9d18;
}

.footer-bottom {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 28px;
    padding: 20px clamp(36px, 5vw, 68px) 22px;
    border: 1px solid rgba(27, 36, 22, 0.13);
    border-top-color: rgba(27, 36, 22, 0.09);
    border-radius: 0 0 42px 42px;
    color: #687263;
    background: rgba(255, 255, 253, 0.88);
    font-size: 0.65rem;
    backdrop-filter: blur(16px);
}

.footer-bottom > span:nth-child(2) {
    color: #405b10;
    font-weight: 600;
}

.footer-top-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #36412f;
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 600;
    text-decoration: none;
}

.footer-top-link i {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(89, 121, 23, 0.2);
    border-radius: 50%;
    color: #4f710c;
    background: #eff6da;
    font-style: normal;
    transition: transform 220ms var(--ease-premium), background 180ms ease;
}

.footer-top-link:hover i,
.footer-top-link:focus-visible i {
    background: var(--lime);
    transform: translateY(-3px);
}

/* Motion definitions */

@keyframes polish-signal-breathe {
    0% { opacity: 1; box-shadow: 0 0 0 0 rgba(111, 157, 24, 0.25), 0 0 13px rgba(111, 157, 24, 0.32); }
    72%, 100% { opacity: 0.82; box-shadow: 0 0 0 10px rgba(111, 157, 24, 0), 0 0 18px rgba(111, 157, 24, 0.12); }
}

@keyframes polish-feature-beacon {
    0% { opacity: 1; box-shadow: 0 0 0 0 rgba(111, 157, 24, 0.22); }
    74%, 100% { opacity: 0.9; box-shadow: 0 0 0 9px rgba(111, 157, 24, 0); }
}

@keyframes polish-node-ring {
    0% { opacity: 0.5; transform: scale(0.78); }
    70%, 100% { opacity: 0; transform: scale(1.65); }
}

@keyframes polish-control-breathe {
    0%, 100% { box-shadow: 0 0 0 0 rgba(111, 157, 24, 0.18); }
    58% { box-shadow: 0 0 0 7px rgba(111, 157, 24, 0); }
}

@keyframes polish-money-os-sheen {
    0% { opacity: 0; transform: translateX(0) skewX(-18deg); }
    4.7% { opacity: 0.78; }
    27.3% { opacity: 0.58; }
    33.333% { opacity: 0; transform: translateX(520%) skewX(-18deg); }
    33.334%, 100% { opacity: 0; transform: translateX(520%) skewX(-18deg); }
}

@keyframes engine-orbit-flow {
    from { stroke-dashoffset: 6.6; }
    to { stroke-dashoffset: -93.4; }
}

@keyframes engine-core-breathe {
    0%, 100% { box-shadow: 0 25px 58px rgba(23, 31, 18, 0.28), 0 0 0 13px rgba(200, 243, 74, 0.08); }
    50% { box-shadow: 0 31px 70px rgba(23, 31, 18, 0.32), 0 0 0 21px rgba(200, 243, 74, 0.035); }
}

@keyframes engine-node-cycle {
    0%, 16% {
        border-color: rgba(111, 157, 24, 0.52);
        background: rgba(248, 253, 229, 0.97);
        box-shadow: 0 20px 44px rgba(66, 90, 47, 0.17), 0 0 0 6px rgba(200, 243, 74, 0.08), inset 0 1px 0 #fff;
    }
    22%, 100% {
        border-color: rgba(27, 36, 22, 0.13);
        background: rgba(255, 255, 255, 0.91);
        box-shadow: 0 15px 34px rgba(41, 54, 32, 0.09), inset 0 1px 0 #fff;
    }
}

@keyframes evolution-packet {
    0% { left: 48px; opacity: 0; }
    5% { opacity: 1; }
    92% { opacity: 1; }
    100% { left: calc(100% - 48px); opacity: 0; }
}

@keyframes evolution-step-arrive {
    0% {
        color: #747d70;
        border-color: transparent;
        background: rgba(252, 253, 249, 0.96);
        box-shadow: none;
        transform: translateY(0) scale(1);
    }
    58% {
        color: #3f5e08;
        border-color: rgba(111, 157, 24, 0.34);
        background: #edf6d5;
        box-shadow: 0 8px 22px rgba(86, 117, 24, 0.12);
        transform: translateY(-2px) scale(1.025);
    }
    100% {
        color: #65705f;
        border-color: rgba(111, 157, 24, 0.12);
        background: #f7faef;
        box-shadow: none;
        transform: translateY(0) scale(1);
    }
}

@keyframes evolution-destination-arrive {
    0% {
        color: #747d70;
        border-color: transparent;
        background: rgba(252, 253, 249, 0.96);
        box-shadow: none;
        transform: translateY(0) scale(1);
    }
    58% {
        color: #365700;
        border-color: rgba(111, 157, 24, 0.48);
        background: #e8f4c8;
        box-shadow: 0 9px 25px rgba(86, 117, 24, 0.16);
        transform: translateY(-2px) scale(1.035);
    }
    100% {
        color: #3f6204;
        border-color: rgba(111, 157, 24, 0.28);
        background: #eef7d5;
        box-shadow: 0 7px 19px rgba(86, 117, 24, 0.1);
        transform: translateY(0) scale(1);
    }
}

@keyframes evolution-arrow-arrive {
    0% {
        color: #8f988a;
        border-color: rgba(91, 107, 78, 0.12);
        background: #f8faf5;
        transform: translateX(0) scale(1);
    }
    64% {
        color: #456a08;
        border-color: rgba(111, 157, 24, 0.28);
        background: #eaf4cd;
        transform: translateX(2px) scale(1.08);
    }
    100% {
        color: #62820f;
        border-color: rgba(111, 157, 24, 0.18);
        background: #f1f7df;
        transform: translateX(0) scale(1);
    }
}

@media (max-width: 1180px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: clamp(40px, 5vw, 58px);
    }

    .faq-grid > .section-heading {
        max-width: 820px;
    }

    .faq-grid > .section-heading h2 {
        font-size: clamp(3.45rem, 6.7vw, 4.6rem);
    }
}

@media (max-width: 980px) {
    .availability-card {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .availability-card h2 {
        max-width: 14ch;
    }

    .availability-copy {
        padding: 26px 0 0;
        border-top: 1px solid rgba(74, 103, 17, 0.16);
        border-left: 0;
    }
}

@media (max-width: 1080px) {
    .intelligence-grid {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .intelligence-section .section-heading {
        max-width: 820px;
        margin-inline: auto;
        text-align: center;
    }

    .intelligence-section .section-heading p,
    .intelligence-section .control-note {
        margin-right: auto;
        margin-left: auto;
    }

    .intelligence-engine {
        width: min(100%, 680px);
        margin-inline: auto;
    }
}

@media (max-width: 900px) {
    .trust-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .trust-card,
    .trust-card.roadmap-trust {
        grid-column: auto;
        display: flex;
        flex-direction: column;
        min-height: 205px;
        padding: 24px;
    }

    .trust-card.roadmap-trust > .stage-label {
        position: absolute;
        top: 25px;
        right: 24px;
    }

    .trust-card.roadmap-trust h3,
    .trust-card.roadmap-trust p {
        margin-right: 0;
    }

    .trust-card h3,
    .trust-card.roadmap-trust h3 {
        margin: 26px 0 10px;
    }

    .trust-card p,
    .trust-card.roadmap-trust p {
        max-width: 38ch;
    }

    .final-cta-inner {
        padding: 54px 46px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 44px;
        padding: 52px 42px 46px;
    }

    .footer-statement {
        max-width: 620px;
    }

    .footer-links {
        gap: 34px;
    }

    .footer-bottom {
        padding-right: 42px;
        padding-left: 42px;
    }
}

@media (max-width: 820px) {
    .evolution-line {
        justify-content: flex-start;
        overflow-x: auto;
        white-space: nowrap;
        scrollbar-width: none;
    }

    .evolution-line::-webkit-scrollbar {
        display: none;
    }

    .evolution-line::before,
    .evolution-line::after {
        display: none;
    }
}

@media (max-width: 600px) {
    .section.availability-section {
        padding: 0 0 72px;
    }

    .availability-card {
        gap: 24px;
        padding: 28px 22px;
    }

    .availability-card h2 {
        max-width: none;
        font-size: clamp(2.4rem, 11vw, 3.1rem);
    }

    .faq-grid > .section-heading h2 {
        font-size: clamp(2.55rem, 11vw, 3.4rem);
    }

    .engine-stage {
        display: grid;
        gap: 11px;
        aspect-ratio: auto;
        padding: 18px;
        overflow: hidden;
        border-radius: 32px;
        background:
            linear-gradient(rgba(59, 76, 47, 0.035) 1px, transparent 1px),
            linear-gradient(90deg, rgba(59, 76, 47, 0.035) 1px, transparent 1px),
            rgba(255, 255, 252, 0.93);
        background-size: 36px 36px, 36px 36px, auto;
    }

    .engine-orbit {
        display: none;
    }

    .engine-core {
        position: relative;
        inset: auto;
        display: grid;
        grid-template-columns: 54px minmax(0, 1fr);
        grid-template-areas:
            "mark eyebrow"
            "mark title"
            "mark status";
        column-gap: 14px;
        width: 100%;
        min-height: 124px;
        aspect-ratio: auto;
        padding: 20px;
        border-radius: 25px;
        text-align: left;
        transform: none;
    }

    .engine-core-mark {
        grid-area: mark;
        align-self: center;
        width: 48px;
        height: 48px;
        margin: 0;
    }

    .engine-core small { grid-area: eyebrow; align-self: end; }
    .engine-core strong { grid-area: title; margin-top: 2px; }
    .engine-core-status { grid-area: status; align-self: start; margin-top: 6px; }

    .engine-node,
    .engine-node-connect,
    .engine-node-understand,
    .engine-node-recommend,
    .engine-node-learn,
    .engine-node-permission {
        position: relative;
        inset: auto;
        display: grid;
        grid-template-columns: 42px minmax(0, 1fr);
        width: 100%;
        min-height: 78px;
        padding: 13px;
        transform: none;
    }

    .engine-node:not(:last-child)::after {
        content: "";
        position: absolute;
        top: 55px;
        bottom: -24px;
        left: 33px;
        z-index: -1;
        width: 1px;
        background: linear-gradient(#82ae26, rgba(130, 174, 38, 0.18));
    }

    .engine-node > span {
        width: 40px;
        height: 40px;
    }

    .engine-node h3 { font-size: 0.82rem; }
    .engine-node p { font-size: 0.63rem; }

    .engine-caption {
        align-items: flex-start;
        padding-inline: 12px;
        line-height: 1.5;
    }

    .trust-cards {
        grid-template-columns: 1fr;
        margin-top: 42px;
    }

    .trust-card,
    .trust-card.roadmap-trust {
        min-height: 0;
        padding: 22px;
    }

    .trust-card > .stage-label,
    .trust-card.roadmap-trust > .stage-label {
        top: 23px;
        right: 22px;
    }

    .trust-card h3,
    .trust-card.roadmap-trust h3 {
        margin: 22px 0 9px;
    }

    .final-cta {
        padding: 72px 0 56px;
    }

    .final-cta-inner {
        gap: 26px;
        padding: 42px 20px 30px;
    }

    .cta-mark-wrap img {
        width: 62px;
        height: 62px;
    }

    .cta-visual-label {
        bottom: -5%;
    }

    .site-footer {
        padding: 18px 0;
    }

    .footer-grid {
        gap: 38px;
        padding: 42px 24px 38px;
        border-radius: 28px 28px 0 0;
    }

    .footer-grid::after {
        width: 230px;
    }

    .footer-brand .brand-mark {
        width: 30px;
        height: 30px;
    }

    .footer-brand .brand-wordmark {
        width: 130px;
    }

    .footer-kicker {
        margin-top: 32px;
        font-size: 0.56rem;
    }

    .footer-statement {
        font-size: clamp(2.25rem, 11vw, 3.15rem);
    }

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

    .footer-links > div {
        padding-left: 15px;
    }

    .footer-links > div:last-child {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 9px;
        padding: 19px 24px 21px;
        border-radius: 0 0 28px 28px;
    }

    .footer-top-link {
        margin-top: 4px;
    }
}

@media (max-width: 360px) {
    .footer-links {
        grid-template-columns: 1fr;
    }

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

@media (prefers-reduced-motion: reduce) {
    .trust-microcopy span::before,
    .section-kicker::before,
    .native-eyebrow::before,
    .live-pill::before,
    .stage-label.live::before,
    .action-status.status-done::before,
    .engine-core-status i,
    .engine-caption > span,
    .section-heading.revealed .feature-list li::before,
    .status-icon::after,
    .trust-card-icon::after,
    .roadmap-card.money-os::after,
    .engine-orbit-flow,
    .engine-core,
    .engine-core-mark img,
    .engine-node,
    .faq-item.open button i,
    .cta-orbit,
    .cta-orbit-runner,
    .cta-signal,
    .cta-mark-wrap,
    .cta-mark-wrap img,
    .evolution-line::after,
    .evolution-line > *,
    .footer-kicker i,
    .footer-status span::before {
        animation: none !important;
    }

    .motion-ready .native-showcase .phone-frame,
    .motion-ready .native-showcase.section-active .phone-frame,
    .motion-ready .intelligence-engine.reveal .engine-node {
        opacity: 1 !important;
        translate: 0 0 !important;
        scale: 1 !important;
        transition: none !important;
    }

    .footer-links a,
    .footer-top-link i {
        transition: none !important;
    }

    .footer-links a:hover,
    .footer-links a:focus-visible,
    .footer-top-link:hover i,
    .footer-top-link:focus-visible i {
        transform: none;
    }
}
